mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-27 04:59:27 -05:00
gnu: Add kgpg.
* gnu/packages/kde-utils.scm (kgpg): New variable.
This commit is contained in:
parent
ba4f9352c1
commit
48d5d0ef1c
1 changed files with 48 additions and 0 deletions
|
@ -412,6 +412,54 @@ (define-public kcalutils
|
||||||
functions for accessing calendar data using the kcalcore API.")
|
functions for accessing calendar data using the kcalcore API.")
|
||||||
(license license:lgpl2.0+)))
|
(license license:lgpl2.0+)))
|
||||||
|
|
||||||
|
(define-public kgpg
|
||||||
|
(package
|
||||||
|
(name "kgpg")
|
||||||
|
(version "19.08.3")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "mirror://kde/stable/applications/" version
|
||||||
|
"/src/kgpg-" version ".tar.xz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "1dis7zv51a4lhx5l3wlwnhym8f79h8sibhhk97fkn8d7szdrmfw5"))))
|
||||||
|
(build-system qt-build-system)
|
||||||
|
(native-inputs
|
||||||
|
`(("extra-cmake-modules" ,extra-cmake-modules)
|
||||||
|
("gnupg" ,gnupg) ;; TODO: Remove after gpgme uses fixed path
|
||||||
|
("kdoctools" ,kdoctools)))
|
||||||
|
(inputs
|
||||||
|
`(("akonadi" ,akonadi)
|
||||||
|
("akonadi-contacts" ,akonadi-contacts)
|
||||||
|
("boost" ,boost)
|
||||||
|
("gpgme" ,gpgme)
|
||||||
|
("karchive" ,karchive)
|
||||||
|
("kcodecs" ,kcodecs)
|
||||||
|
("kcontacts" ,kcontacts)
|
||||||
|
("kcoreaddons" ,kcoreaddons)
|
||||||
|
("kcrash" ,kcrash)
|
||||||
|
("kdbusaddons" ,kdbusaddons)
|
||||||
|
("ki18n" ,ki18n)
|
||||||
|
("kiconthemes" ,kiconthemes)
|
||||||
|
("kio" ,kio)
|
||||||
|
("kitemmodels" ,kitemmodels)
|
||||||
|
("kjobwidgets" ,kjobwidgets)
|
||||||
|
("knotifications" ,knotifications)
|
||||||
|
("kservice" ,kservice)
|
||||||
|
("ktextwidgets" ,ktextwidgets)
|
||||||
|
("kwidgetsaddons" ,kwidgetsaddons)
|
||||||
|
("kwindowsystem" ,kwindowsystem)
|
||||||
|
("kxmlgui" ,kxmlgui)
|
||||||
|
("oxygen-icons" ,oxygen-icons) ;; default icon set
|
||||||
|
("qtbase" ,qtbase)))
|
||||||
|
(home-page "https://kde.org/applications/utilities/org.kde.kgpg")
|
||||||
|
(synopsis "Graphical front end for GNU Privacy Guard")
|
||||||
|
(description "Kgpg manages cryptographic keys for the GNU Privacy Guard,
|
||||||
|
and can encrypt, decrypt, sign, and verify files. It features a simple editor
|
||||||
|
for applying cryptography to short pieces of text, and can also quickly apply
|
||||||
|
cryptography to the contents of the clipboard.")
|
||||||
|
(license license:gpl2+)))
|
||||||
|
|
||||||
(define-public kidentitymanagement
|
(define-public kidentitymanagement
|
||||||
(package
|
(package
|
||||||
(name "kidentitymanagement")
|
(name "kidentitymanagement")
|
||||||
|
|
Loading…
Reference in a new issue