libtorrent: updated to version 0.13.2

svn path=/nixpkgs/trunk/; revision=34525
This commit is contained in:
Peter Simons 2012-06-16 14:15:42 +00:00
parent a77ecd2199
commit ba3c1f4a93

View File

@ -1,14 +1,14 @@
{ stdenv, fetchurl, pkgconfig, openssl, libsigcxx }:
let
version = "0.12.9";
version = "0.13.2";
in
stdenv.mkDerivation {
name = "libtorrent-${version}";
src = fetchurl {
url = "http://libtorrent.rakshasa.no/downloads/libtorrent-${version}.tar.gz";
sha256 = "0r5gjh2kc6fdimh5xxg7qsx2390cxw4fz6srgr20y1sxsj6rxp0m";
sha256 = "ed2f2dea16c29cac63fa2724f6658786d955f975861fa6811bcf1597ff8a5e4f";
};
buildInputs = [ pkgconfig openssl libsigcxx ];