mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-27 19:29:32 +00:00
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:
parent
073a55f214
commit
a233133b1a
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user