mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-19 05:07:11 -05:00
gnu: sra-tools: Remove references to %build-inputs.
* gnu/packages/bioinformatics.scm (sra-tools)[arguments]: Use a gexp instead of referencing %build-inputs.
This commit is contained in:
parent
f33e490334
commit
f41576c09f
1 changed files with 13 additions and 13 deletions
|
@ -6956,15 +6956,15 @@ (define-public sra-tools
|
|||
`(#:parallel-build? #f ; not supported
|
||||
#:tests? #f ; no "check" target
|
||||
#:make-flags
|
||||
(list (string-append "DEFAULT_CRT="
|
||||
(assoc-ref %build-inputs "ncbi-vdb")
|
||||
,#~(list (string-append "DEFAULT_CRT="
|
||||
#$(this-package-input "ncbi-vdb")
|
||||
"/kfg/certs.kfg")
|
||||
(string-append "DEFAULT_KFG="
|
||||
(assoc-ref %build-inputs "ncbi-vdb")
|
||||
#$(this-package-input "ncbi-vdb")
|
||||
"/kfg/default.kfg")
|
||||
(string-append "VDB_LIBDIR="
|
||||
(assoc-ref %build-inputs "ncbi-vdb")
|
||||
,(if (string-prefix? "x86_64"
|
||||
#$(this-package-input "ncbi-vdb")
|
||||
#$(if (string-prefix? "x86_64"
|
||||
(or (%current-target-system)
|
||||
(%current-system)))
|
||||
"/lib64"
|
||||
|
|
Loading…
Reference in a new issue