faf0d3e91d
- Reduce environment pollution with a separate $bin output containing programs, plugins, and shared data. Libraries remain in $out and are not installed into the environment. - Only propagate build inputs as required.
22 lines
597 B
Nix
22 lines
597 B
Nix
{
|
|
mkDerivation, lib,
|
|
extra-cmake-modules,
|
|
akonadi, akonadi-mime, grantlee, kcontacts, kdbusaddons, ki18n, kiconthemes,
|
|
kio, kitemmodels, kmime, ktextwidgets, qtwebengine,
|
|
}:
|
|
|
|
mkDerivation {
|
|
name = "akonadi-contacts";
|
|
meta = {
|
|
license = with lib.licenses; [ gpl2 lgpl21 ];
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
};
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [
|
|
akonadi-mime grantlee kcontacts kdbusaddons ki18n kiconthemes kio
|
|
kitemmodels kmime ktextwidgets qtwebengine
|
|
];
|
|
propagatedBuildInputs = [ akonadi ];
|
|
outputs = [ "out" "dev" ];
|
|
}
|