nixpkgs/pkgs/applications/kde/kcalutils.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
541 B
Nix
Raw Normal View History

2017-05-10 02:33:33 +03:00
{
mkDerivation, lib, kdepimTeam,
extra-cmake-modules, kdoctools,
grantlee, kcalendarcore, kconfig, kontactinterface, kcoreaddons,
2017-05-10 02:33:33 +03:00
kidentitymanagement, kpimtextedit,
}:
mkDerivation {
2020-12-25 02:05:07 +03:00
pname = "kcalutils";
2017-05-10 02:33:33 +03:00
meta = {
2022-10-27 23:47:29 +03:00
license = with lib.licenses; [ gpl2Plus lgpl21Plus fdl12Plus ];
2017-05-10 02:33:33 +03:00
maintainers = kdepimTeam;
};
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
buildInputs = [
grantlee kcalendarcore kconfig kontactinterface kcoreaddons
2017-05-10 02:33:33 +03:00
kidentitymanagement kpimtextedit
];
outputs = [ "out" "dev" ];
}