diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2021-12-05 12:55:19 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2021-12-05 15:04:04 +0100 |
commit | 8ae33d6844dd8886ca2032fcd4eb80e6cefe6128 (patch) | |
tree | c1affa0a61bfeb1b70a7f9a080306547fd91dd00 /gnu/packages/bioinformatics.scm | |
parent | c973107a25f035bd79e2c13030812822db1b5e71 (diff) | |
download | guix-8ae33d6844dd8886ca2032fcd4eb80e6cefe6128.tar.gz guix-8ae33d6844dd8886ca2032fcd4eb80e6cefe6128.zip |
gnu: kraken2: Remove reference to %outputs.
* gnu/packages/bioinformatics.scm (kraken2)[arguments]: Remove reference to
%outputs by using a gexp.
Diffstat (limited to 'gnu/packages/bioinformatics.scm')
-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 67baaf3035..2f47cd6cb8 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -14695,9 +14695,9 @@ international community.") (build-system gnu-build-system) (arguments `(#:tests? #false ; there are none - #:make-flags (list "-C" "src" - (string-append "KRAKEN2_DIR=" - (assoc-ref %outputs "out") "/bin")) + #:make-flags + ,#~(list "-C" "src" + (string-append "KRAKEN2_DIR=" #$output "/bin")) #:phases (modify-phases %standard-phases (delete 'configure) |