Merge pull request #55777 from LnL7/haskell-conduit-extra
haskellPackages.conduit-extra: fix darwin sandbox build
This commit is contained in:
commit
4c01785170
@ -151,6 +151,10 @@ self: super: {
|
|||||||
# dontCheck due to https://github.com/haskell/vector/issues/138
|
# dontCheck due to https://github.com/haskell/vector/issues/138
|
||||||
vector = dontCheck (if pkgs.stdenv.isi686 then appendConfigureFlag super.vector "--ghc-options=-msse2" else super.vector);
|
vector = dontCheck (if pkgs.stdenv.isi686 then appendConfigureFlag super.vector "--ghc-options=-msse2" else super.vector);
|
||||||
|
|
||||||
|
conduit-extra = if pkgs.stdenv.isDarwin
|
||||||
|
then super.conduit-extra.overrideAttrs (drv: { __darwinAllowLocalNetworking = true; })
|
||||||
|
else super.conduit-extra;
|
||||||
|
|
||||||
# Fix Darwin build.
|
# Fix Darwin build.
|
||||||
halive = if pkgs.stdenv.isDarwin
|
halive = if pkgs.stdenv.isDarwin
|
||||||
then addBuildDepend super.halive pkgs.darwin.apple_sdk.frameworks.AppKit
|
then addBuildDepend super.halive pkgs.darwin.apple_sdk.frameworks.AppKit
|
||||||
|
Loading…
x
Reference in New Issue
Block a user