diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2024-02-21 14:31:32 -0500 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-08-31 10:44:48 +0200 |
commit | 3c690043ce9ab51c126f506e240bc8659c016c7e (patch) | |
tree | 3489678253827fa6443a80c3500c892a2c89c2da /gnu/packages/gtk.scm | |
parent | 0dadcf0fb87aa08508cb4e7c698932b09d231563 (diff) | |
download | guix-3c690043ce9ab51c126f506e240bc8659c016c7e.tar.gz guix-3c690043ce9ab51c126f506e240bc8659c016c7e.zip |
gnu: perl-gtk3: Remove input labels.
* gnu/packages/gtk.scm (perl-gtk3) [native-inputs]: Remove input labels.
Change-Id: Iaf289d8610df9658b83008c898781822a3cd462e
Diffstat (limited to 'gnu/packages/gtk.scm')
-rw-r--r-- | gnu/packages/gtk.scm | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm index 60b1e68662..c684bbf50e 100644 --- a/gnu/packages/gtk.scm +++ b/gnu/packages/gtk.scm @@ -2136,15 +2136,18 @@ yet remaining very close in spirit to original API.") (system "Xvfb :1 +extension GLX &") (setenv "DISPLAY" ":1")))))) (native-inputs - `(("adwaita-icon-theme" ,adwaita-icon-theme) - ("gtk+:bin" ,gtk+ "bin") - ("gobject-introspection" ,gobject-introspection) - ("perl-extutils-depends" ,perl-extutils-depends) - ("perl-extutils-pkgconfig" ,perl-extutils-pkgconfig) - ("perl-test-simple" ,perl-test-simple) - ("xorg-server" ,xorg-server-for-tests))) + (list adwaita-icon-theme + `(,gtk+ "bin") + gobject-introspection + perl-extutils-depends + perl-extutils-pkgconfig + perl-test-simple + xorg-server-for-tests)) (propagated-inputs - (list gtk+ perl-cairo-gobject perl-carp perl-exporter + (list gtk+ + perl-cairo-gobject + perl-carp + perl-exporter perl-glib-object-introspection)) (home-page "https://metacpan.org/dist/Gtk3") (synopsis "Perl interface to the 3.x series of the gtk+ toolkit") |