nixpkgs/pkgs/tools/networking/p2p/libtorrent/default.nix
Eelco Dolstra 6609710409 * Get rid of many instances of "args: with args;", and other coding
guidelines violations.
* Updated libsamplerate to 0.1.7.

svn path=/nixpkgs/trunk/; revision=22782
2010-07-28 11:55:54 +00:00

20 lines
508 B
Nix

{ stdenv, fetchurl, pkgconfig, openssl, libsigcxx }:
stdenv.mkDerivation rec {
pname = "libtorrent";
version = "0.12.6";
name = "${pname}-${version}";
src = fetchurl {
url = "http://libtorrent.rakshasa.no/downloads/${name}.tar.gz";
sha256 = "0abisz3jgfv4zmyzbsknzvz9hwakxxpdgfl33qk0aslnchqz60kv";
};
buildInputs = [ pkgconfig openssl libsigcxx ];
meta = {
description = "A BitTorrent library written in C++ for *nix, with a focus on high performance and good code";
};
}