rtorrent: 0.9.4 -> 0.9.6
This commit is contained in:
parent
ef490c6b14
commit
5fc73c6de1
@ -1,23 +1,21 @@
|
|||||||
{ stdenv, fetchurl, pkgconfig, openssl, libsigcxx, zlib }:
|
{ stdenv, fetchurl, pkgconfig, openssl, libsigcxx, zlib }:
|
||||||
|
|
||||||
let
|
stdenv.mkDerivation rec {
|
||||||
version = "0.13.4";
|
|
||||||
in
|
|
||||||
stdenv.mkDerivation {
|
|
||||||
name = "libtorrent-${version}";
|
name = "libtorrent-${version}";
|
||||||
|
version = "0.13.6";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://libtorrent.rakshasa.no/downloads/libtorrent-${version}.tar.gz";
|
url = "http://rtorrent.net/downloads/${name}.tar.gz";
|
||||||
sha256 = "0ma910br5vxrfpm4f4w4942lpmhwvqjnnf9h8vpf52fw35qhjkkh";
|
sha256 = "012s1nwcvz5m5r4d2z9klgy2n34kpgn9kgwgzxm97zgdjs6a0f18";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ pkgconfig openssl libsigcxx zlib ];
|
buildInputs = [ pkgconfig openssl libsigcxx zlib ];
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
homepage = "http://libtorrent.rakshasa.no/";
|
homepage = https://github.com/rakshasa/libtorrent/;
|
||||||
description = "A BitTorrent library written in C++ for *nix, with a 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 = stdenv.lib.platforms.unix;
|
platforms = platforms.unix;
|
||||||
maintainers = [ stdenv.lib.maintainers.simons ];
|
maintainers = with maintainers; [ simons ebzzry ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -3,11 +3,12 @@
|
|||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "rtorrent-0.9.4";
|
name = "rtorrent-${version}";
|
||||||
|
version = "0.9.6";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://libtorrent.rakshasa.no/downloads/${name}.tar.gz";
|
url = "http://rtorrent.net/downloads/${name}.tar.gz";
|
||||||
sha256 = "113yrrac75vqi4g8r6bgs0ggjllj9bkg9shv08vqzdhkwqg2q2mw";
|
sha256 = "03jvzw9pi2mhcm913h8qg0qw9gwjqc6lhwynb1yz1y163x7w4s8y";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ libtorrent ncurses pkgconfig libsigcxx curl zlib openssl xmlrpc_c ];
|
buildInputs = [ libtorrent ncurses pkgconfig libsigcxx curl zlib openssl xmlrpc_c ];
|
||||||
@ -19,11 +20,11 @@ stdenv.mkDerivation rec {
|
|||||||
# mv doc/rtorrent.rc $out/share/rtorrent/rtorrent.rc
|
# mv doc/rtorrent.rc $out/share/rtorrent/rtorrent.rc
|
||||||
# '';
|
# '';
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
homepage = "http://libtorrent.rakshasa.no/";
|
homepage = https://github.com/rakshasa/rtorrent/;
|
||||||
description = "An ncurses client for libtorrent, ideal for use with screen or dtach";
|
description = "An ncurses client for libtorrent, ideal for use with screen, tmux, or dtach";
|
||||||
|
|
||||||
platforms = stdenv.lib.platforms.unix;
|
platforms = platforms.unix;
|
||||||
maintainers = [ stdenv.lib.maintainers.simons ];
|
maintainers = with maintainers; [ simons ebzzry ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user