gnu: rsem: Remove references to %build-inputs.

* gnu/packages/bioinformatics.scm (rsem)[arguments]: Use a gexp.
This commit is contained in:
Ricardo Wurmus 2021-12-04 15:26:01 +01:00
parent 23975fe27a
commit 5e0bcba57b
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -6137,15 +6137,15 @@ (define-public rsem
(arguments
`(#:tests? #f ;no "check" target
#:make-flags
(list (string-append "BOOST="
(assoc-ref %build-inputs "boost")
"/include/")
(string-append "SAMHEADERS="
(assoc-ref %build-inputs "htslib")
"/include/htslib/sam.h")
(string-append "SAMLIBS="
(assoc-ref %build-inputs "htslib")
"/lib/libhts.so"))
,#~(list (string-append "BOOST="
#$(this-package-input "boost")
"/include/")
(string-append "SAMHEADERS="
#$(this-package-input "htslib")
"/include/htslib/sam.h")
(string-append "SAMLIBS="
#$(this-package-input "htslib")
"/lib/libhts.so"))
#:phases
(modify-phases %standard-phases
;; No "configure" script.