summary refs log tree commit diff
path: root/pkgs/tools/networking/p2p/rtorrent/default.nix
blob: 04b50f9d5d2502f54f6101ce2915ae8f7cd59f9f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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.
    ";
  };
})