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

13 lines
329 B
Nix
Raw Normal View History

2014-10-29 21:37:37 +00:00
{ callPackage, fetchurl, ... } @ args:
2014-09-23 09:58:03 +00:00
2019-08-13 21:52:01 +00:00
callPackage ./generic.nix (args // {
2014-10-29 21:37:37 +00:00
version = "1.55.0";
2014-09-23 09:58:03 +00:00
patches = [ ./clang-math.patch ./clang-math-2.patch ./gcc-5.patch ];
2014-09-23 09:58:03 +00:00
src = fetchurl {
url = "mirror://sourceforge/boost/boost_1_55_0.tar.bz2";
sha256 = "0lkv5dzssbl5fmh2nkaszi8x9qbj80pr4acf9i26sj3rvlih1w7z";
};
2014-10-29 21:37:37 +00:00
})