diff options
author | Ben Woodcroft <donttrustben@gmail.com> | 2015-10-03 11:46:22 +1000 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2015-10-03 13:59:11 +0200 |
commit | 6f04e515604d481873205aa9e16a7c96a3cb7bd5 (patch) | |
tree | 07ea27962ce57b2e9a72d6f5c357ab0d992f62c0 /gnu | |
parent | b8d953cbbdc66c4c315876fc4e9e8241f698bb04 (diff) | |
download | guix-6f04e515604d481873205aa9e16a7c96a3cb7bd5.tar guix-6f04e515604d481873205aa9e16a7c96a3cb7bd5.tar.gz |
gnu: vsearch: Restrict supported systems to x86_64-linux.
* gnu/packages/bioinformatics.scm (vsearch)[supported-systems]: Restrict
to x86_64-linux.
Signed-off-by: Andreas Enge <andreas@enge.fr>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/bioinformatics.scm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index b04c288967..0e0a886cc0 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -2766,6 +2766,9 @@ vectorization as well as multiple threads to perform accurate alignments at high speed. VSEARCH uses an optimal global aligner (full dynamic programming Needleman-Wunsch).") (home-page "https://github.com/torognes/vsearch") + ;; vsearch uses non-portable SSE intrinsics so building fails on other + ;; platforms. + (supported-systems '("x86_64-linux")) ;; Dual licensed; also includes public domain source. (license (list license:gpl3 license:bsd-2)))) |