nix-filter/tests/default.nix
2021-04-23 18:53:18 +02:00

24 lines
313 B
Nix

let
nix-filter = import ../.;
in
{
all = nix-filter {
path = ./demo1;
};
without-readme = nix-filter {
path = ./demo1;
deny = [
"README.md"
];
};
with-matchExt = nix-filter {
path = ./demo1;
allow = [
"package.json"
(nix-filter.matchExt "js")
];
};
}