Making the latest haskell expressions appear on 'nix-env -qa'.

More than one person had trouble not finding ghc 6.12 on 'nix-env -qa '*''

From trunk@21477

svn path=/nixpkgs/branches/mass-update-01/; revision=21563
This commit is contained in:
Yury G. Kudryashov
2010-05-03 03:51:07 +00:00
parent 0b7a1f96f0
commit 83878f4f12

View File

@@ -2314,23 +2314,23 @@ let
*/
# Helper functions to abstract away from repetitive instantiations.
haskellPackagesFun610 = ghcPath : profDefault : import ./haskell-packages.nix {
haskellPackagesFun610 = ghcPath : profDefault : recurseIntoAttrs (import ./haskell-packages.nix {
inherit pkgs;
enableLibraryProfiling = getConfig [ "cabal" "libraryProfiling" ] profDefault;
ghc = import ghcPath {
inherit fetchurl stdenv perl ncurses gmp libedit;
ghc = ghc6101Binary;
};
};
});
haskellPackagesFun612 = ghcPath : profDefault : import ./haskell-packages.nix {
haskellPackagesFun612 = ghcPath : profDefault : recurseIntoAttrs (import ./haskell-packages.nix {
inherit pkgs;
enableLibraryProfiling = getConfig [ "cabal" "libraryProfiling" ] profDefault;
ghc = import ghcPath {
inherit fetchurl stdenv perl ncurses gmp;
ghc = ghc6101Binary;
};
};
});
# Currently active GHC versions.
haskellPackages_ghc6101 =