mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-08 07:56:16 -05:00
gnu: Add arrows.
* gnu/packages/lisp.scm (cl-arrows, sbcl-arrows, ecl-arrows): New variables.
This commit is contained in:
parent
3de2031097
commit
f733862cc9
1 changed files with 32 additions and 0 deletions
|
@ -7720,3 +7720,35 @@ (define-public sbcl-serapeum
|
|||
|
||||
(define-public cl-serapeum
|
||||
(sbcl-package->cl-source-package sbcl-serapeum))
|
||||
|
||||
(define-public sbcl-arrows
|
||||
(let ((commit "df7cf0067e0132d9697ac8b1a4f1b9c88d4f5382")
|
||||
(revision "0"))
|
||||
(package
|
||||
(name "sbcl-arrows")
|
||||
(version (git-version "0.2.0" revision commit))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://gitlab.com/Harleqin/arrows.git")
|
||||
(commit commit)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"042k9vkssrqx9nhp14wdzm942zgdxvp35mba0p2syz98i75im2yy"))))
|
||||
(build-system asdf-build-system/sbcl)
|
||||
(native-inputs
|
||||
`(("hu.dwim.stefil" ,sbcl-hu.dwim.stefil)))
|
||||
(synopsis "Clojure-like arrow macros for Common Lisp")
|
||||
(description
|
||||
"This library implements the @code{->} and @code{->>} macros from
|
||||
Clojure, as well as several expansions on the idea.")
|
||||
(home-page "https://gitlab.com/Harleqin/arrows")
|
||||
(license license:public-domain))))
|
||||
|
||||
(define-public cl-arrows
|
||||
(sbcl-package->cl-source-package sbcl-arrows))
|
||||
|
||||
(define-public ecl-arrows
|
||||
(sbcl-package->ecl-package sbcl-arrows))
|
||||
|
|
Loading…
Reference in a new issue