Merge pull request #225731 from ivan/python38-meson

python38Packages.meson: fix build with libxcrypt
This commit is contained in:
Martin Weinelt 2023-04-11 13:50:22 +02:00 committed by GitHub
commit 6d468c3a2e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,6 +12,7 @@
, OpenGL
, AppKit
, Cocoa
, libxcrypt
}:
python3.pkgs.buildPythonApplication rec {
@ -120,6 +121,10 @@ python3.pkgs.buildPythonApplication rec {
--replace "python3 -c " "${python3.interpreter} -c "
'';
buildInputs = lib.optionals (python3.pythonOlder "3.9") [
libxcrypt
];
nativeBuildInputs = [ installShellFiles ];
postInstall = ''