2017-02-02 16:44:11 +00:00
|
|
|
{ buildPackages, pkgs
|
2018-07-21 01:44:44 +01:00
|
|
|
, newScope
|
2017-02-02 16:44:11 +00:00
|
|
|
}:
|
2011-03-12 17:28:15 +00:00
|
|
|
|
2017-08-01 17:44:08 +01:00
|
|
|
let
|
|
|
|
# These are attributes in compiler and packages that don't support integer-simple.
|
|
|
|
integerSimpleExcludes = [
|
2018-11-19 23:23:35 +00:00
|
|
|
"ghc822Binary"
|
2019-01-24 14:01:40 +00:00
|
|
|
"ghc863Binary"
|
2018-11-05 09:27:57 +00:00
|
|
|
"ghc844"
|
2017-08-01 17:44:08 +01:00
|
|
|
"ghcjs"
|
2018-05-12 06:06:47 +01:00
|
|
|
"ghcjs84"
|
2019-01-14 23:04:19 +00:00
|
|
|
"ghcjs86"
|
2017-08-01 17:44:08 +01:00
|
|
|
"integer-simple"
|
|
|
|
];
|
|
|
|
|
|
|
|
haskellLib = import ../development/haskell-modules/lib.nix {
|
|
|
|
inherit (pkgs) lib;
|
|
|
|
inherit pkgs;
|
|
|
|
};
|
2009-04-18 13:47:11 +01:00
|
|
|
|
2018-04-21 18:37:49 +01:00
|
|
|
callPackage = newScope {
|
|
|
|
inherit haskellLib;
|
|
|
|
overrides = pkgs.haskell.packageOverrides;
|
|
|
|
};
|
2009-04-18 13:47:11 +01:00
|
|
|
|
2018-03-16 20:52:18 +00:00
|
|
|
bootstrapPackageSet = self: super: {
|
|
|
|
mkDerivation = drv: super.mkDerivation (drv // {
|
|
|
|
doCheck = false;
|
|
|
|
doHaddock = false;
|
|
|
|
enableExecutableProfiling = false;
|
|
|
|
enableLibraryProfiling = false;
|
|
|
|
enableSharedExecutables = false;
|
|
|
|
enableSharedLibraries = false;
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2018-09-24 23:34:04 +01:00
|
|
|
# Use this rather than `rec { ... }` below for sake of overlays.
|
|
|
|
inherit (pkgs.haskell) compiler packages;
|
|
|
|
|
|
|
|
in {
|
2017-08-01 17:44:08 +01:00
|
|
|
lib = haskellLib;
|
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
|
|
|
|
2018-11-19 23:23:35 +00:00
|
|
|
ghc822Binary = callPackage ../development/compilers/ghc/8.2.2-binary.nix { };
|
2014-06-13 09:22:46 +01:00
|
|
|
|
2019-01-24 14:01:40 +00:00
|
|
|
ghc863Binary = callPackage ../development/compilers/ghc/8.6.3-binary.nix { };
|
|
|
|
|
2018-09-25 00:59:17 +01:00
|
|
|
ghc822 = callPackage ../development/compilers/ghc/8.2.2.nix {
|
2018-11-19 23:23:35 +00:00
|
|
|
bootPkgs = packages.ghc822Binary;
|
2018-09-25 21:02:45 +01:00
|
|
|
inherit (buildPackages.python3Packages) sphinx;
|
2017-02-02 16:44:11 +00:00
|
|
|
buildLlvmPackages = buildPackages.llvmPackages_39;
|
|
|
|
llvmPackages = pkgs.llvmPackages_39;
|
2017-10-31 18:56:28 +00:00
|
|
|
};
|
2018-10-15 10:55:19 +01:00
|
|
|
ghc844 = callPackage ../development/compilers/ghc/8.4.4.nix {
|
2018-11-19 23:23:35 +00:00
|
|
|
bootPkgs = packages.ghc822Binary;
|
2019-02-13 12:28:10 +00:00
|
|
|
sphinx = buildPackages.python3Packages.sphinx_1_7_9;
|
2018-10-15 10:55:19 +01:00
|
|
|
buildLlvmPackages = buildPackages.llvmPackages_5;
|
|
|
|
llvmPackages = pkgs.llvmPackages_5;
|
|
|
|
};
|
2019-03-05 21:21:03 +00:00
|
|
|
ghc864 = callPackage ../development/compilers/ghc/8.6.4.nix {
|
|
|
|
bootPkgs = packages.ghc822Binary;
|
|
|
|
inherit (buildPackages.python3Packages) sphinx;
|
|
|
|
buildLlvmPackages = buildPackages.llvmPackages_6;
|
|
|
|
llvmPackages = pkgs.llvmPackages_6;
|
|
|
|
};
|
2019-04-11 20:33:29 +01:00
|
|
|
ghc865 = callPackage ../development/compilers/ghc/8.6.5.nix {
|
|
|
|
bootPkgs = packages.ghc822Binary;
|
|
|
|
inherit (buildPackages.python3Packages) sphinx;
|
|
|
|
buildLlvmPackages = buildPackages.llvmPackages_6;
|
|
|
|
llvmPackages = pkgs.llvmPackages_6;
|
|
|
|
};
|
2019-04-29 16:51:19 +01:00
|
|
|
ghc881 = callPackage ../development/compilers/ghc/8.8.1.nix {
|
|
|
|
bootPkgs = packages.ghc863Binary;
|
|
|
|
inherit (buildPackages.python3Packages) sphinx;
|
|
|
|
buildLlvmPackages = buildPackages.llvmPackages_7;
|
|
|
|
llvmPackages = pkgs.llvmPackages_7;
|
|
|
|
};
|
2018-09-25 00:59:17 +01:00
|
|
|
ghcHEAD = callPackage ../development/compilers/ghc/head.nix {
|
2019-01-23 21:56:15 +00:00
|
|
|
bootPkgs = packages.ghc863Binary;
|
2018-11-22 04:51:57 +00:00
|
|
|
inherit (buildPackages.python3Packages) sphinx;
|
2019-01-23 21:56:15 +00:00
|
|
|
buildLlvmPackages = buildPackages.llvmPackages_6;
|
|
|
|
llvmPackages = pkgs.llvmPackages_6;
|
2016-11-15 21:59:09 +00:00
|
|
|
};
|
2019-01-14 23:04:19 +00:00
|
|
|
ghcjs = compiler.ghcjs86;
|
2018-09-25 00:59:17 +01:00
|
|
|
ghcjs84 = callPackage ../development/compilers/ghcjs-ng {
|
2018-11-02 16:42:42 +00:00
|
|
|
bootPkgs = packages.ghc844;
|
2018-05-12 22:11:41 +01: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 23:04:19 +00:00
|
|
|
ghcjs86 = callPackage ../development/compilers/ghcjs-ng {
|
2019-03-16 09:24:20 +00:00
|
|
|
bootPkgs = packages.ghc864;
|
2019-01-14 23:04:19 +00:00
|
|
|
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 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.
|
2017-02-02 16:44:11 +00: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 09:31:29 +01:00
|
|
|
};
|
2014-05-30 02:00:04 +01:00
|
|
|
|
2018-04-21 18:37:49 +01:00
|
|
|
# Default overrides that are applied to all package sets.
|
|
|
|
packageOverrides = self : super : {};
|
|
|
|
|
2017-02-02 16:44:11 +00:00
|
|
|
# Always get compilers from `buildPackages`
|
2018-01-04 21:18:02 +00:00
|
|
|
packages = let bh = buildPackages.haskell; in {
|
2014-02-08 20:16:43 +00:00
|
|
|
|
2018-11-19 23:23:35 +00:00
|
|
|
ghc822Binary = callPackage ../development/haskell-modules {
|
|
|
|
buildHaskellPackages = bh.packages.ghc822Binary;
|
|
|
|
ghc = bh.compiler.ghc822Binary;
|
2017-10-31 18:56:28 +00:00
|
|
|
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-8.2.x.nix { };
|
2018-03-16 20:52:18 +00:00
|
|
|
packageSetConfig = bootstrapPackageSet;
|
2017-10-31 18:56:28 +00:00
|
|
|
};
|
2019-01-24 14:01:40 +00: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 21:18:02 +00:00
|
|
|
ghc822 = callPackage ../development/haskell-modules {
|
|
|
|
buildHaskellPackages = bh.packages.ghc822;
|
|
|
|
ghc = bh.compiler.ghc822;
|
2017-12-28 10:01:55 +00:00
|
|
|
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-8.2.x.nix { };
|
|
|
|
};
|
2018-10-15 10:55:19 +01: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 { };
|
|
|
|
};
|
2019-03-05 21:21:03 +00:00
|
|
|
ghc864 = callPackage ../development/haskell-modules {
|
|
|
|
buildHaskellPackages = bh.packages.ghc864;
|
|
|
|
ghc = bh.compiler.ghc864;
|
|
|
|
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-8.6.x.nix { };
|
|
|
|
};
|
2019-04-11 20:33:29 +01:00
|
|
|
ghc865 = callPackage ../development/haskell-modules {
|
|
|
|
buildHaskellPackages = bh.packages.ghc865;
|
|
|
|
ghc = bh.compiler.ghc865;
|
|
|
|
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-8.6.x.nix { };
|
|
|
|
};
|
2019-04-29 16:51:19 +01:00
|
|
|
ghc881 = callPackage ../development/haskell-modules {
|
|
|
|
buildHaskellPackages = bh.packages.ghc881;
|
|
|
|
ghc = bh.compiler.ghc881;
|
|
|
|
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-8.8.x.nix { };
|
|
|
|
};
|
2017-09-29 14:11:26 +01:00
|
|
|
ghcHEAD = callPackage ../development/haskell-modules {
|
2018-01-04 21:18:02 +00:00
|
|
|
buildHaskellPackages = bh.packages.ghcHEAD;
|
|
|
|
ghc = bh.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
|
|
|
};
|
2019-01-14 23:04:19 +00:00
|
|
|
ghcjs = packages.ghcjs86;
|
2018-05-12 22:11:41 +01: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 23:04:19 +00: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 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.
|
2017-02-02 16:44:11 +00: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-08 04:48:04 +01:00
|
|
|
ghc = bh.compiler.integer-simple."${name}";
|
2018-07-11 16:51:27 +01:00
|
|
|
buildHaskellPackages = bh.packages.integer-simple."${name}";
|
2017-02-02 16:44:11 +00:00
|
|
|
overrides = _self : _super : {
|
|
|
|
integer-simple = null;
|
|
|
|
integer-gmp = null;
|
|
|
|
};
|
2017-01-24 23:00:54 +00:00
|
|
|
});
|
|
|
|
|
2015-04-19 17:47:45 +01:00
|
|
|
};
|
2015-01-08 14:38:47 +00:00
|
|
|
}
|