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.
20 lines
366 B
Nix
20 lines
366 B
Nix
{ kde, libxslt, boost, kdepimlibs, akonadi, shared_desktop_ontologies
|
|
, shared_mime_info }:
|
|
|
|
kde {
|
|
|
|
# TODO: libkgapi(2), LibKFbAPI,libkolab, libkolabxml
|
|
|
|
buildInputs = [
|
|
kdepimlibs akonadi boost shared_desktop_ontologies
|
|
libxslt
|
|
];
|
|
|
|
nativeBuildInputs = [ shared_mime_info ];
|
|
|
|
meta = {
|
|
description = "KDE PIM runtime";
|
|
license = "GPL";
|
|
};
|
|
}
|