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