libtorrent: update to current git HEAD to avoid build errors with recent cppunit

This commit is contained in:
Peter Simons 2017-09-20 16:45:58 +02:00
parent f0982ba4be
commit 6b0e6e2e97

View File

@ -6,13 +6,13 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "libtorrent-${version}"; name = "libtorrent-${version}";
version = "0.13.6"; version = "20161212";
src = fetchFromGitHub rec { src = fetchFromGitHub {
owner = "rakshasa"; owner = "rakshasa";
repo = "libtorrent"; repo = "libtorrent";
rev = "${version}"; rev = "c167c5a9e0bcf0df23ae5efd91396aae0e37eb87";
sha256 = "1rvrxgb131snv9r6ksgzmd74rd9z7q46bhky0zazz7dwqqywffcp"; sha256 = "0y9759sxx5dyamyw8w58dsxq7bmnn57q7s2f4cw2zln2pp5gripw";
}; };
buildInputs = [ pkgconfig libtool autoconf automake cppunit openssl libsigcxx zlib ]; buildInputs = [ pkgconfig libtool autoconf automake cppunit openssl libsigcxx zlib ];
@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
preConfigure = "./autogen.sh"; preConfigure = "./autogen.sh";
meta = with stdenv.lib; { meta = with stdenv.lib; {
homepage = http://www.libtorrent.org/; homepage = "http://rtorrent.net/downloads/";
description = "A BitTorrent library written in C++ for *nix, with focus on high performance and good code"; description = "A BitTorrent library written in C++ for *nix, with focus on high performance and good code";
platforms = platforms.linux; platforms = platforms.linux;