16 lines
528 B
Nix
16 lines
528 B
Nix
|
{ callPackage, fetchurl, fetchpatch, ... } @ args:
|
||
|
|
||
|
callPackage ./generic.nix (args // rec {
|
||
|
version = "1.77.0";
|
||
|
|
||
|
src = fetchurl {
|
||
|
urls = [
|
||
|
"mirror://sourceforge/boost/boost_${builtins.replaceStrings ["."] ["_"] version}.tar.bz2"
|
||
|
"https://dl.bintray.com/boostorg/release/${version}/source/boost_${builtins.replaceStrings ["."] ["_"] version}.tar.bz2"
|
||
|
];
|
||
|
# SHA256 from http://www.boost.org/users/history/version_1_77_0.html
|
||
|
sha256 = "sha256-/J+F/AMOIzFCkIJBr3qEbmBjCqc4jeml+vsfOiaECFQ=";
|
||
|
};
|
||
|
})
|
||
|
|