gnu: kraken2: Remove reference to %outputs.

* gnu/packages/bioinformatics.scm (kraken2)[arguments]: Remove reference to
%outputs by using a gexp.
This commit is contained in:
Ricardo Wurmus 2021-12-05 12:55:19 +01:00
parent c973107a25
commit 8ae33d6844
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -14695,9 +14695,9 @@ (define-public kraken2
(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)