pkgs.boost: 1.59 -> 1.60

See http://www.boost.org/users/history/version_1_60_0.html
This commit is contained in:
Lancelot SIX
2015-12-22 10:48:19 +01:00
parent 26bd247921
commit aa89e98474
3 changed files with 18 additions and 5 deletions

View File

@@ -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";
};
})