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

                                              
                                    








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

callPackage ./generic.nix (args // {
  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";
  };

})