Skip to content

Commit cc30f5d

Browse files
committedDec 19, 2016
boost: add 1.62.0 (not default yet)
1 parent 2fdd497 commit cc30f5d

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed
 
+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{ stdenv, callPackage, fetchurl, ... } @ args:
2+
3+
callPackage ./generic.nix (args // rec {
4+
version = "1.62.0";
5+
6+
src = fetchurl {
7+
url = "mirror://sourceforge/boost/boost_1_62_0.tar.bz2";
8+
# long-form SHA256 from www.boost.org
9+
sha256 = "36c96b0f6155c98404091d8ceb48319a28279ca0333fba1ad8611eb90afb2ca0";
10+
};
11+
12+
})

‎pkgs/top-level/all-packages.nix

+1
Original file line numberDiff line numberDiff line change
@@ -6729,6 +6729,7 @@ in
67296729
boost155 = callPackage ../development/libraries/boost/1.55.nix { };
67306730
boost159 = callPackage ../development/libraries/boost/1.59.nix { };
67316731
boost160 = callPackage ../development/libraries/boost/1.60.nix { };
6732+
boost162 = callPackage ../development/libraries/boost/1.62.nix { };
67326733
boost = boost160;
67336734

67346735
boost_process = callPackage ../development/libraries/boost-process { };

0 commit comments

Comments
 (0)
Please sign in to comment.