8 lines
141 B
Nix
8 lines
141 B
Nix
|
{ ... }:
|
||
|
derivation {
|
||
|
name = "im-a-drv";
|
||
|
system = builtins.currentSystem;
|
||
|
builder = "/bin/sh";
|
||
|
args = [ "-c" ''echo "" > $out'' ];
|
||
|
}
|