summary refs log tree commit diff
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2011-11-02 17:13:24 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2011-11-02 17:13:24 +0000
commitefe6fddd599d23d8bacdad057af2c042b211ae64 (patch)
treee488886a8b8ccf4e68f994fc054f6e1779c759b4
parenta6cb9725c0ed4490374076c903b4b84caf8328cf (diff)
downloadnixlib-efe6fddd599d23d8bacdad057af2c042b211ae64.tar
nixlib-efe6fddd599d23d8bacdad057af2c042b211ae64.tar.gz
nixlib-efe6fddd599d23d8bacdad057af2c042b211ae64.tar.bz2
nixlib-efe6fddd599d23d8bacdad057af2c042b211ae64.tar.lz
nixlib-efe6fddd599d23d8bacdad057af2c042b211ae64.tar.xz
nixlib-efe6fddd599d23d8bacdad057af2c042b211ae64.tar.zst
nixlib-efe6fddd599d23d8bacdad057af2c042b211ae64.zip
* Indentation.
svn path=/nixpkgs/trunk/; revision=30193
-rw-r--r--pkgs/lib/attrsets.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/lib/attrsets.nix b/pkgs/lib/attrsets.nix
index f39b46db6213..fcaf4f5c9b5c 100644
--- a/pkgs/lib/attrsets.nix
+++ b/pkgs/lib/attrsets.nix
@@ -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));
 
 }