mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 13:41:26 +00:00
23 lines
559 B
Nix
23 lines
559 B
Nix
{ kde, boost, cyrus_sasl, gpgme, libical, openldap, shared_mime_info
|
|
, kdelibs, akonadi, shared_desktop_ontologies, libxml2, libxslt, prison }:
|
|
|
|
kde {
|
|
buildInputs =
|
|
[ boost gpgme shared_desktop_ontologies libical libxml2 libxslt
|
|
openldap cyrus_sasl akonadi prison
|
|
];
|
|
|
|
propagatedBuildInputs = [ kdelibs ];
|
|
|
|
preConfigure = ''
|
|
echo '#include <sys/types.h>' > tmp.h
|
|
cat tmp.h kioslave/smtp/command.h > tmp2.h
|
|
mv tmp2.h kioslave/smtp/command.h
|
|
'';
|
|
|
|
meta = {
|
|
description = "KDE PIM libraries";
|
|
license = "LGPL";
|
|
};
|
|
}
|