gnu: sbcl-alexandria: Update to 1.1.

* gnu/packages/lisp-xyz.scm (sbcl-alexandria): Update to 1.1.
This commit is contained in:
Guillaume Le Vaillant 2020-07-01 11:18:42 +02:00
parent d2a34ebae0
commit 012bdf2e61
No known key found for this signature in database
GPG Key ID: 6BE8208ADF21FE3F

View File

@ -74,30 +74,29 @@
#:use-module (srfi srfi-19)) #:use-module (srfi srfi-19))
(define-public sbcl-alexandria (define-public sbcl-alexandria
(let ((commit "5e5c7d83090cc0fbf32c4628362ac3ce2c50dc59")) (package
(package (name "sbcl-alexandria")
(name "sbcl-alexandria") (version "1.1")
(version "1.0.1") (source
(source (origin
(origin (method git-fetch)
(method git-fetch) (uri (git-reference
(uri (git-reference (url "https://gitlab.common-lisp.net/alexandria/alexandria.git")
(url "https://gitlab.common-lisp.net/alexandria/alexandria.git") (commit (string-append "v" version))))
(commit commit))) (sha256
(sha256 (base32
(base32 "1zanb3xa98js0i66iqcmx3gp123p1m2d1fxn8d7bfzyfad5f6xn2"))
"010w8829dq28jf8ajfzas9nfvpxa5bal04mg299xq6y9spihc2iz")) (file-name (git-file-name name version))))
(file-name (git-file-name name version)))) (build-system asdf-build-system/sbcl)
(build-system asdf-build-system/sbcl) (native-inputs
(native-inputs `(("rt" ,sbcl-rt)))
`(("rt" ,sbcl-rt))) (synopsis "Collection of portable utilities for Common Lisp")
(synopsis "Collection of portable utilities for Common Lisp") (description
(description "Alexandria is a collection of portable utilities. It does not contain
"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))