about summary refs log tree commit diff
path: root/pkgs/applications/kde/ktnef.nix
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@mailbox.org>2017-05-09 18:36:20 -0500
committerThomas Tuegel <ttuegel@mailbox.org>2017-08-21 06:51:14 -0500
commit551604e0456f680775b482cd0cd72d924a4399e5 (patch)
tree93af93c7be1f33514ce8edcaf304834914946db6 /pkgs/applications/kde/ktnef.nix
parent4e88274bf3d99ad9bf665082759e7cb9cdf4f3e1 (diff)
ktnef: init at 17.04.0
Diffstat (limited to 'pkgs/applications/kde/ktnef.nix')
-rw-r--r--pkgs/applications/kde/ktnef.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/pkgs/applications/kde/ktnef.nix b/pkgs/applications/kde/ktnef.nix
new file mode 100644
index 0000000000000..b5a3834869db3
--- /dev/null
+++ b/pkgs/applications/kde/ktnef.nix
@@ -0,0 +1,18 @@
+{
+  mkDerivation, lib, kdepimTeam,
+  extra-cmake-modules, kdoctools,
+  kcalcore, kcalutils, kcontacts, kdelibs4support
+}:
+
+mkDerivation {
+  name = "ktnef";
+  meta = {
+    license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
+    maintainers = kdepimTeam;
+  };
+  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
+  propagatedBuildInputs = [
+    kcalcore kcalutils kcontacts kdelibs4support
+  ];
+  outputs = [ "out" "dev" ];
+}