nixpkgs/pkgs/applications/editors/kdevelop5/wrapper.nix

8 lines
184 B
Nix

{ symlinkJoin, kdevelop-unwrapped, plugins ? null }:
symlinkJoin {
name = "kdevelop-with-plugins";
paths = [ kdevelop-unwrapped ] ++ (if plugins != null then plugins else []);
}