summary refs log blame commit diff
path: root/pkgs/development/libraries/boost/1.63.nix
blob: c4749bc3ee411dcd17dbb867882f92753dd9a9c6 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











                                                                                
{ stdenv, callPackage, fetchurl, ... } @ args:

callPackage ./generic.nix (args // rec {
  version = "1.63.0";

  src = fetchurl {
    url = "mirror://sourceforge/boost/boost_1_63_0.tar.bz2";
    # SHA256 from http://www.boost.org/users/history/version_1_63_0.html
    sha256 = "beae2529f759f6b3bf3f4969a19c2e9d6f0c503edcb2de4a61d1428519fcb3b0";
  };

})