summary refs log tree commit diff
path: root/pkgs/applications/kde/kig.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/kde/kig.nix')
-rw-r--r--pkgs/applications/kde/kig.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/applications/kde/kig.nix b/pkgs/applications/kde/kig.nix
new file mode 100644
index 000000000000..9f38079316fa
--- /dev/null
+++ b/pkgs/applications/kde/kig.nix
@@ -0,0 +1,26 @@
+{
+  kdeApp, lib, kdeWrapper
+  , extra-cmake-modules, kdoctools, kparts
+  , qtsvg, qtxmlpatterns, ktexteditor, boost
+}:
+
+let
+  unwrapped =
+    kdeApp {
+      name = "kig";
+      meta = {
+        license = with lib.licenses; [ gpl2 ];
+        maintainers = with lib.maintainers; [ raskin ];
+      };
+      nativeBuildInputs = [ extra-cmake-modules kdoctools ];
+      buildInputs = [
+        kparts qtsvg qtxmlpatterns ktexteditor boost
+      ];
+    };
+in
+kdeWrapper {
+  inherit unwrapped;
+  targets = [ "bin/kig" ];
+}
+
+