diff options
author | 宋文武 <iyzsong@gmail.com> | 2015-10-15 22:03:14 +0800 |
---|---|---|
committer | 宋文武 <iyzsong@gmail.com> | 2015-10-15 23:42:14 +0800 |
commit | ed89d9011763bf6db774017b9d7fe01eea3dcdca (patch) | |
tree | da119c5f1e4b040ca032f78c5e0cfd0d24d08725 /gnu/packages/glib.scm | |
parent | 3c19c6a4d3e7ff87fa657f2a36e54fb51e39e853 (diff) | |
download | gnu-guix-ed89d9011763bf6db774017b9d7fe01eea3dcdca.tar gnu-guix-ed89d9011763bf6db774017b9d7fe01eea3dcdca.tar.gz |
gnu: gobject-introspection: Update to 1.46.0.
* gnu/packages/glib.scm (gobject-introspection): Update to 1.46.0.
[source]: Add a snippet to correct python shebang.
Diffstat (limited to 'gnu/packages/glib.scm')
-rw-r--r-- | gnu/packages/glib.scm | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/gnu/packages/glib.scm b/gnu/packages/glib.scm index 407d789c1b..22c8b8a12a 100644 --- a/gnu/packages/glib.scm +++ b/gnu/packages/glib.scm @@ -214,14 +214,18 @@ dynamic loading, and an object system.") (define gobject-introspection (package (name "gobject-introspection") - (version "1.44.0") + (version "1.46.0") (source (origin (method url-fetch) (uri (string-append "mirror://gnome/sources/" "gobject-introspection/" (version-major+minor version) "/gobject-introspection-" version ".tar.xz")) (sha256 - (base32 "1b972qg2yb51sdavfvb6kc19akwc15c1bwnbg81vadxamql2q33g")) + (base32 "0cs27r18fga44ypp8icy62fwx6nh70r1bvhi4lzfn4w85cybsn36")) + (modules '((guix build utils))) + (snippet + '(substitute* "tools/g-ir-tool-template.in" + (("#!/usr/bin/env @PYTHON@") "#!@PYTHON@"))) (patches (list (search-patch "gobject-introspection-cc.patch") (search-patch |