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) (build-system gnu-build-system)
(arguments (arguments
`(#:tests? #false ; there are none `(#:tests? #false ; there are none
#:make-flags (list "-C" "src" #:make-flags
(string-append "KRAKEN2_DIR=" ,#~(list "-C" "src"
(assoc-ref %outputs "out") "/bin")) (string-append "KRAKEN2_DIR=" #$output "/bin"))
#:phases #:phases
(modify-phases %standard-phases (modify-phases %standard-phases
(delete 'configure) (delete 'configure)