depot/third_party/nixpkgs/pkgs/applications/kde/kdevelop/wrapper.nix

12 lines
198 B
Nix

{
lib,
symlinkJoin,
kdevelop-unwrapped,
plugins ? null,
}:
symlinkJoin {
name = "kdevelop-with-plugins";
paths = [ kdevelop-unwrapped ] ++ (lib.optionals (plugins != null) plugins);
}