1 files changed, 2 insertions, 14 deletions
diff --git a/gn/packages/bioinformatics.scm b/gn/packages/bioinformatics.scm
index f7b70e2..ba849b4 100644
--- a/gn/packages/bioinformatics.scm
+++ b/gn/packages/bioinformatics.scm
@@ -1968,27 +1968,15 @@ here}.")
(define-public mummer
(package
(name "mummer")
- (version "4.0.0rc1")
+ (version "4.0.1")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/mummer4/mummer/releases/"
"download/v" version "/mummer-" version ".tar.gz"))
(sha256
- (base32 "07bxw1vax1sai3g5xjn6sqngddlbnlabpqy373vw4fb55pdnl045"))))
+ (base32 "0gix9qay0bcv515q9xag9arhq3wal77vf5g5whiy7cm004ksw85w"))))
(build-system gnu-build-system)
- (arguments
- (list
- #:phases
- #~(modify-phases %standard-phases
- (add-after 'configure 'skip-test_md5-tests
- (lambda _
- ;; There seems to be a bug with how these tests are called.
- (substitute* "Makefile"
- (("tests/mummer.sh") "")
- (("tests/nucmer.sh") "")
- (("tests/genome.sh") "")
- (("tests/sam.sh") "")))))))
(inputs
(list gnuplot
perl))
|