nixpkgs/pkgs/applications/kde/kcalutils.nix

21 lines
529 B
Nix
Raw Permalink Normal View History

2017-05-09 23:33:33 +00:00
{
mkDerivation, lib, kdepimTeam,
extra-cmake-modules, kdoctools,
grantlee, kcalendarcore, kconfig, kontactinterface, kcoreaddons,
2017-05-09 23:33:33 +00:00
kidentitymanagement, kpimtextedit,
}:
mkDerivation {
2020-12-24 23:05:07 +00:00
pname = "kcalutils";
2017-05-09 23:33:33 +00:00
meta = {
license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
maintainers = kdepimTeam;
};
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
buildInputs = [
grantlee kcalendarcore kconfig kontactinterface kcoreaddons
2017-05-09 23:33:33 +00:00
kidentitymanagement kpimtextedit
];
outputs = [ "out" "dev" ];
}