mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: tig: Update to 2.5.10.
* gnu/packages/version-control.scm (tig): Update to 2.5.10. [source]: Switch to git. Drop unbundling snippet. [native-inputs]: Add autoconf, automake, docbook-xsl, libxml2, pkg-config. Change-Id: I79d8239e7d0d83bfef42263718e8d2d3a2c83252 Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
b993f4735d
commit
a998d660bf
1 changed files with 11 additions and 15 deletions
|
@ -2786,23 +2786,19 @@ any project with more than one developer, is one of Aegis's major functions.")
|
||||||
(define-public tig
|
(define-public tig
|
||||||
(package
|
(package
|
||||||
(name "tig")
|
(name "tig")
|
||||||
(version "2.5.8")
|
(version "2.5.10")
|
||||||
(source (origin
|
(source
|
||||||
(method url-fetch)
|
(origin
|
||||||
(uri (string-append
|
(method git-fetch)
|
||||||
"https://github.com/jonas/tig/releases/download/tig-"
|
(uri (git-reference
|
||||||
version "/tig-" version ".tar.gz"))
|
(url "https://github.com/jonas/tig")
|
||||||
(sha256
|
(commit (string-append "tig-" version))))
|
||||||
(base32
|
(file-name (git-file-name name version))
|
||||||
"14b38200bmwvi3030hqnwdsp34854ck3bzncj0wlljnpmr10l3mp"))
|
(sha256
|
||||||
(modules '((guix build utils)))
|
(base32 "0m7v6xkvly3cbc5hs7plxdny4r41x3vkx7xylygjva4jcvnz0fjr"))))
|
||||||
(snippet
|
|
||||||
'(begin
|
|
||||||
;; TODO: Delete and rebuild doc/*.(1|5|7).
|
|
||||||
(for-each delete-file (find-files "doc" "\\.html$"))))))
|
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list asciidoc xmlto))
|
(list asciidoc autoconf automake docbook-xsl libxml2 pkg-config xmlto))
|
||||||
(inputs
|
(inputs
|
||||||
(list ncurses readline))
|
(list ncurses readline))
|
||||||
(arguments
|
(arguments
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue