mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-22 18:49:14 -05:00
gnu: Add cl-3d-vectors.
* gnu/packages/lisp-xyz.scm (sbcl-3d-vectors, ecl-3d-vectors, cl-3d-vectors): New variables. Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
This commit is contained in:
parent
2e501ad539
commit
e961f15083
1 changed files with 34 additions and 0 deletions
|
@ -16362,3 +16362,37 @@ (define-public sbcl-bknr-datastore
|
||||||
|
|
||||||
(define-public cl-bknr-datastore
|
(define-public cl-bknr-datastore
|
||||||
(sbcl-package->cl-source-package sbcl-bknr-datastore))
|
(sbcl-package->cl-source-package sbcl-bknr-datastore))
|
||||||
|
|
||||||
|
(define-public sbcl-3d-vectors
|
||||||
|
(let ((commit "29bb9684df803590deed344af63dbf7b712aabc0")
|
||||||
|
(revision "1"))
|
||||||
|
(package
|
||||||
|
(name "sbcl-3d-vectors")
|
||||||
|
(version (git-version "3.1.0" revision commit))
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/Shinmera/3d-vectors")
|
||||||
|
(commit commit)))
|
||||||
|
(file-name (git-file-name "3d-vectors" version))
|
||||||
|
(sha256
|
||||||
|
(base32 "0qc7m5brhpwi531rgmlaj1c609by533a1ia5hv8f90ilm8ksmw3l"))))
|
||||||
|
(build-system asdf-build-system/sbcl)
|
||||||
|
(native-inputs
|
||||||
|
`(("parachute" ,sbcl-parachute)))
|
||||||
|
(inputs
|
||||||
|
`(("documentation-utils" ,sbcl-documentation-utils)))
|
||||||
|
(home-page "https://shinmera.github.io/3d-vectors/")
|
||||||
|
(synopsis "Utility library implementing 2D, 3D, and 4D vectors")
|
||||||
|
(description
|
||||||
|
"@code{3D-VECTORS} is a library for vector math in 3D space. It contains
|
||||||
|
most of the vector operations one would usually expect out of such a library and
|
||||||
|
offers them both in non-modifying and modifying versions where applicable.")
|
||||||
|
(license license:zlib))))
|
||||||
|
|
||||||
|
(define-public ecl-3d-vectors
|
||||||
|
(sbcl-package->ecl-package sbcl-3d-vectors))
|
||||||
|
|
||||||
|
(define-public cl-3d-vectors
|
||||||
|
(sbcl-package->cl-source-package sbcl-3d-vectors))
|
||||||
|
|
Loading…
Reference in a new issue