gnu: tig: Update to 2.3.0.
* gnu/packages/version-control.scm (tig): Update to 2.3.0. [source]: Download from Github. [home-page]: Update to new home-page.
This commit is contained in:
parent
0c6f4bec2e
commit
73f71bc9b7
|
@ -1328,15 +1328,15 @@ from Subversion to any supported Distributed Version Control System (DVCS).")
|
||||||
(define-public tig
|
(define-public tig
|
||||||
(package
|
(package
|
||||||
(name "tig")
|
(name "tig")
|
||||||
(version "2.2")
|
(version "2.3.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append
|
(uri (string-append
|
||||||
"http://jonas.nitro.dk/tig/releases/tig-"
|
"https://github.com/jonas/tig/releases/download/tig-"
|
||||||
version ".tar.gz"))
|
version "/tig-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0k3m894vfkgkj7xbr0j6ph91351dl6id5f0hk2ksjp5lmg9i6llg"))))
|
"1vf02snz8qiiqiyqss1z63rzzmwbrc9agcgh21jdq13rja306vv8"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("asciidoc" ,asciidoc)
|
`(("asciidoc" ,asciidoc)
|
||||||
|
@ -1351,8 +1351,8 @@ from Subversion to any supported Distributed Version Control System (DVCS).")
|
||||||
(lambda _
|
(lambda _
|
||||||
(zero? (system* "make" "install-doc")))))
|
(zero? (system* "make" "install-doc")))))
|
||||||
#:tests? #f)) ; tests require access to /dev/tty
|
#:tests? #f)) ; tests require access to /dev/tty
|
||||||
;;`(#:test-target "test"))
|
;; #:test-target "test"))
|
||||||
(home-page "http://jonas.nitro.dk/tig/")
|
(home-page "https://jonas.github.io/tig/")
|
||||||
(synopsis "Ncurses-based text user interface for Git")
|
(synopsis "Ncurses-based text user interface for Git")
|
||||||
(description
|
(description
|
||||||
"Tig is an ncurses text user interface for Git, primarily intended as
|
"Tig is an ncurses text user interface for Git, primarily intended as
|
||||||
|
|
Loading…
Reference in New Issue