summary refs log tree commit diff
path: root/pkgs/development/tools/misc/hydra/default.nix
blob: a49f22313125ac3ca117d6ff3afc3abb74cbf24e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ 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;
    };
  };
}