mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add cl-gtype.
* gnu/packages/lisp-xyz.scm (sbcl-gtype, cl-gtype): New variables. Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
This commit is contained in:
parent
6e0f2b959a
commit
5ce7d1861a
1 changed files with 40 additions and 0 deletions
|
@ -10503,3 +10503,43 @@ additional form that is considered as a candidate for a constant.")
|
||||||
|
|
||||||
(define-public cl-constantfold
|
(define-public cl-constantfold
|
||||||
(sbcl-package->cl-source-package sbcl-constantfold))
|
(sbcl-package->cl-source-package sbcl-constantfold))
|
||||||
|
|
||||||
|
(define-public sbcl-gtype
|
||||||
|
(let ((commit "42275e3606242ae91e9c8dfa30c18ced50a35b66")
|
||||||
|
(revision "1"))
|
||||||
|
(package
|
||||||
|
(name "sbcl-gtype")
|
||||||
|
(version (git-version "0.1" revision commit))
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/numcl/gtype.git")
|
||||||
|
(commit commit)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1f56dba998v945jcxhha391557n6md1ql25b7icfwwfivhmlaa9b"))))
|
||||||
|
(build-system asdf-build-system/sbcl)
|
||||||
|
(synopsis "C++/Julia-like parametric types in Common Lisp")
|
||||||
|
(description
|
||||||
|
"Support library for numcl that provides Julia-like runtime parametric
|
||||||
|
type correctness in Common Lisp. It is based on CLtL2 extensions.")
|
||||||
|
(home-page "https://github.com/numcl/gtype")
|
||||||
|
(license license:lgpl3+)
|
||||||
|
(inputs
|
||||||
|
`(("trivialib.type-unify" ,sbcl-trivialib-type-unify)
|
||||||
|
("trivial-cltl2" ,sbcl-trivial-cltl2)
|
||||||
|
("trivia" ,sbcl-trivia)
|
||||||
|
("alexandria" ,sbcl-alexandria)
|
||||||
|
("iterate" ,sbcl-iterate)
|
||||||
|
("type-r" ,sbcl-type-r)))
|
||||||
|
(native-inputs
|
||||||
|
`(("fiveam" ,sbcl-fiveam)))
|
||||||
|
(arguments
|
||||||
|
`(#:asd-system-name "gtype"
|
||||||
|
#:asd-file "gtype.asd"
|
||||||
|
#:test-asd-file "gtype.test.asd")))))
|
||||||
|
|
||||||
|
(define-public cl-gtype
|
||||||
|
(sbcl-package->cl-source-package sbcl-gtype))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue