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