gnu: Add kldap.

* gnu/packages/kde-pim.scm (kldap): New variable.
This commit is contained in:
Hartmut Goebel 2019-12-05 22:53:44 +01:00
parent 037994df43
commit 6e03dbea47
No known key found for this signature in database
GPG key ID: 634A8DFFD3F631DF

View file

@ -29,6 +29,7 @@ (define-module (gnu packages kde-pim)
#:use-module (gnu packages documentation)
#:use-module (gnu packages gnome)
#:use-module (gnu packages kde-frameworks)
#:use-module (gnu packages openldap)
#:use-module (gnu packages qt)
#:use-module (gnu packages sqlite)
#:use-module (gnu packages xml))
@ -221,6 +222,34 @@ (define-public kimap
(license ;; GPL for programs, LGPL for libraries
(list license:gpl2+ license:lgpl2.0+))))
(define-public kldap
(package
(name "kldap")
(version "19.08.3")
(source
(origin
(method url-fetch)
(uri (string-append "mirror://kde/stable/applications/" version
"/src/kldap-" version ".tar.xz"))
(sha256
(base32 "1blbnj8av6h168g14gyphyd9sz87af773b1qglmbkv5pzbzaanxn"))))
(build-system qt-build-system)
(native-inputs
`(("extra-cmake-modules" ,extra-cmake-modules)
("kdoctools" ,kdoctools)))
(inputs
`(("ki18n" ,ki18n)
("kio" ,kio)
("kwidgetsaddons" ,kwidgetsaddons)
("qtbase" ,qtbase)))
(propagated-inputs
`(("cyrus-sasl" ,cyrus-sasl)
("openldap" ,openldap)))
(home-page "https://api.kde.org/stable/kdepimlibs-apidocs/")
(synopsis "Library for accessing LDAP")
(description "This library provides an API for LDAP.")
(license license:lgpl2.0+)))
(define-public kmbox
(package
(name "kmbox")