summary refs log tree commit diff
path: root/pkgs/tools/networking/p2p/libtorrent/default.nix
blob: d8cdc26fd38c051028423ef4971b8e9483712e49 (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 = "libtorrent";
  version = "0.11.9";

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

  buildInputs = [ pkgconfig openssl libsigcxx ];
  
  meta = {
    description = "
      LibTorrent is a BitTorrent library written in C++ for *nix, with a focus on high performance and good code.
    ";
  };
})