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

* gnu/packages/bioinformatics.scm (libsbml)[arguments]: Remove references to
%build-inputs by using a gexp.
This commit is contained in:
Ricardo Wurmus 2021-12-05 12:52:58 +01:00
parent dc4b4d4d95
commit 2b1e53850f
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC

View File

@ -14658,13 +14658,13 @@ The output is in SAM format.")
(arguments
`(#:test-target "test"
#:configure-flags
(list "-DWITH_CHECK=ON"
(string-append "-DLIBXML_LIBRARY="
(assoc-ref %build-inputs "libxml2")
"/lib/libxml2.so")
(string-append "-DLIBXML_INCLUDE_DIR="
(assoc-ref %build-inputs "libxml2")
"/include/libxml2"))))
,#~(list "-DWITH_CHECK=ON"
(string-append "-DLIBXML_LIBRARY="
#$(this-package-input "libxml2")
"/lib/libxml2.so")
(string-append "-DLIBXML_INCLUDE_DIR="
#$(this-package-input "libxml2")
"/include/libxml2"))))
(propagated-inputs
`(("libxml2" ,libxml2)))
(native-inputs