forked from lix-project/hydra
10 lines
212 B
Nix
10 lines
212 B
Nix
|
with import ./config.nix;
|
||
|
{
|
||
|
requireExperimentalFeatures =
|
||
|
mkDerivation {
|
||
|
name = "empty-dir";
|
||
|
builder = ./empty-dir-builder.sh;
|
||
|
requiredSystemFeatures = [ "test-system-feature" ];
|
||
|
};
|
||
|
}
|