mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: Add git-manpages.
* gnu/packages/version-control.scm (git-manpages): New variable.
This commit is contained in:
parent
50ec74308e
commit
1c38551a36
1 changed files with 47 additions and 0 deletions
|
@ -95,6 +95,7 @@ (define-public bazaar
|
||||||
(license gpl2+)))
|
(license gpl2+)))
|
||||||
|
|
||||||
(define-public git
|
(define-public git
|
||||||
|
;; Keep in sync with 'git-manpages'!
|
||||||
(package
|
(package
|
||||||
(name "git")
|
(name "git")
|
||||||
(version "2.2.1")
|
(version "2.2.1")
|
||||||
|
@ -210,6 +211,52 @@ (define-public git
|
||||||
(license gpl2)
|
(license gpl2)
|
||||||
(home-page "http://git-scm.com/")))
|
(home-page "http://git-scm.com/")))
|
||||||
|
|
||||||
|
(define-public git-manpages
|
||||||
|
;; Keep in sync with 'git'!
|
||||||
|
|
||||||
|
;; Granted, we could build the man pages from the 'git' package itself,
|
||||||
|
;; which contains the real source. However, it would add a dependency on a
|
||||||
|
;; full XML tool chain, and building it actually takes ages. So we use this
|
||||||
|
;; lazy approach.
|
||||||
|
(package
|
||||||
|
(name "git-manpages")
|
||||||
|
(version (package-version git))
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append
|
||||||
|
"mirror://kernel.org/software/scm/git/git-manpages-"
|
||||||
|
version ".tar.xz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0f75n5yfrzb55qbg5wq4bmv43lay806v51yhglwkp7mbv1zkby00"))))
|
||||||
|
(build-system trivial-build-system)
|
||||||
|
(arguments
|
||||||
|
'(#:modules ((guix build utils))
|
||||||
|
#:builder
|
||||||
|
(begin
|
||||||
|
(use-modules (guix build utils))
|
||||||
|
|
||||||
|
(let* ((xz (assoc-ref %build-inputs "xz"))
|
||||||
|
(tar (assoc-ref %build-inputs "tar"))
|
||||||
|
(out (assoc-ref %outputs "out"))
|
||||||
|
(share (string-append out "/share")))
|
||||||
|
(setenv "PATH" (string-append tar "/bin:" xz "/bin"))
|
||||||
|
|
||||||
|
(mkdir-p share)
|
||||||
|
(with-directory-excursion share
|
||||||
|
(zero? (system* "tar" "xvf"
|
||||||
|
(assoc-ref %build-inputs "source"))))))))
|
||||||
|
|
||||||
|
(native-inputs `(("tar" ,tar)
|
||||||
|
("xz" ,xz)))
|
||||||
|
(home-page (package-home-page git))
|
||||||
|
(license (package-license git))
|
||||||
|
(synopsis "Man pages of the Git version control system")
|
||||||
|
(description
|
||||||
|
"This package provides the man pages of the Git version control system.
|
||||||
|
This is the documentation displayed when using the '--help' option of a 'git'
|
||||||
|
command.")))
|
||||||
|
|
||||||
(define-public shflags
|
(define-public shflags
|
||||||
(package
|
(package
|
||||||
(name "shflags")
|
(name "shflags")
|
||||||
|
|
Loading…
Reference in a new issue