boost: add 1.62.0 (not default yet)

This commit is contained in:
Aristid Breitkreuz 2016-12-19 16:00:46 +01:00
parent 2fdd4973ec
commit cc30f5dd5e
2 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,12 @@
{ stdenv, callPackage, fetchurl, ... } @ args:
callPackage ./generic.nix (args // rec {
version = "1.62.0";
src = fetchurl {
url = "mirror://sourceforge/boost/boost_1_62_0.tar.bz2";
# long-form SHA256 from www.boost.org
sha256 = "36c96b0f6155c98404091d8ceb48319a28279ca0333fba1ad8611eb90afb2ca0";
};
})

View File

@ -6729,6 +6729,7 @@ in
boost155 = callPackage ../development/libraries/boost/1.55.nix { };
boost159 = callPackage ../development/libraries/boost/1.59.nix { };
boost160 = callPackage ../development/libraries/boost/1.60.nix { };
boost162 = callPackage ../development/libraries/boost/1.62.nix { };
boost = boost160;
boost_process = callPackage ../development/libraries/boost-process { };