guix-commits
[Top][All Lists]
Advanced

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

04/11: gnu: seqan-2: Use gexp for builder.


From: guix-commits
Subject: 04/11: gnu: seqan-2: Use gexp for builder.
Date: Sat, 4 Dec 2021 13:54:55 -0500 (EST)

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

commit 2c1c75a56cffbb1a9ba4c1fc6266fc4bff47ea22
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Sat Dec 4 19:39:19 2021 +0100

    gnu: seqan-2: Use gexp for builder.
    
    * gnu/packages/bioinformatics.scm (seqan-2)[arguments]: Use a gexp to remove
    references to %build-inputs and %outputs.
---
 gnu/packages/bioinformatics.scm | 23 +++++++++++------------
 1 file changed, 11 insertions(+), 12 deletions(-)

diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 8b3f1af..1a524e0 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -7094,18 +7094,17 @@ bioinformatics file formats, sequence alignment, and 
more.")
     (arguments
      `(#:modules ((guix build utils))
        #:builder
-       (begin
-         (use-modules (guix build utils))
-         (let ((tar (assoc-ref %build-inputs "tar"))
-               (xz  (assoc-ref %build-inputs "xz"))
-               (out (assoc-ref %outputs "out"))
-               (doc (assoc-ref %outputs "doc")))
-           (setenv "PATH" (string-append tar "/bin:" xz "/bin"))
-           (invoke "tar" "xvf" (assoc-ref %build-inputs "source"))
-           (chdir (string-append "seqan-library-" ,version))
-           (copy-recursively "include" (string-append out "/include"))
-           (copy-recursively "share"  (string-append doc "/share"))
-           #t))))
+       ,#~(begin
+            (use-modules (guix build utils))
+            (let ((tar #$(this-package-native-input "tar"))
+                  (xz  #$(this-package-native-input "xz"))
+                  (out #$output)
+                  (doc #$output:doc))
+              (setenv "PATH" (string-append tar "/bin:" xz "/bin"))
+              (invoke "tar" "xvf" #$(this-package-native-input "source"))
+              (chdir (string-append "seqan-library-" #$version))
+              (copy-recursively "include" (string-append out "/include"))
+              (copy-recursively "share"  (string-append doc "/share"))))))
     (native-inputs
      `(("source" ,source)
        ("tar" ,tar)



reply via email to

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