hydra/t/jobs/config.nix.in

15 lines
312 B
Nix
Raw Normal View History

2011-03-17 13:25:27 +00:00
rec {
path = "@testPath@";
mkDerivation = args:
derivation ({
system = builtins.currentSystem;
PATH = path;
} // args);
mkContentAddressedDerivation = args: mkDerivation ({
__contentAddressed = true;
outputHashMode = "recursive";
outputHashAlgo = "sha256";
} // args);
2011-03-17 13:25:27 +00:00
}