nixpkgs/pkgs/tools/networking/p2p/libtorrent/default.nix
Marc Weber 16b2e9f951 updating libtorrent and rtorrent making both compile on x86_64
svn path=/nixpkgs/trunk/; revision=16791
2009-08-20 20:19:06 +00:00

19 lines
474 B
Nix

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