opencomposite: add meta.platforms (#357198)
[NixPkgs.git] / lib / tests / release.nix
blob5334498d0844909f73d2f5b6e31d0e75fb68daf6
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; },
7 }:
9 let
10   lib = import ../.;
11   testWithNix = nix:
12     import ./test-with-nix.nix { inherit lib nix pkgs; };
15   pkgs.symlinkJoin {
16     name = "nixpkgs-lib-tests";
17     paths = map testWithNix nixVersions;
18   }