From 0ef0f83fbf20f0cd45a6210b42e43c8bac42067a Mon Sep 17 00:00:00 2001 From: "(cdep)illabout" Date: Wed, 18 Nov 2020 20:33:04 +0900 Subject: [PATCH] haskellPackages.semver-range: disable tests to get building --- pkgs/development/haskell-modules/configuration-common.nix | 6 ++++++ .../development/haskell-modules/configuration-ghc-8.8.x.nix | 5 ----- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index b0aba7df518..4571ac3dcc6 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -1425,4 +1425,10 @@ self: super: { # 2020-11-17: persistent-test is ahead of the persistent version in stack persistent-sqlite = dontCheck super.persistent-sqlite; + + # The tests for semver-range need to be updated for the MonadFail change in + # ghc-8.8: + # https://github.com/adnelson/semver-range/issues/15 + semver-range = dontCheck super.semver-range; + } // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super 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 546f3a053ad..497e201fb1a 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-8.8.x.nix @@ -95,11 +95,6 @@ self: super: { # https://github.com/kowainik/relude/issues/241 relude = dontCheck super.relude; - # The tests for semver-range need to be updated for the MonadFail change in - # ghc-8.8: - # https://github.com/adnelson/semver-range/issues/15 - semver-range = dontCheck super.semver-range; - # The current version 2.14.2 does not compile with ghc-8.8.x or newer because # of issues with Cabal 3.x. darcs = dontDistribute super.darcs;