diff options
author | Arun Isaac | 2024-10-23 00:02:02 +0100 |
---|---|---|
committer | Arun Isaac | 2024-10-23 00:06:44 +0100 |
commit | 97e4dc636509f7d57cc5ef5ce1c052d7c36e17a9 (patch) | |
tree | 97c91ee6b669bd14e97a87cbdebbb0995b050139 | |
parent | b229931a7e69966ce0a269ca4a0aa1a1d3257bf4 (diff) | |
download | guix-bioinformatics-97e4dc636509f7d57cc5ef5ce1c052d7c36e17a9.tar.gz |
gn: graphaligner: Update to 1.0.19.
* gn/packages/bioinformatics.scm (graphaligner): Update to 1.0.19.
[native-inputs]: Add (jemalloc "bin").
-rw-r--r-- | gn/packages/bioinformatics.scm | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/gn/packages/bioinformatics.scm b/gn/packages/bioinformatics.scm index 099636f..827fb3f 100644 --- a/gn/packages/bioinformatics.scm +++ b/gn/packages/bioinformatics.scm @@ -1898,14 +1898,14 @@ The path-guided stochastic gradient descent based 1D sort implemented in (define-public graphaligner (package (name "graphaligner") - (version "1.0.14") + (version "1.0.19") (source (origin (method url-fetch) (uri (string-append "https://github.com/maickrau/GraphAligner/files/" - "7813545/GraphAligner.tar.gz")) + "14037134/GraphAligner.tar.gz")) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "1y4vwp03fl2ck6bnyn0sc97vgvdb8i0yfzjk5mv5gk0bc7a4f0n1")))) + (base32 "1z1rxvl2pmiqbh670phkx7vma36w90ylp27wyadlbzf32pa2cpdn")))) (build-system gnu-build-system) (arguments (list @@ -1939,7 +1939,8 @@ The path-guided stochastic gradient descent based 1D sort implemented in (install-file header (string-append out "/include"))) (find-files "src" "\\.h(pp)?$")))))))) (native-inputs - (list pkg-config + (list (list jemalloc "bin") + pkg-config sparsehash)) (inputs (list boost |