diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index e6c10f725116..380ff1f9fff3 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -2220,6 +2220,12 @@ self: super: { "-p" "!/asLens.set/&&!/complex.set/&&!/multipleKeys.set/" ] ++ drv.testFlags or []; }) super.aeson-quick; + # https://github.com/minio/minio-hs/issues/165 + minio-hs = overrideCabal (drv: { + testFlags = [ + "-p" "!/Test mkSelectRequest/" + ] ++ drv.testFlags or []; + }) super.minio-hs; # golden files expect an old version of hpack, so tests fail intermittently # TODO: maybe disable golden test suite altogether? this will happen again as