* Indentation.

svn path=/nixpkgs/trunk/; revision=30193
This commit is contained in:
Eelco Dolstra 2011-11-02 17:13:24 +00:00
parent a6cb9725c0
commit efe6fddd59

View File

@ -273,6 +273,6 @@ rec {
# override only the attributes that are already present in the old set
# useful for deep-overriding
overrideExisting = old: new:
old // listToAttrs (map (attr: nameValuePair attr (attrByPath [attr] (getAttr attr old) new)) (attrNames old));
old // listToAttrs (map (attr: nameValuePair attr (attrByPath [attr] (getAttr attr old) new)) (attrNames old));
}