diff options
author | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2024-08-16 09:54:02 +0200 |
---|---|---|
committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2024-08-25 09:46:15 +0200 |
commit | 4299b4cc881deaadf908937cda1e9cbc48a40a38 (patch) | |
tree | ac1e562e45d0696aa8276d52f6d497023c5942cf /gnu/packages/glib.scm | |
parent | 90697a216f178c494e35fffe06e78fe76741a440 (diff) | |
download | guix-4299b4cc881deaadf908937cda1e9cbc48a40a38.tar.gz guix-4299b4cc881deaadf908937cda1e9cbc48a40a38.zip |
gnu: Drop gobject-introspection 1.73.1.
The actual gobject-introspection has been newer than its "next" variant for
some while.
* gnu/packages/glib.scm (gobject-introspection-next): Remove variable.
* gnu/packages/gtk.scm (gtksourceview)[native-inputs]: Replace
gobject-introspection-next with gobject-introspection.
* gnu/packages/guile-xyz.scm (guile-g-golf)[native-inputs]: Likewise.
Diffstat (limited to 'gnu/packages/glib.scm')
-rw-r--r-- | gnu/packages/glib.scm | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/gnu/packages/glib.scm b/gnu/packages/glib.scm index b11046f05d..f490005b2d 100644 --- a/gnu/packages/glib.scm +++ b/gnu/packages/glib.scm @@ -688,23 +688,6 @@ provide bindings to call into the C library.") ;; For tools. license:gpl2+)))) -(define-public gobject-introspection-next - (package - (inherit gobject-introspection) - (name "gobject-introspection") - (version "1.73.1") - (source (origin - (method url-fetch) - (uri (string-append "mirror://gnome/sources/" - "gobject-introspection/" (version-major+minor version) - "/gobject-introspection-" version ".tar.xz")) - (sha256 - (base32 "1gkbx32as3v2286w7k3j24fwhkxj6brr49881m2zavxamfwxdm34")) - (patches (search-patches - "gobject-introspection-cc-1.72.patch" - "gobject-introspection-girepository.patch" - "gobject-introspection-absolute-shlib-path-1.72.patch")))))) - (define intltool (package (name "intltool") |