Fix: (in moduleClosure) remove key attribute of inlined sets.

svn path=/nixpkgs/trunk/; revision=16198
This commit is contained in:
Nicolas Pierron 2009-07-06 23:20:14 +00:00
parent 0c9d18f815
commit aec4341cb4

View file

@ -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);
}));