07b8fe0546
GitOrigin-RevId: 916ee862e87ac5ee2439f2fb7856386b4dc906ae
18 lines
449 B
Nix
18 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;
|
|
};
|
|
};
|
|
}
|