mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 00:43:20 +00:00
2641d97cbf
Reproduction script: # Bulk rewrite ./maintainers/scripts/sha-to-sri.py pkgs/by-name # Revert some packages which will need manual intervention for n in amdvlk azure-cli cargo-profiler corefonts flatito fluxcd gist perf_data_converter protoc-gen-js solana-cli swt verible; do git checkout -- "pkgs/by-name/${n:0:2}/${n}" done
55 lines
1.5 KiB
Nix
55 lines
1.5 KiB
Nix
{ 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}";
|
|
hash = "sha256-KxyJmG7PdOjGPe18Dd3nzKI5X7B0MovWN8vq7llFFRc=";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|