mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-19 03:14:03 +00:00
haskellPackages.aeson: disable test suite on 32bit platforms
The failures have to do with lowered double precision on such platforms. They are reported upstream and will hopefully be fixed soon.
This commit is contained in:
parent
44552f9e3c
commit
052d60c4f3
@ -195,7 +195,11 @@ self: super: {
|
||||
];
|
||||
in
|
||||
{
|
||||
aeson = aesonQuickCheckPatch super.aeson;
|
||||
aeson = overrideCabal {
|
||||
# aeson's test suite includes some tests with big numbers that fail on 32bit
|
||||
# https://github.com/haskell/aeson/issues/1060
|
||||
doCheck = !pkgs.stdenv.hostPlatform.is32bit;
|
||||
} (aesonQuickCheckPatch super.aeson);
|
||||
}
|
||||
) aeson
|
||||
;
|
||||
|
Loading…
Reference in New Issue
Block a user