1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-23 05:26:13 -04:00
nixpkgs/pkgs/tools/networking/p2p/libtorrent/default.nix
2015-09-15 20:03:03 +08:00

22 lines
641 B
Nix

{ stdenv, fetchurl, pkgconfig, openssl, libsigcxx, zlib }:
stdenv.mkDerivation rec {
name = "libtorrent-${version}";
version = "0.13.6";
src = fetchurl {
url = "http://rtorrent.net/downloads/${name}.tar.gz";
sha256 = "012s1nwcvz5m5r4d2z9klgy2n34kpgn9kgwgzxm97zgdjs6a0f18";
};
buildInputs = [ pkgconfig openssl libsigcxx zlib ];
meta = with stdenv.lib; {
homepage = https://github.com/rakshasa/libtorrent/;
description = "A BitTorrent library written in C++ for *nix, with focus on high performance and good code";
platforms = platforms.unix;
maintainers = with maintainers; [ simons ebzzry ];
};
}