python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / boost / 1.59.nix
bloba417f3e263923549c2d43846573881d1c043cdc4
1 { callPackage, fetchurl, fetchpatch, ... } @ args:
3 callPackage ./generic.nix (args // rec {
4   version = "1.59.0";
6   boostBuildPatches = [
7     # Fixes a segfault on aarch64-darwin from an implicitly defined varargs function.
8     # https://github.com/boostorg/build/pull/238
9     (fetchpatch {
10       url = "https://github.com/boostorg/build/commit/48e9017139dd94446633480661e5447c7e0d8b1b.diff";
11       excludes = [
12         # Doesn't apply, isn't critical.
13         "src/engine/filesys.h"
14       ];
15       sha256 = "sha256-/HLOJKBcGqcK9yBYKSRCSMmTNhCH3sSpK1s3OzkIqx8";
16     })
17   ];
19   src = fetchurl {
20     url = "mirror://sourceforge/boost/boost_${builtins.replaceStrings ["."] ["_"] version}.tar.bz2";
21     sha256 = "1jj1aai5rdmd72g90a3pd8sw9vi32zad46xv5av8fhnr48ir6ykj";
22   };