guix_mirror_bot pushed a commit to branch master
in repository guix.

commit b7da354fc889330c747bb3b202be61b9b74748dd
Author: Arun Isaac <[email protected]>
AuthorDate: Tue Feb 10 01:30:31 2026 +0000

    gnu: uim-gtk: Use G-expressions.
    
    * gnu/packages/xorg.scm (uim-gtk): Use G-expressions.
---
 gnu/packages/xorg.scm | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm
index f6a8e77342..44a93e0e3c 100644
--- a/gnu/packages/xorg.scm
+++ b/gnu/packages/xorg.scm
@@ -6734,13 +6734,13 @@ and embedded platforms.")
   (package/inherit uim
     (name "uim-gtk")
     (inputs
-     `(("gtk" ,gtk+)
-       ("gtk" ,gtk+-2)
-       ,@(package-inputs uim)))
+     (modify-inputs (package-inputs uim)
+       (prepend gtk+ gtk+-2)))
     (arguments
      (substitute-keyword-arguments (package-arguments uim)
        ((#:configure-flags configure-flags)
-        (append configure-flags (list "CFLAGS=-O2 -g -fcommon")))))
+        #~(append #$configure-flags
+                  (list "CFLAGS=-O2 -g -fcommon")))))
     (synopsis "Multilingual input method framework (GTK+ support)")))
 
 (define-public uim-qt

Reply via email to