diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2021-12-04 00:16:10 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2021-12-04 00:16:10 +0100 |
commit | 7c2ee273600a6a39f08bbef9d9fd4497f0bcbbb5 (patch) | |
tree | 9e52f94f2a703928edfd4bf4bdba39692fd10ad1 | |
parent | 64aafe4bc50a39ade66674b487ebc5061905748a (diff) | |
download | guix-7c2ee273600a6a39f08bbef9d9fd4497f0bcbbb5.tar guix-7c2ee273600a6a39f08bbef9d9fd4497f0bcbbb5.tar.gz |
gnu: fastp: Replace reference to %outputs.
* gnu/packages/bioinformatics.scm (fastp)[arguments]: Use a gexp.
-rw-r--r-- | gnu/packages/bioinformatics.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index ce9bede479..52d8d80967 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -4866,7 +4866,7 @@ The main functions of FastQC are: (arguments `(#:tests? #f ; there are none #:make-flags - (list (string-append "PREFIX=" (assoc-ref %outputs "out"))) + ,#~(list (string-append "PREFIX=" #$output)) #:phases (modify-phases %standard-phases (delete 'configure) |