diff options
author | Zheng Junjie <873216071@qq.com> | 2020-12-12 14:38:20 -0500 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2020-12-12 18:06:53 -0500 |
commit | fdfa25ed7b993597993f0afb355d1da928143e17 (patch) | |
tree | 4f307b12d794d331b03496e5c96b544be1954365 /gnu/packages | |
parent | 7a8d4557593461a69ab2380bec4d2a07a2c08c1e (diff) |
gnu: Add libkexiv2.
* gnu/packages/kde.scm (libkexiv2): New variable.
Signed-off-by: Leo Famulari <leo@famulari.name>
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/kde.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/kde.scm b/gnu/packages/kde.scm index fff84bafad..3a15aa6554 100644 --- a/gnu/packages/kde.scm +++ b/gnu/packages/kde.scm @@ -788,6 +788,30 @@ Python, PHP, and Perl.") (description "This package provides a KDE plugin that shows thumbnails of Mobipocket e-books in Dolphin and other KDE apps.") (license license:gpl2+))) + +(define-public libkexiv2 + (package + (name "libkexiv2") + (version "20.12.0") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://kde/stable/release-service/" version + "/src/" name "-" version ".tar.xz")) + (sha256 + (base32 "0k0iinf7s8qlk3fwvq7iic1b4zn2gm65rfd58q7d3wb1i1j2hjjk")))) + (build-system cmake-build-system) + (native-inputs + `(("extra-cmake-modules" ,extra-cmake-modules))) + (inputs + `(("exiv2" ,exiv2) + ("qtbase" ,qtbase))) + (home-page "https://invent.kde.org/graphics/libkexiv2") + (synopsis "Manipulate the metadata of images") + (description "Libkexiv2 wraps the Exiv2 library, allowing to manipulate +picture metadata as EXIF/IPTC and XMP.") + (license license:gpl2+))) + (define-public zeroconf-ioslave (package (name "zeroconf-ioslave") |