guix-commits
[Top][All Lists]
Advanced

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

19/19: gnu: mash: Replace references to %build-inputs.


From: guix-commits
Subject: 19/19: gnu: mash: Replace references to %build-inputs.
Date: Fri, 3 Dec 2021 18:33:50 -0500 (EST)

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

commit 114eb987cb0d636361a1957ef285159c9e13a2a5
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Sat Dec 4 00:32:01 2021 +0100

    gnu: mash: Replace references to %build-inputs.
    
    * gnu/packages/bioinformatics.scm (mash)[arguments]: Use a gexp.
---
 gnu/packages/bioinformatics.scm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index d06ac2d..979d26b 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -5311,9 +5311,9 @@ sequences).")
     (arguments
      `(#:tests? #f ; No tests.
        #:configure-flags
-       (list
-        (string-append "--with-capnp=" (assoc-ref %build-inputs "capnproto"))
-        (string-append "--with-gsl=" (assoc-ref %build-inputs "gsl")))
+       ,#~(list
+           (string-append "--with-capnp=" #$(this-package-input "capnproto"))
+           (string-append "--with-gsl=" #$(this-package-input "gsl")))
        #:make-flags (list "CC=gcc")
        #:phases
        (modify-phases %standard-phases



reply via email to

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