nixpkgs-suyu/pkgs/development/libraries/boost/1.56.nix

11 lines
261 B
Nix
Raw Normal View History

2014-10-29 22:37:37 +01:00
{ callPackage, fetchurl, ... } @ args:
2014-09-14 21:38:58 +02:00
2014-11-03 20:14:08 +01:00
callPackage ./generic.nix (args // rec {
2014-10-29 22:37:37 +01:00
version = "1.56.0";
2014-09-14 21:38:58 +02:00
src = fetchurl {
url = "mirror://sourceforge/boost/boost_1_56_0.tar.bz2";
sha256 = "07gz62nj767qzwqm3xjh11znpyph8gcii0cqhnx7wvismyn34iqk";
};
2014-10-29 22:37:37 +01:00
})