about summary refs log tree commit diff
diff options
context:
space:
mode:
authorEfraim Flashner2023-09-21 11:30:21 +0300
committerEfraim Flashner2023-09-21 11:30:21 +0300
commit91d55ae18950e470e32fbdbebd867196e691a82a (patch)
tree7a5ecf74002d20796d2b7f9f4fd66179954d9d1e
parent88f74e4ae05a562c4a4373b9e3b86bac4ea132b2 (diff)
downloadguix-bioinformatics-91d55ae18950e470e32fbdbebd867196e691a82a.tar.gz
wfmash: Fix typos.
-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