summary refs log tree commit diff
path: root/pkgs/top-level/release-haskell.nix
diff options
context:
space:
mode:
authorsternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2021-08-27 00:36:49 +0200
committersternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2021-08-27 00:42:51 +0200
commit9eca744cc0484e417deb260076241efb0a6c159d (patch)
tree7017230dc33c29cd954252028d6bc8922b98f7dc /pkgs/top-level/release-haskell.nix
parentc4ed2a618c5f8b51c1be5983c9c2e662d76679ad (diff)
downloadnixpkgs-9eca744cc0484e417deb260076241efb0a6c159d.tar
nixpkgs-9eca744cc0484e417deb260076241efb0a6c159d.tar.gz
nixpkgs-9eca744cc0484e417deb260076241efb0a6c159d.tar.bz2
nixpkgs-9eca744cc0484e417deb260076241efb0a6c159d.tar.lz
nixpkgs-9eca744cc0484e417deb260076241efb0a6c159d.tar.xz
nixpkgs-9eca744cc0484e417deb260076241efb0a6c159d.tar.zst
nixpkgs-9eca744cc0484e417deb260076241efb0a6c159d.zip
ghc: 8.10.6 -> 8.10.7
https://www.haskell.org/ghc/download_ghc_8_10_7.html
Diffstat (limited to 'pkgs/top-level/release-haskell.nix')
-rw-r--r--pkgs/top-level/release-haskell.nix18
1 files changed, 9 insertions, 9 deletions
diff --git a/pkgs/top-level/release-haskell.nix b/pkgs/top-level/release-haskell.nix
index a987dc579dc..26f538ff338 100644
--- a/pkgs/top-level/release-haskell.nix
+++ b/pkgs/top-level/release-haskell.nix
@@ -50,7 +50,7 @@ let
   # list of all compilers to test specific packages on
   all = with compilerNames; [
     ghc884
-    ghc8106
+    ghc8107
     ghc901
   ];
 
@@ -278,14 +278,14 @@ let
       # Test some statically linked packages to catch regressions
       # and get some cache going for static compilation with GHC.
       # Use integer-simple to avoid GMP linking problems (LGPL)
-      pkgsStatic.haskell.packages.integer-simple.ghc8106 =
+      pkgsStatic.haskell.packages.integer-simple.ghc8107 =
         removePlatforms
           [
             "aarch64-linux" # times out on Hydra
             "x86_64-darwin" # TODO: reenable when static libiconv works on darwin
           ]
           {
-            inherit (packagePlatforms pkgs.pkgsStatic.haskell.packages.integer-simple.ghc8106)
+            inherit (packagePlatforms pkgs.pkgsStatic.haskell.packages.integer-simple.ghc8107)
               hello
               lens
               random
@@ -300,12 +300,12 @@ let
       # package sets (like Cabal, jailbreak-cabal) are
       # working as expected.
       cabal-install = all;
-      Cabal_3_6_0_0 = with compilerNames; [ ghc884 ghc8106 ];
+      Cabal_3_6_0_0 = with compilerNames; [ ghc884 ghc8107 ];
       cabal2nix-unstable = all;
       funcmp = all;
       # Doesn't currently work on ghc-9.0:
       # https://github.com/haskell/haskell-language-server/issues/297
-      haskell-language-server = with compilerNames; [ ghc884 ghc8106 ];
+      haskell-language-server = with compilerNames; [ ghc884 ghc8107 ];
       hoogle = all;
       hsdns = all;
       jailbreak-cabal = all;
@@ -379,7 +379,7 @@ let
         constituents = accumulateDerivations [
           jobs.pkgsMusl.haskell.compiler.ghc8102Binary
           jobs.pkgsMusl.haskell.compiler.ghc884
-          jobs.pkgsMusl.haskell.compiler.ghc8106
+          jobs.pkgsMusl.haskell.compiler.ghc8107
           jobs.pkgsMusl.haskell.compiler.ghc901
         ];
       };
@@ -394,9 +394,9 @@ let
           ];
         };
         constituents = accumulateDerivations [
-          jobs.pkgsStatic.haskell.packages.integer-simple.ghc8106.hello
-          jobs.pkgsStatic.haskell.packages.integer-simple.ghc8106.lens
-          jobs.pkgsStatic.haskell.packages.integer-simple.ghc8106.random
+          jobs.pkgsStatic.haskell.packages.integer-simple.ghc8107.hello
+          jobs.pkgsStatic.haskell.packages.integer-simple.ghc8107.lens
+          jobs.pkgsStatic.haskell.packages.integer-simple.ghc8107.random
         ];
       };
     }