2019-08-19 21:25:28 +01:00
|
|
|
{ stdenv, callPackage, fetchurl, fetchpatch, ... } @ args:
|
|
|
|
|
|
|
|
callPackage ./generic.nix (args // rec {
|
|
|
|
version = "1.71.0";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-19 21:28:12 +01:00
|
|
|
#url = "mirror://sourceforge/boost/boost_1_71_0.tar.bz2";
|
2019-09-04 00:20:22 +01:00
|
|
|
urls = [
|
|
|
|
"mirror://sourceforge/boost/boost_1_71_0.tar.bz2"
|
|
|
|
"https://dl.bintray.com/boostorg/release/1.71.0/source/boost_1_71_0.tar.bz2"
|
|
|
|
];
|
2019-08-19 21:25:28 +01:00
|
|
|
# SHA256 from http://www.boost.org/users/history/version_1_71_0.html
|
|
|
|
sha256 = "d73a8da01e8bf8c7eda40b4c84915071a8c8a0df4a6734537ddde4a8580524ee";
|
|
|
|
};
|
|
|
|
})
|