6609710409
guidelines violations. * Updated libsamplerate to 0.1.7. svn path=/nixpkgs/trunk/; revision=22782
20 lines
508 B
Nix
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";
|
|
};
|
|
}
|