49802ef50d
kdev-php: init at 5.3.1 kdev-python: init at 5.3.1
8 lines
184 B
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 []);
|
|
}
|