1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-06-09 03:18:50 +02: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:
Ludovic Courtès
2021-11-17 23:59:09 +01:00
parent e77df67cc2
commit 669d150f48
2 changed files with 13 additions and 1 deletions
+1 -1
View File
@@ -2488,7 +2488,7 @@ Parcellite and adds bugfixes and features.")
'("-Dintrospection=false")
'()))))
(native-inputs
`(("git" ,git-minimal)
`(("git" ,git-minimal/fixed)
("gobject-introspection" ,gobject-introspection)
("mutest" ,mutest)
("pkg-config" ,pkg-config)))
+12
View File
@@ -657,6 +657,18 @@ everything from small to very large projects with speed and efficiency.")
("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