nixpkgs/pkgs/development/tools/misc/hydra/default.nix
Cole Helbling 451477e741
hydra-unstable: 2021-04-29 -> 2021-05-03
This incorporates a few more API fixes that have been made to Hydra since the
last bump.
2021-05-04 12:39:17 -07:00

19 lines
441 B
Nix

{ fetchFromGitHub, nixStable, callPackage, nixFlakes, nixosTests }:
{
hydra-unstable = callPackage ./common.nix {
version = "2021-05-03";
src = fetchFromGitHub {
owner = "NixOS";
repo = "hydra";
rev = "886e6f85e45a1f757e9b77d2a9e4539fbde29468";
sha256 = "t7Qb57Xjc0Ou+VDGC1N5u9AmeODW6MVOwKSrYRJq5f0=";
};
nix = nixFlakes;
tests = {
basic = nixosTests.hydra.hydra-unstable;
};
};
}