forked from lix-project/hydra
abff212d06
Fix #936
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" ];
|
|
};
|
|
}
|