Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 12 lines 198 B view raw
1{ 2 lib, 3 symlinkJoin, 4 kdevelop-unwrapped, 5 plugins ? null, 6}: 7 8symlinkJoin { 9 name = "kdevelop-with-plugins"; 10 11 paths = [ kdevelop-unwrapped ] ++ (lib.optionals (plugins != null) plugins); 12}