about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--gn/packages/bioinformatics.scm11
1 files changed, 6 insertions, 5 deletions
diff --git a/gn/packages/bioinformatics.scm b/gn/packages/bioinformatics.scm
index dba5f6f..71ea9c0 100644
--- a/gn/packages/bioinformatics.scm
+++ b/gn/packages/bioinformatics.scm
@@ -200,7 +200,7 @@ variants can be visualized using Delly-maze and Delly-suave.")
     (name "wfmash-x86-64-v2")
     (arguments
      (substitute-keyword-arguments (package-arguments wfmash)
-       ((#:configure-flags flags #~())
+       ((#:configure-flags flags #~'())
         #~(append (list "-DEXTRA_FLAGS=-march=x86-64-v2"
                         "-DCMAKE_INSTALL_LIBDIR=lib/glibc-hwcaps/x86-64-v2"
                         (string-append "-DCMAKE_INSTALL_RPATH=" #$output
@@ -221,7 +221,7 @@ variants can be visualized using Delly-maze and Delly-suave.")
     (name "wfmash-x86-64-v3")
     (arguments
      (substitute-keyword-arguments (package-arguments wfmash)
-       ((#:configure-flags flags #~())
+       ((#:configure-flags flags #~'())
         #~(append (list "-DEXTRA_FLAGS=-march=x86-64-v3"
                         "-DCMAKE_INSTALL_LIBDIR=lib/glibc-hwcaps/x86-64-v3"
                         (string-append "-DCMAKE_INSTALL_RPATH=" #$output
@@ -235,14 +235,14 @@ variants can be visualized using Delly-maze and Delly-suave.")
               (lambda _
                 (delete-file-recursively (string-append #$output "/bin"))))))))
     (supported-systems '("x86_64-linux"))
-    #;(properties `((hidden? . #t)))))
+    (properties `((hidden? . #t)))))
 
 (define-public wfmash-x86-64-v4
   (package/inherit wfmash
     (name "wfmash-x86-64-v4")
     (arguments
      (substitute-keyword-arguments (package-arguments wfmash)
-       ((#:configure-flags flags #~())
+       ((#:configure-flags flags #~'())
         #~(append (list "-DEXTRA_FLAGS=-march=x86-64-v4"
                         "-DCMAKE_INSTALL_LIBDIR=lib/glibc-hwcaps/x86-64-v4"
                         (string-append "-DCMAKE_INSTALL_RPATH=" #$output
@@ -286,7 +286,8 @@ variants can be visualized using Delly-maze and Delly-suave.")
      (modify-inputs (package-native-inputs wfmash)
                     (append wfmash-x86-64-v2
                             wfmash-x86-64-v3
-                            wfmash-x86-64-v4)))))
+                            wfmash-x86-64-v4)))
+    (properties `((tunable? . #f)))))
 
 (define-public freec
   (package