forked from lix-project/lix
8 lines
264 B
Nix
8 lines
264 B
Nix
|
derivation {
|
||
|
name = "filter";
|
||
|
system = "@system@";
|
||
|
builder = "@shell@";
|
||
|
args = ["-e" "-x" (builtins.toFile "builder" "PATH=@testPath@; ln -s $input $out")];
|
||
|
input = builtins.filterSource (path: baseNameOf (toString path) != "foo") ./test-tmp/filterin;
|
||
|
}
|