1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

boost: 1.63.0 (not default)

This commit is contained in:
Ilya Kolpakov 2017-02-15 18:29:39 +01:00
parent aba35a5c2d
commit 6d8235210d
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.63.0";
src = fetchurl {
url = "mirror://sourceforge/boost/boost_1_63_0.tar.bz2";
# SHA256 from http://www.boost.org/users/history/version_1_63_0.html
sha256 = "beae2529f759f6b3bf3f4969a19c2e9d6f0c503edcb2de4a61d1428519fcb3b0";
};
})

View file

@ -6919,6 +6919,7 @@ with pkgs;
boost159 = callPackage ../development/libraries/boost/1.59.nix { };
boost160 = callPackage ../development/libraries/boost/1.60.nix { };
boost162 = callPackage ../development/libraries/boost/1.62.nix { };
boost163 = callPackage ../development/libraries/boost/1.63.nix { };
boost = boost162;
boost_process = callPackage ../development/libraries/boost-process { };