conan: add xcrun to nativeCheckInputs on darwin

Add xcbuild.xcrun dependency to nativeCheckInputs of the conan package to fix a building failure on Darwin.

Fixes #271115
This commit is contained in:
tarc 2023-11-29 23:57:51 -03:00 committed by Bjørn Forsman
parent 073a55f214
commit a233133b1a

View File

@ -3,6 +3,7 @@
, fetchFromGitHub
, git
, pkg-config
, xcbuild
, python3
, zlib
}:
@ -49,6 +50,8 @@ python3.pkgs.buildPythonApplication rec {
git
pkg-config
zlib
] ++ lib.optionals (stdenv.isDarwin) [
xcbuild.xcrun
] ++ (with python3.pkgs; [
mock
parameterized