diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2021-12-04 19:53:18 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2021-12-04 19:54:28 +0100 |
commit | 98d2abe5230d53fc625d3654e521b5be0f0e1c51 (patch) | |
tree | 6f4356dc59de0f4ec32e740e306da61b2e0eb35d | |
parent | 39e2a84f52b86b4b63556eb8884f04a2e5026f1c (diff) | |
download | guix-98d2abe5230d53fc625d3654e521b5be0f0e1c51.tar.gz |
gnu: sailfish: Remove references to %build-inputs.
* gnu/packages/bioinformatics.scm (sailfish)[arguments]: Use a gexp to remove references to %build-inputs.
-rw-r--r-- | gnu/packages/bioinformatics.scm | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index d018131b6a..6486105b7c 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -9996,23 +9996,23 @@ dependency like SeqAn.") (build-system cmake-build-system) (arguments `(#:configure-flags - (list (string-append "-DBOOST_INCLUDEDIR=" - (assoc-ref %build-inputs "boost") - "/include/") - (string-append "-DBOOST_LIBRARYDIR=" - (assoc-ref %build-inputs "boost") - "/lib/") - (string-append "-DBoost_LIBRARIES=" - "-lboost_iostreams " - "-lboost_filesystem " - "-lboost_system " - "-lboost_thread " - "-lboost_timer " - "-lboost_chrono " - "-lboost_program_options") - "-DBoost_FOUND=TRUE" - ;; Don't download RapMap---we already have it! - "-DFETCHED_RAPMAP=1") + ,#~(list (string-append "-DBOOST_INCLUDEDIR=" + #$(this-package-input "boost") + "/include/") + (string-append "-DBOOST_LIBRARYDIR=" + #$(this-package-input "boost") + "/lib/") + (string-append "-DBoost_LIBRARIES=" + "-lboost_iostreams " + "-lboost_filesystem " + "-lboost_system " + "-lboost_thread " + "-lboost_timer " + "-lboost_chrono " + "-lboost_program_options") + "-DBoost_FOUND=TRUE" + ;; Don't download RapMap---we already have it! + "-DFETCHED_RAPMAP=1") ;; Tests must be run after installation and the location of the test ;; data file must be overridden. But the tests fail. It looks like ;; they are not really meant to be run. |