forked from lix-project/lix
3b81b26457
Otherwise we hit the 104 character limit. http://hydra.nixos.org/build/33562028
13 lines
374 B
Nix
13 lines
374 B
Nix
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");
|
|
}
|