5da7ee9e8a
This should closely match the documented behaviour. It might still be missing some edge cases of course. Change-Id: I5c75fa045d5f3be8cf5eab787a02644500c14522 Reviewed-on: https://cl.tvl.fyi/c/depot/+/2466 Reviewed-by: tazjin <mail@tazj.in> Tested-by: BuildkiteCI
7 lines
141 B
Nix
7 lines
141 B
Nix
{ ... }:
|
|
derivation {
|
|
name = "im-a-drv";
|
|
system = builtins.currentSystem;
|
|
builder = "/bin/sh";
|
|
args = [ "-c" ''echo "" > $out'' ];
|
|
}
|