summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix
diff options
context:
space:
mode:
authorMalte Brandy <malte.brandy@maralorn.de>2021-02-12 11:46:17 +0100
committerPeter Simons <simons@cryp.to>2021-02-12 20:35:22 +0100
commit2b473737f927398d8a4a1d0260dbeb606575a850 (patch)
tree55ce27336f31cd26d306a7925acb92db872a3b79 /pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix
parent74d8ebc574986457eb4b8c2d0d8f9c37b72820e4 (diff)
downloadnixpkgs-2b473737f927398d8a4a1d0260dbeb606575a850.tar
nixpkgs-2b473737f927398d8a4a1d0260dbeb606575a850.tar.gz
nixpkgs-2b473737f927398d8a4a1d0260dbeb606575a850.tar.bz2
nixpkgs-2b473737f927398d8a4a1d0260dbeb606575a850.tar.lz
nixpkgs-2b473737f927398d8a4a1d0260dbeb606575a850.tar.xz
nixpkgs-2b473737f927398d8a4a1d0260dbeb606575a850.tar.zst
nixpkgs-2b473737f927398d8a4a1d0260dbeb606575a850.zip
haskell.packages.ghc884.vector: Disable checks
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix2
1 files changed, 2 insertions, 0 deletions
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;
 }