Merge pull request #11878 from lancelotsix/update_boost

pkgs.boost: 1.59 -> 1.60
This commit is contained in:
Peter Simons
2016-03-17 19:45:44 +01:00
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";
};
})