From 1353f9c76e82bb86b93c596403221e9e0dfe3ca7 Mon Sep 17 00:00:00 2001 From: Rene Saavedra Date: Sun, 9 Oct 2016 14:57:25 -0500 Subject: [PATCH 1/2] gnu: Add gucharmap. * gnu/packages/gnome.scm (gucharmap): New variable. --- gnu/packages/gnome.scm | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index e33f744..ac5a9d9 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -5543,3 +5543,36 @@ handling the startup notification side.") "Calculator is an application that solves mathematical equations and is suitable as a default application in a Desktop environment.") (license license:gpl3))) + +(define-public gucharmap + (package + (name "gucharmap") + (version "3.18.0") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://gnome/sources/" name "/" + (version-major+minor version) "/" + name "-" version ".tar.xz")) + (sha256 + (base32 + "0c1q9w5vql0vvg6g0knxfnv4ap19fg5cdrwndi1cj9lsym92c78j")))) + (build-system gnu-build-system) + (native-inputs + `(("desktop-file-utils" ,desktop-file-utils) + ("glib:bin" ,glib "bin") ; for glib-compile-resources. + ("gobject-introspection" ,gobject-introspection) + ("intltool" ,intltool) + ("itstool" ,itstool) + ("pkg-config" ,pkg-config))) + (inputs + `(("gtk+" ,gtk+) + ("xmllint" ,libxml2))) + (home-page "https://wiki.gnome.org/Apps/Gucharmap") + (synopsis "Unicode character picker and font browser") + (description + "This program allows you to browse through all the available Unicode +characters and categories for the installed fonts, and to examine their +detailed properties. It is an easy way to find the character you might +only know by its Unicode name or code point.") + (license license:gpl3+))) -- 2.10.0