diff options
Diffstat (limited to 'third_party/nix/tests/filter-source.nix')
-rw-r--r-- | third_party/nix/tests/filter-source.nix | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/third_party/nix/tests/filter-source.nix b/third_party/nix/tests/filter-source.nix deleted file mode 100644 index 9071636394af..000000000000 --- a/third_party/nix/tests/filter-source.nix +++ /dev/null @@ -1,12 +0,0 @@ -with import ./config.nix; - -mkDerivation { - name = "filter"; - builder = builtins.toFile "builder" "ln -s $input $out"; - input = - let filter = path: type: - type != "symlink" - && baseNameOf path != "foo" - && !((import ./lang/lib.nix).hasSuffix ".bak" (baseNameOf path)); - in builtins.filterSource filter ((builtins.getEnv "TEST_ROOT") + "/filterin"); -} |