diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2021-12-04 00:32:01 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2021-12-04 00:32:01 +0100 |
commit | 114eb987cb0d636361a1957ef285159c9e13a2a5 (patch) | |
tree | 9959c9dbc36d924c2895a3594b65db86ddf03b5a | |
parent | 22d9097b5e34dc6648522ea1554f36f61f39b5f1 (diff) | |
download | guix-114eb987cb0d636361a1957ef285159c9e13a2a5.tar guix-114eb987cb0d636361a1957ef285159c9e13a2a5.tar.gz |
gnu: mash: Replace references to %build-inputs.
* gnu/packages/bioinformatics.scm (mash)[arguments]: Use a gexp.
-rw-r--r-- | gnu/packages/bioinformatics.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index d06ac2d905..979d26bed2 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -5311,9 +5311,9 @@ sequences).") (arguments `(#:tests? #f ; No tests. #:configure-flags - (list - (string-append "--with-capnp=" (assoc-ref %build-inputs "capnproto")) - (string-append "--with-gsl=" (assoc-ref %build-inputs "gsl"))) + ,#~(list + (string-append "--with-capnp=" #$(this-package-input "capnproto")) + (string-append "--with-gsl=" #$(this-package-input "gsl"))) #:make-flags (list "CC=gcc") #:phases (modify-phases %standard-phases |