about summary refs log tree commit diff
path: root/pkgs/applications/kde/kdevelop/wrapper.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/kde/kdevelop/wrapper.nix')
-rw-r--r--pkgs/applications/kde/kdevelop/wrapper.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/pkgs/applications/kde/kdevelop/wrapper.nix b/pkgs/applications/kde/kdevelop/wrapper.nix
new file mode 100644
index 0000000000000..86d3de9eb39a9
--- /dev/null
+++ b/pkgs/applications/kde/kdevelop/wrapper.nix
@@ -0,0 +1,7 @@
+{ symlinkJoin, kdevelop-unwrapped, plugins ? null }:
+
+symlinkJoin {
+  name = "kdevelop-with-plugins";
+
+  paths = [ kdevelop-unwrapped ] ++ (if plugins != null then plugins else []);
+}