diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2024-02-21 14:30:34 -0500 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-08-31 10:44:48 +0200 |
commit | 0dadcf0fb87aa08508cb4e7c698932b09d231563 (patch) | |
tree | 6ca8afcca0fde89bf8ddf44a40bf061884570470 /gnu/packages/gtk.scm | |
parent | 731667bfe74e9d2cf53120e558941c4bc957b0ad (diff) | |
download | guix-0dadcf0fb87aa08508cb4e7c698932b09d231563.tar.gz guix-0dadcf0fb87aa08508cb4e7c698932b09d231563.zip |
gnu: goocanvas: Remove input labels.
* gnu/packages/gtk.scm (goocanvas) [native-inputs]: Remove input labels.
[phases]: Remove trailing #t.
Change-Id: I0eca2aeb1e01b81e89a0777fb806539d8a76972b
Diffstat (limited to 'gnu/packages/gtk.scm')
-rw-r--r-- | gnu/packages/gtk.scm | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm index 61d115a641..60b1e68662 100644 --- a/gnu/packages/gtk.scm +++ b/gnu/packages/gtk.scm @@ -2774,12 +2774,12 @@ popovers.") (base32 "141fm7mbqib0011zmkv3g8vxcjwa7hypmq71ahdyhnj2sjvy4a67")))) (build-system gnu-build-system) (native-inputs - `(("gettext" ,gettext-minimal) - ("glib-bin" ,glib "bin") - ("gobject-introspection" ,gobject-introspection) - ("gtk-doc" ,gtk-doc/stable) - ("pkg-config" ,pkg-config) - ("python" ,python))) + (list gettext-minimal + `(,glib "bin") + gobject-introspection + gtk-doc/stable + pkg-config + python)) (inputs (list cairo glib gtk+ python-pygobject)) (arguments @@ -2795,8 +2795,7 @@ popovers.") (assoc-ref inputs "python-pygobject") "\\\", \\\"" (assoc-ref outputs "out") - "\\\"))"))) - #t))))) + "\\\"))")))))))) (synopsis "Canvas widget for GTK+") (description "GooCanvas is a canvas widget for GTK+ that uses the cairo 2D library for drawing.") |