nixpkgs/pkgs/applications/kde/kitinerary.nix

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

28 lines
622 B
Nix
Raw Normal View History

{ mkDerivation, lib, extra-cmake-modules
, qtdeclarative, ki18n, kmime, kpkpass
, poppler, kcontacts, kcalendarcore
, shared-mime-info
2018-08-20 11:44:05 +00:00
}:
mkDerivation {
2020-12-24 23:05:07 +00:00
pname = "kitinerary";
2018-08-20 11:44:05 +00:00
meta = {
license = with lib.licenses; [ lgpl21 ];
maintainers = [ lib.maintainers.bkchr ];
};
nativeBuildInputs = [
extra-cmake-modules
shared-mime-info # for update-mime-database
];
2018-08-20 11:44:05 +00:00
buildInputs = [
qtdeclarative kmime kpkpass poppler
kcontacts kcalendarcore
2018-08-20 11:44:05 +00:00
];
CXXFLAGS = [
"-I${lib.getDev ki18n}/include/KF5" # Fixes: ki18n_version.h: No such file or directory
];
2018-08-20 11:44:05 +00:00
outputs = [ "out" "dev" ];
}