about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/networking/p2p/libtorrent-jesec/default.nix
blob: 0fd16f4799d64cb71af87dcaf01b2412606dc53d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{ lib, stdenv, fetchFromGitHub, fetchpatch, cmake, gtest, openssl, zlib }:

stdenv.mkDerivation rec {
  pname = "libtorrent-jesec";
  version = "0.13.8-r2";

  src = fetchFromGitHub {
    owner = "jesec";
    repo = "libtorrent";
    rev = "v${version}";
    sha256 = "sha256-eIXVTbVOCRHcxSsLPvIm9F60t2upk5ORpDSOOYqTCJ4=";
  };

  patches = [
    (fetchpatch {
      name = "test-fallback";
      url = "https://github.com/jesec/libtorrent/commit/a38205ce06aadc9908478ec3a9c8aefd9be06344.patch";
      sha256 = "sha256-2TyQ9zYWZw6bzAfVZzTOQSkfIZnDU8ykgpRAFXscEH0=";
    })
  ];

  nativeBuildInputs = [ cmake ];
  buildInputs = [ openssl zlib ];

  doCheck = true;
  preCheck = ''
    export LD_LIBRARY_PATH=$LD_LIBRARY_PATH''${LD_LIBRARY_PATH:+:}$PWD
  '';
  checkInputs = [ gtest ];

  meta = with lib; {
    description = "A BitTorrent library written in C++ for *nix, with focus on high performance and good code (jesec's fork)";
    homepage = "https://github.com/jesec/libtorrent";
    license = licenses.gpl2Plus;
    maintainers = with maintainers; [ winterqt ];
    platforms = platforms.linux;
  };
}