diff options
author | Raghav Gururajan <raghavgururajan@disroot.org> | 2019-12-21 11:07:19 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-12-21 11:09:10 +0100 |
commit | 4e09f57af8ee9ac3e7bd5a7a904c4cb6d8d44d9d (patch) | |
tree | 8ee591b9cb36435db7d40b43ea722bc6ff64f010 /gnu | |
parent | 5613760aa40a157eb7f6666abbe8f5a9484c8b42 (diff) | |
download | guix-4e09f57af8ee9ac3e7bd5a7a904c4cb6d8d44d9d.tar.gz guix-4e09f57af8ee9ac3e7bd5a7a904c4cb6d8d44d9d.zip |
gnu: Add gnome-characters.
* gnu/packages/gnome.scm (gnome-characters): New variable.
Co-authored-by: Ricardo Wurmus <rekado@elephly.net>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/gnome.scm | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index dab2571fba..0c65151183 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -455,6 +455,38 @@ documents. This package also contains binaries that can convert XPS documents to other formats.") (license license:lgpl2.1+))) +(define-public gnome-characters + (package + (name "gnome-characters") + (version "3.30.0") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://gnome/sources/" + "gnome-characters/" (version-major+minor version) + "/gnome-characters-" version ".tar.xz")) + (sha256 + (base32 + "08cwz39iwgsyyb2wqhb8vfbmh1cwfkgfiy7adp08w7rwqi99x3dp")))) + (build-system meson-build-system) + (arguments '(#:glib-or-gtk? #t)) + (native-inputs + `(("gettext" ,gettext-minimal) + ("glib:bin" ,glib "bin") + ("gtk+:bin" ,gtk+ "bin") + ("pkg-config" ,pkg-config) + ("python" ,python-minimal))) + (inputs + `(("gjs" ,gjs) + ("gtk+" ,gtk+) + ("libunistring" ,libunistring))) + (home-page "https://wiki.gnome.org/Apps/CharacterMap") + (synopsis "Find and insert unusual characters") + (description "Characters is a simple utility application to find +and insert unusual characters. It allows you to quickly find the +character you are looking for by searching for keywords.") + (license license:bsd-3))) + (define-public gnome-common (package (name "gnome-common") |