3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/tools/misc/hydra/default.nix
Shea Levy 9c5f8a20b4
nixUnstable: 2.4pre20201205_a5d85d0 -> 2.4pre20210308_1c0e3e4
hydra-unstable: 2020-10-20 -> 2021-03-10
2021-03-10 14:13:00 -05:00

19 lines
449 B
Nix

{ fetchFromGitHub, nixStable, callPackage, nixFlakes, nixosTests }:
{
hydra-unstable = callPackage ./common.nix {
version = "2021-03-10";
src = fetchFromGitHub {
owner = "NixOS";
repo = "hydra";
rev = "930f05c38eeac63ad6c3e3250de2667e2df2e96e";
sha256 = "06s2lg119p96i1j4rdbg3z097n25bgvq8ljdn4vcwcw3yz0lnswm";
};
nix = nixFlakes;
tests = {
basic = nixosTests.hydra.hydra-unstable;
};
};
}