mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
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.
This commit is contained in:
parent
8a446f5e41
commit
f33e490334
1 changed files with 9 additions and 10 deletions
|
@ -6883,13 +6883,12 @@ structures, classes for genomic regions, mapped sequencing reads, etc.")
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(delete 'configure))
|
(delete 'configure))
|
||||||
#:make-flags
|
#:make-flags
|
||||||
(list (string-append "PREFIX="
|
,#~(list (string-append "PREFIX=" #$output)
|
||||||
(assoc-ref %outputs "out"))
|
|
||||||
(string-append "LIBBAM="
|
(string-append "LIBBAM="
|
||||||
(assoc-ref %build-inputs "samtools")
|
#$(this-package-input "samtools")
|
||||||
"/lib/libbam.a")
|
"/lib/libbam.a")
|
||||||
(string-append "SMITHLAB_CPP="
|
(string-append "SMITHLAB_CPP="
|
||||||
(assoc-ref %build-inputs "smithlab-cpp")
|
#$(this-package-input "smithlab-cpp")
|
||||||
"/lib")
|
"/lib")
|
||||||
"PROGS=preseq"
|
"PROGS=preseq"
|
||||||
"INCLUDEDIRS=$(SMITHLAB_CPP)/../include/smithlab-cpp $(SAMTOOLS_DIR)")))
|
"INCLUDEDIRS=$(SMITHLAB_CPP)/../include/smithlab-cpp $(SAMTOOLS_DIR)")))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue