mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: Add gpgmepp.
* gnu/packages/kde-frameworks.scm (gpgmepp): New variable.
This commit is contained in:
parent
812bab6ded
commit
30ffab5006
1 changed files with 26 additions and 0 deletions
|
@ -110,6 +110,32 @@ (define-public phonon
|
|||
(description "KDE's multimedia library.")
|
||||
(license license:lgpl2.1+)))
|
||||
|
||||
(define-public gpgmepp
|
||||
(package
|
||||
(name "gpgmepp")
|
||||
(version "16.04.3")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://kde/stable/applications"
|
||||
"/" version "/src/"
|
||||
name "-" version ".tar.xz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1850pdysi7c1w0nxnhcbrhnkrfqyrcl0laxyjcw1g1ln764pwcmj"))))
|
||||
(build-system cmake-build-system)
|
||||
(native-inputs
|
||||
`(("extra-cmake-modules" ,extra-cmake-modules)))
|
||||
(propagated-inputs
|
||||
`(("boost" ,boost)
|
||||
("gpgme" ,gpgme)))
|
||||
(inputs
|
||||
`(("qtbase" ,qtbase)))
|
||||
(home-page "https://community.kde.org/Frameworks")
|
||||
(synopsis "C++ bindings/wrapper for gpgme")
|
||||
(description "C++ bindings/wrapper for gpgme.")
|
||||
(license license:lgpl2.1+)))
|
||||
|
||||
|
||||
;; Tier 1
|
||||
;;
|
||||
|
|
Loading…
Reference in a new issue