summary refs log tree commit diff
path: root/pkgs/applications/kde/kitinerary.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/kde/kitinerary.nix')
-rw-r--r--pkgs/applications/kde/kitinerary.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/pkgs/applications/kde/kitinerary.nix b/pkgs/applications/kde/kitinerary.nix
new file mode 100644
index 00000000000..8112460549b
--- /dev/null
+++ b/pkgs/applications/kde/kitinerary.nix
@@ -0,0 +1,19 @@
+{
+  mkDerivation, lib, extra-cmake-modules
+, qtbase, qtdeclarative, ki18n, kmime, kpkpass
+, poppler, kcontacts, kcalcore
+}:
+
+mkDerivation {
+  name = "kitinerary";
+  meta = {
+    license = with lib.licenses; [ lgpl21 ];
+    maintainers = [ lib.maintainers.bkchr ];
+  };
+  nativeBuildInputs = [ extra-cmake-modules ];
+  buildInputs = [
+    qtbase qtdeclarative ki18n kmime kpkpass poppler
+    kcontacts kcalcore
+  ];
+  outputs = [ "out" "dev" ];
+}