mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
Merge pull request #22839 from ilya-kolpakov/master
boost: 1.63.0 (not default)
This commit is contained in:
commit
52026edf98
2 changed files with 13 additions and 0 deletions
12
pkgs/development/libraries/boost/1.63.nix
Normal file
12
pkgs/development/libraries/boost/1.63.nix
Normal 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";
|
||||
};
|
||||
|
||||
})
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue