5e7c2d6cef
GitOrigin-RevId: f99e5f03cc0aa231ab5950a15ed02afec45ed51a
77 lines
2.2 KiB
Nix
77 lines
2.2 KiB
Nix
{ lib
|
|
, fetchurl
|
|
, llvmPackages
|
|
, python
|
|
, cmake
|
|
, autoPatchelfHook
|
|
, stdenv
|
|
, libxcrypt
|
|
}:
|
|
|
|
let
|
|
stdenv' = if stdenv.cc.isClang then stdenv else llvmPackages.stdenv;
|
|
in
|
|
stdenv'.mkDerivation rec {
|
|
pname = "shiboken6";
|
|
version = "6.5.2";
|
|
|
|
src = fetchurl {
|
|
# https://download.qt.io/official_releases/QtForPython/shiboken6/
|
|
url = "https://download.qt.io/official_releases/QtForPython/shiboken6/PySide6-${version}-src/pyside-setup-everywhere-src-${version}.tar.xz";
|
|
sha256 = "sha256-kNvx0U/NQcmKfL6kS4pJUeENC3mOFUdJdW5JRmVNG6g";
|
|
};
|
|
|
|
sourceRoot = "pyside-setup-everywhere-src-${version}/sources/${pname}";
|
|
|
|
patches = [
|
|
./fix-include-qt-headers.patch
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
python
|
|
] ++ lib.optionals stdenv.isLinux [
|
|
autoPatchelfHook
|
|
];
|
|
|
|
buildInputs = [
|
|
llvmPackages.llvm
|
|
llvmPackages.libclang
|
|
python.pkgs.qt6.qtbase
|
|
python.pkgs.ninja
|
|
python.pkgs.packaging
|
|
python.pkgs.setuptools
|
|
];
|
|
|
|
cmakeFlags = [
|
|
"-DBUILD_TESTS=OFF"
|
|
];
|
|
|
|
# Due to Shiboken.abi3.so being linked to libshiboken6.abi3.so.6.5 in the build tree,
|
|
# we need to remove the build tree reference from the RPATH and then add the correct
|
|
# directory to the RPATH. On Linux, the second part is handled by autoPatchelfHook.
|
|
# https://bugreports.qt.io/browse/PYSIDE-2233
|
|
preFixup = ''
|
|
echo "fixing RPATH of Shiboken.abi3.so"
|
|
'' + lib.optionalString stdenv.isDarwin ''
|
|
install_name_tool -change {@rpath,$out/lib}/libshiboken6.abi3.6.5.dylib $out/${python.sitePackages}/shiboken6/Shiboken.abi3.so
|
|
'' + lib.optionalString stdenv.isLinux ''
|
|
patchelf $out/${python.sitePackages}/shiboken6/Shiboken.abi3.so --shrink-rpath --allowed-rpath-prefixes ${builtins.storeDir}
|
|
'';
|
|
|
|
postInstall = ''
|
|
cd ../../..
|
|
${python.pythonForBuild.interpreter} setup.py egg_info --build-type=shiboken6
|
|
cp -r shiboken6.egg-info $out/${python.sitePackages}/
|
|
'';
|
|
|
|
dontWrapQtApps = true;
|
|
|
|
meta = with lib; {
|
|
description = "Generator for the pyside6 Qt bindings";
|
|
license = with licenses; [ lgpl3Only gpl2Only gpl3Only ];
|
|
homepage = "https://wiki.qt.io/Qt_for_Python";
|
|
maintainers = with maintainers; [ gebner Enzime ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|