Archived
1
0
Fork 0

gnu: coq-stdpp: Update to 1.2.1.

* gnu/packages/coq.scm (coq-stdpp): Update to 1.2.1.
[arguments]: Remove redundant COQLIB variable.
This commit is contained in:
Brett Gilio 2020-01-07 13:02:36 -06:00
parent 14af514bf0
commit d2884b7fef
No known key found for this signature in database
GPG key ID: 672243C4A03F0EEE

View file

@ -589,7 +589,7 @@ kernel.")
(define-public coq-stdpp (define-public coq-stdpp
(package (package
(name "coq-stdpp") (name "coq-stdpp")
(version "1.2.0") (version "1.2.1")
(synopsis "Alternative Coq standard library std++") (synopsis "Alternative Coq standard library std++")
(source (origin (source (origin
(method git-fetch) (method git-fetch)
@ -598,7 +598,8 @@ kernel.")
(commit (string-append "coq-stdpp-" version)))) (commit (string-append "coq-stdpp-" version))))
(file-name (git-file-name name version)) (file-name (git-file-name name version))
(sha256 (sha256
(base32 "11m7kqxsbxygk41v2wsi3npdzwin9fcnzc1gn0gq0rd57wnqk83i")))) (base32
"1lczybg1jq9drbi8nzrlb0k199x4n07aawjwfzrl3qqc0w8kmvdz"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(inputs (inputs
`(("coq" ,coq))) `(("coq" ,coq)))
@ -609,7 +610,6 @@ kernel.")
(delete 'configure) (delete 'configure)
(replace 'install (replace 'install
(lambda* (#:key outputs #:allow-other-keys) (lambda* (#:key outputs #:allow-other-keys)
(setenv "COQLIB" (string-append (assoc-ref outputs "out") "/lib/coq/"))
(invoke "make" (invoke "make"
(string-append "COQLIB=" (assoc-ref outputs "out") (string-append "COQLIB=" (assoc-ref outputs "out")
"/lib/coq/") "/lib/coq/")