diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2021-12-04 15:31:31 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2021-12-04 15:31:31 +0100 |
commit | 88bb81b51511ed3567c5dd570c95115067fcc16b (patch) | |
tree | 081d6f7744d64c83536ef88037c0a415984d0019 | |
parent | e9201011417cca9cdbbd20acc637a3d241abcc68 (diff) | |
download | guix-88bb81b51511ed3567c5dd570c95115067fcc16b.tar.gz guix-88bb81b51511ed3567c5dd570c95115067fcc16b.zip |
gnu: plink: Remove reference to %build-inputs.
* gnu/packages/bioinformatics.scm (plink)[arguments]: Use a gexp to replace
reference to %build-inputs.
-rw-r--r-- | gnu/packages/bioinformatics.scm | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 5617f5e7e0..f69df5ddd0 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -6721,14 +6721,14 @@ accessed/downloaded on demand across HTTP.") "plink-endian-detection.patch")))) (build-system gnu-build-system) (arguments - '(#:tests? #f ;no "check" target - #:make-flags (list (string-append "LIB_LAPACK=" - (assoc-ref %build-inputs "lapack") - "/lib/liblapack.so") - "WITH_LAPACK=1" - "FORCE_DYNAMIC=1" - ;; disable phoning home - "WITH_WEBCHECK=") + `(#:tests? #f ;no "check" target + #:make-flags ,#~(list (string-append "LIB_LAPACK=" + #$(this-package-input "lapack") + "/lib/liblapack.so") + "WITH_LAPACK=1" + "FORCE_DYNAMIC=1" + ;; disable phoning home + "WITH_WEBCHECK=") #:phases (modify-phases %standard-phases ;; no "configure" script |