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

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

  src = fetchurl {
    url = "mirror://sourceforge/boost/boost_1_64_0.tar.bz2";
    # SHA256 from http://www.boost.org/users/history/version_1_64_0.html
    sha256 = "7bcc5caace97baa948931d712ea5f37038dbb1c5d89b43ad4def4ed7cb683332";
  };

})