summary refs log tree commit diff
path: root/pkgs/tools/networking/p2p/rtorrent/default.nix
blob: a74bbc72523956a7bd5335744a0a2a60c6412d8c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
args: with args;
stdenv.mkDerivation ( rec {
  pname = "rtorrent";
  version = "0.8.6";

  name = "${pname}-${version}";
  
  src = fetchurl {
    url = "http://libtorrent.rakshasa.no/downloads/${name}.tar.gz";
    sha256 = "1nrj1cgjhscf40zhp70m4p6gq96rqg815dn43yyjl5i42n7cd5lc";
  };

  buildInputs = [ libtorrent ncurses pkgconfig libsigcxx curl zlib openssl ];
  
  meta = {
    description = "An ncurses client for libtorrent, ideal for use with screen or dtach";
  };
})