svn path=/nixpkgs/trunk/; revision=16131

This commit is contained in:
Eelco Dolstra 2009-07-02 08:58:30 +00:00
parent 70e1cd9c10
commit 0281a7deb8

View file

@ -10,7 +10,7 @@ rec {
concat = x: y: x ++ y;
or = x: y: x || y;
and = x: y: x && y;
mergeAttrs = x : y : x // y;
mergeAttrs = x: y: x // y;
# Take a function and evaluate it with its own returned value.
fix = f: let result = f result; in result;