mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
boost164: init at 1.64.0
This commit is contained in:
parent
c3a9f59513
commit
0a7f2acb17
2 changed files with 13 additions and 0 deletions
12
pkgs/development/libraries/boost/1.64.nix
Normal file
12
pkgs/development/libraries/boost/1.64.nix
Normal file
|
@ -0,0 +1,12 @@
|
|||
{ stdenv, callPackage, fetchurl, ... } @ args:
|
||||
|
||||
callPackage ./generic.nix (args // rec {
|
||||
version = "1.64.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/boost/boost_1_64_0.tar.bz2";
|
||||
# SHA256 from http://www.boost.org/users/history/version_1_64_0.html
|
||||
sha256 = "7bcc5caace97baa948931d712ea5f37038dbb1c5d89b43ad4def4ed7cb683332";
|
||||
};
|
||||
|
||||
})
|
|
@ -7470,6 +7470,7 @@ with pkgs;
|
|||
boost160 = callPackage ../development/libraries/boost/1.60.nix { };
|
||||
boost162 = callPackage ../development/libraries/boost/1.62.nix { };
|
||||
boost163 = callPackage ../development/libraries/boost/1.63.nix { };
|
||||
boost164 = callPackage ../development/libraries/boost/1.64.nix { };
|
||||
boost = boost162;
|
||||
|
||||
boost_process = callPackage ../development/libraries/boost-process { };
|
||||
|
|
Loading…
Reference in a new issue