svn path=/nixpkgs/trunk/; revision=14498
This commit is contained in:
Eelco Dolstra
2009-03-10 20:04:08 +00:00
parent dfb3345149
commit 2ae9a1c947
3 changed files with 3 additions and 3 deletions

View File

@@ -173,7 +173,7 @@ rec {
};
};
derivations = with lib; builtins.listToAttrs (lib.concatLists ( lib.mapRecordFlatten
( n : attrs : let d = (toDerivation attrs); in [ (nv n d) (nv attrs.name d) ] ) pkgs ) );
( n : attrs : let d = (toDerivation attrs); in [ (nameValuePair n d) (nameValuePair attrs.name d) ] ) pkgs ) );
}.derivations;
});