librtorrent: 0.13.7 -> 0.13.8

This commit is contained in:
Mario Rodas 2019-07-19 20:26:40 -05:00
parent 1af592d65f
commit 894edfd504
No known key found for this signature in database
GPG Key ID: 4C4BEFD7B18DC5E8

View File

@ -5,14 +5,14 @@
, openssl, libsigcxx, zlib }: , openssl, libsigcxx, zlib }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "libtorrent-${version}"; pname = "libtorrent";
version = "0.13.7"; version = "0.13.8";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "rakshasa"; owner = "rakshasa";
repo = "libtorrent"; repo = pname;
rev = "v${version}"; rev = "v${version}";
sha256 = "027qanwcisxhx0bq8dn8cpg8563q0k2pm8ls278f04n7jqvvwkp0"; sha256 = "1h5y6ab3gs20yyprdfwcw8fh1c6czs4yrdj0kf54d2vp9qwz685r";
}; };
nativeBuildInputs = [ pkgconfig ]; nativeBuildInputs = [ pkgconfig ];
@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
preConfigure = "./autogen.sh"; preConfigure = "./autogen.sh";
meta = with stdenv.lib; { meta = with stdenv.lib; {
inherit (src.meta) homepage; homepage = "https://github.com/rakshasa/libtorrent";
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.unix; platforms = platforms.unix;