buildRustPackage: disable cargo-auditable on pkgsStatic aarch64

This commit is contained in:
Yureka 2024-01-05 00:48:11 +01:00 committed by Alyssa Ross
parent 48a6213611
commit 0eed8836c5

View File

@ -44,7 +44,8 @@
, buildFeatures ? [ ]
, checkFeatures ? buildFeatures
, useNextest ? false
, auditable ? !cargo-auditable.meta.broken
# Enable except on aarch64 pkgsStatic, where we use lld for reasons
, auditable ? !cargo-auditable.meta.broken && !(stdenv.hostPlatform.isStatic && stdenv.hostPlatform.isAarch64 && !stdenv.hostPlatform.isDarwin)
, depsExtraArgs ? {}