diff options
author | Petr Hodina <phodina@protonmail.com> | 2022-09-26 17:42:28 +0200 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2022-11-21 22:01:16 +0100 |
commit | cc1ff122d71e32095cf81e5f2e8e01b3d0d0fc24 (patch) | |
tree | b63568c4ed9b1a59c174f6137932fe0a80b504d9 /gnu/packages/kde-utils.scm | |
parent | 5c34774871e38ac1d863d6fe5682fa5bb4c79113 (diff) | |
download | guix-cc1ff122d71e32095cf81e5f2e8e01b3d0d0fc24.tar guix-cc1ff122d71e32095cf81e5f2e8e01b3d0d0fc24.tar.gz |
gnu: Add kcharselect.
* gnu/packages/kde-utils.scm (kcharselect): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org>
Diffstat (limited to 'gnu/packages/kde-utils.scm')
-rw-r--r-- | gnu/packages/kde-utils.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/kde-utils.scm b/gnu/packages/kde-utils.scm index ec1c622259..2742d6b846 100644 --- a/gnu/packages/kde-utils.scm +++ b/gnu/packages/kde-utils.scm @@ -490,6 +490,30 @@ drive, USB stick, etc "This package provides a scientific calculator.") (license license:gpl2+))) +(define-public kcharselect + (package + (name "kcharselect") + (version "22.08.1") + (source (origin + (method url-fetch) + (uri (string-append "mirror://kde/stable/release-service/" + version "/src/kcharselect-" version + ".tar.xz")) + (sha256 + (base32 + "1gs9jkq76dkhjgjqpl5dcsx0l2qi6i0pk122y1qmwgyd6f8af35b")))) + (build-system qt-build-system) + (native-inputs (list extra-cmake-modules)) + (inputs (list kbookmarks kcoreaddons kcrash ki18n kwidgetsaddons kxmlgui)) + (home-page "https://apps.kde.org/kcharselect/") + (synopsis "Select and copy special characters from installed fonts") + (description + "This package provides a tool to display various information +about the selected character. This includes not only the Unicode character +name, but also aliases, general notes and cross references to similar +characters.") + (license license:gpl2+))) + (define-public kdialog (package (name "kdialog") |