summary refs log tree commit diff
path: root/pkgs/development/haskell-modules
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2017-06-28 18:54:27 +0200
committerPeter Simons <simons@cryp.to>2017-06-29 17:35:44 +0200
commit46fe4bd8f3dd0eb4cbb31e11c0852679c0862132 (patch)
treede260694b9ac447986bee037a44f9d2d0dcd7da0 /pkgs/development/haskell-modules
parent78377ae5cf156841415d4e116eb1bde6ab70e5ab (diff)
downloadnixpkgs-46fe4bd8f3dd0eb4cbb31e11c0852679c0862132.tar
nixpkgs-46fe4bd8f3dd0eb4cbb31e11c0852679c0862132.tar.gz
nixpkgs-46fe4bd8f3dd0eb4cbb31e11c0852679c0862132.tar.bz2
nixpkgs-46fe4bd8f3dd0eb4cbb31e11c0852679c0862132.tar.lz
nixpkgs-46fe4bd8f3dd0eb4cbb31e11c0852679c0862132.tar.xz
nixpkgs-46fe4bd8f3dd0eb4cbb31e11c0852679c0862132.tar.zst
nixpkgs-46fe4bd8f3dd0eb4cbb31e11c0852679c0862132.zip
ghc-syb-utils: disable test suite for GHC 8.x or later
The test suite fails when compiling with GHC 8.x. This seems to be a known issue.

Cc: https://github.com/nominolo/ghc-syb/issues/20, https://github.com/NixOS/nixpkgs/issues/26689
Diffstat (limited to 'pkgs/development/haskell-modules')
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix2
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-8.2.x.nix2
2 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix b/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix
index d91d25b8d31..e82e10edc58 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix
@@ -55,5 +55,7 @@ self: super: {
   # https://github.com/thoughtbot/yesod-auth-oauth2/pull/77
   yesod-auth-oauth2 = doJailbreak super.yesod-auth-oauth2;
 
+  # https://github.com/nominolo/ghc-syb/issues/20
+  ghc-syb-utils = dontCheck super.ghc-syb-utils;
 
 }
diff --git a/pkgs/development/haskell-modules/configuration-ghc-8.2.x.nix b/pkgs/development/haskell-modules/configuration-ghc-8.2.x.nix
index e1bdfb776f3..35cd857b662 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-8.2.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-8.2.x.nix
@@ -56,5 +56,7 @@ self: super: {
   # https://github.com/thoughtbot/yesod-auth-oauth2/pull/77
   yesod-auth-oauth2 = doJailbreak super.yesod-auth-oauth2;
 
+  # https://github.com/nominolo/ghc-syb/issues/20
+  ghc-syb-utils = dontCheck super.ghc-syb-utils;
 
 }