mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Merge pull request #52426 from dtzWill/feature/boost-1.69
boost169: init (at 1.69)
This commit is contained in:
commit
54d1529269
2 changed files with 12 additions and 0 deletions
11
pkgs/development/libraries/boost/1.69.nix
Normal file
11
pkgs/development/libraries/boost/1.69.nix
Normal file
|
@ -0,0 +1,11 @@
|
|||
{ stdenv, callPackage, fetchurl, fetchpatch, ... } @ args:
|
||||
|
||||
callPackage ./generic.nix (args // rec {
|
||||
version = "1.69_0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/boost/boost_1_69_0.tar.bz2";
|
||||
# SHA256 from http://www.boost.org/users/history/version_1_69_0.html
|
||||
sha256 = "8f32d4617390d1c2d16f26a27ab60d97807b35440d45891fa340fc2648b04406";
|
||||
};
|
||||
})
|
|
@ -9369,6 +9369,7 @@ in
|
|||
boost166 = callPackage ../development/libraries/boost/1.66.nix { };
|
||||
boost167 = callPackage ../development/libraries/boost/1.67.nix { };
|
||||
boost168 = callPackage ../development/libraries/boost/1.68.nix { };
|
||||
boost169 = callPackage ../development/libraries/boost/1.69.nix { };
|
||||
boost16x = boost167;
|
||||
boost = boost16x;
|
||||
|
||||
|
|
Loading…
Reference in a new issue