gnu: Add arrows.

* gnu/packages/lisp.scm (cl-arrows, sbcl-arrows, ecl-arrows): New variables.
This commit is contained in:
Guillaume Le Vaillant 2019-10-15 13:54:15 +02:00 committed by Pierre Neidhardt
parent 3de2031097
commit f733862cc9
No known key found for this signature in database
GPG key ID: 9BDCF497A4BBCC7F

View file

@ -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))