guix-commits
[Top][All Lists]
Advanced

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

01/02: gnu: salmon: Remove reference to %build-inputs.


From: guix-commits
Subject: 01/02: gnu: salmon: Remove reference to %build-inputs.
Date: Sat, 4 Dec 2021 18:49:38 -0500 (EST)

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

commit 1e7bd5e6793f1762b93aac4fd3a003c893e19707
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Sun Dec 5 00:33:45 2021 +0100

    gnu: salmon: Remove reference to %build-inputs.
    
    * gnu/packages/bioinformatics.scm (salmon)[arguments]: Use a gexp to remove
    reference to %build-inputs.
---
 gnu/packages/bioinformatics.scm | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 6486105..453b512 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -10177,15 +10177,15 @@ The following file formats are supported:
     (build-system cmake-build-system)
     (arguments
      `(#:configure-flags
-       (list (string-append "-Dlibgff_DIR="
-                            (assoc-ref %build-inputs "libgff") "/lib")
-             "-DCMAKE_CXX_FLAGS=\"-DHAVE_NUMERIC_LIMITS128=1\""
-             "-Dlibgff_FOUND=TRUE"
-             "-DTBB_FOUND=TRUE"
-             ,(string-append "-DTBB_VERSION=" (package-version tbb-2020))
-             "-DTBB_LIBRARIES=tbb -ltbbmalloc"
-             "-DFETCHED_PUFFERFISH=TRUE"
-             "-DUSE_SHARED_LIBS=TRUE")
+       ,#~(list (string-append "-Dlibgff_DIR="
+                               #$(this-package-input "libgff") "/lib")
+                "-DCMAKE_CXX_FLAGS=\"-DHAVE_NUMERIC_LIMITS128=1\""
+                "-Dlibgff_FOUND=TRUE"
+                "-DTBB_FOUND=TRUE"
+                #$(string-append "-DTBB_VERSION=" (package-version tbb-2020))
+                "-DTBB_LIBRARIES=tbb -ltbbmalloc"
+                "-DFETCHED_PUFFERFISH=TRUE"
+                "-DUSE_SHARED_LIBS=TRUE")
        #:phases
        (modify-phases %standard-phases
          (add-after 'unpack 'prepare-pufferfish



reply via email to

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