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

                                              
                                    








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

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

  src = fetchurl {
    url = "mirror://sourceforge/boost/boost_1_65_1.tar.bz2";
    # SHA256 from http://www.boost.org/users/history/version_1_65_1.html
    sha256 = "9807a5d16566c57fd74fb522764e0b134a8bbe6b6e8967b83afefd30dcd3be81";
  };

})