ca5ab3a501
GitOrigin-RevId: 4a01ca36d6bfc133bc617e661916a81327c9bbc8
7 lines
184 B
Nix
7 lines
184 B
Nix
{ symlinkJoin, kdevelop-unwrapped, plugins ? null }:
|
|
|
|
symlinkJoin {
|
|
name = "kdevelop-with-plugins";
|
|
|
|
paths = [ kdevelop-unwrapped ] ++ (if plugins != null then plugins else []);
|
|
}
|