3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/boost/1.65.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
387 B
Nix
Raw Normal View History

{ callPackage, fetchurl, ... } @ args:
2017-09-17 05:04:49 +01:00
2021-04-22 20:38:30 +01:00
callPackage ./generic.nix (args // rec {
2017-09-17 05:04:49 +01:00
version = "1.65.1";
src = fetchurl {
2021-04-22 20:38:30 +01:00
url = "mirror://sourceforge/boost/boost_${builtins.replaceStrings ["."] ["_"] version}.tar.bz2";
2017-09-17 05:04:49 +01:00
# SHA256 from http://www.boost.org/users/history/version_1_65_1.html
sha256 = "9807a5d16566c57fd74fb522764e0b134a8bbe6b6e8967b83afefd30dcd3be81";
};
})