me
/
guix
Archived
1
0
Fork 0

gnu: Add mathkit.

* gnu/packages/lisp-xyz.scm (cl-mathkit, ecl-mathkit, sbcl-mathkit): New
variables.
master
Pierre Neidhardt 2022-06-30 19:06:31 +02:00
parent 995409022f
commit 141d01e670
No known key found for this signature in database
GPG Key ID: 9BDCF497A4BBCC7F
1 changed files with 31 additions and 0 deletions

View File

@ -22195,3 +22195,34 @@ only.")
(define-public ecl-sb-cga
(sbcl-package->ecl-package sbcl-sb-cga))
(define-public sbcl-mathkit
(let ((commit "fd884f94b36ef5e9bc19459ad0b3cda6303d2a2a"))
(package
(name "sbcl-mathkit")
(version (git-version "0.0" "1" commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/lispgames/mathkit/")
(commit commit)))
(file-name (git-file-name "cl-mathkit" version))
(sha256
(base32 "174y6ndmf52h8sml87qjfl48llmynvdizzk2h0mr85zbaysx73i3"))))
(build-system asdf-build-system/sbcl)
(inputs
(list sbcl-alexandria
sbcl-sb-cga))
(home-page "https://github.com/lispgames/mathkit/")
(synopsis "Pure math functions useful for games, 3D, and GL in general")
(description
"This is a purely math-related utility kit, providing functions which
can be useful for games, 3D, and GL in general.")
(license license:expat))))
(define-public cl-mathkit
(sbcl-package->cl-source-package sbcl-mathkit))
(define-public ecl-mathkit
(sbcl-package->ecl-package sbcl-mathkit))