diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-09-05 13:16:06 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-09-05 22:45:41 +0200 |
commit | f480133c4eff49c8f25c951db7d3871aee99d80f (patch) | |
tree | d9b08537a6a75a30a950ee38f4e38829f28e3a0b /gnu | |
parent | 067ea2989fce98f3f3f115534e2e685cfc681039 (diff) | |
download | patches-f480133c4eff49c8f25c951db7d3871aee99d80f.tar patches-f480133c4eff49c8f25c951db7d3871aee99d80f.tar.gz |
gnu: libbigwig: Update to 0.4.4.
* gnu/packages/bioinformatics.scm (libbigwig): Update to 0.4.4.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/bioinformatics.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 9e8d036623..f98f10a2c3 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -2353,16 +2353,16 @@ other types of unwanted sequence from high-throughput sequencing reads.") (define-public libbigwig (package (name "libbigwig") - (version "0.4.2") + (version "0.4.4") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/dpryan79/libBigWig.git") (commit version))) - (file-name (string-append name "-" version "-checkout")) + (file-name (git-file-name name version)) (sha256 (base32 - "0h2smg24v5srdcqzrmz2g23cmlp4va465mgx8r2z571sfz8pv454")))) + "09693dmf1scdac5pyq6qyn8b4mcipvnmc370k9a5z41z81m3dcsj")))) (build-system gnu-build-system) (arguments `(#:test-target "test" |