mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: yices: Use gexp variables.
* gnu/packages/maths.scm (yices): [phases] <fix-build-files>: Use gexp variable. Change-Id: If40f787e3c6535edd14aec833de8beff79213d95
This commit is contained in:
parent
a1cbc4e0ab
commit
aa0bb0990e
1 changed files with 2 additions and 3 deletions
|
@ -8181,7 +8181,7 @@ solver, that can compute Craig interpolants for various theories.")
|
|||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-after 'unpack 'fix-build-files
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(lambda _
|
||||
(substitute* "Makefile.build"
|
||||
(("SHELL=.*") "")
|
||||
(("/sbin/ldconfig") (which "ldconfig")))
|
||||
|
@ -8190,8 +8190,7 @@ solver, that can compute Craig interpolants for various theories.")
|
|||
(("/bin/ln") (which "ln"))
|
||||
(("/sbin/ldconfig") (which "ldconfig"))
|
||||
(("install_dir=.*")
|
||||
(string-append "install_dir="
|
||||
(assoc-ref outputs "out")))))))))
|
||||
(string-append "install_dir=" #$output))))))))
|
||||
(inputs (list cudd gmp gperf libpoly))
|
||||
(native-inputs (list autoconf automake bash-minimal))
|
||||
(home-page "https://yices.csl.sri.com/")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue