nixpkgs/pkgs/development/libraries/boost/1.66.nix

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

12 lines
386 B
Nix
Raw Normal View History

{ callPackage, fetchurl, ... } @ args:
2017-12-19 06:54:50 +00:00
2021-04-22 19:38:30 +00:00
callPackage ./generic.nix (args // rec {
version = "1.66.0";
2017-12-19 06:54:50 +00:00
src = fetchurl {
2021-04-22 19:38:30 +00:00
url = "mirror://sourceforge/boost/boost_${builtins.replaceStrings ["."] ["_"] version}.tar.bz2";
2017-12-19 06:54:50 +00:00
# SHA256 from http://www.boost.org/users/history/version_1_66_0.html
sha256 = "5721818253e6a0989583192f96782c4a98eb6204965316df9f5ad75819225ca9";
};
})