mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-27 21:49:34 -05:00
gnu: Add cl-coalton.
* gnu/packages/lisp-xyz.scm (sbcl-coalton, cl-coalton, ecl-coalton): New variables. Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
This commit is contained in:
parent
ea9b1e3bab
commit
b749462ce7
1 changed files with 38 additions and 0 deletions
|
@ -15751,3 +15751,41 @@ (define-public ecl-abstract-classes
|
||||||
|
|
||||||
(define-public cl-abstract-classes
|
(define-public cl-abstract-classes
|
||||||
(sbcl-package->cl-source-package sbcl-abstract-classes))
|
(sbcl-package->cl-source-package sbcl-abstract-classes))
|
||||||
|
|
||||||
|
(define-public sbcl-coalton
|
||||||
|
(let ((commit "4a42ffb4222fde3abfd1b50d96e455ff2eef9fe8")
|
||||||
|
(revision "1"))
|
||||||
|
(package
|
||||||
|
(name "sbcl-coalton")
|
||||||
|
(version (git-version "0.0.0" revision commit))
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/stylewarning/coalton")
|
||||||
|
(commit commit)))
|
||||||
|
(file-name (git-file-name "coalton" version))
|
||||||
|
(sha256
|
||||||
|
(base32 "0aidwwam7cnhb3p9212zbv5w2dl6kr5iklzanypzr1a9lqaxwdlk"))))
|
||||||
|
(build-system asdf-build-system/sbcl)
|
||||||
|
(native-inputs
|
||||||
|
`(("fiasco" ,sbcl-fiasco)))
|
||||||
|
(inputs
|
||||||
|
`(("abstract-classes" ,sbcl-abstract-classes)
|
||||||
|
("alexandria" ,sbcl-alexandria)
|
||||||
|
("global-vars" ,sbcl-global-vars)
|
||||||
|
("optima" ,sbcl-optima)
|
||||||
|
("trivial-garbage" ,sbcl-trivial-garbage)))
|
||||||
|
(home-page "https://github.com/stylewarning/coalton")
|
||||||
|
(synopsis "Dialect of ML in Common Lisp")
|
||||||
|
(description
|
||||||
|
"Coalton is a dialect of ML embedded in Common Lisp. It emphasizes
|
||||||
|
practicality and interoperability with Lisp, and is intended to be a DSL that
|
||||||
|
allows one to gradually make their programs safer.")
|
||||||
|
(license license:expat))))
|
||||||
|
|
||||||
|
(define-public ecl-coalton
|
||||||
|
(sbcl-package->ecl-package sbcl-coalton))
|
||||||
|
|
||||||
|
(define-public cl-coalton
|
||||||
|
(sbcl-package->cl-source-package sbcl-coalton))
|
||||||
|
|
Loading…
Reference in a new issue