diff options
author | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2019-12-09 11:31:00 +0100 |
---|---|---|
committer | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2020-02-03 14:28:12 +0100 |
commit | cf256651acc487c064cc6cf577a3c355756f5872 (patch) | |
tree | a2a02a00426ddff6480347672f40934218537343 /gnu | |
parent | da0ef4dd9f18f88150f36a45e92a4726ec1da94b (diff) | |
download | patches-cf256651acc487c064cc6cf577a3c355756f5872.tar patches-cf256651acc487c064cc6cf577a3c355756f5872.tar.gz |
gnu: Add libgravatar.
* gnu/packages/kde-internet.scm (libgravatar): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/kde-internet.scm | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/gnu/packages/kde-internet.scm b/gnu/packages/kde-internet.scm index 5a5b750aa4..4b0504ca5c 100644 --- a/gnu/packages/kde-internet.scm +++ b/gnu/packages/kde-internet.scm @@ -424,6 +424,38 @@ multiple torrents at the same time and comes with extended features to make it a full-featured client for BitTorrent.") (license license:gpl2+))) +(define-public libgravatar + (package + (name "libgravatar") + (version "19.08.3") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://kde/stable/applications/" version + "/src/libgravatar-" version ".tar.xz")) + (sha256 + (base32 "1yzq9d0hzqh1hdfpnh7fp44fyjk169gvm4pqgwg24ra00z8j2d3z")))) + (build-system qt-build-system) + (native-inputs + `(("extra-cmake-modules" ,extra-cmake-modules))) + (inputs + `(("kconfig" ,kconfig) + ("ki18n" ,ki18n) + ("kio" ,kio) + ("kpimcommon" ,kpimcommon) + ("ktextwidgets" ,ktextwidgets) + ("kwidgetsaddons" ,kwidgetsaddons) + ("qtbase" ,qtbase))) + (arguments + `(#:tests? #f)) ;; 2/7 tests fail (due to network issues?) + (home-page "https://cgit.kde.org/libgravatar.git") + (synopsis "Online avatar lookup library") + (description "This library allows to retrieve avatar images based on a +hash from a person's email address, as well as local caching to avoid +unnecessary network operations.") + (license ;; GPL for programs, LGPL for libraries + (list license:gpl2+ license:lgpl2.0+)))) + (define-public libktorrent (package (name "libktorrent") |