diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2021-10-24 21:37:39 +0000 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2021-10-24 21:37:39 +0000 |
commit | 1bf55a485028be4eca79300f914b8e2d12433e43 (patch) | |
tree | 936a9b478b87341c17e5b3e48ed854ad310b0e86 | |
parent | 43927832324872e4d1f547ad5c43df76bb58bbf3 (diff) | |
download | guix-1bf55a485028be4eca79300f914b8e2d12433e43.tar guix-1bf55a485028be4eca79300f914b8e2d12433e43.tar.gz |
gnu: sailfish: Remove trailing #T.
* gnu/packages/bioinformatics.scm (sailfish)[arguments]: Remove trailing #T in
build phases...
[inputs]: ...and in the origin snippet of "rapmap".
-rw-r--r-- | gnu/packages/bioinformatics.scm | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 72336e8324..0037112789 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -9569,13 +9569,11 @@ dependency like SeqAn.") (add-after 'unpack 'do-not-look-for-boost (lambda* (#:key inputs #:allow-other-keys) (substitute* "CMakeLists.txt" - (("find_package\\(Boost 1\\.53\\.0") "#")) - #t)) + (("find_package\\(Boost 1\\.53\\.0") "#")))) (add-after 'unpack 'do-not-assign-to-macro (lambda _ (substitute* "include/spdlog/details/format.cc" - (("const unsigned CHAR_WIDTH = 1;") "")) - #t)) + (("const unsigned CHAR_WIDTH = 1;") "")))) (add-after 'unpack 'prepare-rapmap (lambda* (#:key inputs #:allow-other-keys) (let ((src "external/install/src/rapmap/") @@ -9648,8 +9646,7 @@ dependency like SeqAn.") (snippet '(begin (delete-file-recursively "include/spdlog") (for-each delete-file '("include/xxhash.h" - "src/xxhash.c")) - #t)))) + "src/xxhash.c")))))) ("libdivsufsort" ,libdivsufsort) ("libgff" ,libgff) ("tbb" ,tbb) |