[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/01: gnu: vsearch: Restrict supported systems to x86_64-linux.
From: |
Andreas Enge |
Subject: |
01/01: gnu: vsearch: Restrict supported systems to x86_64-linux. |
Date: |
Sat, 03 Oct 2015 12:01:30 +0000 |
andreas pushed a commit to branch master
in repository guix.
commit 6f04e515604d481873205aa9e16a7c96a3cb7bd5
Author: Ben Woodcroft <address@hidden>
Date: Sat Oct 3 11:46:22 2015 +1000
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 <address@hidden>
---
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 b04c288..0e0a886 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))))