2e0589b4ca
Upstream changes to the build system required adjusting many packages' dependencies. On the Nixpkgs side, we no longer propagate the dependency on cmake (to reduce closure size), so downstream dependencies had to be adjusted for most packages that depend on kdelibs.
30 lines
745 B
Nix
30 lines
745 B
Nix
{ kde, pkgconfig, boost, cyrus_sasl, gpgme, libical, openldap, prison
|
|
, kdelibs, akonadi, libxslt, nepomuk_core
|
|
, shared_mime_info, shared_desktop_ontologies, qjson
|
|
, automoc4, cmake, perl
|
|
}:
|
|
|
|
kde {
|
|
nativeBuildInputs = [ automoc4 cmake perl pkgconfig ];
|
|
|
|
cmakeFlags = [
|
|
"-DCMAKE_MINIMUM_REQUIRED_VERSION=3.3"
|
|
];
|
|
|
|
buildInputs =
|
|
[ boost gpgme libical libxslt qjson prison
|
|
openldap cyrus_sasl akonadi shared_desktop_ontologies
|
|
shared_mime_info
|
|
];
|
|
|
|
propagatedBuildInputs = [ kdelibs nepomuk_core ];
|
|
|
|
# Prevent a dependency on boost.dev. FIXME: move this cmake file to .dev.
|
|
postInstall = "rm $out/lib/gpgmepp/GpgmeppConfig.cmake";
|
|
|
|
meta = {
|
|
description = "KDE PIM libraries";
|
|
license = "LGPL";
|
|
};
|
|
}
|