guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

05/05: gnu: jellyfish: Remove confusing quoting syntax.


From: guix-commits
Subject: 05/05: gnu: jellyfish: Remove confusing quoting syntax.
Date: Mon, 13 Feb 2023 17:09:50 -0500 (EST)

rekado pushed a commit to branch master
in repository guix.

commit 67d2f688fb89553df53e73a4c584b1b9eb7d5c24
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Mon Feb 13 23:08:21 2023 +0100

    gnu: jellyfish: Remove confusing quoting syntax.
    
    * gnu/packages/bioinformatics.scm (jellyfish)[arguments]: Do not mix
    quasiquote with gexp.
---
 gnu/packages/bioinformatics.scm | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index e798489d41..c6eab671cb 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -5539,11 +5539,12 @@ experiments and provide highly stable thresholds based 
on reproducibility.")
     (outputs '("out"      ;for library
                "python")) ;for Python bindings
     (arguments
-     `(#:configure-flags
-       ,#~(list "--without-sse" ; configure script probes for CPU features 
when SSE is enabled.
-                (string-append "--enable-python-binding=" #$output:python))
-       #:phases
-       (modify-phases %standard-phases
+     (list
+      #:configure-flags
+      #~(list "--without-sse" ; configure script probes for CPU features when 
SSE is enabled.
+              (string-append "--enable-python-binding=" #$output:python))
+      #:phases
+      '(modify-phases %standard-phases
          (add-before 'check 'set-SHELL-variable
            (lambda _
              ;; generator_manager.hpp either uses /bin/sh or $SHELL



reply via email to

[Prev in Thread] Current Thread [Next in Thread]