From 13101cfab24cc5f1f4555c556ebc30e0172cbf18 Mon Sep 17 00:00:00 2001 From: "Yury G. Kudryashov" Date: Sun, 17 Oct 2010 19:07:03 +0000 Subject: Fix evaluation svn path=/nixpkgs/trunk/; revision=24333 --- pkgs/development/libraries/hspell/dicts.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/hspell/dicts.nix b/pkgs/development/libraries/hspell/dicts.nix index a2ef479e3c45..a7f0d19865cf 100644 --- a/pkgs/development/libraries/hspell/dicts.nix +++ b/pkgs/development/libraries/hspell/dicts.nix @@ -5,8 +5,8 @@ let 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; -- cgit 1.4.1