mirror of
https://codeberg.org/guix/guix.git
synced 2026-01-25 03:55:08 -06:00
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
This commit is contained in:
parent
ea03efc83c
commit
5740e4fe14
1 changed files with 21 additions and 23 deletions
|
|
@ -11277,29 +11277,27 @@ basically a text box in which notes can be written.")
|
||||||
',unicode-files))
|
',unicode-files))
|
||||||
#t)))))
|
#t)))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("desktop-file-utils" ,desktop-file-utils)
|
(cons* desktop-file-utils
|
||||||
("docbook-xml" ,docbook-xml-4.5)
|
docbook-xml-4.5
|
||||||
("glib:bin" ,glib "bin") ; for glib-compile-resources.
|
`(,glib "bin")
|
||||||
("gobject-introspection" ,gobject-introspection)
|
gobject-introspection
|
||||||
("gtk-doc" ,gtk-doc/stable)
|
gtk-doc
|
||||||
("intltool" ,intltool)
|
intltool
|
||||||
("itstool" ,itstool)
|
itstool
|
||||||
("pkg-config" ,pkg-config)
|
pkg-config
|
||||||
("python" ,python)
|
python
|
||||||
,@(map (match-lambda
|
unzip
|
||||||
((file hash)
|
(map (match-lambda
|
||||||
`(,file
|
((file hash)
|
||||||
,(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append
|
(uri (string-append
|
||||||
"https://www.unicode.org/Public/17.0.0/ucd/"
|
"https://www.unicode.org/Public/17.0.0/ucd/"
|
||||||
file))
|
file))
|
||||||
(sha256 (base32 hash))))))
|
(sha256 (base32 hash)))))
|
||||||
unicode-files)
|
unicode-files)))
|
||||||
("unzip" ,unzip)))
|
(inputs (list gtk+
|
||||||
(inputs
|
libxml2))
|
||||||
`(("gtk+" ,gtk+)
|
|
||||||
("xmllint" ,libxml2)))
|
|
||||||
(home-page "https://wiki.gnome.org/Apps/Gucharmap")
|
(home-page "https://wiki.gnome.org/Apps/Gucharmap")
|
||||||
(synopsis "Unicode character picker and font browser")
|
(synopsis "Unicode character picker and font browser")
|
||||||
(description
|
(description
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue