Revert "Reverts a bunch of commits as a try to fix GC errors."

This reverts commit 1e4ba025c2.

Conflicts:
	pkgs/development/web/nodejs/build-node-package.nix
This commit is contained in:
Jaka Hudoklin
2015-03-21 17:49:37 +01:00
parent 51d465646a
commit f953d77be2
2 changed files with 114 additions and 62 deletions
+3 -3
View File
@@ -234,8 +234,8 @@ rec {
in [x] ++ remove x xs;
# Intersects list 'e' and another list
intersect = e: filter (x: elem x e);
intersectLists = e: filter (x: elem x e);
# Substracts list 'e' from another list
substract = e: filter (x: !(elem x e));
# Subtracts list 'e' from another list
subtractLists = e: filter (x: !(elem x e));
}