nixpkgs/pkgs/applications/editors/kdevelop5/wrapper.nix
Aaron Andersen 49802ef50d kdevelop: added ability to include kdevelop plugins
kdev-php: init at 5.3.1
kdev-python: init at 5.3.1
2019-02-15 23:20:43 -05:00

8 lines
184 B
Nix

{ symlinkJoin, kdevelop-unwrapped, plugins ? null }:
symlinkJoin {
name = "kdevelop-with-plugins";
paths = [ kdevelop-unwrapped ] ++ (if plugins != null then plugins else []);
}