cf4434bc9f
Especially, test the difference in behavior of substituted and unsubstituted builds.
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;
|
|
};
|
|
}
|