15 lines
275 B
Nix
15 lines
275 B
Nix
|
with import ./config.nix;
|
||
|
{
|
||
|
canbesubstituted =
|
||
|
mkDerivation {
|
||
|
name = "can-be-substituted";
|
||
|
builder = ./empty-dir-builder.sh;
|
||
|
};
|
||
|
|
||
|
unsubstitutable =
|
||
|
mkDerivation {
|
||
|
name = "unsubstitutable";
|
||
|
builder = ./empty-dir-builder.sh;
|
||
|
};
|
||
|
}
|