diff --git a/pkgs/development/haskell-modules/configuration-darwin.nix b/pkgs/development/haskell-modules/configuration-darwin.nix index c94f74c4e10c..487db708c48d 100644 --- a/pkgs/development/haskell-modules/configuration-darwin.nix +++ b/pkgs/development/haskell-modules/configuration-darwin.nix @@ -294,6 +294,12 @@ self: super: warp = overrideCabal (drv: { __darwinAllowLocalNetworking = true; + # These fail in darwin sandbox with: + # Network.SendFile.MacOS.sendloopHeader: permission denied (Operation not permitted) + testFlags = drv.testFlags or [ ] ++ [ + "--skip=/Response/range requests/" + "--skip=/Response/partial files/" + ]; }) super.warp; ghcjs-dom-hello = overrideCabal (drv: {