gnu: sailfish: Remove references to %build-inputs.
* gnu/packages/bioinformatics.scm (sailfish)[arguments]: Use a gexp to remove references to %build-inputs.master
parent
39e2a84f52
commit
98d2abe523
|
@ -9996,23 +9996,23 @@ dependency like SeqAn.")
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:configure-flags
|
`(#:configure-flags
|
||||||
(list (string-append "-DBOOST_INCLUDEDIR="
|
,#~(list (string-append "-DBOOST_INCLUDEDIR="
|
||||||
(assoc-ref %build-inputs "boost")
|
#$(this-package-input "boost")
|
||||||
"/include/")
|
"/include/")
|
||||||
(string-append "-DBOOST_LIBRARYDIR="
|
(string-append "-DBOOST_LIBRARYDIR="
|
||||||
(assoc-ref %build-inputs "boost")
|
#$(this-package-input "boost")
|
||||||
"/lib/")
|
"/lib/")
|
||||||
(string-append "-DBoost_LIBRARIES="
|
(string-append "-DBoost_LIBRARIES="
|
||||||
"-lboost_iostreams "
|
"-lboost_iostreams "
|
||||||
"-lboost_filesystem "
|
"-lboost_filesystem "
|
||||||
"-lboost_system "
|
"-lboost_system "
|
||||||
"-lboost_thread "
|
"-lboost_thread "
|
||||||
"-lboost_timer "
|
"-lboost_timer "
|
||||||
"-lboost_chrono "
|
"-lboost_chrono "
|
||||||
"-lboost_program_options")
|
"-lboost_program_options")
|
||||||
"-DBoost_FOUND=TRUE"
|
"-DBoost_FOUND=TRUE"
|
||||||
;; Don't download RapMap---we already have it!
|
;; Don't download RapMap---we already have it!
|
||||||
"-DFETCHED_RAPMAP=1")
|
"-DFETCHED_RAPMAP=1")
|
||||||
;; Tests must be run after installation and the location of the test
|
;; Tests must be run after installation and the location of the test
|
||||||
;; data file must be overridden. But the tests fail. It looks like
|
;; data file must be overridden. But the tests fail. It looks like
|
||||||
;; they are not really meant to be run.
|
;; they are not really meant to be run.
|
||||||
|
|
Reference in New Issue