diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2024-02-21 14:26:06 -0500 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-08-31 10:44:48 +0200 |
commit | 1b93d518be7080d6da67d0ab1ddd2a7ed7881f5e (patch) | |
tree | dd9eaadcd18a6a1550ace640e6d9d8340643e24e /gnu/packages | |
parent | 47aca9956fff6fe4873b4a63f07af86efd318c02 (diff) | |
download | guix-1b93d518be7080d6da67d0ab1ddd2a7ed7881f5e.tar.gz guix-1b93d518be7080d6da67d0ab1ddd2a7ed7881f5e.zip |
gnu: atkmm: Remove input labels.
* gnu/packages/gtk.scm (atkmm) [native-inputs]: Remove input labels.
Change-Id: I7dad8ada8d32c25845877aba0fc68245ff001a7e
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/gtk.scm | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm index 5263c42d67..56ed569b4c 100644 --- a/gnu/packages/gtk.scm +++ b/gnu/packages/gtk.scm @@ -1813,7 +1813,7 @@ text rendering library.") (build-system meson-build-system) (outputs '("out" "doc")) (arguments - `(#:glib-or-gtk? #t ; To wrap binaries and/or compile schemas + `(#:glib-or-gtk? #t ; To wrap binaries and/or compile schemas #:configure-flags (list "-Dbuild-documentation=true") @@ -1828,14 +1828,14 @@ text rendering library.") (string-append out "/share/doc") (string-append doc "/share/doc")))))))) (native-inputs - `(("dot" ,graphviz) - ("doxygen" ,doxygen) - ("m4" ,m4) - ("mm-common" ,mm-common) - ("perl" ,perl) - ("pkg-config" ,pkg-config) - ("python" ,python) - ("xsltproc" ,libxslt))) + (list graphviz + doxygen + m4 + mm-common + perl + pkg-config + python + libxslt)) (propagated-inputs (list glibmm at-spi2-core)) (synopsis "C++ bindings for ATK") |