mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-07 04:34:46 +00:00
e0464e4788
In preparation for the deprecation of `stdenv.isX`. These shorthands are not conducive to cross-compilation because they hide the platforms. Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way One example of why this is bad and especially affects compiler packages https://www.github.com/NixOS/nixpkgs/pull/343059 There are too many files to go through manually but a treewide should get users thinking when they see a `hostPlatform.isX` in a place where it doesn't make sense. ``` fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is" fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is" ```
67 lines
1.9 KiB
Nix
67 lines
1.9 KiB
Nix
{ lib, stdenv, fetchFromGitHub, cmake
|
|
, zlib, boost, openssl, python3, ncurses, darwin
|
|
}:
|
|
|
|
let
|
|
version = "2.0.10";
|
|
|
|
# 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-JrAYtoS8wNmmhbgnprD7vNz1N64ekIryjK77rAKTyaQ=";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
buildInputs = [ boostPython openssl zlib python3 ncurses ]
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin [ darwin.apple_sdk.frameworks.SystemConfiguration ];
|
|
|
|
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;
|
|
};
|
|
}
|