gnu: Add cl-3d-matrices.

* gnu/packages/lisp-xyz.scm (sbcl-3d-matrices, cl-3d-matrices,
  ecl-3d-matrices): New variables.

Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
This commit is contained in:
Sharlatan Hellseher 2021-05-03 23:01:46 +01:00 committed by Guillaume Le Vaillant
parent e961f15083
commit 440217b1e5
No known key found for this signature in database
GPG key ID: 6BE8208ADF21FE3F

View file

@ -16396,3 +16396,38 @@ (define-public ecl-3d-vectors
(define-public cl-3d-vectors
(sbcl-package->cl-source-package sbcl-3d-vectors))
(define-public sbcl-3d-matrices
(let ((commit "f453b521b8f2ceabb01eac94389119dece8c05f8")
(revision "1"))
(package
(name "sbcl-3d-matrices")
(version (git-version "1.0.0" revision commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/Shinmera/3d-matrices")
(commit commit)))
(file-name (git-file-name "3d-matrices" version))
(sha256
(base32 "10q9c96gqzq6k8n89agy0khgimmnsn4s69171m3vhghqa2yv5n6v"))))
(build-system asdf-build-system/sbcl)
(native-inputs
`(("parachute" ,sbcl-parachute)))
(inputs
`(("3d-vectors" ,sbcl-3d-vectors)
("documentation-utils" ,sbcl-documentation-utils)))
(home-page "https://shinmera.github.io/3d-matrices/")
(synopsis "Utility library implementing 2x2, 3x3, 4x4 and NxM matrices")
(description
"@code{3D-MATRICES} is a library implementing common matrix operations,
mainly intended as the counterpiece to @code{3d-vectors} and thus being aimed at
operations in 3D space.")
(license license:zlib))))
(define-public ecl-3d-matrices
(sbcl-package->ecl-package sbcl-3d-matrices))
(define-public cl-3d-matrices
(sbcl-package->cl-source-package sbcl-3d-matrices))