From abd59264472101ca31a06bfde08a9b5166dc37ab Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 7 Feb 2020 20:55:41 +0100 Subject: [PATCH] haskell-policeman: don't build this package with ghc-8.6.x --- pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix | 3 +++ 1 file 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 e97cb447e53c..8d64286402f3 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix @@ -84,4 +84,7 @@ self: super: { # cabal2spec needs a recent version of Cabal cabal2spec = super.cabal2spec.overrideScope (self: super: { Cabal = self.Cabal_3_0_0_0; }); + # Builds only with ghc-8.8.x and beyond. + policeman = markBroken super.policeman; + }