about summary refs log tree commit diff
path: root/tests/filter-source.nix
blob: a620f0fda5c49aeea67dab3e994b3729c8084024 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
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 ./test-tmp/filterin;
}