guix-commits
[Top][All Lists]
Advanced

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

03/06: gnu: filtlong: Remove trailing #T from build phases.


From: guix-commits
Subject: 03/06: gnu: filtlong: Remove trailing #T from build phases.
Date: Fri, 6 Jan 2023 08:07:21 -0500 (EST)

rekado pushed a commit to branch master
in repository guix.

commit f5ffcd31c2ea55423ec762e1a5f653cd2af69c85
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Fri Jan 6 13:58:05 2023 +0100

    gnu: filtlong: Remove trailing #T from build phases.
    
    * gnu/packages/bioinformatics.scm (filtlong)[arguments]: Remove trailing #T.
---
 gnu/packages/bioinformatics.scm | 9 +++------
 1 file changed, 3 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index e92611ce15..164a2c621a 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -14332,21 +14332,18 @@ phase + query phase).")
                       (scripts (string-append out "/share/filtlong/scripts")))
                  (install-file "bin/filtlong" bin)
                  (install-file "scripts/histogram.py" scripts)
-                 (install-file "scripts/read_info_histograms.sh" scripts))
-               #t))
+                 (install-file "scripts/read_info_histograms.sh" scripts))))
            (add-after 'install 'wrap-program
              (lambda* (#:key inputs outputs #:allow-other-keys)
                (let* ((out (assoc-ref outputs "out"))
                       (path (getenv "GUIX_PYTHONPATH")))
                  (wrap-program (string-append out
                                               
"/share/filtlong/scripts/histogram.py")
-                   `("GUIX_PYTHONPATH" ":" prefix (,path))))
-               #t))
+                   `("GUIX_PYTHONPATH" ":" prefix (,path))))))
            (add-before 'check 'patch-tests
              (lambda _
                (substitute* "scripts/read_info_histograms.sh"
-                 (("awk") (which "gawk")))
-               #t)))))
+                 (("awk") (which "gawk"))))))))
       (inputs
        `(("gawk" ,gawk)                 ;for read_info_histograms.sh
          ("python" ,python-2)           ;required for histogram.py



reply via email to

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