nixpkgs/pkgs/desktops/kde-4.14/kdepim-runtime.nix
Thomas Tuegel 2e0589b4ca kde414: build with kdelibs-4.14.12
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.
2015-09-27 15:08:12 -05:00

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";
};
}