2017-02-02 17:44:11 +01:00
|
|
|
{ buildPackages, pkgs
|
2018-07-21 02:44:44 +02:00
|
|
|
, newScope
|
2017-02-02 17:44:11 +01:00
|
|
|
}:
|
2011-03-12 18:28:15 +01:00
|
|
|
|
2017-08-01 18:44:08 +02:00
|
|
|
let
|
|
|
|
# These are attributes in compiler and packages that don't support integer-simple.
|
|
|
|
integerSimpleExcludes = [
|
2017-12-28 11:01:55 +01:00
|
|
|
"ghc7103Binary"
|
|
|
|
"ghc821Binary"
|
2017-08-01 18:44:08 +02:00
|
|
|
"ghcjs"
|
2018-05-12 07:06:47 +02:00
|
|
|
"ghcjs710"
|
|
|
|
"ghcjs80"
|
|
|
|
"ghcjs82"
|
|
|
|
"ghcjs84"
|
2017-08-01 18:44:08 +02:00
|
|
|
"integer-simple"
|
|
|
|
];
|
|
|
|
|
|
|
|
haskellLib = import ../development/haskell-modules/lib.nix {
|
|
|
|
inherit (pkgs) lib;
|
|
|
|
inherit pkgs;
|
|
|
|
};
|
2009-04-18 14:47:11 +02:00
|
|
|
|
2018-04-21 19:37:49 +02:00
|
|
|
callPackage = newScope {
|
|
|
|
inherit haskellLib;
|
|
|
|
overrides = pkgs.haskell.packageOverrides;
|
|
|
|
};
|
2009-04-18 14:47:11 +02:00
|
|
|
|
2018-03-16 21:52:18 +01:00
|
|
|
bootstrapPackageSet = self: super: {
|
|
|
|
mkDerivation = drv: super.mkDerivation (drv // {
|
|
|
|
doCheck = false;
|
|
|
|
doHaddock = false;
|
|
|
|
enableExecutableProfiling = false;
|
|
|
|
enableLibraryProfiling = false;
|
|
|
|
enableSharedExecutables = false;
|
|
|
|
enableSharedLibraries = false;
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2018-09-25 00:34:04 +02:00
|
|
|
# Use this rather than `rec { ... }` below for sake of overlays.
|
|
|
|
inherit (pkgs.haskell) compiler packages;
|
|
|
|
|
|
|
|
in {
|
2017-08-01 18:44:08 +02:00
|
|
|
lib = haskellLib;
|
2010-11-15 21:28:42 +01:00
|
|
|
|
2015-04-19 18:47:45 +02:00
|
|
|
compiler = {
|
2010-08-30 19:10:21 +02:00
|
|
|
|
2017-09-23 03:23:08 +02:00
|
|
|
ghc7103Binary = callPackage ../development/compilers/ghc/7.10.3-binary.nix { };
|
|
|
|
ghc821Binary = callPackage ../development/compilers/ghc/8.2.1-binary.nix { };
|
2014-06-13 10:22:46 +02:00
|
|
|
|
2018-09-25 01:59:17 +02:00
|
|
|
ghc7103 = callPackage ../development/compilers/ghc/7.10.3.nix {
|
2017-12-28 11:01:55 +01:00
|
|
|
bootPkgs = packages.ghc7103Binary;
|
2017-02-02 17:44:11 +01:00
|
|
|
buildLlvmPackages = buildPackages.llvmPackages_35;
|
|
|
|
llvmPackages = pkgs.llvmPackages_35;
|
2016-01-13 21:04:13 +01:00
|
|
|
};
|
2018-09-25 01:59:17 +02:00
|
|
|
ghc802 = callPackage ../development/compilers/ghc/8.0.2.nix {
|
2017-12-28 11:01:55 +01:00
|
|
|
bootPkgs = packages.ghc7103Binary;
|
2018-09-25 22:02:45 +02:00
|
|
|
inherit (buildPackages.python27Packages) sphinx;
|
2017-02-02 17:44:11 +01:00
|
|
|
buildLlvmPackages = buildPackages.llvmPackages_37;
|
|
|
|
llvmPackages = pkgs.llvmPackages_37;
|
2016-11-26 21:24:08 +01:00
|
|
|
};
|
2018-09-25 01:59:17 +02:00
|
|
|
ghc822 = callPackage ../development/compilers/ghc/8.2.2.nix {
|
2018-01-02 21:15:16 +01:00
|
|
|
bootPkgs = packages.ghc821Binary;
|
2018-09-25 22:02:45 +02:00
|
|
|
inherit (buildPackages.python3Packages) sphinx;
|
2017-02-02 17:44:11 +01:00
|
|
|
buildLlvmPackages = buildPackages.llvmPackages_39;
|
|
|
|
llvmPackages = pkgs.llvmPackages_39;
|
2017-10-31 19:56:28 +01:00
|
|
|
};
|
2018-09-25 01:59:17 +02:00
|
|
|
ghc843 = callPackage ../development/compilers/ghc/8.4.3.nix {
|
2018-05-30 00:37:47 +02:00
|
|
|
bootPkgs = packages.ghc821Binary;
|
|
|
|
buildLlvmPackages = buildPackages.llvmPackages_5;
|
|
|
|
llvmPackages = pkgs.llvmPackages_5;
|
|
|
|
};
|
2018-09-25 01:59:17 +02:00
|
|
|
ghc861 = callPackage ../development/compilers/ghc/8.6.1.nix {
|
2018-07-01 18:00:52 +02:00
|
|
|
bootPkgs = packages.ghc822;
|
2018-07-10 19:32:00 +02:00
|
|
|
buildLlvmPackages = buildPackages.llvmPackages_6;
|
|
|
|
llvmPackages = pkgs.llvmPackages_6;
|
2018-07-01 18:00:52 +02:00
|
|
|
};
|
2018-09-25 01:59:17 +02:00
|
|
|
ghcHEAD = callPackage ../development/compilers/ghc/head.nix {
|
2017-12-28 11:01:55 +01:00
|
|
|
bootPkgs = packages.ghc821Binary;
|
2017-02-02 17:44:11 +01:00
|
|
|
buildLlvmPackages = buildPackages.llvmPackages_5;
|
|
|
|
llvmPackages = pkgs.llvmPackages_5;
|
2016-11-15 22:59:09 +01:00
|
|
|
};
|
2018-07-16 04:13:52 +02:00
|
|
|
ghcjs = compiler.ghcjs84;
|
2018-09-28 00:43:59 +02:00
|
|
|
# Use `import` because `callPackage inside`.
|
|
|
|
ghcjs710 = import ../development/compilers/ghcjs/7.10 {
|
2018-01-18 22:39:15 +01:00
|
|
|
bootPkgs = packages.ghc7103;
|
2017-02-02 17:44:11 +01:00
|
|
|
inherit (pkgs) cabal-install;
|
2018-09-28 00:43:59 +02:00
|
|
|
inherit (buildPackages) fetchgit fetchFromGitHub;
|
2014-06-09 10:31:29 +02:00
|
|
|
};
|
2018-09-28 00:43:59 +02:00
|
|
|
# `import` on purpose; see above.
|
|
|
|
ghcjs80 = import ../development/compilers/ghcjs/8.0 {
|
2018-01-18 22:39:15 +01:00
|
|
|
bootPkgs = packages.ghc802;
|
2017-02-02 17:44:11 +01:00
|
|
|
inherit (pkgs) cabal-install;
|
2018-09-28 00:43:59 +02:00
|
|
|
inherit (buildPackages) fetchgit fetchFromGitHub;
|
2016-11-02 03:04:53 +01:00
|
|
|
};
|
2018-09-25 01:59:17 +02:00
|
|
|
ghcjs82 = callPackage ../development/compilers/ghcjs-ng {
|
2018-05-12 07:06:47 +02:00
|
|
|
bootPkgs = packages.ghc822;
|
|
|
|
ghcjsSrcJson = ../development/compilers/ghcjs-ng/8.2/git.json;
|
|
|
|
stage0 = ../development/compilers/ghcjs-ng/8.2/stage0.nix;
|
|
|
|
};
|
2018-09-25 01:59:17 +02:00
|
|
|
ghcjs84 = callPackage ../development/compilers/ghcjs-ng {
|
2018-06-17 10:37:06 +02:00
|
|
|
bootPkgs = packages.ghc843;
|
2018-05-12 23:11:41 +02: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 {};
|
|
|
|
};
|
2015-05-15 15:25:53 +02:00
|
|
|
|
2017-01-25 00:00:54 +01:00
|
|
|
# The integer-simple attribute set contains all the GHC compilers
|
|
|
|
# build with integer-simple instead of integer-gmp.
|
2017-02-02 17:44:11 +01: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 10:31:29 +02:00
|
|
|
};
|
2014-05-30 03:00:04 +02:00
|
|
|
|
2018-04-21 19:37:49 +02:00
|
|
|
# Default overrides that are applied to all package sets.
|
|
|
|
packageOverrides = self : super : {};
|
|
|
|
|
2017-02-02 17:44:11 +01:00
|
|
|
# Always get compilers from `buildPackages`
|
2018-01-04 22:18:02 +01:00
|
|
|
packages = let bh = buildPackages.haskell; in {
|
2014-02-08 21:16:43 +01:00
|
|
|
|
2017-09-29 15:11:26 +02:00
|
|
|
ghc7103 = callPackage ../development/haskell-modules {
|
2018-01-04 22:18:02 +01:00
|
|
|
buildHaskellPackages = bh.packages.ghc7103;
|
|
|
|
ghc = bh.compiler.ghc7103;
|
2015-12-16 15:10:38 +01:00
|
|
|
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-7.10.x.nix { };
|
|
|
|
};
|
2017-12-28 11:01:55 +01:00
|
|
|
ghc7103Binary = callPackage ../development/haskell-modules {
|
2018-01-04 22:18:02 +01:00
|
|
|
buildHaskellPackages = bh.packages.ghc7103Binary;
|
|
|
|
ghc = bh.compiler.ghc7103Binary;
|
2017-12-28 11:01:55 +01:00
|
|
|
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-7.10.x.nix { };
|
2018-03-16 21:52:18 +01:00
|
|
|
packageSetConfig = bootstrapPackageSet;
|
2017-12-28 11:01:55 +01:00
|
|
|
};
|
2017-09-29 15:11:26 +02:00
|
|
|
ghc802 = callPackage ../development/haskell-modules {
|
2018-01-04 22:18:02 +01:00
|
|
|
buildHaskellPackages = bh.packages.ghc802;
|
|
|
|
ghc = bh.compiler.ghc802;
|
2016-11-26 21:24:08 +01:00
|
|
|
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-8.0.x.nix { };
|
|
|
|
};
|
2018-01-04 22:18:02 +01:00
|
|
|
ghc821Binary = callPackage ../development/haskell-modules {
|
|
|
|
buildHaskellPackages = bh.packages.ghc821Binary;
|
|
|
|
ghc = bh.compiler.ghc821Binary;
|
2017-10-31 19:56:28 +01:00
|
|
|
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-8.2.x.nix { };
|
2018-03-16 21:52:18 +01:00
|
|
|
packageSetConfig = bootstrapPackageSet;
|
2017-10-31 19:56:28 +01:00
|
|
|
};
|
2018-01-04 22:18:02 +01:00
|
|
|
ghc822 = callPackage ../development/haskell-modules {
|
|
|
|
buildHaskellPackages = bh.packages.ghc822;
|
|
|
|
ghc = bh.compiler.ghc822;
|
2017-12-28 11:01:55 +01:00
|
|
|
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-8.2.x.nix { };
|
|
|
|
};
|
2018-05-30 00:37:47 +02:00
|
|
|
ghc843 = callPackage ../development/haskell-modules {
|
|
|
|
buildHaskellPackages = bh.packages.ghc843;
|
|
|
|
ghc = bh.compiler.ghc843;
|
|
|
|
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-8.4.x.nix { };
|
|
|
|
};
|
2018-07-04 10:46:07 +02: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 { };
|
|
|
|
};
|
2017-09-29 15:11:26 +02:00
|
|
|
ghcHEAD = callPackage ../development/haskell-modules {
|
2018-01-04 22:18:02 +01:00
|
|
|
buildHaskellPackages = bh.packages.ghcHEAD;
|
|
|
|
ghc = bh.compiler.ghcHEAD;
|
2015-09-16 09:19:56 +02:00
|
|
|
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-head.nix { };
|
2015-04-19 18:47:45 +02:00
|
|
|
};
|
2018-07-16 04:13:52 +02:00
|
|
|
ghcjs = packages.ghcjs84;
|
2018-05-12 07:06:47 +02:00
|
|
|
ghcjs710 = callPackage ../development/haskell-modules rec {
|
2018-01-04 22:18:02 +01:00
|
|
|
buildHaskellPackages = ghc.bootPkgs;
|
2018-05-29 23:39:21 +02:00
|
|
|
ghc = bh.compiler.ghcjs710;
|
2017-03-05 17:13:27 +01:00
|
|
|
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-7.10.x.nix { };
|
|
|
|
packageSetConfig = callPackage ../development/haskell-modules/configuration-ghcjs.nix { };
|
2015-09-16 09:19:56 +02:00
|
|
|
};
|
2018-05-12 07:06:47 +02:00
|
|
|
ghcjs80 = callPackage ../development/haskell-modules rec {
|
2018-01-04 22:18:02 +01:00
|
|
|
buildHaskellPackages = ghc.bootPkgs;
|
2018-05-29 23:39:21 +02:00
|
|
|
ghc = bh.compiler.ghcjs80;
|
2017-03-05 17:13:27 +01:00
|
|
|
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-8.0.x.nix { };
|
|
|
|
packageSetConfig = callPackage ../development/haskell-modules/configuration-ghcjs.nix { };
|
2016-11-02 03:04:53 +01:00
|
|
|
};
|
2018-05-12 07:06:47 +02:00
|
|
|
ghcjs82 = callPackage ../development/haskell-modules rec {
|
|
|
|
buildHaskellPackages = ghc.bootPkgs;
|
|
|
|
ghc = bh.compiler.ghcjs82;
|
|
|
|
compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-8.2.x.nix { };
|
|
|
|
packageSetConfig = callPackage ../development/haskell-modules/configuration-ghcjs.nix { };
|
|
|
|
};
|
2018-05-12 23:11:41 +02: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 { };
|
|
|
|
};
|
2015-09-16 09:19:56 +02:00
|
|
|
|
2017-01-25 00:00:54 +01:00
|
|
|
# The integer-simple attribute set contains package sets for all the GHC compilers
|
|
|
|
# using integer-simple instead of integer-gmp.
|
2017-02-02 17:44:11 +01: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 05:48:04 +02:00
|
|
|
ghc = bh.compiler.integer-simple."${name}";
|
2018-07-11 17:51:27 +02:00
|
|
|
buildHaskellPackages = bh.packages.integer-simple."${name}";
|
2017-02-02 17:44:11 +01:00
|
|
|
overrides = _self : _super : {
|
|
|
|
integer-simple = null;
|
|
|
|
integer-gmp = null;
|
|
|
|
};
|
2017-01-25 00:00:54 +01:00
|
|
|
});
|
|
|
|
|
2015-04-19 18:47:45 +02:00
|
|
|
};
|
2015-01-08 15:38:47 +01:00
|
|
|
}
|