mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-14 07:00:32 -05:00
gnu: graphene: Depend on a fixed version of 'git-minimal'.
* gnu/packages/version-control.scm (git-minimal/fixed): New variable. * gnu/packages/gtk.scm (graphene)[native-inputs]: Use it instead of GIT-MINIMAL.
This commit is contained in:
parent
e77df67cc2
commit
669d150f48
2 changed files with 13 additions and 1 deletions
|
@ -2488,7 +2488,7 @@ (define-public graphene
|
|||
'("-Dintrospection=false")
|
||||
'()))))
|
||||
(native-inputs
|
||||
`(("git" ,git-minimal)
|
||||
`(("git" ,git-minimal/fixed)
|
||||
("gobject-introspection" ,gobject-introspection)
|
||||
("mutest" ,mutest)
|
||||
("pkg-config" ,pkg-config)))
|
||||
|
|
|
@ -657,6 +657,18 @@ (define-public git-minimal
|
|||
("perl" ,perl)
|
||||
("zlib" ,zlib)))))
|
||||
|
||||
(define-public git-minimal/fixed
|
||||
;; Version that rarely changes, depended on by Graphene/GTK+.
|
||||
(package/inherit git-minimal
|
||||
(version "2.33.1")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://kernel.org/software/scm/git/git-"
|
||||
version ".tar.xz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0bqz401dyp8wnjj3k5ahrniwk4dalndysqazzwdvv25hqbkacm70"))))))
|
||||
|
||||
(define-public git2cl
|
||||
(let ((commit "1d74d4c0d933fc69ed5cec838c73502584dead05"))
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue