2017-02-02 08:44:11 -08:00
|
|
|
{ buildPackages, pkgs
|
2018-07-20 17:44:44 -07:00
|
|
|
, newScope
|
2017-02-02 08:44:11 -08:00
|
|
|
}:
|
2011-03-12 09:28:15 -08:00
|
|
|
|
2017-08-01 09:44:08 -07:00
|
|
|
let
|
|
|
|
# These are attributes in compiler and packages that don't support integer-simple.
|
|
|
|
integerSimpleExcludes = [
|
2018-11-19 15:23:35 -08:00
|
|
|
"ghc822Binary"
|
2019-01-24 06:01:40 -08:00
|
|
|
"ghc863Binary"
|
2018-11-05 01:27:57 -08:00
|
|
|
"ghc844"
|
2017-08-01 09:44:08 -07:00
|
|
|
"ghcjs"
|
2018-05-11 22:06:47 -07:00
|
|
|
"ghcjs84"
|
2019-01-14 15:04:19 -08:00
|
|
|
"ghcjs86"
|
2017-08-01 09:44:08 -07:00
|
|
|
"integer-simple"
|
|
|
|
];
|
|
|
|
|
|
|
|
haskellLib = import ../development/haskell-modules/lib.nix {
|
|
|
|
inherit (pkgs) lib;
|
|
|
|
inherit pkgs;
|
|
|
|
};
|
2009-04-18 05:47:11 -07:00
|
|
|
|
2018-04-21 10:37:49 -07:00
|
|
|
callPackage = newScope {
|
|
|
|
inherit haskellLib;
|
|
|
|
overrides = pkgs.haskell.packageOverrides;
|
|
|
|
};
|
2009-04-18 05:47:11 -07:00
|
|
|
|
2018-03-16 13:52:18 -07:00
|
|
|
bootstrapPackageSet = self: super: {
|
|
|
|
mkDerivation = drv: super.mkDerivation (drv // {
|
|
|
|
doCheck = false;
|
|
|
|
doHaddock = false;
|
|
|
|
enableExecutableProfiling = false;
|
|
|
|
enableLibraryProfiling = false;
|
|
|
|
enableSharedExecutables = false;
|
|
|
|
enableSharedLibraries = false;
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2018-09-24 15:34:04 -07:00
|
|
|
# Use this rather than `rec { ... }` below for sake of overlays.
|
|
|
|
inherit (pkgs.haskell) compiler packages;
|
|
|
|
|
|
|
|
in {
|
2017-08-01 09:44:08 -07:00
|
|
|
lib = haskellLib;
|
2010-11-15 12:28:42 -08:00
|
|
|
|
2015-04-19 09:47:45 -07:00
|
|
|
compiler = {
|
2010-08-30 10:10:21 -07:00
|
|
|
|
2018-11-19 15:23:35 -08:00
|
|
|
ghc822Binary = callPackage ../development/compilers/ghc/8.2.2-binary.nix { };
|
2014-06-13 01:22:46 -07:00
|
|
|
|
2019-01-24 06:01:40 -08:00
|
|
|
ghc863Binary = callPackage ../development/compilers/ghc/8.6.3-binary.nix { };
|
|
|
|
|
2018-09-24 16:59:17 -07:00
|
|
|
ghc822 = callPackage ../development/compilers/ghc/8.2.2.nix {
|
2018-11-19 15:23:35 -08:00
|
|
|
bootPkgs = packages.ghc822Binary;
|
2018-09-25 13:02:45 -07:00
|
|
|
inherit (buildPackages.python3Packages) sphinx;
|
2017-02-02 08:44:11 -08:00
|
|
|
buildLlvmPackages = buildPackages.llvmPackages_39;
|
|
|
|
llvmPackages = pkgs.llvmPackages_39;
|
2017-10-31 11:56:28 -07:00
|
|
|
};
|
2018-10-15 02:55:19 -07:00
|
|
|
ghc844 = callPackage ../development/compilers/ghc/8.4.4.nix {
|
2018-11-19 15:23:35 -08:00
|
|
|
bootPkgs = packages.ghc822Binary;
|
2019-02-20 05:17:04 -08:00
|
|
|
sphinx = null; # broken with sphinx 1.8.x
|
2018-10-15 02:55:19 -07:00
|
|
|
buildLlvmPackages = buildPackages.llvmPackages_5;
|
|
|
|
llvmPackages = pkgs.llvmPackages_5;
|
|
|
|
};
|
2018-09-24 16:59:17 -07:00
|
|
|
ghc861 = callPackage ../development/compilers/ghc/8.6.1.nix {
|
2019-01-16 08:14:38 -08:00
|
|
|
bootPkgs = packages.ghc822Binary;
|
2018-11-21 20:51:57 -08:00
|
|
|
inherit (buildPackages.python3Packages) sphinx;
|
2018-07-10 10:32:00 -07:00
|
|
|
buildLlvmPackages = buildPackages.llvmPackages_6;
|
|
|
|
llvmPackages = pkgs.llvmPackages_6;
|
2018-07-01 09:00:52 -07:00
|
|
|
};
|
2018-11-05 06:14:36 -08:00
|
|
|
ghc862 = callPackage ../development/compilers/ghc/8.6.2.nix {
|
2019-01-16 08:14:38 -08:00
|
|
|
bootPkgs = packages.ghc822Binary;
|
2018-11-21 20:51:57 -08:00
|
|
|
inherit (buildPackages.python3Packages) sphinx;
|
2018-11-05 06:14:36 -08:00
|
|
|
buildLlvmPackages = buildPackages.llvmPackages_6;
|
|
|
|
llvmPackages = pkgs.llvmPackages_6;
|
|
|
|
};
|
2018-12-08 02:45:41 -08:00
|
|
|
ghc863 = callPackage ../development/compilers/ghc/8.6.3.nix {
|
2019-01-16 08:14:38 -08:00
|
|
|
bootPkgs = packages.ghc822Binary;
|
2018-12-08 02:45:41 -08:00
|
|
|
inherit (buildPackages.python3Packages) sphinx;
|
|
|
|
buildLlvmPackages = buildPackages.llvmPackages_6;
|
|
|
|
llvmPackages = pkgs.llvmPackages_6;
|
|
|
|
};
|
2018-09-24 16:59:17 -07:00
|
|
|
ghcHEAD = callPackage ../development/compilers/ghc/head.nix {
|
2019-01-23 13:56:15 -08:00
|
|
|
bootPkgs = packages.ghc863Binary;
|
2018-11-21 20:51:57 -08:00
|
|
|
inherit (buildPackages.python3Packages) sphinx;
|
2019-01-23 13:56:15 -08:00
|
|
|
buildLlvmPackages = buildPackages.llvmPackages_6;
|
|
|
|
llvmPackages = pkgs.llvmPackages_6;
|
2016-11-15 13:59:09 -08:00
|
|
|
};
|
2019-01-14 15:04:19 -08:00
|
|
|
ghcjs = compiler.ghcjs86;
|
2018-09-24 16:59:17 -07:00
|
|
|
ghcjs84 = callPackage ../development/compilers/ghcjs-ng {
|
2018-11-02 09:42:42 -07:00
|
|
|
bootPkgs = packages.ghc844;
|
2018-05-12 14:11:41 -07:00
|
|
|
ghcjsSrcJson = ../development/compilers/ghcjs-ng/8.4/git.json;
|
|
|
|
stage0 = ../development/compilers/ghcjs-ng/8.4/stage0.nix;
|
|
|
|
ghcjsDepOverrides = callPackage ../development/compilers/ghcjs-ng/8.4/dep-overrides.nix {};
|
|
|
|
};
|
2019-01-14 15:04:19 -08:00
|
|
|
ghcjs86 = callPackage ../development/compilers/ghcjs-ng {
|
|
|
|
bootPkgs = packages.ghc863;
|
|
|
|
ghcjsSrcJson = ../development/compilers/ghcjs-ng/8.6/git.json;
|
|
|
|
stage0 = ../development/compilers/ghcjs-ng/8.6/stage0.nix;
|
|
|
|
ghcjsDepOverrides = callPackage ../development/compilers/ghcjs-ng/8.6/dep-overrides.nix {};
|
|
|
|
};
|
2015-05-15 06:25:53 -07:00
|
|
|
|
2017-01-24 15:00:54 -08:00
|
|
|
# The integer-simple attribute set contains all the GHC compilers
|
|
|
|
# build with integer-simple instead of integer-gmp.
|
2017-02-02 08:44:11 -08:00
|
|
|
integer-simple = let
|
|
|
|
integerSimpleGhcNames = pkgs.lib.filter
|
|
|
|
(name: ! builtins.elem name integerSimpleExcludes)
|
|
|
|
(pkgs.lib.attrNames compiler);
|
|
|
|
in pkgs.recurseIntoAttrs (pkgs.lib.genAttrs
|
|
|
|
integerSimpleGhcNames
|
|
|
|
(name: compiler."${name}".override { enableIntegerSimple = true; }));
|
2014-06-09 01:31:29 -07:00
|
|
|
};
|
2014-05-29 18:00:04 -07:00
|
|
|
|
2018-04-21 10:37:49 -07:00
|
|
|
# Default overrides that are applied to all package sets.
|
|
|
|
packageOverrides = self : super : {};
|
|
|
|
|
2017-02-02 08:44:11 -08:00
|
|
|
# Always get compilers from `buildPackages`
|
2018-01-04 13:18:02 -08:00
|
|
|
packages = let bh = buildPackages.haskell; in {
|
2014-02-08 12:16:43 -08:00
|
|
|
|
2018-11-19 15:23:35 -08:00
|
|
|
ghc822Binary = callPackage ../development/haskell-modules {
|
|
|
|
buildHaskellPackages = bh.packages.ghc822Binary;
|
|
|
|
ghc = bh.compiler.ghc822Binary;
|
2017-10-31 11:56:28 -07:00
|
|
|
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-8.2.x.nix { };
|
2018-03-16 13:52:18 -07:00
|
|
|
packageSetConfig = bootstrapPackageSet;
|
2017-10-31 11:56:28 -07:00
|
|
|
};
|
2019-01-24 06:01:40 -08:00
|
|
|
ghc863Binary = callPackage ../development/haskell-modules {
|
|
|
|
buildHaskellPackages = bh.packages.ghc863Binary;
|
|
|
|
ghc = bh.compiler.ghc863Binary;
|
|
|
|
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-8.6.x.nix { };
|
|
|
|
packageSetConfig = bootstrapPackageSet;
|
|
|
|
};
|
2018-01-04 13:18:02 -08:00
|
|
|
ghc822 = callPackage ../development/haskell-modules {
|
|
|
|
buildHaskellPackages = bh.packages.ghc822;
|
|
|
|
ghc = bh.compiler.ghc822;
|
2017-12-28 02:01:55 -08:00
|
|
|
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-8.2.x.nix { };
|
|
|
|
};
|
2018-10-15 02:55:19 -07:00
|
|
|
ghc844 = callPackage ../development/haskell-modules {
|
|
|
|
buildHaskellPackages = bh.packages.ghc844;
|
|
|
|
ghc = bh.compiler.ghc844;
|
|
|
|
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-8.4.x.nix { };
|
|
|
|
};
|
2018-07-04 01:46:07 -07:00
|
|
|
ghc861 = callPackage ../development/haskell-modules {
|
|
|
|
buildHaskellPackages = bh.packages.ghc861;
|
|
|
|
ghc = bh.compiler.ghc861;
|
|
|
|
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-8.6.x.nix { };
|
|
|
|
};
|
2018-11-05 06:14:36 -08:00
|
|
|
ghc862 = callPackage ../development/haskell-modules {
|
|
|
|
buildHaskellPackages = bh.packages.ghc862;
|
|
|
|
ghc = bh.compiler.ghc862;
|
|
|
|
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-8.6.x.nix { };
|
|
|
|
};
|
2018-12-08 02:45:41 -08:00
|
|
|
ghc863 = callPackage ../development/haskell-modules {
|
|
|
|
buildHaskellPackages = bh.packages.ghc863;
|
|
|
|
ghc = bh.compiler.ghc863;
|
|
|
|
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-8.6.x.nix { };
|
|
|
|
};
|
2017-09-29 06:11:26 -07:00
|
|
|
ghcHEAD = callPackage ../development/haskell-modules {
|
2018-01-04 13:18:02 -08:00
|
|
|
buildHaskellPackages = bh.packages.ghcHEAD;
|
|
|
|
ghc = bh.compiler.ghcHEAD;
|
2015-09-16 00:19:56 -07:00
|
|
|
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-head.nix { };
|
2015-04-19 09:47:45 -07:00
|
|
|
};
|
2019-01-14 15:04:19 -08:00
|
|
|
ghcjs = packages.ghcjs86;
|
2018-05-12 14:11:41 -07:00
|
|
|
ghcjs84 = callPackage ../development/haskell-modules rec {
|
|
|
|
buildHaskellPackages = ghc.bootPkgs;
|
|
|
|
ghc = bh.compiler.ghcjs84;
|
|
|
|
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-8.4.x.nix { };
|
|
|
|
packageSetConfig = callPackage ../development/haskell-modules/configuration-ghcjs.nix { };
|
|
|
|
};
|
2019-01-14 15:04:19 -08:00
|
|
|
ghcjs86 = callPackage ../development/haskell-modules rec {
|
|
|
|
buildHaskellPackages = ghc.bootPkgs;
|
|
|
|
ghc = bh.compiler.ghcjs86;
|
|
|
|
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-8.6.x.nix { };
|
|
|
|
packageSetConfig = callPackage ../development/haskell-modules/configuration-ghcjs.nix { };
|
|
|
|
};
|
2015-09-16 00:19:56 -07:00
|
|
|
|
2017-01-24 15:00:54 -08:00
|
|
|
# The integer-simple attribute set contains package sets for all the GHC compilers
|
|
|
|
# using integer-simple instead of integer-gmp.
|
2017-02-02 08:44:11 -08:00
|
|
|
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 {
|
2018-05-07 20:48:04 -07:00
|
|
|
ghc = bh.compiler.integer-simple."${name}";
|
2018-07-11 08:51:27 -07:00
|
|
|
buildHaskellPackages = bh.packages.integer-simple."${name}";
|
2017-02-02 08:44:11 -08:00
|
|
|
overrides = _self : _super : {
|
|
|
|
integer-simple = null;
|
|
|
|
integer-gmp = null;
|
|
|
|
};
|
2017-01-24 15:00:54 -08:00
|
|
|
});
|
|
|
|
|
2015-04-19 09:47:45 -07:00
|
|
|
};
|
2015-01-08 06:38:47 -08:00
|
|
|
}
|