mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-14 18:26:16 +02:00
9 lines
218 B
Nix
9 lines
218 B
Nix
|
derivation {
|
||
|
name = "advanced-attributes-structured-attrs-defaults";
|
||
|
system = "my-system";
|
||
|
builder = "/bin/bash";
|
||
|
args = [ "-c" "echo hello > $out" ];
|
||
|
outputs = [ "out" "dev" ];
|
||
|
__structuredAttrs = true;
|
||
|
}
|