diff options
author | Maxim Cournoyer <[email protected]> | 2024-11-11 15:17:11 +0900 |
---|---|---|
committer | Liliana Marie Prikler <[email protected]> | 2025-03-02 20:31:36 +0100 |
commit | 3144a3a6fb7d3f8e403cf011310cda6a936d55b6 (patch) | |
tree | 58253b22d43a4c41f7aa6d46ea0695df5df57768 | |
parent | 3fe37c0b41f604caaae25f43ed3f0ec61d104656 (diff) |
gnu: libdbusmenu: Remove gtk+-2 input.
* gnu/packages/gtk.scm (libdbusmenu) [arguments]
<configure-flags>: Add '--disable-dumper'.
[inputs]: Remove gtk+-2.
Change-Id: Idd5b92e7f97f7885a75cb86af91eef5b53d5b45a
Signed-off-by: Liliana Marie Prikler <[email protected]>
-rw-r--r-- | gnu/packages/gtk.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm index 212a6a3915..234ff9fb83 100644 --- a/gnu/packages/gtk.scm +++ b/gnu/packages/gtk.scm @@ -2739,7 +2739,8 @@ printed to standard output.") "--localstatedir=/var" ;; The shebang of the generated test files should be patched ;; before enabling tests. - "--disable-tests") + "--disable-tests" + "--disable-dumper") #:make-flags #~(list (string-append "typelibdir=" #$output "/lib/girepository-1.0")) #:phases @@ -2771,8 +2772,7 @@ printed to standard output.") (setenv "HAVE_VALGRIND_FALSE" "#")))))) (inputs (list glib - gtk+ - gtk+-2)) + gtk+)) (native-inputs (list autoconf automake |