diff options
author | Kei Kebreau <kkebreau@posteo.net> | 2019-07-24 21:56:52 -0400 |
---|---|---|
committer | Kei Kebreau <kkebreau@posteo.net> | 2019-12-07 14:04:12 -0500 |
commit | d3b406969a0916fed8f7dc7c094de9d523ac12c9 (patch) | |
tree | c8badba7cee5329de46cfa874ddd9dfe0b0b8c0e /gnu/packages/gnome.scm | |
parent | e106d0a644d4ae5edc6817c6903ba1d43e2681d2 (diff) | |
download | guix-d3b406969a0916fed8f7dc7c094de9d523ac12c9.tar guix-d3b406969a0916fed8f7dc7c094de9d523ac12c9.tar.gz |
gnu: libwnck: Update to 3.32.0.
* gnu/packages/gnome.scm (libwnck): Update to 3.32.0.
[build-system]: Use meson-build-system.
[native-inputs]: Add glib:bin and gobject-introspection.
Diffstat (limited to 'gnu/packages/gnome.scm')
-rw-r--r-- | gnu/packages/gnome.scm | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index aa88e94bb6..7969d55788 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -2246,7 +2246,7 @@ controls using the Bonobo component framework.") (define-public libwnck (package (name "libwnck") - (version "3.30.0") + (version "3.32.0") (source (origin (method url-fetch) (uri (string-append "mirror://gnome/sources/" name "/" @@ -2254,10 +2254,12 @@ controls using the Bonobo component framework.") name "-" version ".tar.xz")) (sha256 (base32 - "0f9lvhm3w25046dqq8xyg7nzggxpmdriwrb661nng05a8qk0svdc")))) - (build-system gnu-build-system) + "1jp3p1lnwnwi6fxl2rz3166cmwzwy9vqz896anpwc3wdy9f875cm")))) + (build-system meson-build-system) (native-inputs `(("pkg-config" ,pkg-config) + ("glib" ,glib "bin") ; for glib-mkenums + ("gobject-introspection" ,gobject-introspection) ; for g-ir-scanner ("intltool" ,intltool))) (propagated-inputs `(("gtk+" ,gtk+) |