mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-19 05:07:11 -05:00
gnu: rsem: Remove references to %build-inputs.
* gnu/packages/bioinformatics.scm (rsem)[arguments]: Use a gexp.
This commit is contained in:
parent
23975fe27a
commit
5e0bcba57b
1 changed files with 9 additions and 9 deletions
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue