My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/tools/misc/hydra/default.nix

22 lines
524 B

{ fetchFromGitHub, callPackage, nixVersions, nixosTests }:
{
hydra-unstable = callPackage ./common.nix {
version = "2021-12-17";
src = fetchFromGitHub {
owner = "NixOS";
repo = "hydra";
rev = "e1e5fafdff63c1e1595d2edb8c9854710211a0d7";
sha256 = "sha256-JPkw3heasqX9iWju7BWjKDsyoS+HmLIKM2ibwHq5+Ko=";
};
patches = [
./eval.patch
./missing-std-string.patch
];
nix = nixVersions.nix_2_4;
tests = {
basic = nixosTests.hydra.hydra-unstable;
};
};
}