[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/11: gnu: preseq: Remove references to %outputs and %build-inputs.
From: |
guix-commits |
Subject: |
02/11: gnu: preseq: Remove references to %outputs and %build-inputs. |
Date: |
Sat, 4 Dec 2021 13:54:54 -0500 (EST) |
rekado pushed a commit to branch core-updates-frozen
in repository guix.
commit f33e490334de6347c4069d532474cf76229a242b
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Sat Dec 4 18:39:35 2021 +0100
gnu: preseq: Remove references to %outputs and %build-inputs.
* gnu/packages/bioinformatics.scm (preseq)[arguments]: Replace references to
%outputs and %build-inputs by using a gexp.
---
gnu/packages/bioinformatics.scm | 19 +++++++++----------
1 file changed, 9 insertions(+), 10 deletions(-)
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index adc5ca5..cb2fb05 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -6883,16 +6883,15 @@ structures, classes for genomic regions, mapped
sequencing reads, etc.")
(modify-phases %standard-phases
(delete 'configure))
#:make-flags
- (list (string-append "PREFIX="
- (assoc-ref %outputs "out"))
- (string-append "LIBBAM="
- (assoc-ref %build-inputs "samtools")
- "/lib/libbam.a")
- (string-append "SMITHLAB_CPP="
- (assoc-ref %build-inputs "smithlab-cpp")
- "/lib")
- "PROGS=preseq"
- "INCLUDEDIRS=$(SMITHLAB_CPP)/../include/smithlab-cpp
$(SAMTOOLS_DIR)")))
+ ,#~(list (string-append "PREFIX=" #$output)
+ (string-append "LIBBAM="
+ #$(this-package-input "samtools")
+ "/lib/libbam.a")
+ (string-append "SMITHLAB_CPP="
+ #$(this-package-input "smithlab-cpp")
+ "/lib")
+ "PROGS=preseq"
+ "INCLUDEDIRS=$(SMITHLAB_CPP)/../include/smithlab-cpp
$(SAMTOOLS_DIR)")))
(inputs
`(("gsl" ,gsl)
("samtools" ,samtools-0.1)
- 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, 2021/12/04
- 01/11: gnu: preseq: Simplify snippet., guix-commits, 2021/12/04
- 02/11: gnu: preseq: Remove references to %outputs and %build-inputs.,
guix-commits <=
- 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