about summary refs log tree commit diff
path: root/pkgs/applications/kde/kate.nix
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@mailbox.org>2017-02-25 14:34:51 -0600
committerThomas Tuegel <ttuegel@mailbox.org>2017-02-27 11:49:30 -0600
commit8be4bd7416ca977a6b8513957513355f01c397cc (patch)
treee99fc31c6b51c9712d6c307110524ed5808324e2 /pkgs/applications/kde/kate.nix
parente50ba7041126a5a4fbc81192739e36076010beeb (diff)
kdeApplications: Move out of desktops/kde-5
- There is no such thing as KDE 5
Diffstat (limited to 'pkgs/applications/kde/kate.nix')
-rw-r--r--pkgs/applications/kde/kate.nix32
1 files changed, 32 insertions, 0 deletions
diff --git a/pkgs/applications/kde/kate.nix b/pkgs/applications/kde/kate.nix
new file mode 100644
index 0000000000000..03cc0e1fe33b4
--- /dev/null
+++ b/pkgs/applications/kde/kate.nix
@@ -0,0 +1,32 @@
+{
+  kdeApp, lib, kdeWrapper,
+  ecm, kdoctools,
+  kactivities, kconfig, kcrash, kdbusaddons, kguiaddons, kiconthemes, ki18n,
+  kinit, kio, kitemmodels, kjobwidgets, knewstuff, knotifications, konsole,
+  kparts, ktexteditor, kwindowsystem, kwallet, kxmlgui, libgit2,
+  plasma-framework, qtscript, threadweaver
+}:
+
+let
+  unwrapped =
+    kdeApp {
+      name = "kate";
+      meta = {
+        license = with lib.licenses; [ gpl3 lgpl3 lgpl2 ];
+        maintainers = [ lib.maintainers.ttuegel ];
+      };
+      nativeBuildInputs = [ ecm kdoctools ];
+      propagatedBuildInputs = [
+        kactivities ki18n kio ktexteditor kwindowsystem plasma-framework
+        qtscript kconfig kcrash kguiaddons kiconthemes kinit kjobwidgets kparts
+        kxmlgui kdbusaddons kwallet kitemmodels knotifications threadweaver
+        knewstuff libgit2
+      ];
+    };
+in
+kdeWrapper
+{
+  inherit unwrapped;
+  targets = [ "bin/kate" "bin/kwrite" ];
+  paths = [ konsole.unwrapped ];
+}