nixpkgs/pkgs/applications/kde/kitinerary.nix

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

24 lines
535 B
Nix
Raw Normal View History

{ mkDerivation, lib, extra-cmake-modules
, qtdeclarative, ki18n, kmime, kpkpass
, poppler, kcontacts, kcalendarcore
2023-03-17 22:39:35 +00:00
, shared-mime-info, zxing-cpp
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
2023-03-17 22:39:35 +00:00
kcontacts kcalendarcore ki18n zxing-cpp
];
2018-08-20 11:44:05 +00:00
outputs = [ "out" "dev" ];
}