This also marks the end of eval-fail-* migrations Change-Id: If06a60cd9d222bba5fc4f9a9b93de125e7fa2994
10 lines
187 B
Nix
10 lines
187 B
Nix
let
|
|
drv = derivation {
|
|
name = "fail";
|
|
builder = "/bin/false";
|
|
system = "x86_64-linux";
|
|
outputs = [ "out" "foo" ];
|
|
};
|
|
|
|
in builtins.addDrvOutputDependencies drv.outPath
|