haskellPackages.pinch: Fix build by bumping network
This commit is contained in:
parent
248a27fa15
commit
3c80a17155
@ -54,6 +54,16 @@ self: super: {
|
|||||||
ghc-datasize = disableLibraryProfiling super.ghc-datasize;
|
ghc-datasize = disableLibraryProfiling super.ghc-datasize;
|
||||||
ghc-vis = disableLibraryProfiling super.ghc-vis;
|
ghc-vis = disableLibraryProfiling super.ghc-vis;
|
||||||
|
|
||||||
|
# `pinch`s test suite uses a function called `openSocket` that's available
|
||||||
|
# in `network` versions 3.1.2.0 and bigger.
|
||||||
|
# There's an open PR updating the lower bound for `network`:
|
||||||
|
# > https://github.com/abhinav/pinch/pull/46
|
||||||
|
# With that said version tracked for `network` right now is 3.1.1.1 so we're
|
||||||
|
# replacing the network pinch uses with `network_3_1_2_5` for now.
|
||||||
|
pinch = super.pinch.overrideScope (self : super: {
|
||||||
|
network = self.network_3_1_2_5;
|
||||||
|
});
|
||||||
|
|
||||||
# We can remove this once fakedata version gets to 1.0.1 as the test suite
|
# We can remove this once fakedata version gets to 1.0.1 as the test suite
|
||||||
# works fine there.
|
# works fine there.
|
||||||
fakedata = dontCheck super.fakedata;
|
fakedata = dontCheck super.fakedata;
|
||||||
|
@ -3727,7 +3727,6 @@ broken-packages:
|
|||||||
- pi-forall
|
- pi-forall
|
||||||
- pig
|
- pig
|
||||||
- pi-hoole
|
- pi-hoole
|
||||||
- pinch
|
|
||||||
- pinchot
|
- pinchot
|
||||||
- Pipe
|
- Pipe
|
||||||
- pipes-async
|
- pipes-async
|
||||||
|
@ -211248,8 +211248,6 @@ self: {
|
|||||||
testToolDepends = [ hspec-discover ];
|
testToolDepends = [ hspec-discover ];
|
||||||
description = "An alternative implementation of Thrift for Haskell";
|
description = "An alternative implementation of Thrift for Haskell";
|
||||||
license = lib.licenses.bsd3;
|
license = lib.licenses.bsd3;
|
||||||
hydraPlatforms = lib.platforms.none;
|
|
||||||
broken = true;
|
|
||||||
}) {};
|
}) {};
|
||||||
|
|
||||||
"pinch-gen" = callPackage
|
"pinch-gen" = callPackage
|
||||||
|
Loading…
Reference in New Issue
Block a user