mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: Add Mercurial.
* gnu/packages/version-control.scm (mercurial): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
1a75f8d939
commit
5151c2e1f4
1 changed files with 27 additions and 0 deletions
|
@ -180,6 +180,33 @@ (define-public git
|
|||
(license gpl2)
|
||||
(home-page "http://git-scm.com/")))
|
||||
|
||||
(define-public mercurial
|
||||
(package
|
||||
(name "mercurial")
|
||||
(version "2.7.1")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "http://mercurial.selenic.com/release/mercurial-"
|
||||
version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"121m8f7vmipmdg00cnzdz2rjkgydh28mwfirqkrbs5fv089vywl4"))))
|
||||
(build-system python-build-system)
|
||||
(arguments
|
||||
`(;; Restrict to Python 2, as Python 3 would require
|
||||
;; the argument --c2to3.
|
||||
#:python ,python-2
|
||||
;; FIXME: Disabled tests because they require the nose unit
|
||||
;; testing framework: https://nose.readthedocs.org/en/latest/ .
|
||||
#:tests? #f))
|
||||
(home-page "http://mercurial.selenic.com")
|
||||
(synopsis "Decentralized version control system")
|
||||
(description
|
||||
"Mercurial is a free, distributed source control management tool.
|
||||
It efficiently handles projects of any size
|
||||
and offers an easy and intuitive interface.")
|
||||
(license gpl2+)))
|
||||
|
||||
(define-public subversion
|
||||
(package
|
||||
(name "subversion")
|
||||
|
|
Loading…
Reference in a new issue