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