4cf7dced54
The breaking removal of triangulationEdges was not that big of a deal after all: It was just renamed to edgesAsPoints apparently, so the fix is easy enough and we can save one override. hgeometry-combinatorial's doctests seem to trigger some kind of GHC dynamic linking bug (https://github.com/noinia/hgeometry/issues/132) so we disable the tests. Change-Id: Iba2a64cade4d1a55fa4b81846e1116f282d4590a Reviewed-on: https://cl.tvl.fyi/c/depot/+/2608 Tested-by: BuildkiteCI Reviewed-by: glittershark <grfn@gws.fyi>
30 lines
984 B
Nix
30 lines
984 B
Nix
{ pkgs }:
|
|
|
|
self: super: with pkgs.haskell.lib; rec {
|
|
generic-arbitrary = appendPatch
|
|
super.generic-arbitrary
|
|
[ ./patches/generic-arbitrary-export-garbitrary.patch ];
|
|
|
|
random = dontCheck (self.callHackageDirect {
|
|
pkg = "random";
|
|
ver = "1.2.0";
|
|
sha256 = "06s3mmqbsfwv09j2s45qnd66nrxfp9280gnl9ng8yh128pfr7bjh";
|
|
} {});
|
|
|
|
# random <1.2
|
|
test-framework = doJailbreak super.test-framework;
|
|
hashable = doJailbreak super.hashable;
|
|
test-framework-quickcheck2 = doJailbreak super.test-framework-quickcheck2;
|
|
|
|
# can be removed if we have the following PR or equivalent
|
|
# https://github.com/NixOS/nixpkgs/pull/116931
|
|
hedgehog-classes = overrideCabal super.hedgehog-classes (attrs: {
|
|
# remove version bound on semirings which is inside a
|
|
# conditional, so doJailbreak doesn't work
|
|
prePatch = ''
|
|
sed -i 's|semirings.*0.6|semirings|g' hedgehog-classes.cabal
|
|
'';
|
|
});
|
|
|
|
hgeometry-combinatorial = dontCheck super.hgeometry-combinatorial;
|
|
}
|