diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2016-10-26 09:18:29 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2016-10-26 09:28:23 +0200 |
commit | 53ca52f0136b297ef4f415eaa9181bb026e51934 (patch) | |
tree | 802a720a62dff730166846b20b2f098974e0525d | |
parent | da22da862b2ce6d4ff365e47bd55550c4a300dca (diff) | |
download | guix-53ca52f0136b297ef4f415eaa9181bb026e51934.tar guix-53ca52f0136b297ef4f415eaa9181bb026e51934.tar.gz |
gnu: r-rhtslib: Update to 1.6.0.
* gnu/packages/bioinformatics.scm (r-rhtslib): Update to 1.6.0.
[native-inputs]: Add autoconf.
-rw-r--r-- | gnu/packages/bioinformatics.scm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 5aac5b5ab3..af145a8582 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -7246,20 +7246,22 @@ libraries for systems that do not have these available via other means.") (define-public r-rhtslib (package (name "r-rhtslib") - (version "1.4.3") + (version "1.6.0") (source (origin (method url-fetch) (uri (bioconductor-uri "Rhtslib" version)) (sha256 (base32 - "1wgpn9x8abjj7fc087pdavqc3fz0pl5xdh231mgjila18irwlhb3")))) + "1vk3ng61dhi3pbia1lp3gl3mlr3i1vb2lkq83qb53i9dzz128wh9")))) (properties `((upstream-name . "Rhtslib"))) (build-system r-build-system) (propagated-inputs `(("r-zlibbioc" ,r-zlibbioc))) (inputs `(("zlib" ,zlib))) + (native-inputs + `(("autoconf" ,autoconf))) (home-page "https://github.com/nhayden/Rhtslib") (synopsis "High-throughput sequencing library as an R package") (description |