guix-commits
[Top][All Lists]
Advanced

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

03/11: gnu: sra-tools: Remove references to %build-inputs.


From: guix-commits
Subject: 03/11: gnu: sra-tools: Remove references to %build-inputs.
Date: Sat, 4 Dec 2021 13:54:55 -0500 (EST)

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

commit f41576c09f79f9ce14ed8aa7fb044c1b8fc6a28d
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Sat Dec 4 18:41:20 2021 +0100

    gnu: sra-tools: Remove references to %build-inputs.
    
    * gnu/packages/bioinformatics.scm (sra-tools)[arguments]: Use a gexp instead
    of referencing %build-inputs.
---
 gnu/packages/bioinformatics.scm | 26 +++++++++++++-------------
 1 file changed, 13 insertions(+), 13 deletions(-)

diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index cb2fb05..8b3f1af 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -6956,19 +6956,19 @@ sequence itself can be retrieved from these databases.")
      `(#:parallel-build? #f             ; not supported
        #:tests? #f                      ; no "check" target
        #:make-flags
-       (list (string-append "DEFAULT_CRT="
-                            (assoc-ref %build-inputs "ncbi-vdb")
-                            "/kfg/certs.kfg")
-             (string-append "DEFAULT_KFG="
-                            (assoc-ref %build-inputs "ncbi-vdb")
-                            "/kfg/default.kfg")
-             (string-append "VDB_LIBDIR="
-                            (assoc-ref %build-inputs "ncbi-vdb")
-                            ,(if (string-prefix? "x86_64"
-                                                 (or (%current-target-system)
-                                                     (%current-system)))
-                                 "/lib64"
-                                 "/lib32")))
+       ,#~(list (string-append "DEFAULT_CRT="
+                               #$(this-package-input "ncbi-vdb")
+                               "/kfg/certs.kfg")
+                (string-append "DEFAULT_KFG="
+                               #$(this-package-input "ncbi-vdb")
+                               "/kfg/default.kfg")
+                (string-append "VDB_LIBDIR="
+                               #$(this-package-input "ncbi-vdb")
+                               #$(if (string-prefix? "x86_64"
+                                                     (or 
(%current-target-system)
+                                                         (%current-system)))
+                                     "/lib64"
+                                     "/lib32")))
        #:phases
        (modify-phases %standard-phases
          (add-before 'configure 'set-perl-search-path



reply via email to

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