gnu: htslib: Enable support for custom URI schemes.
* gnu/packages/bioinformatics.scm (htslib)[arguments]: Enable support for custom URIs.
This commit is contained in:
parent
7adaf19344
commit
fb0037af8c
1 changed files with 7 additions and 0 deletions
|
@ -4225,6 +4225,13 @@ performance.")
|
||||||
(base32
|
(base32
|
||||||
"16ljv43sc3fxmv63w7b2ff8m1s7h89xhazwmbm1bicz8axq8fjz0"))))
|
"16ljv43sc3fxmv63w7b2ff8m1s7h89xhazwmbm1bicz8axq8fjz0"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
|
;; Let htslib translate "gs://" and "s3://" to regular https links with
|
||||||
|
;; "--enable-gcs" and "--enable-s3". For these options to work, we also
|
||||||
|
;; need to set "--enable-libcurl".
|
||||||
|
(arguments
|
||||||
|
`(#:configure-flags '("--enable-gcs"
|
||||||
|
"--enable-libcurl"
|
||||||
|
"--enable-s3")))
|
||||||
(inputs
|
(inputs
|
||||||
`(("curl" ,curl)
|
`(("curl" ,curl)
|
||||||
("openssl" ,openssl)))
|
("openssl" ,openssl)))
|
||||||
|
|
Reference in a new issue