python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / boost / 1.77.nix
blob3da1a455ead4b07398c02cbbe24f28564078c05d
1 { callPackage, fetchurl, fetchpatch, ... } @ args:
3 callPackage ./generic.nix (args // rec {
4   version = "1.77.0";
6   src = fetchurl {
7     urls = [
8       "mirror://sourceforge/boost/boost_${builtins.replaceStrings ["."] ["_"] version}.tar.bz2"
9       "https://boostorg.jfrog.io/artifactory/main/release/${version}/source/boost_${builtins.replaceStrings ["."] ["_"] version}.tar.bz2"
10     ];
11     # SHA256 from http://www.boost.org/users/history/version_1_77_0.html
12     sha256 = "sha256-/J+F/AMOIzFCkIJBr3qEbmBjCqc4jeml+vsfOiaECFQ=";
13   };