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:
Konrad Hinsen 2020-02-11 11:39:44 +01:00 committed by Guillaume Le Vaillant
parent 6e0f2b959a
commit 5ce7d1861a
No known key found for this signature in database
GPG key ID: 6BE8208ADF21FE3F

View file

@ -10503,3 +10503,43 @@ (define-public sbcl-constantfold
(define-public cl-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))