2018-07-04 13:18:21 +02:00
|
|
|
{ pkgs, stdenv, lib, haskellLib, ghc, all-cabal-hashes
|
2018-01-04 22:18:02 +01:00
|
|
|
, buildHaskellPackages
|
2015-09-16 09:19:56 +02:00
|
|
|
, compilerConfig ? (self: super: {})
|
2015-01-07 20:31:32 +01:00
|
|
|
, packageSetConfig ? (self: super: {})
|
|
|
|
, overrides ? (self: super: {})
|
2017-12-22 16:12:53 +01:00
|
|
|
, initialPackages ? import ./initial-packages.nix
|
2018-08-25 15:24:41 +02:00
|
|
|
, nonHackagePackages ? import ./non-hackage-packages.nix
|
2017-06-22 13:24:11 +02:00
|
|
|
, configurationCommon ? import ./configuration-common.nix
|
|
|
|
, configurationNix ? import ./configuration-nix.nix
|
2021-05-08 13:55:59 +02:00
|
|
|
, configurationArm ? import ./configuration-arm.nix
|
2021-05-08 17:32:54 +02:00
|
|
|
, configurationDarwin ? import ./configuration-darwin.nix
|
2015-01-07 20:31:32 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
let
|
|
|
|
|
2017-08-01 18:44:08 +02:00
|
|
|
inherit (lib) extends makeExtensible;
|
2018-07-20 21:36:12 +02:00
|
|
|
inherit (haskellLib) makePackageSet;
|
2016-06-11 19:21:19 +02:00
|
|
|
|
2017-08-01 18:44:08 +02:00
|
|
|
haskellPackages = pkgs.callPackage makePackageSet {
|
2017-05-30 20:27:32 +02:00
|
|
|
package-set = initialPackages;
|
2018-03-26 02:39:38 +02:00
|
|
|
inherit stdenv haskellLib ghc buildHaskellPackages extensible-self all-cabal-hashes;
|
2017-04-12 19:28:06 +02:00
|
|
|
};
|
2015-01-07 20:31:32 +01:00
|
|
|
|
2022-07-30 18:18:27 +02:00
|
|
|
platformConfigurations = lib.optionals stdenv.hostPlatform.isAarch [
|
2021-05-08 13:55:59 +02:00
|
|
|
(configurationArm { inherit pkgs haskellLib; })
|
2021-05-08 17:32:54 +02:00
|
|
|
] ++ lib.optionals stdenv.hostPlatform.isDarwin [
|
|
|
|
(configurationDarwin { inherit pkgs haskellLib; })
|
2021-05-08 13:55:59 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
extensions = lib.composeManyExtensions ([
|
2021-05-07 19:25:35 +02:00
|
|
|
nonHackagePackages
|
|
|
|
(configurationNix { inherit pkgs haskellLib; })
|
|
|
|
(configurationCommon { inherit pkgs haskellLib; })
|
2021-05-08 13:55:59 +02:00
|
|
|
] ++ platformConfigurations ++ [
|
2021-05-07 19:25:35 +02:00
|
|
|
compilerConfig
|
|
|
|
packageSetConfig
|
|
|
|
overrides
|
2021-05-08 13:55:59 +02:00
|
|
|
]);
|
2015-01-07 20:31:32 +01:00
|
|
|
|
2021-05-07 19:25:35 +02:00
|
|
|
extensible-self = makeExtensible (extends extensions haskellPackages);
|
2017-09-29 15:11:26 +02:00
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
extensible-self
|