mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-09-15 20:00:19 +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:
@@ -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
|
||||
;
|
||||
|
||||
Reference in New Issue
Block a user