Added libtorrent a bittorent library written in C++ for *nix and rtorrent a ncurses client for libtorrent.
svn path=/nixpkgs/trunk/; revision=10842
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
args: with args;
|
||||
stdenv.mkDerivation ( rec {
|
||||
pname = "rtorrent";
|
||||
version = "0.7.9";
|
||||
|
||||
name = "${pname}-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://libtorrent.rakshasa.no/downloads/${name}.tar.gz";
|
||||
sha256 = "f06f72b1fec94177147b1db0aab15be4f62d1b0354811a67ae74e0cd1e50a119";
|
||||
};
|
||||
|
||||
buildInputs = [ libtorrent ncurses pkgconfig libsigcxx curl zlib openssl ];
|
||||
|
||||
meta = {
|
||||
description = "
|
||||
rtorrent is a ncurses client for libtorrent and is ideal for use with screen or dtach.
|
||||
";
|
||||
};
|
||||
})
|
||||
Reference in New Issue
Block a user