ocamlPackages.conan-cli: fix darwin build (#464595)

This commit is contained in:
Vincent Laporte
2025-11-24 15:18:59 +00:00
committed by GitHub
+9 -1
View File
@@ -1,5 +1,8 @@
{
lib,
stdenv,
buildDunePackage,
darwin,
conan-unix,
dune-site,
alcotest,
@@ -24,7 +27,12 @@ buildDunePackage {
export DUNE_CACHE=disabled
'';
nativeCheckInputs = [ conan-database ];
nativeCheckInputs = [
conan-database
]
++ lib.optionals stdenv.hostPlatform.isDarwin [
darwin.sigtool # codesign
];
checkInputs = [
alcotest