From 7349bd0176b8a8ced3a017bb5d0e9ebb30570722 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 29 Jan 2007 14:23:09 +0000 Subject: New primitives: * `sub' to subtract two numbers. * `stringLength' to get the length of a string. * `substring' to get a substring of a string. These should be enough to allow most string operations to be expressed. --- tests/filter-source.nix.in | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'tests/filter-source.nix.in') diff --git a/tests/filter-source.nix.in b/tests/filter-source.nix.in index 8493835c2b93..6fd494794e0c 100644 --- a/tests/filter-source.nix.in +++ b/tests/filter-source.nix.in @@ -4,6 +4,9 @@ derivation { builder = "@shell@"; args = ["-e" "-x" (builtins.toFile "builder" "PATH=@testPath@; ln -s $input $out")]; input = - let filter = path: type: type != "symlink" && baseNameOf (toString path) != "foo"; + let filter = path: type: + type != "symlink" + && baseNameOf path != "foo" + && !((import ./lang/lib.nix).hasSuffix ".bak" (baseNameOf path)); in builtins.filterSource filter ./test-tmp/filterin; } -- cgit 1.4.1