From aec4341cb4853f0002a06a97aba9c50e70ea7512 Mon Sep 17 00:00:00 2001 From: Nicolas Pierron Date: Mon, 6 Jul 2009 23:20:14 +0000 Subject: [PATCH] Fix: (in moduleClosure) remove key attribute of inlined sets. svn path=/nixpkgs/trunk/; revision=16198 --- pkgs/lib/options.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/lib/options.nix b/pkgs/lib/options.nix index ca6173ef086..ca0f3dbe9fa 100644 --- a/pkgs/lib/options.nix +++ b/pkgs/lib/options.nix @@ -296,7 +296,7 @@ rec { inlineImportedSets = list: lib.concatMap (m:[m] ++ map moduleImport (getImportedSets m)) list; in - inlineImportedSets (removeKeys (lazyGenericClosure { + removeKeys (inlineImportedSets (lazyGenericClosure { startSet = map moduleImport initModules; operator = m: map moduleImport (getImportedPaths m); }));