mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-04 09:56:13 +03:00
boost: init at 1.72.0
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
This commit is contained in:
parent
b483a679ee
commit
c028978211
16
pkgs/development/libraries/boost/1.72.nix
Normal file
16
pkgs/development/libraries/boost/1.72.nix
Normal file
@ -0,0 +1,16 @@
|
||||
{ stdenv, callPackage, fetchurl, fetchpatch, ... } @ args:
|
||||
|
||||
callPackage ./generic.nix (args // rec {
|
||||
version = "1.72.0";
|
||||
|
||||
src = fetchurl {
|
||||
#url = "mirror://sourceforge/boost/boost_1_72_0.tar.bz2";
|
||||
urls = [
|
||||
"mirror://sourceforge/boost/boost_1_72_0.tar.bz2"
|
||||
"https://dl.bintray.com/boostorg/release/1.72.0/source/boost_1_72_0.tar.bz2"
|
||||
];
|
||||
# SHA256 from http://www.boost.org/users/history/version_1_72_0.html
|
||||
sha256 = "59c9b274bc451cf91a9ba1dd2c7fdcaf5d60b1b3aa83f2c9fa143417cc660722";
|
||||
};
|
||||
})
|
||||
|
@ -11176,6 +11176,7 @@ in
|
||||
boost16x = boost169;
|
||||
boost170 = callPackage ../development/libraries/boost/1.70.nix { };
|
||||
boost171 = callPackage ../development/libraries/boost/1.71.nix { };
|
||||
boost172 = callPackage ../development/libraries/boost/1.72.nix { };
|
||||
boost17x = boost171;
|
||||
boost = boost16x;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user