about summary refs log tree commit diff
path: root/pkgs/applications/kde/kcalutils.nix
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@mailbox.org>2017-05-09 18:33:33 -0500
committerThomas Tuegel <ttuegel@mailbox.org>2017-08-21 06:51:12 -0500
commit9e4cf7e36b0d4ecfcdb757d661de7e7a82d3a050 (patch)
tree3eeb2d74296c2354f8470f0c1b59073f513e3e89 /pkgs/applications/kde/kcalutils.nix
parent8c36d47804666e90b62c427dab53dcd0eaca753c (diff)
kcalutils: init at 17.04.0
Diffstat (limited to 'pkgs/applications/kde/kcalutils.nix')
-rw-r--r--pkgs/applications/kde/kcalutils.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/applications/kde/kcalutils.nix b/pkgs/applications/kde/kcalutils.nix
new file mode 100644
index 0000000000000..3f6821e08eaec
--- /dev/null
+++ b/pkgs/applications/kde/kcalutils.nix
@@ -0,0 +1,20 @@
+{
+  mkDerivation, lib, kdepimTeam,
+  extra-cmake-modules, kdoctools,
+  grantlee5, kcalcore, kconfig, kontactinterface, kcoreaddons, kdelibs4support,
+  kidentitymanagement, kpimtextedit,
+}:
+
+mkDerivation {
+  name = "kcalutils";
+  meta = {
+    license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
+    maintainers = kdepimTeam;
+  };
+  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
+  buildInputs = [
+    grantlee5 kcalcore kconfig kontactinterface kcoreaddons kdelibs4support
+    kidentitymanagement kpimtextedit
+  ];
+  outputs = [ "out" "dev" ];
+}