mirror of
https://github.com/CHN-beta/nixpkgs.git
synced 2026-01-12 02:40:31 +08:00
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:
@@ -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 =
|
||||
|
||||
Reference in New Issue
Block a user