about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/boost/1.62.nix
blob: 871ef392c1ae966ddf8c607f4760cd2a5d6ed4c0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
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";
  };

})