diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-12-15 15:10:02 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-12-15 15:39:01 +0100 |
commit | 108c03a8eb1907b2ad2f9e055f896a6e91962c87 (patch) | |
tree | b636dc03ebfd2ddc6562a1506bf9417065951c1b /gnu | |
parent | 7b6c008960985e5b90531cc1999e4b671e88b966 (diff) |
gnu: r-rhtslib: Update to 1.18.0.
* gnu/packages/bioinformatics.scm (r-rhtslib): Update to 1.18.0.
[propagated-inputs]: Add curl.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/bioinformatics.scm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 9da6fe8580..c545b81002 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -8313,21 +8313,22 @@ secondary structure and comparative analysis in R.") (define-public r-rhtslib (package (name "r-rhtslib") - (version "1.16.3") + (version "1.18.0") (source (origin (method url-fetch) (uri (bioconductor-uri "Rhtslib" version)) (sha256 (base32 - "1lmrfr32nrz36abn440kvzzck53y2320xjxqzs2jw7m2a9h3ryak")))) + "04inkq44lxwymqv51mxgaphasqjcdc9rl5p58imnrdm0kszs8prm")))) (properties `((upstream-name . "Rhtslib"))) (build-system r-build-system) ;; Without this a temporary directory ends up in the Rhtslib.so binary, ;; which makes R abort the build. (arguments '(#:configure-flags '("--no-staged-install"))) (propagated-inputs - `(("r-zlibbioc" ,r-zlibbioc))) + `(("curl" ,curl) + ("r-zlibbioc" ,r-zlibbioc))) (inputs `(("zlib" ,zlib))) (native-inputs |