me
/
guix
Archived
1
0
Fork 0

gnu: ataqv: Remove references to %outputs and %build-inputs.

* gnu/packages/bioinformatics.scm (ataqv)[arguments]: Remove references to
%outputs and %build-inputs by using a gexp.
master
Ricardo Wurmus 2021-12-05 12:52:04 +01:00
parent 03ca627b09
commit dc4b4d4d95
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 5 additions and 5 deletions

View File

@ -13771,11 +13771,11 @@ on the needs of the user.")
(build-system gnu-build-system)
(arguments
`(#:make-flags
(list (string-append "prefix=" (assoc-ref %outputs "out"))
(string-append "BOOST_ROOT="
(assoc-ref %build-inputs "boost"))
(string-append "HTSLIB_ROOT="
(assoc-ref %build-inputs "htslib")))
,#~(list (string-append "prefix=" #$output)
(string-append "BOOST_ROOT="
#$(this-package-input "boost"))
(string-append "HTSLIB_ROOT="
#$(this-package-input "htslib")))
#:test-target "test"
#:phases
(modify-phases %standard-phases