2017-01-15 22:31:52 +00:00
|
|
|
{ pkgs, callPackage, stdenv, buildPlatform, targetPlatform }:
|
2011-03-12 17:28:15 +00:00
|
|
|
|
2017-01-24 23:00:54 +00:00
|
|
|
let # These are attributes in compiler and packages that don't support integer-simple.
|
|
|
|
integerSimpleExcludes = [
|
|
|
|
"ghc6102Binary"
|
|
|
|
"ghc704Binary"
|
|
|
|
"ghc742Binary"
|
|
|
|
"ghc6104"
|
|
|
|
"ghc6123"
|
|
|
|
"ghc704"
|
2017-03-27 13:14:11 +01:00
|
|
|
"ghc763"
|
2017-01-24 23:00:54 +00:00
|
|
|
"ghcjs"
|
|
|
|
"ghcjsHEAD"
|
|
|
|
"ghcCross"
|
|
|
|
"jhc"
|
|
|
|
"uhc"
|
|
|
|
"integer-simple"
|
|
|
|
];
|
|
|
|
in rec {
|
2009-04-18 13:47:11 +01:00
|
|
|
|
2015-04-19 17:47:45 +01:00
|
|
|
lib = import ../development/haskell-modules/lib.nix { inherit pkgs; };
|
2010-11-15 20:28:42 +00:00
|
|
|
|
2015-04-19 17:47:45 +01:00
|
|
|
compiler = {
|
2010-08-30 18:10:21 +01:00
|
|
|
|
2015-04-19 17:47:45 +01:00
|
|
|
ghc6102Binary = callPackage ../development/compilers/ghc/6.10.2-binary.nix { gmp = pkgs.gmp4; };
|
2016-01-13 20:04:13 +00:00
|
|
|
ghc704Binary = callPackage ../development/compilers/ghc/7.0.4-binary.nix {
|
|
|
|
gmp = pkgs.gmp4;
|
|
|
|
};
|
|
|
|
ghc742Binary = callPackage ../development/compilers/ghc/7.4.2-binary.nix {
|
|
|
|
gmp = pkgs.gmp4;
|
|
|
|
};
|
2014-06-13 09:22:46 +01:00
|
|
|
|
2015-04-19 17:47:45 +01:00
|
|
|
ghc6104 = callPackage ../development/compilers/ghc/6.10.4.nix { ghc = compiler.ghc6102Binary; };
|
|
|
|
ghc6123 = callPackage ../development/compilers/ghc/6.12.3.nix { ghc = compiler.ghc6102Binary; };
|
2016-01-13 20:04:13 +00:00
|
|
|
ghc704 = callPackage ../development/compilers/ghc/7.0.4.nix {
|
|
|
|
ghc = compiler.ghc704Binary;
|
|
|
|
};
|
|
|
|
ghc722 = callPackage ../development/compilers/ghc/7.2.2.nix {
|
|
|
|
ghc = compiler.ghc704Binary;
|
|
|
|
};
|
|
|
|
ghc742 = callPackage ../development/compilers/ghc/7.4.2.nix {
|
|
|
|
ghc = compiler.ghc704Binary;
|
|
|
|
};
|
|
|
|
ghc763 = callPackage ../development/compilers/ghc/7.6.3.nix {
|
|
|
|
ghc = compiler.ghc704Binary;
|
|
|
|
};
|
|
|
|
ghc783 = callPackage ../development/compilers/ghc/7.8.3.nix {
|
|
|
|
ghc = compiler.ghc742Binary;
|
|
|
|
};
|
|
|
|
ghc784 = callPackage ../development/compilers/ghc/7.8.4.nix {
|
|
|
|
ghc = compiler.ghc742Binary;
|
|
|
|
};
|
2016-02-21 18:15:04 +00:00
|
|
|
ghc7102 = callPackage ../development/compilers/ghc/7.10.2.nix rec {
|
|
|
|
bootPkgs = packages.ghc784;
|
|
|
|
inherit (bootPkgs) hscolour;
|
2016-01-13 20:04:13 +00:00
|
|
|
};
|
2016-02-21 18:15:04 +00:00
|
|
|
ghc7103 = callPackage ../development/compilers/ghc/7.10.3.nix rec {
|
|
|
|
bootPkgs = packages.ghc784;
|
|
|
|
inherit (bootPkgs) hscolour;
|
2016-01-13 20:04:13 +00:00
|
|
|
};
|
2016-02-21 18:15:04 +00:00
|
|
|
ghc801 = callPackage ../development/compilers/ghc/8.0.1.nix rec {
|
|
|
|
bootPkgs = packages.ghc7103;
|
|
|
|
inherit (bootPkgs) hscolour;
|
2016-12-25 13:57:58 +00:00
|
|
|
sphinx = pkgs.python27Packages.sphinx;
|
2016-01-13 20:03:55 +00:00
|
|
|
};
|
2016-11-26 20:24:08 +00:00
|
|
|
ghc802 = callPackage ../development/compilers/ghc/8.0.2.nix rec {
|
|
|
|
bootPkgs = packages.ghc7103;
|
|
|
|
inherit (bootPkgs) hscolour;
|
2016-12-26 14:15:32 +00:00
|
|
|
sphinx = pkgs.python27Packages.sphinx;
|
2016-11-26 20:24:08 +00:00
|
|
|
};
|
2016-02-21 18:15:04 +00:00
|
|
|
ghcHEAD = callPackage ../development/compilers/ghc/head.nix rec {
|
2016-08-26 20:15:04 +01:00
|
|
|
bootPkgs = packages.ghc7103;
|
2016-02-21 18:15:04 +00:00
|
|
|
inherit (bootPkgs) alex happy;
|
2017-01-15 22:31:52 +00:00
|
|
|
inherit buildPlatform targetPlatform;
|
2016-11-18 15:44:53 +00:00
|
|
|
selfPkgs = packages.ghcHEAD;
|
2016-11-15 21:59:09 +00:00
|
|
|
};
|
2016-02-01 01:06:56 +00:00
|
|
|
ghcjs = packages.ghc7103.callPackage ../development/compilers/ghcjs {
|
2016-02-21 18:15:04 +00:00
|
|
|
bootPkgs = packages.ghc7103;
|
2014-06-09 09:31:29 +01:00
|
|
|
};
|
2017-01-27 00:45:50 +00:00
|
|
|
ghcjsHEAD = packages.ghc802.callPackage ../development/compilers/ghcjs/head.nix {
|
|
|
|
bootPkgs = packages.ghc802;
|
2016-11-02 02:04:53 +00:00
|
|
|
};
|
2017-02-04 17:19:14 +00:00
|
|
|
ghcHaLVM240 = callPackage ../development/compilers/halvm/2.4.0.nix rec {
|
|
|
|
bootPkgs = packages.ghc802;
|
|
|
|
inherit (bootPkgs) hscolour alex happy;
|
|
|
|
};
|
2015-05-15 14:25:53 +01:00
|
|
|
|
|
|
|
jhc = callPackage ../development/compilers/jhc {
|
|
|
|
inherit (packages.ghc763) ghcWithPackages;
|
|
|
|
};
|
|
|
|
|
|
|
|
uhc = callPackage ../development/compilers/uhc/default.nix ({
|
|
|
|
stdenv = pkgs.clangStdenv;
|
2016-02-26 07:54:33 +00:00
|
|
|
inherit (pkgs.haskellPackages) ghcWithPackages;
|
2015-05-15 14:25:53 +01:00
|
|
|
});
|
|
|
|
|
2017-01-24 23:00:54 +00:00
|
|
|
# The integer-simple attribute set contains all the GHC compilers
|
|
|
|
# build with integer-simple instead of integer-gmp.
|
|
|
|
integer-simple =
|
|
|
|
let integerSimpleGhcNames =
|
|
|
|
pkgs.lib.filter (name: ! builtins.elem name integerSimpleExcludes)
|
|
|
|
(pkgs.lib.attrNames compiler);
|
|
|
|
integerSimpleGhcs = pkgs.lib.genAttrs integerSimpleGhcNames
|
|
|
|
(name: compiler."${name}".override { enableIntegerSimple = true; });
|
2017-02-01 10:01:24 +00:00
|
|
|
in pkgs.recurseIntoAttrs (integerSimpleGhcs // {
|
2017-01-24 23:00:54 +00:00
|
|
|
ghcHEAD = integerSimpleGhcs.ghcHEAD.override { selfPkgs = packages.integer-simple.ghcHEAD; };
|
2017-02-01 10:01:24 +00:00
|
|
|
});
|
2017-02-04 17:19:14 +00:00
|
|
|
|
2014-06-09 09:31:29 +01:00
|
|
|
};
|
2014-05-30 02:00:04 +01:00
|
|
|
|
2015-04-19 17:47:45 +01:00
|
|
|
packages = {
|
2014-02-08 20:16:43 +00:00
|
|
|
|
2015-09-29 13:46:40 +01:00
|
|
|
# Support for this compiler is broken, because it can't deal with directory-based package databases.
|
|
|
|
# ghc6104 = callPackage ../development/haskell-modules { ghc = compiler.ghc6104; };
|
2015-04-19 17:47:45 +01:00
|
|
|
ghc6123 = callPackage ../development/haskell-modules {
|
|
|
|
ghc = compiler.ghc6123;
|
2015-09-16 08:19:56 +01:00
|
|
|
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-6.12.x.nix { };
|
2014-10-18 15:59:46 +01:00
|
|
|
};
|
2015-04-19 17:47:45 +01:00
|
|
|
ghc704 = callPackage ../development/haskell-modules {
|
|
|
|
ghc = compiler.ghc704;
|
2015-09-16 08:19:56 +01:00
|
|
|
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-7.0.x.nix { };
|
2014-06-28 15:45:16 +01:00
|
|
|
};
|
2015-04-19 17:47:45 +01:00
|
|
|
ghc722 = callPackage ../development/haskell-modules {
|
|
|
|
ghc = compiler.ghc722;
|
2015-09-16 08:19:56 +01:00
|
|
|
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-7.2.x.nix { };
|
2015-04-19 17:47:45 +01:00
|
|
|
};
|
|
|
|
ghc742 = callPackage ../development/haskell-modules {
|
|
|
|
ghc = compiler.ghc742;
|
2015-09-16 08:19:56 +01:00
|
|
|
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-7.4.x.nix { };
|
2015-04-19 17:47:45 +01:00
|
|
|
};
|
|
|
|
ghc763 = callPackage ../development/haskell-modules {
|
|
|
|
ghc = compiler.ghc763;
|
2015-09-16 08:19:56 +01:00
|
|
|
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-7.6.x.nix { };
|
|
|
|
};
|
|
|
|
ghc783 = callPackage ../development/haskell-modules {
|
|
|
|
ghc = compiler.ghc783;
|
|
|
|
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-7.8.x.nix { };
|
2015-04-19 17:47:45 +01:00
|
|
|
};
|
|
|
|
ghc784 = callPackage ../development/haskell-modules {
|
|
|
|
ghc = compiler.ghc784;
|
2015-09-16 08:19:56 +01:00
|
|
|
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-7.8.x.nix { };
|
2015-04-19 17:47:45 +01:00
|
|
|
};
|
2015-07-05 19:55:12 +01:00
|
|
|
ghc7102 = callPackage ../development/haskell-modules {
|
|
|
|
ghc = compiler.ghc7102;
|
2015-09-16 08:19:56 +01:00
|
|
|
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-7.10.x.nix { };
|
2015-07-05 19:55:12 +01:00
|
|
|
};
|
2015-12-16 14:10:38 +00:00
|
|
|
ghc7103 = callPackage ../development/haskell-modules {
|
|
|
|
ghc = compiler.ghc7103;
|
|
|
|
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-7.10.x.nix { };
|
|
|
|
};
|
2016-01-13 20:03:55 +00:00
|
|
|
ghc801 = callPackage ../development/haskell-modules {
|
|
|
|
ghc = compiler.ghc801;
|
|
|
|
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-8.0.x.nix { };
|
|
|
|
};
|
2016-11-26 20:24:08 +00:00
|
|
|
ghc802 = callPackage ../development/haskell-modules {
|
|
|
|
ghc = compiler.ghc802;
|
|
|
|
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-8.0.x.nix { };
|
|
|
|
};
|
2015-04-19 17:47:45 +01:00
|
|
|
ghcHEAD = callPackage ../development/haskell-modules {
|
|
|
|
ghc = compiler.ghcHEAD;
|
2015-09-16 08:19:56 +01:00
|
|
|
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-head.nix { };
|
2015-04-19 17:47:45 +01:00
|
|
|
};
|
2016-11-18 15:44:53 +00:00
|
|
|
# TODO Support for multiple variants here
|
|
|
|
ghcCross = callPackage ../development/haskell-modules {
|
|
|
|
ghc = compiler.ghcHEAD.crossCompiler;
|
|
|
|
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-head.nix { };
|
|
|
|
};
|
2015-04-19 17:47:45 +01:00
|
|
|
ghcjs = callPackage ../development/haskell-modules {
|
|
|
|
ghc = compiler.ghcjs;
|
2017-03-05 16:13:27 +00:00
|
|
|
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-7.10.x.nix { };
|
|
|
|
packageSetConfig = callPackage ../development/haskell-modules/configuration-ghcjs.nix { };
|
2015-09-16 08:19:56 +01:00
|
|
|
};
|
2016-11-02 02:04:53 +00:00
|
|
|
ghcjsHEAD = callPackage ../development/haskell-modules {
|
|
|
|
ghc = compiler.ghcjsHEAD;
|
2017-03-05 16:13:27 +00:00
|
|
|
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-8.0.x.nix { };
|
|
|
|
packageSetConfig = callPackage ../development/haskell-modules/configuration-ghcjs.nix { };
|
2016-11-02 02:04:53 +00:00
|
|
|
};
|
2017-02-04 17:19:14 +00:00
|
|
|
ghcHaLVM240 = callPackage ../development/haskell-modules {
|
|
|
|
ghc = compiler.ghcHaLVM240;
|
|
|
|
compilerConfig = callPackage ../development/haskell-modules/configuration-halvm-2.4.0.nix { };
|
|
|
|
};
|
2015-09-16 08:19:56 +01:00
|
|
|
|
2017-01-24 23:00:54 +00:00
|
|
|
# The integer-simple attribute set contains package sets for all the GHC compilers
|
|
|
|
# using integer-simple instead of integer-gmp.
|
|
|
|
integer-simple =
|
|
|
|
let integerSimpleGhcNames =
|
|
|
|
pkgs.lib.filter (name: ! builtins.elem name integerSimpleExcludes)
|
|
|
|
(pkgs.lib.attrNames packages);
|
|
|
|
in pkgs.lib.genAttrs integerSimpleGhcNames (name: packages."${name}".override {
|
|
|
|
ghc = compiler.integer-simple."${name}";
|
|
|
|
overrides = _self : _super : {
|
|
|
|
integer-simple = null;
|
|
|
|
integer-gmp = null;
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
2015-04-19 17:47:45 +01:00
|
|
|
};
|
2015-01-08 14:38:47 +00:00
|
|
|
}
|