Skip to content

Commit

Permalink
buildRustPackage: disable cargo-auditable on pkgsStatic aarch64
Browse files Browse the repository at this point in the history
  • Loading branch information
yuyuyureka authored and alyssais committed Jan 15, 2024
1 parent 48a6213 commit 0eed883
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkgs/build-support/rust/build-rust-package/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 ? {}

Expand Down

0 comments on commit 0eed883

Please sign in to comment.