mirror of
https://github.com/NixOS/nix.git
synced 2024-11-22 06:42:28 +00:00
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
|