aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/libraries/boost/1.73.nix
blob: 99a5486f197e86c8fa6cbf8ddc12fad861a0e760 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ stdenv, callPackage, fetchurl, fetchpatch, ... } @ args:

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

  src = fetchurl {
    #url = "mirror://sourceforge/boost/boost_1_73_0.tar.bz2";
    urls = [
      "mirror://sourceforge/boost/boost_1_73_0.tar.bz2"
      "https://dl.bintray.com/boostorg/release/1.73.0/source/boost_1_73_0.tar.bz2"
    ];
    # SHA256 from http://www.boost.org/users/history/version_1_73_0.html
    sha256 = "4eb3b8d442b426dc35346235c8733b5ae35ba431690e38c6a8263dce9fcbb402";
  };
})