1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-05-09 17:07:01 +00:00
nixpkgs/pkgs/tools/networking/p2p/libtorrent/default.nix
Jan Malakhovski 7afce99e61 libtorrent, rtorrent: merge *-git into default, drop outdated *-git versions, cleanup
This also gives the man page (it is outdated, though).
2015-12-07 17:56:03 +00:00

27 lines
764 B
Nix

{ stdenv, fetchFromGitHub, pkgconfig
, libtool, autoconf, automake, cppunit
, openssl, libsigcxx, zlib }:
stdenv.mkDerivation rec {
name = "libtorrent-${version}";
version = "0.13.6";
src = fetchFromGitHub rec {
owner = "rakshasa";
repo = "libtorrent";
rev = "${version}";
sha256 = "1rvrxgb131snv9r6ksgzmd74rd9z7q46bhky0zazz7dwqqywffcp";
};
buildInputs = [ pkgconfig libtool autoconf automake cppunit openssl libsigcxx zlib ];
preConfigure = "./autogen.sh";
meta = with stdenv.lib; {
homepage = src.homepage;
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 codyopel ];
};
}