mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 15:56:50 +01:00
commit
162e28f4ad
2 changed files with 12 additions and 0 deletions
11
pkgs/development/libraries/boost/1.68.nix
Normal file
11
pkgs/development/libraries/boost/1.68.nix
Normal file
|
@ -0,0 +1,11 @@
|
|||
{ stdenv, callPackage, fetchurl, fetchpatch, hostPlatform, buildPlatform, ... } @ args:
|
||||
|
||||
callPackage ./generic.nix (args // rec {
|
||||
version = "1.68_0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/boost/boost_1_68_0.tar.bz2";
|
||||
# SHA256 from http://www.boost.org/users/history/version_1_68_0.html
|
||||
sha256 = "7f6130bc3cf65f56a618888ce9d5ea704fa10b462be126ad053e80e553d6d8b7";
|
||||
};
|
||||
})
|
|
@ -8915,6 +8915,7 @@ with pkgs;
|
|||
boost165 = callPackage ../development/libraries/boost/1.65.nix { };
|
||||
boost166 = callPackage ../development/libraries/boost/1.66.nix { };
|
||||
boost167 = callPackage ../development/libraries/boost/1.67.nix { };
|
||||
boost168 = callPackage ../development/libraries/boost/1.68.nix { };
|
||||
boost16x = boost167;
|
||||
boost = boost16x;
|
||||
|
||||
|
|
Loading…
Reference in a new issue