Merge pull request #231325 from wegank/pyside6-darwin

python310Packages.pyside6: cleanup, fix build on darwin
This commit is contained in:
Weijia Wang 2023-05-12 10:10:50 +03:00 committed by GitHub
commit 1b4d6122ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 28 additions and 35 deletions

View File

@ -4,6 +4,7 @@
, ninja
, qt6
, python
, moveBuildTree
, shiboken6
, libxcrypt
}:
@ -15,7 +16,9 @@ stdenv.mkDerivation rec {
sourceRoot = "pyside-setup-everywhere-src-${lib.versions.majorMinor version}/sources/${pname}";
postPatch = ''
# FIXME: cmake/Macros/PySideModules.cmake supposes that all Qt frameworks on macOS
# reside in the same directory as QtCore.framework, which is not true for Nix.
postPatch = lib.optionalString stdenv.isLinux ''
# Don't ignore optional Qt modules
substituteInPlace cmake/PySideHelpers.cmake \
--replace \
@ -27,11 +30,14 @@ stdenv.mkDerivation rec {
cmake
ninja
python
] ++ lib.optionals stdenv.isDarwin [
moveBuildTree
];
buildInputs = with qt6; [
# required
qtbase
] ++ lib.optionals stdenv.isLinux [
# optional
qt3d
qtcharts
@ -51,10 +57,6 @@ stdenv.mkDerivation rec {
qtwebchannel
qtwebengine
qtwebsockets
] ++ lib.optionals (python.pythonOlder "3.9") [
# see similar issue: 202262
# libxcrypt is required for crypt.h for building older python modules
libxcrypt
];
propagatedBuildInputs = [
@ -72,6 +74,6 @@ stdenv.mkDerivation rec {
license = with licenses; [ lgpl3Only gpl2Only gpl3Only ];
homepage = "https://wiki.qt.io/Qt_for_Python";
maintainers = with maintainers; [ gebner Enzime ];
broken = stdenv.isDarwin;
platforms = platforms.all;
};
}

View File

@ -25,30 +25,6 @@ llvmPackages.stdenv.mkDerivation rec {
./fix-include-qt-headers.patch
];
# 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
postBuild = ''
echo "fixing RPATH of Shiboken.abi3.so"
'' + (if stdenv.isDarwin then ''
invalid_rpaths=$(otool -l Shiboken.abi3.so | awk '
/^[^ ]/ {f = 0}
$2 == "LC_RPATH" && $1 == "cmd" {f = 1}
f && gsub(/^ *path | \(offset [0-9]+\)$/, "") == 2
' | grep --invert-match /nix/store)
install_name_tool $(echo $invalid_rpaths | sed 's/^/-delete_rpath /' | tr '\n' ' ' | sed 's/ $//') Shiboken.abi3.so
install_name_tool -add_rpath $out/lib Shiboken.abi3.so
'' else ''
patchelf Shiboken.abi3.so --shrink-rpath --allowed-rpath-prefixes /nix/store
'');
cmakeFlags = [
"-DBUILD_TESTS=OFF"
];
dontWrapQtApps = true;
nativeBuildInputs = [
cmake
python
@ -60,16 +36,31 @@ llvmPackages.stdenv.mkDerivation rec {
llvmPackages.llvm
llvmPackages.libclang
qt6.qtbase
] ++ (lib.optionals (python.pythonOlder "3.9") [
# see similar issue: 202262
# libxcrypt is required for crypt.h for building older python modules
libxcrypt
]);
];
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}
'';
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;
};
}