diff options
author | zimoun <zimon.toutoune@gmail.com> | 2021-11-16 19:51:52 +0100 |
---|---|---|
committer | Julien Lepiller <julien@lepiller.eu> | 2021-11-18 04:22:21 +0100 |
commit | 5d7d64ff8567abb32defbf00038fab789353a8d5 (patch) | |
tree | 4e54561f69aa624f830cc1d5c28518afcabe24be /gnu/packages/coq.scm | |
parent | 7b93c6d77786c27171900045f62be0fce69432f7 (diff) | |
download | guix-5d7d64ff8567abb32defbf00038fab789353a8d5.tar.gz |
gnu: coq-autosubst: Adjust '#:make-flags'.
* gnu/packages/coq.scm (coq-autosubst)[arguments]<#:make-flags>: Set install destination. <#:phases>: Remove replace 'install. Signed-off-by: Julien Lepiller <julien@lepiller.eu>
Diffstat (limited to 'gnu/packages/coq.scm')
-rw-r--r-- | gnu/packages/coq.scm | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/gnu/packages/coq.scm b/gnu/packages/coq.scm index 602a2d305d..fc739a0475 100644 --- a/gnu/packages/coq.scm +++ b/gnu/packages/coq.scm @@ -502,16 +502,12 @@ Coq proof assistant.") (build-system gnu-build-system) (arguments `(#:tests? #f + #:make-flags (list (string-append "COQLIBINSTALL=" + (assoc-ref %outputs "out") + "/lib/coq/user-contrib")) #:phases (modify-phases %standard-phases - (delete 'configure) - (replace 'install - (lambda* (#:key outputs #:allow-other-keys) - (setenv "COQLIB" (string-append (assoc-ref outputs "out") "/lib/coq/")) - (invoke "make" - (string-append "COQLIB=" (assoc-ref outputs "out") - "/lib/coq/") - "install")))))) + (delete 'configure)))) (native-inputs `(("coq" ,coq))) (home-page "https://www.ps.uni-saarland.de/autosubst/") |