about summary refs log tree commit diff
path: root/pkgs/by-name/li/libtorrent-rasterbar-1_2_x/package.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/by-name/li/libtorrent-rasterbar-1_2_x/package.nix')
-rw-r--r--pkgs/by-name/li/libtorrent-rasterbar-1_2_x/package.nix54
1 files changed, 54 insertions, 0 deletions
diff --git a/pkgs/by-name/li/libtorrent-rasterbar-1_2_x/package.nix b/pkgs/by-name/li/libtorrent-rasterbar-1_2_x/package.nix
new file mode 100644
index 0000000000000..928f827e32a5b
--- /dev/null
+++ b/pkgs/by-name/li/libtorrent-rasterbar-1_2_x/package.nix
@@ -0,0 +1,54 @@
+{ lib, stdenv, fetchFromGitHub, pkg-config, automake, autoconf
+, zlib, boost, openssl, libtool, python311, libiconv, ncurses, darwin
+}:
+
+let
+  version = "1.2.11";
+
+  # Make sure we override python, so the correct version is chosen
+  # for the bindings, if overridden
+  boostPython = boost.override { enablePython = true; python = python311; };
+
+in stdenv.mkDerivation {
+  pname = "libtorrent-rasterbar";
+  inherit version;
+
+  src = fetchFromGitHub {
+    owner = "arvidn";
+    repo = "libtorrent";
+    rev = "v${version}";
+    sha256 = "05qm8mcyxsnb6zb8nckln1gkk8ncwzfhsz7d7p3fhx6gdsc8j71b";
+  };
+
+  enableParallelBuilding = true;
+
+  nativeBuildInputs = [ automake autoconf libtool pkg-config ];
+
+  buildInputs = [ boostPython openssl zlib python311 libiconv ncurses ]
+    ++ lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.SystemConfiguration ];
+
+  preConfigure = "./autotool.sh";
+
+  postInstall = ''
+    moveToOutput "include" "$dev"
+    moveToOutput "lib/${python311.libPrefix}" "$python"
+  '';
+
+  outputs = [ "out" "dev" "python" ];
+
+  configureFlags = [
+    "--enable-python-binding"
+    "--with-libiconv=yes"
+    "--with-boost=${boostPython.dev}"
+    "--with-boost-libdir=${boostPython.out}/lib"
+  ];
+
+  meta = with lib; {
+    homepage = "https://libtorrent.org/";
+    description = "C++ BitTorrent implementation focusing on efficiency and scalability";
+    license = licenses.bsd3;
+    maintainers = [ ];
+    broken = stdenv.isDarwin;
+    platforms = platforms.unix;
+  };
+}