guix-commits
[Top][All Lists]
Advanced

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

09/18: gnu: ataqv: Remove references to %outputs and %build-inputs.


From: guix-commits
Subject: 09/18: gnu: ataqv: Remove references to %outputs and %build-inputs.
Date: Sun, 5 Dec 2021 09:09:27 -0500 (EST)

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

commit dc4b4d4d9593a2368b84568e80cee0289c797271
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Sun Dec 5 12:52:04 2021 +0100

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

diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index d5672a4..b804f27 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -13771,11 +13771,11 @@ on the needs of the user.")
     (build-system gnu-build-system)
     (arguments
      `(#:make-flags
-       (list (string-append "prefix=" (assoc-ref %outputs "out"))
-             (string-append "BOOST_ROOT="
-                            (assoc-ref %build-inputs "boost"))
-             (string-append "HTSLIB_ROOT="
-                            (assoc-ref %build-inputs "htslib")))
+       ,#~(list (string-append "prefix=" #$output)
+                (string-append "BOOST_ROOT="
+                               #$(this-package-input "boost"))
+                (string-append "HTSLIB_ROOT="
+                               #$(this-package-input "htslib")))
        #:test-target "test"
        #:phases
        (modify-phases %standard-phases



reply via email to

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