[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
- branch core-updates-frozen updated (bd74691 -> 98d2abe), guix-commits, 2021/12/04
- 04/11: gnu: seqan-2: Use gexp for builder., guix-commits, 2021/12/04
- 05/11: gnu: seqan-1: Use gexp for builder., guix-commits, 2021/12/04
- 03/11: gnu: sra-tools: Remove references to %build-inputs.,
guix-commits <=
- 01/11: gnu: preseq: Simplify snippet., guix-commits, 2021/12/04
- 02/11: gnu: preseq: Remove references to %outputs and %build-inputs., guix-commits, 2021/12/04
- 06/11: gnu: vcftools: Replace references to %outputs., guix-commits, 2021/12/04
- 07/11: gnu: emboss: Remove reference to %build-inputs., guix-commits, 2021/12/04
- 08/11: gnu: piranha: Remove trailing #T., guix-commits, 2021/12/04
- 10/11: gnu: sailfish: Simplify snippet., guix-commits, 2021/12/04
- 11/11: gnu: sailfish: Remove references to %build-inputs., guix-commits, 2021/12/04
- 09/11: gnu: piranha: Remove references to %build-inputs., guix-commits, 2021/12/04