2010-07-28 04:55:54 -07:00
|
|
|
{ stdenv, fetchurl, libtorrent, ncurses, pkgconfig, libsigcxx, curl
|
|
|
|
, zlib, openssl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2008-02-23 04:11:27 -08:00
|
|
|
pname = "rtorrent";
|
2010-07-07 14:11:07 -07:00
|
|
|
version = "0.8.6";
|
2008-02-23 04:11:27 -08:00
|
|
|
|
|
|
|
name = "${pname}-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://libtorrent.rakshasa.no/downloads/${name}.tar.gz";
|
2010-07-07 14:11:07 -07:00
|
|
|
sha256 = "1nrj1cgjhscf40zhp70m4p6gq96rqg815dn43yyjl5i42n7cd5lc";
|
2008-02-23 04:11:27 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ libtorrent ncurses pkgconfig libsigcxx curl zlib openssl ];
|
|
|
|
|
|
|
|
meta = {
|
2009-03-03 05:27:40 -08:00
|
|
|
description = "An ncurses client for libtorrent, ideal for use with screen or dtach";
|
2008-02-23 04:11:27 -08:00
|
|
|
};
|
2010-07-28 04:55:54 -07:00
|
|
|
}
|