me
/
guix
Archived
1
0
Fork 0

gnu: ncbi-vdb: Install configuration files.

* gnu/packages/bioinformatics.scm (ncbi-vdb)[arguments]: Add phase
"install-configuration-files".
master
Ricardo Wurmus 2017-03-16 13:39:53 +01:00
parent 558e23074e
commit d5e1716239
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 8 additions and 0 deletions

View File

@ -4519,6 +4519,14 @@ simultaneously.")
(copy-recursively "interfaces"
(string-append (assoc-ref outputs "out")
"/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)))))
(inputs
`(("libxml2" ,libxml2)