gnu: mercurial: Update to 5.3.1.

* gnu/packages/version-control.scm (mercurial): Update to 5.3.1.
[native-inputs]: Add WHICH.
This commit is contained in:
Marius Bakke 2020-03-06 11:14:28 +01:00
parent 87bf568022
commit a125397a4b
No known key found for this signature in database
GPG Key ID: A2A06DF2A33A54FA

View File

@ -1320,14 +1320,14 @@ control to Git repositories.")
(define-public mercurial
(package
(name "mercurial")
(version "5.2.1")
(version "5.3.1")
(source (origin
(method url-fetch)
(uri (string-append "https://www.mercurial-scm.org/"
"release/mercurial-" version ".tar.gz"))
(sha256
(base32
"1pxkd37b0a1mi2zakk1hi122lgz1ffy2fxdnbs8acwlqpw55bc8q"))))
"1nbjpzjrzgql4hrvslpxwbcgn885ikq6ba1yb4w6p78rw9nzkhgp"))))
(build-system python-build-system)
(arguments
`(#:phases
@ -1369,7 +1369,8 @@ control to Git repositories.")
;; The following inputs are only needed to run the tests.
(native-inputs
`(("python-nose" ,python-nose)
("unzip" ,unzip)))
("unzip" ,unzip)
("which" ,which)))
(home-page "https://www.mercurial-scm.org/")
(synopsis "Decentralized version control system")
(description