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

make-tarball.nix: Allow passing in a different Nix

Used by the Nix tests (https://github.com/NixOS/nix/commit/9fff4925613d44ac12775ad8840709130b9498d1).

+5 -1
+5 -1
pkgs/top-level/make-tarball.nix
··· 2 2 also builds the documentation and tests whether the Nix expressions 3 3 evaluate correctly. */ 4 4 5 - { pkgs, nixpkgs, officialRelease }: 5 + { nixpkgs 6 + , officialRelease 7 + , pkgs ? import nixpkgs.outPath {} 8 + , nix ? pkgs.nix 9 + }: 6 10 7 11 with pkgs; 8 12