summary refs log tree commit diff
path: root/pkgs/applications/kde/akonadiconsole.nix
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@mailbox.org>2017-05-10 13:35:34 -0500
committerThomas Tuegel <ttuegel@mailbox.org>2017-08-21 06:51:16 -0500
commitd5468a51fb5afb3c812d8cf8abf950b85d2454ce (patch)
treece5bc21e859d144ff47b5a9dc4a61c8321e370da /pkgs/applications/kde/akonadiconsole.nix
parent4e799eb5bd2ac7ea7bc0477712674b4f6781688a (diff)
downloadnixlib-d5468a51fb5afb3c812d8cf8abf950b85d2454ce.tar
nixlib-d5468a51fb5afb3c812d8cf8abf950b85d2454ce.tar.gz
nixlib-d5468a51fb5afb3c812d8cf8abf950b85d2454ce.tar.bz2
nixlib-d5468a51fb5afb3c812d8cf8abf950b85d2454ce.tar.lz
nixlib-d5468a51fb5afb3c812d8cf8abf950b85d2454ce.tar.xz
nixlib-d5468a51fb5afb3c812d8cf8abf950b85d2454ce.tar.zst
nixlib-d5468a51fb5afb3c812d8cf8abf950b85d2454ce.zip
akonadiconsole: init at 17.04.0
Diffstat (limited to 'pkgs/applications/kde/akonadiconsole.nix')
-rw-r--r--pkgs/applications/kde/akonadiconsole.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/applications/kde/akonadiconsole.nix b/pkgs/applications/kde/akonadiconsole.nix
new file mode 100644
index 000000000000..844cbc7d17f2
--- /dev/null
+++ b/pkgs/applications/kde/akonadiconsole.nix
@@ -0,0 +1,21 @@
+{
+  mkDerivation, lib, kdepimTeam,
+  extra-cmake-modules, kdoctools,
+  akonadi, akonadi-contacts, calendarsupport, kcalcore, kcompletion,
+  kconfigwidgets, kcontacts, kdbusaddons, kitemmodels, kpimtextedit,
+  ktextwidgets, kxmlgui, messagelib, qtbase,
+}:
+
+mkDerivation {
+  name = "akonadiconsole";
+  meta = {
+    license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
+    maintainers = kdepimTeam;
+  };
+  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
+  buildInputs = [
+    akonadi akonadi-contacts calendarsupport kcalcore kcompletion kconfigwidgets
+    kcontacts kdbusaddons kitemmodels kpimtextedit ktextwidgets kxmlgui
+    messagelib qtbase
+  ];
+}