mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-05 05:13:04 +00:00
20 lines
482 B
Nix
20 lines
482 B
Nix
{ fetchFromGitHub, callPackage, nixVersions, nixosTests }:
|
|
|
|
{
|
|
hydra-unstable = callPackage ./common.nix {
|
|
version = "2021-08-11";
|
|
src = fetchFromGitHub {
|
|
owner = "NixOS";
|
|
repo = "hydra";
|
|
rev = "9bce425c3304173548d8e822029644bb51d35263";
|
|
sha256 = "sha256-tGzwKNW/odtAYcazWA9bPVSmVXMGKfXsqCA1UYaaxmU=";
|
|
};
|
|
patches = [ ./eval.patch ];
|
|
nix = nixVersions.unstable;
|
|
|
|
tests = {
|
|
basic = nixosTests.hydra.hydra-unstable;
|
|
};
|
|
};
|
|
}
|