summaryrefslogtreecommitdiffstats
path: root/pkgs
diff options
context:
space:
mode:
authorDomen Kožar <domen@dev.si>2020-11-21 17:33:21 +0100
committerDomen Kožar <domen@dev.si>2020-11-21 17:33:21 +0100
commite6295fafa9f96f1df1010a8afeddc4d8fc97fa68 (patch)
treef0dad0f5ae78b7220106f7fd414cbf4c81732926 /pkgs
parent712c2405b1c4ddf461a1eafd640165583d1c0cca (diff)
haskellPackages.{http-media,servant-auth-client}: fix builds
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix8
1 files changed, 6 insertions, 2 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index afe26660d084..a85687fb8155 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -937,8 +937,9 @@ self: super: {
# Test suite depends on cabal-install
doctest = dontCheck super.doctest;
- # https://github.com/haskell-servant/servant-auth/issues/113
- servant-auth-client = dontCheck super.servant-auth-client;
+ # dontCheck: https://github.com/haskell-servant/servant-auth/issues/113
+ # doJailbreak: waiting on revision 1 to hit hackage
+ servant-auth-client = doJailbreak (dontCheck super.servant-auth-client);
# Generate cli completions for dhall.
dhall = generateOptparseApplicativeCompletion "dhall" super.dhall;
@@ -1479,6 +1480,9 @@ self: super: {
# Tests disabled because of: https://github.com/kowainik/stan/issues/409
stan = doJailbreak (dontCheck super.stan);
+ # Due to tests restricting base in 0.8.0.0 release
+ http-media = doJailbreak super.http-media;
+
# 2020-11-19: Disabling tests with this issue: https://github.com/cchalmers/pcg-random/issues/10
# Issue has been fixed in 0.1.3.7, we can enable tests again, once stackage bumps the version
pcg-random = assert super.pcg-random.version == "0.1.3.6"; dontCheck super.pcg-random;