
They are not doing anything right now. This is in preparation for their complete removal from the tree. Note: several changes that affect the derivation inputs (e.g. removal of references to stub paths in build instructions) were left out. They will be cleaned up the next iteration and will require special care. Note: this PR is a result of a mix of ugly regex (not AST) based automation and some manual labor. For reference, the regex automation part was hacked in: https://github.com/booxter/nix-clean-apple_sdk Signed-off-by: Ihar Hrachyshka <ihar.hrachyshka@gmail.com>
88 lines
1.9 KiB
Nix
88 lines
1.9 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
cmake,
|
|
zlib,
|
|
boost,
|
|
openssl,
|
|
python3,
|
|
ncurses,
|
|
}:
|
|
|
|
let
|
|
version = "2.0.11";
|
|
|
|
# Make sure we override python, so the correct version is chosen
|
|
boostPython = boost.override {
|
|
enablePython = true;
|
|
python = python3;
|
|
};
|
|
|
|
in
|
|
stdenv.mkDerivation {
|
|
pname = "libtorrent-rasterbar";
|
|
inherit version;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "arvidn";
|
|
repo = "libtorrent";
|
|
rev = "v${version}";
|
|
hash = "sha256-iph42iFEwP+lCWNPiOJJOejISFF6iwkGLY9Qg8J4tyo=";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
buildInputs = [
|
|
boostPython
|
|
openssl
|
|
zlib
|
|
python3
|
|
ncurses
|
|
];
|
|
|
|
patches = [
|
|
# provide distutils alternative for python 3.12
|
|
./distutils.patch
|
|
];
|
|
|
|
# https://github.com/arvidn/libtorrent/issues/6865
|
|
postPatch = ''
|
|
substituteInPlace cmake/Modules/GeneratePkgConfig/target-compile-settings.cmake.in \
|
|
--replace 'set(_INSTALL_LIBDIR "@CMAKE_INSTALL_LIBDIR@")' \
|
|
'set(_INSTALL_LIBDIR "@CMAKE_INSTALL_LIBDIR@")
|
|
set(_INSTALL_FULL_LIBDIR "@CMAKE_INSTALL_FULL_LIBDIR@")'
|
|
substituteInPlace cmake/Modules/GeneratePkgConfig/pkg-config.cmake.in \
|
|
--replace '$'{prefix}/@_INSTALL_LIBDIR@ @_INSTALL_FULL_LIBDIR@
|
|
'';
|
|
|
|
postInstall = ''
|
|
moveToOutput "include" "$dev"
|
|
moveToOutput "lib/${python3.libPrefix}" "$python"
|
|
'';
|
|
|
|
postFixup = ''
|
|
substituteInPlace "$dev/lib/cmake/LibtorrentRasterbar/LibtorrentRasterbarTargets-release.cmake" \
|
|
--replace "\''${_IMPORT_PREFIX}/lib" "$out/lib"
|
|
'';
|
|
|
|
outputs = [
|
|
"out"
|
|
"dev"
|
|
"python"
|
|
];
|
|
|
|
cmakeFlags = [
|
|
"-Dpython-bindings=on"
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://libtorrent.org/";
|
|
description = "C++ BitTorrent implementation focusing on efficiency and scalability";
|
|
license = licenses.bsd3;
|
|
maintainers = [ ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|