686ce24904
GitOrigin-RevId: ac1f5b72a9e95873d1de0233fddcb56f99884b37
7 lines
189 B
Nix
7 lines
189 B
Nix
{ lib, symlinkJoin, kdevelop-unwrapped, plugins ? null }:
|
|
|
|
symlinkJoin {
|
|
name = "kdevelop-with-plugins";
|
|
|
|
paths = [ kdevelop-unwrapped ] ++ (lib.optionals (plugins != null) plugins);
|
|
}
|