blob: e379e1d9598ba871de0272dcb680152a9d27c898 (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
let
drv = derivation {
name = "fail";
builder = "/bin/false";
system = "x86_64-linux";
outputs = [ "out" "foo" ];
};
in builtins.addDrvOutputDependencies drv.outPath
|