diff options
Diffstat (limited to 'third_party/nix/tests/simple.nix')
-rw-r--r-- | third_party/nix/tests/simple.nix | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/third_party/nix/tests/simple.nix b/third_party/nix/tests/simple.nix new file mode 100644 index 000000000000..4223c0f23a5b --- /dev/null +++ b/third_party/nix/tests/simple.nix @@ -0,0 +1,8 @@ +with import ./config.nix; + +mkDerivation { + name = "simple"; + builder = ./simple.builder.sh; + PATH = ""; + goodPath = path; +} |