mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-19 13:17:10 -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
|
(arguments
|
||||||
`(#:tests? #f ;no "check" target
|
`(#:tests? #f ;no "check" target
|
||||||
#:make-flags
|
#:make-flags
|
||||||
(list (string-append "BOOST="
|
,#~(list (string-append "BOOST="
|
||||||
(assoc-ref %build-inputs "boost")
|
#$(this-package-input "boost")
|
||||||
"/include/")
|
"/include/")
|
||||||
(string-append "SAMHEADERS="
|
(string-append "SAMHEADERS="
|
||||||
(assoc-ref %build-inputs "htslib")
|
#$(this-package-input "htslib")
|
||||||
"/include/htslib/sam.h")
|
"/include/htslib/sam.h")
|
||||||
(string-append "SAMLIBS="
|
(string-append "SAMLIBS="
|
||||||
(assoc-ref %build-inputs "htslib")
|
#$(this-package-input "htslib")
|
||||||
"/lib/libhts.so"))
|
"/lib/libhts.so"))
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
;; No "configure" script.
|
;; No "configure" script.
|
||||||
|
|
Loading…
Reference in a new issue