mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-13 09:46:16 +02:00
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;
|
||
|
}
|