From 49e485925632fd1a75b29cc4334f69e8fc09464a Mon Sep 17 00:00:00 2001 From: Jan Tojnar Date: Tue, 31 Dec 2019 02:32:47 +0100 Subject: [PATCH] hspell: Fix meta check --- pkgs/development/libraries/hspell/dicts.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/hspell/dicts.nix b/pkgs/development/libraries/hspell/dicts.nix index 637a11efaef7..83942c2c1dde 100644 --- a/pkgs/development/libraries/hspell/dicts.nix +++ b/pkgs/development/libraries/hspell/dicts.nix @@ -3,12 +3,11 @@ let dict = variant: a: stdenv.mkDerivation ({ inherit (hspell) src patchPhase nativeBuildInputs; + buildFlags = [ variant ]; + meta = hspell.meta // { broken = true; description = "${variant} Hebrew dictionary"; - - buildFlags = [ variant ]; - } // (if a ? meta then a.meta else {}); } // (removeAttrs a ["meta"])); in