summary refs log tree commit diff
path: root/pkgs/development/libraries/boost
diff options
context:
space:
mode:
authorLancelot SIX <lsix@lancelotsix.com>2015-12-22 10:48:19 +0100
committerLancelot SIX <lsix@lancelotsix.com>2016-01-15 13:25:25 +0100
commitaa89e984742987b593052e93e7704314e8f72ca3 (patch)
tree98d50de557ee55e031a4d26f860450c02918e043 /pkgs/development/libraries/boost
parent26bd247921cd7373e06df473fa6d683fda37ed77 (diff)
downloadnixlib-aa89e984742987b593052e93e7704314e8f72ca3.tar
nixlib-aa89e984742987b593052e93e7704314e8f72ca3.tar.gz
nixlib-aa89e984742987b593052e93e7704314e8f72ca3.tar.bz2
nixlib-aa89e984742987b593052e93e7704314e8f72ca3.tar.lz
nixlib-aa89e984742987b593052e93e7704314e8f72ca3.tar.xz
nixlib-aa89e984742987b593052e93e7704314e8f72ca3.tar.zst
nixlib-aa89e984742987b593052e93e7704314e8f72ca3.zip
pkgs.boost: 1.59 -> 1.60
See http://www.boost.org/users/history/version_1_60_0.html
Diffstat (limited to 'pkgs/development/libraries/boost')
-rw-r--r--pkgs/development/libraries/boost/1.60.nix11
1 files changed, 11 insertions, 0 deletions
diff --git a/pkgs/development/libraries/boost/1.60.nix b/pkgs/development/libraries/boost/1.60.nix
new file mode 100644
index 000000000000..b6d74234f799
--- /dev/null
+++ b/pkgs/development/libraries/boost/1.60.nix
@@ -0,0 +1,11 @@
+{ stdenv, callPackage, fetchurl, ... } @ args:
+
+callPackage ./generic.nix (args // rec {
+  version = "1.60.0";
+
+  src = fetchurl {
+    url = "mirror://sourceforge/boost/boost_1_60_0.tar.bz2";
+    sha256 = "0fzx6dwqbrkd4bcd8pjv0fpapwmrxxwr8yx9g67lihlsk3zzysk8";
+  };
+
+})