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:
Ricardo Wurmus 2021-12-03 23:26:48 +01:00
parent 6d4f260166
commit a5663a7c8a
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -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