guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

03/04: gnu: graphene: Depend on a fixed version of 'git-minimal'.


From: guix-commits
Subject: 03/04: gnu: graphene: Depend on a fixed version of 'git-minimal'.
Date: Wed, 17 Nov 2021 18:01:25 -0500 (EST)

civodul pushed a commit to branch core-updates-frozen
in repository guix.

commit 669d150f48cd091752e99bb0a5aa68764fe949dc
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Wed Nov 17 23:59:09 2021 +0100

    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.
---
 gnu/packages/gtk.scm             |  2 +-
 gnu/packages/version-control.scm | 12 ++++++++++++
 2 files changed, 13 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm
index 859e910..09e044d 100644
--- a/gnu/packages/gtk.scm
+++ b/gnu/packages/gtk.scm
@@ -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)))
diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm
index 8b879d7..b8f99f1 100644
--- a/gnu/packages/version-control.scm
+++ b/gnu/packages/version-control.scm
@@ -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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]