about summary refs log tree commit diff
path: root/pkgs/development/libraries/boost/1.79.nix
blob: efb176c07a7fc5018c2a17a3cc96c14137a57ccc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ callPackage, fetchurl, fetchpatch, ... } @ args:

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

  src = fetchurl {
    urls = [
      "mirror://sourceforge/boost/boost_${builtins.replaceStrings ["."] ["_"] version}.tar.bz2"
      "https://dl.bintray.com/boostorg/release/${version}/source/boost_${builtins.replaceStrings ["."] ["_"] version}.tar.bz2"
    ];
    # SHA256 from http://www.boost.org/users/history/version_1_79_0.html
    sha256 = "475d589d51a7f8b3ba2ba4eda022b170e562ca3b760ee922c146b6c65856ef39";
  };
})