From 1c2971c8a4a02744bd0a34d24c3998235c53a2d1 Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Sun, 29 May 2022 20:13:17 +0200 Subject: [PATCH] haskellPackages: use 9.2.3 releases for ghc-lib* packages --- pkgs/development/haskell-modules/configuration-common.nix | 8 ++++---- .../haskell-modules/configuration-ghc-9.2.x.nix | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index cc20e35b753c..43ab55aa102d 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -2241,12 +2241,12 @@ self: super: { # 2022-03-21: Newest stylish-haskell needs ghc-lib-parser-9_2 stylish-haskell = (super.stylish-haskell.override { - ghc-lib-parser = super.ghc-lib-parser_9_2_2_20220307; - ghc-lib-parser-ex = self.ghc-lib-parser-ex_9_2_0_3; + ghc-lib-parser = super.ghc-lib-parser_9_2_3_20220527; + ghc-lib-parser-ex = self.ghc-lib-parser-ex_9_2_0_4; }); - ghc-lib-parser-ex_9_2_0_3 = super.ghc-lib-parser-ex_9_2_0_3.override { - ghc-lib-parser = super.ghc-lib-parser_9_2_2_20220307; + ghc-lib-parser-ex_9_2_0_4 = super.ghc-lib-parser-ex_9_2_0_4.override { + ghc-lib-parser = super.ghc-lib-parser_9_2_3_20220527; }; # To strict bound on hspec diff --git a/pkgs/development/haskell-modules/configuration-ghc-9.2.x.nix b/pkgs/development/haskell-modules/configuration-ghc-9.2.x.nix index eedb69da8e90..d734a72ec241 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-9.2.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-9.2.x.nix @@ -100,9 +100,9 @@ self: super: { self.data-default ] ++ drv.libraryHaskellDepends or []; }) super.ghc-exactprint; - ghc-lib = self.ghc-lib_9_2_2_20220307; - ghc-lib-parser = self.ghc-lib-parser_9_2_2_20220307; - ghc-lib-parser-ex = self.ghc-lib-parser-ex_9_2_0_3; + ghc-lib = self.ghc-lib_9_2_3_20220527; + ghc-lib-parser = self.ghc-lib-parser_9_2_3_20220527; + ghc-lib-parser-ex = self.ghc-lib-parser-ex_9_2_0_4; hackage-security = doJailbreak super.hackage-security; hashable = super.hashable_1_4_0_2; hashable-time = doJailbreak super.hashable-time;