summary refs log tree commit diff
path: root/pkgs/top-level/haskell-packages.nix
diff options
context:
space:
mode:
authorsternenseemann <sternenseemann@systemli.org>2022-05-28 20:35:49 +0200
committersternenseemann <sternenseemann@systemli.org>2022-05-28 21:11:07 +0200
commit90099ac5fa24cd9f4003c4def847c3559352dc8e (patch)
tree3e4aae74450452e387c80b52baf39711feaf20fb /pkgs/top-level/haskell-packages.nix
parent7dc61b999111a708728b3c9970c58269c25b6db7 (diff)
downloadnixpkgs-90099ac5fa24cd9f4003c4def847c3559352dc8e.tar
nixpkgs-90099ac5fa24cd9f4003c4def847c3559352dc8e.tar.gz
nixpkgs-90099ac5fa24cd9f4003c4def847c3559352dc8e.tar.bz2
nixpkgs-90099ac5fa24cd9f4003c4def847c3559352dc8e.tar.lz
nixpkgs-90099ac5fa24cd9f4003c4def847c3559352dc8e.tar.xz
nixpkgs-90099ac5fa24cd9f4003c4def847c3559352dc8e.tar.zst
nixpkgs-90099ac5fa24cd9f4003c4def847c3559352dc8e.zip
haskell.compiler: ghc922 -> ghc923
https://www.haskell.org/ghc/download_ghc_9_2_3.html

Since the tarball is generated by Hadrian, neither autoreconf nor ./boot
is executed so ./configure and ghc.mk is missing.
Diffstat (limited to 'pkgs/top-level/haskell-packages.nix')
-rw-r--r--pkgs/top-level/haskell-packages.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix
index c46a7f1bcd2..79815b65f60 100644
--- a/pkgs/top-level/haskell-packages.nix
+++ b/pkgs/top-level/haskell-packages.nix
@@ -13,13 +13,13 @@ let
     "integer-simple"
     "native-bignum"
     "ghc902"
-    "ghc922"
+    "ghc923"
     "ghcHEAD"
   ];
 
   nativeBignumIncludes = [
     "ghc902"
-    "ghc922"
+    "ghc923"
     "ghcHEAD"
   ];
 
@@ -121,7 +121,7 @@ in {
       buildTargetLlvmPackages = pkgsBuildTarget.llvmPackages_12;
       llvmPackages = pkgs.llvmPackages_12;
     };
-    ghc922 = callPackage ../development/compilers/ghc/9.2.2.nix {
+    ghc923 = callPackage ../development/compilers/ghc/9.2.3.nix {
       bootPkgs =
         # aarch64 ghc8107Binary exceeds max output size on hydra
         if stdenv.isAarch64 || stdenv.isAarch32 then
@@ -227,9 +227,9 @@ in {
       ghc = bh.compiler.ghc902;
       compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-9.0.x.nix { };
     };
-    ghc922 = callPackage ../development/haskell-modules {
-      buildHaskellPackages = bh.packages.ghc922;
-      ghc = bh.compiler.ghc922;
+    ghc923 = callPackage ../development/haskell-modules {
+      buildHaskellPackages = bh.packages.ghc923;
+      ghc = bh.compiler.ghc923;
       compilerConfig = callPackage ../development/haskell-modules/configuration-ghc-9.2.x.nix { };
     };
     ghcHEAD = callPackage ../development/haskell-modules {