about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/tools/misc/hydra/default.nix
blob: 40a480a090982f69d1603ab45dd47c8c3f096e98 (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-29";
    src = fetchFromGitHub {
      owner = "NixOS";
      repo = "hydra";
      rev = "9bb04ed97af047968196bad1728f927f7a6d905f";
      sha256 = "sha256-gN/zNI2hGDMnYUjeGnU7SAuXP4KCmNqG+AYOVfINaQE=";
    };
    nix = nixFlakes;

    tests = {
      basic = nixosTests.hydra.hydra-unstable;
    };
  };
}