From 5740e4fe14b47f3ab2dfc051f5aebc1faf55376f Mon Sep 17 00:00:00 2001 From: Acid Bong Date: Wed, 21 Jan 2026 18:56:16 +0000 Subject: [PATCH] gnu: gucharmap: Modernize inputs' format * gnu/packages/gnome.scm (gucharmap): Modernize inputs' format: switch from list of ("name" drv) pairs to list of derivations themselves Change-Id: Ic96c92971253d9dc3012f1068f97c7991a255a25 --- gnu/packages/gnome.scm | 44 ++++++++++++++++++++---------------------- 1 file changed, 21 insertions(+), 23 deletions(-) diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index dd5edc16880..a18ed71eb4c 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -11277,29 +11277,27 @@ basically a text box in which notes can be written.") ',unicode-files)) #t))))) (native-inputs - `(("desktop-file-utils" ,desktop-file-utils) - ("docbook-xml" ,docbook-xml-4.5) - ("glib:bin" ,glib "bin") ; for glib-compile-resources. - ("gobject-introspection" ,gobject-introspection) - ("gtk-doc" ,gtk-doc/stable) - ("intltool" ,intltool) - ("itstool" ,itstool) - ("pkg-config" ,pkg-config) - ("python" ,python) - ,@(map (match-lambda - ((file hash) - `(,file - ,(origin - (method url-fetch) - (uri (string-append - "https://www.unicode.org/Public/17.0.0/ucd/" - file)) - (sha256 (base32 hash)))))) - unicode-files) - ("unzip" ,unzip))) - (inputs - `(("gtk+" ,gtk+) - ("xmllint" ,libxml2))) + (cons* desktop-file-utils + docbook-xml-4.5 + `(,glib "bin") + gobject-introspection + gtk-doc + intltool + itstool + pkg-config + python + unzip + (map (match-lambda + ((file hash) + (origin + (method url-fetch) + (uri (string-append + "https://www.unicode.org/Public/17.0.0/ucd/" + file)) + (sha256 (base32 hash))))) + unicode-files))) + (inputs (list gtk+ + libxml2)) (home-page "https://wiki.gnome.org/Apps/Gucharmap") (synopsis "Unicode character picker and font browser") (description