24 lines
332 B
Nix
24 lines
332 B
Nix
|
with import ./config.nix;
|
||
|
|
||
|
{
|
||
|
|
||
|
good = mkDerivation {
|
||
|
name = "good";
|
||
|
builder = builtins.toFile "builder"
|
||
|
''
|
||
|
mkdir $out
|
||
|
touch $out/good
|
||
|
'';
|
||
|
};
|
||
|
|
||
|
bad = mkDerivation {
|
||
|
name = "good";
|
||
|
builder = builtins.toFile "builder"
|
||
|
''
|
||
|
mkdir $out
|
||
|
touch $out/bad
|
||
|
'';
|
||
|
};
|
||
|
|
||
|
}
|