boost: add 1.62.0 (not default yet)

This commit is contained in:
Aristid Breitkreuz
2016-12-19 16:00:46 +01:00
parent 2fdd4973ec
commit cc30f5dd5e
2 changed files with 13 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
{ stdenv, callPackage, fetchurl, ... } @ args:
callPackage ./generic.nix (args // rec {
version = "1.62.0";
src = fetchurl {
url = "mirror://sourceforge/boost/boost_1_62_0.tar.bz2";
# long-form SHA256 from www.boost.org
sha256 = "36c96b0f6155c98404091d8ceb48319a28279ca0333fba1ad8611eb90afb2ca0";
};
})