about summary refs log tree commit diff
path: root/pkgs/applications/editors/kdevelop5/wrapper.nix
blob: 86d3de9eb39a945f323e612bb13ac628fe7e7696 (plain) (blame)
1
2
3
4
5
6
7
{ symlinkJoin, kdevelop-unwrapped, plugins ? null }:

symlinkJoin {
  name = "kdevelop-with-plugins";

  paths = [ kdevelop-unwrapped ] ++ (if plugins != null then plugins else []);
}