Author: urkud
Date: Sun Oct 17 19:07:03 2010
New Revision: 24333
URL: https://svn.nixos.org/websvn/nix/?rev=24333&sc=1

Log:
Fix evaluation

Modified:
   nixpkgs/trunk/pkgs/development/libraries/hspell/dicts.nix

Modified: nixpkgs/trunk/pkgs/development/libraries/hspell/dicts.nix
==============================================================================
--- nixpkgs/trunk/pkgs/development/libraries/hspell/dicts.nix   Sun Oct 17 
18:44:39 2010        (r24332)
+++ nixpkgs/trunk/pkgs/development/libraries/hspell/dicts.nix   Sun Oct 17 
19:07:03 2010        (r24333)
@@ -5,8 +5,8 @@
     inherit (hspell) src patchPhase buildNativeInputs;
     meta = hspell.meta // {
       description = "${a.buildFlags} Hebrew dictionary";
-    } // a.meta;
-  } // (removeAttrs ["meta"] a));
+    } // (if a ? meta then a.meta else {});
+  } // (removeAttrs a ["meta"]));
 in
 {
   recurseForDerivations = true;
_______________________________________________
nix-commits mailing list
[email protected]
http://mail.cs.uu.nl/mailman/listinfo/nix-commits

Reply via email to