gnu: ncbi-vdb: Install configuration files.
* gnu/packages/bioinformatics.scm (ncbi-vdb)[arguments]: Add phase "install-configuration-files".
This commit is contained in:
parent
558e23074e
commit
d5e1716239
1 changed files with 8 additions and 0 deletions
|
@ -4519,6 +4519,14 @@ simultaneously.")
|
||||||
(copy-recursively "interfaces"
|
(copy-recursively "interfaces"
|
||||||
(string-append (assoc-ref outputs "out")
|
(string-append (assoc-ref outputs "out")
|
||||||
"/include"))
|
"/include"))
|
||||||
|
#t))
|
||||||
|
;; These files are needed by sra-tools.
|
||||||
|
(add-after 'install 'install-configuration-files
|
||||||
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
|
(let ((target (string-append (assoc-ref outputs "out") "/kfg")))
|
||||||
|
(mkdir target)
|
||||||
|
(install-file "libs/kfg/default.kfg" target)
|
||||||
|
(install-file "libs/kfg/certs.kfg" target))
|
||||||
#t)))))
|
#t)))))
|
||||||
(inputs
|
(inputs
|
||||||
`(("libxml2" ,libxml2)
|
`(("libxml2" ,libxml2)
|
||||||
|
|
Reference in a new issue