mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: Add cl-piping.
* gnu/packages/lisp-xyz.scm (cl-piping, ecl-piping, sbcl-piping): New variables. Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
This commit is contained in:
parent
e05a36a823
commit
f7174a2889
1 changed files with 28 additions and 0 deletions
|
@ -1323,6 +1323,34 @@ (define-public cl-jpl-util
|
|||
(define-public ecl-jpl-util
|
||||
(sbcl-package->ecl-package sbcl-jpl-util))
|
||||
|
||||
(define-public sbcl-piping
|
||||
(let ((commit "c7a4163c00dea7e72bf6ad33d6abac0d5826a656")
|
||||
(revision "1"))
|
||||
(package
|
||||
(name "sbcl-piping")
|
||||
(version (git-version "2.0.0" revision commit))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/Shinmera/piping/")
|
||||
(commit commit)))
|
||||
(file-name (git-file-name "piping" version))
|
||||
(sha256
|
||||
(base32 "0in84qnfkynm36d4n4d6v87vprpi27xrydnga462wfhplji6klv5"))))
|
||||
(build-system asdf-build-system/sbcl)
|
||||
(home-page "https://shinmera.github.io/piping/")
|
||||
(synopsis "Library to enable simple message pipelines")
|
||||
(description
|
||||
"This is a Common Lisp library to enable simple message pipelines.")
|
||||
(license license:zlib))))
|
||||
|
||||
(define-public ecl-piping
|
||||
(sbcl-package->ecl-package sbcl-piping))
|
||||
|
||||
(define-public cl-piping
|
||||
(sbcl-package->cl-source-package sbcl-piping))
|
||||
|
||||
(define-public sbcl-jpl-queues
|
||||
(package
|
||||
(name "sbcl-jpl-queues")
|
||||
|
|
Loading…
Reference in a new issue