diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2021-12-04 19:42:12 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2021-12-04 19:54:28 +0100 |
commit | 502538c6e40897216397cd69cb5f3bace17ecddb (patch) | |
tree | 250718fba458c5a34b8eeb99e6b45df3a03536c0 /gnu | |
parent | 2657bdc100a285d73b02a26a5fcaad80010b75f6 (diff) | |
download | guix-502538c6e40897216397cd69cb5f3bace17ecddb.tar.gz |
gnu: emboss: Remove reference to %build-inputs.
* gnu/packages/bioinformatics.scm (emboss)[arguments]: Use gexp to remove reference to %build-inputs.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/bioinformatics.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 4fef4384e8..9aa0e95b2c 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -8666,8 +8666,8 @@ factors bound at the specific regions.") (build-system gnu-build-system) (arguments `(#:configure-flags - (list (string-append "--with-hpdf=" - (assoc-ref %build-inputs "libharu"))) + ,#~(list (string-append "--with-hpdf=" + #$(this-package-input "libharu"))) #:phases (modify-phases %standard-phases (add-after 'unpack 'fix-checks |