guix-commits
[Top][All Lists]
Advanced

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

02/11: gnu: preseq: Remove references to %outputs and %build-inputs.


From: guix-commits
Subject: 02/11: gnu: preseq: Remove references to %outputs and %build-inputs.
Date: Sat, 4 Dec 2021 13:54:54 -0500 (EST)

rekado pushed a commit to branch core-updates-frozen
in repository guix.

commit f33e490334de6347c4069d532474cf76229a242b
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Sat Dec 4 18:39:35 2021 +0100

    gnu: preseq: Remove references to %outputs and %build-inputs.
    
    * gnu/packages/bioinformatics.scm (preseq)[arguments]: Replace references to
    %outputs and %build-inputs by using a gexp.
---
 gnu/packages/bioinformatics.scm | 19 +++++++++----------
 1 file changed, 9 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index adc5ca5..cb2fb05 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -6883,16 +6883,15 @@ structures, classes for genomic regions, mapped 
sequencing reads, etc.")
        (modify-phases %standard-phases
          (delete 'configure))
        #:make-flags
-       (list (string-append "PREFIX="
-                            (assoc-ref %outputs "out"))
-             (string-append "LIBBAM="
-                            (assoc-ref %build-inputs "samtools")
-                            "/lib/libbam.a")
-             (string-append "SMITHLAB_CPP="
-                            (assoc-ref %build-inputs "smithlab-cpp")
-                            "/lib")
-             "PROGS=preseq"
-             "INCLUDEDIRS=$(SMITHLAB_CPP)/../include/smithlab-cpp 
$(SAMTOOLS_DIR)")))
+       ,#~(list (string-append "PREFIX=" #$output)
+                (string-append "LIBBAM="
+                               #$(this-package-input "samtools")
+                               "/lib/libbam.a")
+                (string-append "SMITHLAB_CPP="
+                               #$(this-package-input "smithlab-cpp")
+                               "/lib")
+                "PROGS=preseq"
+                "INCLUDEDIRS=$(SMITHLAB_CPP)/../include/smithlab-cpp 
$(SAMTOOLS_DIR)")))
     (inputs
      `(("gsl" ,gsl)
        ("samtools" ,samtools-0.1)



reply via email to

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