mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
16 lines
413 B
Nix
16 lines
413 B
Nix
|
{ kde, cmake, qt4, perl, boost, cyrus_sasl, gpgme, libical, openldap, shared_mime_info
|
||
|
, kdelibs, automoc4, akonadi, soprano}:
|
||
|
|
||
|
kde.package {
|
||
|
|
||
|
buildInputs = [ cmake automoc4 perl shared_mime_info ];
|
||
|
propagatedBuildInputs = [ qt4 boost cyrus_sasl gpgme libical openldap kdelibs
|
||
|
akonadi soprano ];
|
||
|
|
||
|
meta = {
|
||
|
description = "KDE PIM libraries";
|
||
|
license = "LGPL";
|
||
|
kde.name = "kdepimlibs";
|
||
|
};
|
||
|
}
|