mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
gnu: Add git@2.9
* gnu/packages/version-control.scm (git@2.9): New variable. * gnu/packages/version-control.scm (cgit)[inputs]: Replace git with git@2.9
This commit is contained in:
parent
823c82929b
commit
4e835710f1
1 changed files with 15 additions and 1 deletions
|
@ -293,6 +293,20 @@ (define-public git
|
|||
(license license:gpl2)
|
||||
(home-page "http://git-scm.com/")))
|
||||
|
||||
;; Some dependent packages directly access internal interfaces which
|
||||
;; have changed in 2.10
|
||||
(define-public git@2.9
|
||||
(package
|
||||
(inherit git)
|
||||
(version "2.9.3")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://kernel.org/software/scm/git/git-"
|
||||
version ".tar.xz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0qzs681a64k3shh5p0rg41l1z16fbk5sj0xga45k34hp1hsp654z"))))))
|
||||
|
||||
(define-public libgit2
|
||||
(package
|
||||
(name "libgit2")
|
||||
|
@ -387,7 +401,7 @@ (define-public cgit
|
|||
("xmllint" ,libxml2)
|
||||
("xsltprot" ,libxslt)))
|
||||
(inputs
|
||||
`(("git:src" ,(package-source git))
|
||||
`(("git:src" ,(package-source git@2.9))
|
||||
("openssl" ,openssl)
|
||||
("zlib" ,zlib)))
|
||||
(home-page "https://git.zx2c4.com/cgit/")
|
||||
|
|
Loading…
Reference in a new issue