diff options
author | Ludovic Courtès <ludo@gnu.org> | 2021-11-17 23:59:09 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2021-11-17 23:59:09 +0100 |
commit | 669d150f48cd091752e99bb0a5aa68764fe949dc (patch) | |
tree | dd17968aa2ff9e1c45e093c2c6eb61046ad07d49 /gnu/packages/gtk.scm | |
parent | e77df67cc25e4f221af530ed80f1c5f7a839e86f (diff) | |
download | guix-669d150f48cd091752e99bb0a5aa68764fe949dc.tar.gz |
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.
Diffstat (limited to 'gnu/packages/gtk.scm')
-rw-r--r-- | gnu/packages/gtk.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm index 859e910e49..09e044d7e7 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))) |