also test nix-unstable

This commit is contained in:
Jörg Thalheim 2023-05-23 17:21:25 +02:00
parent ba2b0a2b81
commit e3d41d9c39
4 changed files with 16 additions and 9 deletions

View file

@ -15,8 +15,12 @@
{
packages = {
default = pkgs.callPackage ./default.nix { };
test-runner = pkgs.callPackage ./test-runner.nix { };
test-runner-unstable = pkgs.callPackage ./test-runner.nix { };
test-runner-stable = pkgs.callPackage ./test-runner.nix {
nixVersion = "stable";
};
test-runner-unstable = pkgs.callPackage ./test-runner.nix {
nixVersion = "unstable";
};
};
devShells.default = pkgs.callPackage ./shell.nix { };
apps.test-runner = {