1 { # The pkgs used for dependencies for the testing itself
2 # Don't test properties of pkgs.lib, but rather the lib in the parent directory
3 pkgs ? import ../.. {} // { lib = throw "pkgs.lib accessed, but the lib tests should use nixpkgs' lib path directly!"; },
4 nix ? pkgs-nixVersions.stable,
5 nixVersions ? [ pkgs-nixVersions.minimum nix pkgs-nixVersions.latest ],
6 pkgs-nixVersions ? import ./nix-for-tests.nix { inherit pkgs; },
12 import ./test-with-nix.nix { inherit lib nix pkgs; };
16 name = "nixpkgs-lib-tests";
17 paths = map testWithNix nixVersions;