Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

Avoid `with lib;` at the top level in maintainers/scripts/find-tarballs.nix

Tested with

```
nix-instantiate --readonly-mode --eval --strict --show-trace --json ./maintainers/scripts/find-tarballs.nix --arg expr 'import ./maintainers/scripts/all-tarballs.nix'
```

+15 -4
+15 -4
maintainers/scripts/find-tarballs.nix
··· 1 # This expression returns a list of all fetchurl calls used by ‘expr’. 2 3 - with import ../.. { }; 4 - with lib; 5 - 6 - { expr }: 7 8 let 9 10 root = expr; 11
··· 1 # This expression returns a list of all fetchurl calls used by ‘expr’. 2 3 + { expr, lib ? import ../../lib }: 4 5 let 6 + inherit (lib) 7 + addErrorContext 8 + attrNames 9 + concatLists 10 + const 11 + filter 12 + genericClosure 13 + isAttrs 14 + isDerivation 15 + isList 16 + mapAttrsToList 17 + optional 18 + optionals 19 + ; 20 21 root = expr; 22