From 2b473737f927398d8a4a1d0260dbeb606575a850 Mon Sep 17 00:00:00 2001 From: Malte Brandy Date: Fri, 12 Feb 2021 11:46:17 +0100 Subject: [PATCH] haskell.packages.ghc884.vector: Disable checks --- pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix | 1 + pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix | 2 ++ 2 files changed, 3 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix b/pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix index eababc62d6e..b695c448be4 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix @@ -98,6 +98,7 @@ self: super: { # Older compilers need the latest ghc-lib to build this package. hls-hlint-plugin = addBuildDepend super.hls-hlint-plugin self.ghc-lib; + # vector 0.12.2 indroduced doctest checks that don‘t work on older compilers vector = dontCheck super.vector; mmorph = super.mmorph_1_1_3; diff --git a/pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix b/pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix index c23d875dea3..e6e0f690fe7 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix @@ -127,4 +127,6 @@ self: super: { # Older compilers need the latest ghc-lib to build this package. hls-hlint-plugin = addBuildDepend super.hls-hlint-plugin self.ghc-lib; + # vector 0.12.2 indroduced doctest checks that don‘t work on older compilers + vector = dontCheck super.vector; }