guix-commits
[Top][All Lists]
Advanced

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

02/05: gnu: fastp: Simplify.


From: guix-commits
Subject: 02/05: gnu: fastp: Simplify.
Date: Mon, 13 Feb 2023 17:09:49 -0500 (EST)

rekado pushed a commit to branch master
in repository guix.

commit 54b431b7b38c6148ee24b64e86bbbf1d57361584
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Mon Feb 13 22:36:55 2023 +0100

    gnu: fastp: Simplify.
    
    * gnu/packages/bioinformatics.scm (fastp)[arguments]: Simplify gexp.
---
 gnu/packages/bioinformatics.scm | 19 ++++++++++---------
 1 file changed, 10 insertions(+), 9 deletions(-)

diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 265697d625..4e16b0d39a 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -5337,15 +5337,16 @@ The main functions of FastQC are:
          "0ly8mxdvrcy23jwxyppysx3dhb1lwsqhfbgpyvargxhfk6k700x4"))))
     (build-system gnu-build-system)
     (arguments
-     `(#:tests? #f ; there are none
-       #:make-flags
-       ,#~(list (string-append "PREFIX=" #$output))
-       #:phases
-       (modify-phases %standard-phases
-         (delete 'configure)
-         (add-before 'install 'create-target-dir
-           (lambda* (#:key outputs #:allow-other-keys)
-             (mkdir-p (string-append (assoc-ref outputs "out") "/bin")))))))
+     (list
+      #:tests? #false                   ;there are none
+      #:make-flags
+      #~(list (string-append "PREFIX=" #$output))
+      #:phases
+      #~(modify-phases %standard-phases
+          (delete 'configure)
+          (add-before 'install 'create-target-dir
+            (lambda _
+              (mkdir-p (string-append #$output "/bin")))))))
     (inputs
      (list zlib))
     (home-page "https://github.com/OpenGene/fastp/";)



reply via email to

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