From 243cd8e8dfb8e6247c18b76e6ebc90fadddaf7c3 Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Wed, 15 Dec 2021 11:11:03 +0100 Subject: [PATCH] haskell.packages.ghc921.hoogle: unbreak haskell.packages.ghc921.bsb-http-chunked: disable doctest suite This package's doctest suite is invoked in a weird way apparently which makes it fail to typecheck with GHC 9.2.1. --- pkgs/development/haskell-modules/configuration-ghc-9.2.x.nix | 3 +++ pkgs/top-level/release-haskell.nix | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) 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 07bd70165dd0..f37b83ae2459 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-9.2.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-9.2.x.nix @@ -214,4 +214,7 @@ self: super: { ghc-lib-parser = self.ghc-lib-parser_9_2_1_20211101; ghc-lib-parser-ex = self.ghc-lib-parser-ex_9_2_0_1; }); + + # https://github.com/sjakobi/bsb-http-chunked/issues/38 + bsb-http-chunked = dontCheck super.bsb-http-chunked; } diff --git a/pkgs/top-level/release-haskell.nix b/pkgs/top-level/release-haskell.nix index f6e34e7084b7..c1179072fb47 100644 --- a/pkgs/top-level/release-haskell.nix +++ b/pkgs/top-level/release-haskell.nix @@ -310,7 +310,7 @@ let cabal2nix-unstable = released ++ [ compilerNames.ghc921 ]; funcmp = released ++ [ compilerNames.ghc921 ]; haskell-language-server = released; - hoogle = released; + hoogle = released ++ [ compilerNames.ghc921 ]; hsdns = released ++ [ compilerNames.ghc921 ]; jailbreak-cabal = released ++ [ compilerNames.ghc921 ]; language-nix = released ++ [ compilerNames.ghc921 ];