diff options
author | David Craven <david@craven.ch> | 2016-08-07 20:14:52 +0200 |
---|---|---|
committer | David Craven <david@craven.ch> | 2016-08-30 22:38:30 +0200 |
commit | 3e1ce65be61d322a295c3307ac94dd139d6addef (patch) | |
tree | ba365af00fbd901531456f49ea8195c16feb30c7 | |
parent | 40d768485ce2154802d63a2e5e997110df62369c (diff) | |
download | guix-3e1ce65be61d322a295c3307ac94dd139d6addef.tar guix-3e1ce65be61d322a295c3307ac94dd139d6addef.tar.gz |
gnu: Add kemoticons.
* gnu/packages/kde-frameworks.scm (kemoticons): New variable.
-rw-r--r-- | gnu/packages/kde-frameworks.scm | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm index 44a27ed6d8..449aeee1e1 100644 --- a/gnu/packages/kde-frameworks.scm +++ b/gnu/packages/kde-frameworks.scm @@ -1886,3 +1886,43 @@ ini-style description files.") (password asking) console mode programs. kdesu and kdessh use it to interface with su and ssh respectively.") (license license:lgpl2.1+))) + +(define-public kemoticons + (package + (name "kemoticons") + (version "5.24.0") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://kde/stable/frameworks/" + (version-major+minor version) "/" + name "-" version ".tar.xz")) + (sha256 + (base32 + "0gmc52k5jb553jvzxwsq79v5y87kgav8i5qqv4bqc9yl7p866zhn")))) + (build-system cmake-build-system) + (propagated-inputs + `(("kservice" ,kservice))) + (native-inputs + `(("extra-cmake-modules" ,extra-cmake-modules))) + (inputs + `(("karchive" ,karchive) + ("kconfig" ,kconfig) + ("kcoreaddons" ,kcoreaddons) + ("qtbase" ,qtbase))) + (arguments + `(#:tests? #f ; FIXME: 2/2 tests fail. + #:phases + (modify-phases %standard-phases + (add-before 'check 'check-setup + (lambda _ + (setenv "HOME" (getcwd)) + (setenv "CTEST_OUTPUT_ON_FAILURE" "1") ; Enable debug output + (setenv "QT_QPA_PLATFORM" "offscreen")))))) + (home-page "https://community.kde.org/Frameworks") + (synopsis "Convert text emoticons to graphical emoticons") + (description "KEmoticons converts emoticons from text to a graphical +representation with images in HTML. It supports setting different themes for +emoticons coming from different providers.") + ;; dual licensed, image files are licensed under cc-by-sa4.0 + (license (list license:gpl2+ license:lgpl2.1+ license:cc-by-sa4.0)))) |