mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-14 06:00:33 +03:00
haskellPackages.large-hashable: restrict to GHC < 9.4
A potential fix for the problem is still in discussion: https://github.com/factisresearch/large-hashable/pull/26
This commit is contained in:
parent
44e687d50f
commit
a739c59d4e
2 changed files with 9 additions and 0 deletions
|
@ -2142,6 +2142,12 @@ self: super: {
|
||||||
"-n" "^Data.LargeHashable.Tests.Inspection:genericSumGetsOptimized$"
|
"-n" "^Data.LargeHashable.Tests.Inspection:genericSumGetsOptimized$"
|
||||||
];
|
];
|
||||||
}))
|
}))
|
||||||
|
# https://github.com/factisresearch/large-hashable/issues/25
|
||||||
|
# Currently broken with text >= 2.0
|
||||||
|
(overrideCabal (lib.optionalAttrs (lib.versionAtLeast self.ghc.version "9.4") {
|
||||||
|
broken = true;
|
||||||
|
hydraPlatforms = [];
|
||||||
|
}))
|
||||||
];
|
];
|
||||||
|
|
||||||
# BSON defaults to requiring network instead of network-bsd which is
|
# BSON defaults to requiring network instead of network-bsd which is
|
||||||
|
|
|
@ -509,6 +509,9 @@ let
|
||||||
language-nix = lib.subtractLists [
|
language-nix = lib.subtractLists [
|
||||||
compilerNames.ghc962
|
compilerNames.ghc962
|
||||||
] released;
|
] released;
|
||||||
|
large-hashable = [
|
||||||
|
compilerNames.ghc928
|
||||||
|
];
|
||||||
nix-paths = released;
|
nix-paths = released;
|
||||||
titlecase = released;
|
titlecase = released;
|
||||||
ghc-api-compat = [
|
ghc-api-compat = [
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue