python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / libtorrent-rasterbar / 1.2.nix
blobadea75b02e9458b057d2484be6a3005f3e3c8e08
1 { lib, stdenv, fetchFromGitHub, pkg-config, automake, autoconf
2 , zlib, boost, openssl, libtool, python, libiconv, ncurses, SystemConfiguration
3 }:
5 let
6   version = "1.2.11";
8   # Make sure we override python, so the correct version is chosen
9   # for the bindings, if overridden
10   boostPython = boost.override { enablePython = true; inherit python; };
12 in stdenv.mkDerivation {
13   pname = "libtorrent-rasterbar";
14   inherit version;
16   src = fetchFromGitHub {
17     owner = "arvidn";
18     repo = "libtorrent";
19     rev = "v${version}";
20     sha256 = "05qm8mcyxsnb6zb8nckln1gkk8ncwzfhsz7d7p3fhx6gdsc8j71b";
21   };
23   enableParallelBuilding = true;
25   nativeBuildInputs = [ automake autoconf libtool pkg-config ];
27   buildInputs = [ boostPython openssl zlib python libiconv ncurses ]
28     ++ lib.optionals stdenv.isDarwin [ SystemConfiguration ];
30   preConfigure = "./autotool.sh";
32   postInstall = ''
33     moveToOutput "include" "$dev"
34     moveToOutput "lib/${python.libPrefix}" "$python"
35   '';
37   outputs = [ "out" "dev" "python" ];
39   configureFlags = [
40     "--enable-python-binding"
41     "--with-libiconv=yes"
42     "--with-boost=${boostPython.dev}"
43     "--with-boost-libdir=${boostPython.out}/lib"
44   ];
46   meta = with lib; {
47     homepage = "https://libtorrent.org/";
48     description = "A C++ BitTorrent implementation focusing on efficiency and scalability";
49     license = licenses.bsd3;
50     maintainers = [ ];
51     broken = stdenv.isDarwin;
52     platforms = platforms.unix;
53   };