mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: Add cl-permutation.
* gnu/packages/lisp-xyz.scm (sbcl-cl-permutation, ecl-cl-permutation, cl-permutation): New variables. Change-Id: Ib5cf64fa1311e76bcf710d8f5f673226a3e410b6 Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
This commit is contained in:
parent
fe26fec331
commit
51e9f4bd99
1 changed files with 38 additions and 0 deletions
|
@ -20764,6 +20764,44 @@ (define-public ecl-cl-messagepack
|
||||||
(define-public cl-messagepack
|
(define-public cl-messagepack
|
||||||
(sbcl-package->cl-source-package sbcl-cl-messagepack))
|
(sbcl-package->cl-source-package sbcl-cl-messagepack))
|
||||||
|
|
||||||
|
(define-public sbcl-cl-permutation
|
||||||
|
(let ((commit "20c10e9ca56452d2fafc3ec0984dcdf78b4f4b19")
|
||||||
|
(revision "0"))
|
||||||
|
(package
|
||||||
|
(name "sbcl-cl-permutation")
|
||||||
|
(version (git-version "0.0.0" revision commit))
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/stylewarning/cl-permutation")
|
||||||
|
(commit commit)))
|
||||||
|
(file-name (git-file-name "cl-permutation" version))
|
||||||
|
(sha256
|
||||||
|
(base32 "0i932g0k50y24hxizni6zfya4kcw77yk3b0llivm9g50s7fxj9dk"))))
|
||||||
|
(build-system asdf-build-system/sbcl)
|
||||||
|
(native-inputs (list sbcl-fiasco))
|
||||||
|
(inputs
|
||||||
|
(list sbcl-alexandria
|
||||||
|
sbcl-bordeaux-fft
|
||||||
|
sbcl-cl-algebraic-data-type
|
||||||
|
sbcl-cl-cont
|
||||||
|
sbcl-closer-mop
|
||||||
|
sbcl-iterate
|
||||||
|
sbcl-priority-queue))
|
||||||
|
(synopsis "Permutations and permutation groups in Common Lisp")
|
||||||
|
(description
|
||||||
|
"This is a Commin Lisp library for operating on permutations and
|
||||||
|
permutation groups.")
|
||||||
|
(home-page "https://github.com/stylewarning/cl-permutation")
|
||||||
|
(license license:bsd-3))))
|
||||||
|
|
||||||
|
(define-public ecl-cl-permutation
|
||||||
|
(sbcl-package->ecl-package sbcl-cl-permutation))
|
||||||
|
|
||||||
|
(define-public cl-permutation
|
||||||
|
(sbcl-package->cl-source-package sbcl-cl-permutation))
|
||||||
|
|
||||||
(define-public sbcl-messagebox
|
(define-public sbcl-messagebox
|
||||||
(let ((commit "ea3688d9a9954bee7079c0173bc7b3f327021e9f")
|
(let ((commit "ea3688d9a9954bee7079c0173bc7b3f327021e9f")
|
||||||
(revision "1"))
|
(revision "1"))
|
||||||
|
|
Loading…
Reference in a new issue