depot/third_party/nixpkgs/pkgs/development/tools/misc/hydra/default.nix
Default email a29f39726d Project import generated by Copybara.
GitOrigin-RevId: 39e6bf76474ce742eb027a88c4da6331f0a1526f
2021-05-04 23:07:42 +02:00

18 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;
};
};
}