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

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

11 lines
301 B
Nix
Raw Normal View History

{ callPackage, fetchurl, ... } @ args:
2015-08-31 01:13:58 +00:00
2021-04-22 19:38:30 +00:00
callPackage ./generic.nix (args // rec {
2015-08-31 01:13:58 +00:00
version = "1.59.0";
src = fetchurl {
2021-04-22 19:38:30 +00:00
url = "mirror://sourceforge/boost/boost_${builtins.replaceStrings ["."] ["_"] version}.tar.bz2";
2015-08-31 01:13:58 +00:00
sha256 = "1jj1aai5rdmd72g90a3pd8sw9vi32zad46xv5av8fhnr48ir6ykj";
};
})