gnu: cl-environments: Update to 20200401.
* gnu/packages/lisp-xyz.scm (cl-environments): Update to 20200401. This includes the :tools package not present in 0.2.3.
This commit is contained in:
parent
acb9f7849f
commit
9f78a37f52
1 changed files with 27 additions and 26 deletions
|
@ -14376,36 +14376,37 @@ collecting values easier.")
|
||||||
(define-public cl-environments
|
(define-public cl-environments
|
||||||
;; TODO: asdf-build-system/sbcl fails here, why? See if it works with the
|
;; TODO: asdf-build-system/sbcl fails here, why? See if it works with the
|
||||||
;; build system revamp once staging is merged after 2020-11-09.
|
;; build system revamp once staging is merged after 2020-11-09.
|
||||||
(package
|
(let ((commit "bbcd958a9ff23ce3e6ea5f8ee2edad9634819a3a")) ; No version in 2 years.
|
||||||
(name "cl-environments")
|
(package
|
||||||
(version "0.2.3")
|
(name "cl-environments")
|
||||||
(source
|
(version (git-version "0.2.3" "1" commit))
|
||||||
(origin
|
(source
|
||||||
(method git-fetch)
|
(origin
|
||||||
(uri (git-reference
|
(method git-fetch)
|
||||||
(url "https://github.com/alex-gutev/cl-environments")
|
(uri (git-reference
|
||||||
(commit (string-append "v" version))))
|
(url "https://github.com/alex-gutev/cl-environments")
|
||||||
(file-name (git-file-name name version))
|
(commit commit)))
|
||||||
(sha256
|
(file-name (git-file-name name version))
|
||||||
(base32
|
(sha256
|
||||||
"08w364if2ivxwdarz44vwk0s61zk8l8pnrwskaghbrjg3his1nmd"))))
|
(base32
|
||||||
(build-system asdf-build-system/source)
|
"1pfxl3vcdrb4mjy4q4c3c7q95kzv6rfjif3hzd5q91i9z621d64r"))))
|
||||||
(propagated-inputs
|
(build-system asdf-build-system/source)
|
||||||
`(("alexandria" ,sbcl-alexandria)
|
(propagated-inputs
|
||||||
("anaphora" ,sbcl-anaphora)
|
`(("alexandria" ,cl-alexandria)
|
||||||
("collectors" ,sbcl-collectors)
|
("anaphora" ,cl-anaphora)
|
||||||
("optima" ,sbcl-optima)))
|
("collectors" ,cl-collectors)
|
||||||
(native-inputs
|
("optima" ,cl-optima)))
|
||||||
`(("prove" ,sbcl-prove)
|
(native-inputs
|
||||||
("prove-asdf" ,sbcl-prove-asdf)))
|
`(("prove" ,sbcl-prove)
|
||||||
(home-page "https://github.com/alex-gutev/cl-environments")
|
("prove-asdf" ,sbcl-prove-asdf)))
|
||||||
(synopsis "Implements the Common Lisp standard environment access API")
|
(home-page "https://github.com/alex-gutev/cl-environments")
|
||||||
(description "This library provides a uniform API, as specified in Common
|
(synopsis "Implements the Common Lisp standard environment access API")
|
||||||
|
(description "This library provides a uniform API, as specified in Common
|
||||||
Lisp the Language 2, for accessing information about variable and function
|
Lisp the Language 2, for accessing information about variable and function
|
||||||
bindings from implementation-defined lexical environment objects. All major
|
bindings from implementation-defined lexical environment objects. All major
|
||||||
Common Lisp implementations are supported, even those which don't support the
|
Common Lisp implementations are supported, even those which don't support the
|
||||||
CLTL2 environment access API.")
|
CLTL2 environment access API.")
|
||||||
(license license:expat)))
|
(license license:expat))))
|
||||||
|
|
||||||
(define-public sbcl-static-dispatch
|
(define-public sbcl-static-dispatch
|
||||||
(package
|
(package
|
||||||
|
|
Reference in a new issue