about summary refs log tree commit diff
path: root/pkgs/applications/kde/kontact.nix
diff options
context:
space:
mode:
authorJos van den Oever <jos@vandenoever.info>2017-04-08 01:18:27 +0200
committerThomas Tuegel <ttuegel@mailbox.org>2017-08-21 06:51:17 -0500
commit129413c4742623df72d449daf9174ff215dafd4c (patch)
tree681dda22db8dcd0eece828fb6a5c808149e948cd /pkgs/applications/kde/kontact.nix
parent7fe86510c1fb8be35ae72dd1e1fb4ed0c37ff483 (diff)
kontact: init at 17.04.0
Diffstat (limited to 'pkgs/applications/kde/kontact.nix')
-rw-r--r--pkgs/applications/kde/kontact.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/applications/kde/kontact.nix b/pkgs/applications/kde/kontact.nix
new file mode 100644
index 0000000000000..4bbee9c3ffa61
--- /dev/null
+++ b/pkgs/applications/kde/kontact.nix
@@ -0,0 +1,23 @@
+{
+  mkDerivation, lib, kdepimTeam,
+  extra-cmake-modules, kdoctools,
+  qtwebengine,
+  kcmutils, kcrash, kdbusaddons, kwindowsystem,
+  akonadi, grantleetheme, kdepim-apps-libs, kontactinterface, kpimtextedit,
+  mailcommon,
+}:
+
+mkDerivation {
+  name = "kontact";
+  meta = {
+    license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
+    maintainers = kdepimTeam;
+  };
+  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
+  buildInputs = [
+    qtwebengine
+    kcmutils kcrash kdbusaddons kwindowsystem
+    akonadi grantleetheme kdepim-apps-libs kontactinterface kpimtextedit
+    mailcommon
+  ];
+}