1
0
Fork 0
mirror of https://github.com/NixOS/hydra.git synced 2024-10-18 17:02:28 -04:00
hydra/t/jobs/build-output-as-input.nix

19 lines
317 B
Nix
Raw Normal View History

2011-03-17 09:25:27 -04:00
with import ./config.nix;
let
jobs = {
build1 =
mkDerivation {
name = "build1";
builder = ./empty-dir-builder.sh;
};
2013-01-22 08:41:02 -05:00
build2 =
2013-03-28 20:34:50 -04:00
{ build1 }:
2011-03-17 09:25:27 -04:00
mkDerivation {
name = "build2";
builder = ./empty-dir-builder.sh;
inherit build1;
};
};
in jobs