gnu: cl-alexandria: Update to 1.4-0.009b7e5.
* gnu/packages/lisp-xyz.scm (sbcl-alexandria): Update to 1.4-0.009b7e5. [file-name]: Rename to cl-alexandria. Move above sha256. Change-Id: I7122aff13715d24e99a58fa4b55b0ef012ae8c40 Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
This commit is contained in:
parent
4440ba3f6e
commit
466975efea
1 changed files with 22 additions and 21 deletions
|
@ -168,29 +168,30 @@
|
||||||
(sbcl-package->ecl-package sbcl-alexandria-plus))
|
(sbcl-package->ecl-package sbcl-alexandria-plus))
|
||||||
|
|
||||||
(define-public sbcl-alexandria
|
(define-public sbcl-alexandria
|
||||||
(package
|
(let ((commit "009b7e532071d9777bdbd63b82d776555da95916")
|
||||||
(name "sbcl-alexandria")
|
(revision "0"))
|
||||||
(version "1.4")
|
(package
|
||||||
(source
|
(name "sbcl-alexandria")
|
||||||
(origin
|
(version (git-version "1.4" revision commit))
|
||||||
(method git-fetch)
|
(source
|
||||||
(uri (git-reference
|
(origin
|
||||||
(url "https://gitlab.common-lisp.net/alexandria/alexandria.git")
|
(method git-fetch)
|
||||||
(commit (string-append "v" version))))
|
(uri (git-reference
|
||||||
(sha256
|
(url "https://gitlab.common-lisp.net/alexandria/alexandria.git")
|
||||||
(base32
|
(commit commit)))
|
||||||
"0r1adhvf98h0104vq14q7y99h0hsa8wqwqw92h7ghrjxmsvz2z6l"))
|
(file-name (git-file-name "cl-alexandria" version))
|
||||||
(file-name (git-file-name name version))))
|
(sha256
|
||||||
(build-system asdf-build-system/sbcl)
|
(base32 "0pdj779j3nwzn8f1661vf00rrjrbks1xgiq0rvwjw6qyxsfqfnl9"))))
|
||||||
(native-inputs
|
(build-system asdf-build-system/sbcl)
|
||||||
(list sbcl-rt))
|
(native-inputs
|
||||||
(synopsis "Collection of portable utilities for Common Lisp")
|
(list sbcl-rt))
|
||||||
(description
|
(synopsis "Collection of portable utilities for Common Lisp")
|
||||||
"Alexandria is a collection of portable utilities. It does not contain
|
(description
|
||||||
|
"Alexandria is a collection of portable utilities. It does not contain
|
||||||
conceptual extensions to Common Lisp. It is conservative in scope, and
|
conceptual extensions to Common Lisp. It is conservative in scope, and
|
||||||
portable between implementations.")
|
portable between implementations.")
|
||||||
(home-page "https://common-lisp.net/project/alexandria/")
|
(home-page "https://common-lisp.net/project/alexandria/")
|
||||||
(license license:public-domain)))
|
(license license:public-domain))))
|
||||||
|
|
||||||
(define-public cl-alexandria
|
(define-public cl-alexandria
|
||||||
(sbcl-package->cl-source-package sbcl-alexandria))
|
(sbcl-package->cl-source-package sbcl-alexandria))
|
||||||
|
|
Reference in a new issue