me
/
guix
Archived
1
0
Fork 0

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.
master
Ricardo Wurmus 2021-12-04 18:39:35 +01:00
parent 8a446f5e41
commit f33e490334
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 9 additions and 10 deletions

View File

@ -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)