mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-10 05:09:33 -05:00
gnu: qtltools: Replace references to %build-inputs.
* gnu/packages/bioinformatics.scm (qtltools)[arguments]: Use a gexp instead of referencing %build-inputs.
This commit is contained in:
parent
6d4f260166
commit
a5663a7c8a
1 changed files with 14 additions and 14 deletions
|
@ -1514,19 +1514,19 @@ (define-public qtltools
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ; no tests included
|
`(#:tests? #f ; no tests included
|
||||||
#:make-flags
|
#:make-flags
|
||||||
(list (string-append "BOOST_INC="
|
,#~(list (string-append "BOOST_INC="
|
||||||
(assoc-ref %build-inputs "boost") "/include")
|
#$(this-package-input "boost") "/include")
|
||||||
(string-append "BOOST_LIB="
|
(string-append "BOOST_LIB="
|
||||||
(assoc-ref %build-inputs "boost") "/lib")
|
#$(this-package-input "boost") "/lib")
|
||||||
(string-append "HTSLD_INC="
|
(string-append "HTSLD_INC="
|
||||||
(assoc-ref %build-inputs "htslib") "/include")
|
#$(this-package-input "htslib") "/include")
|
||||||
(string-append "HTSLD_LIB="
|
(string-append "HTSLD_LIB="
|
||||||
(assoc-ref %build-inputs "htslib") "/lib")
|
#$(this-package-input "htslib") "/lib")
|
||||||
(string-append "RMATH_INC="
|
(string-append "RMATH_INC="
|
||||||
(assoc-ref %build-inputs "rmath-standalone")
|
#$(this-package-input "rmath-standalone")
|
||||||
"/include")
|
"/include")
|
||||||
(string-append "RMATH_LIB="
|
(string-append "RMATH_LIB="
|
||||||
(assoc-ref %build-inputs "rmath-standalone")
|
#$(this-package-input "rmath-standalone")
|
||||||
"/lib"))
|
"/lib"))
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
|
|
Loading…
Reference in a new issue