diff options
| author | Emily <vcs@emily.moe> | 2024-11-11 16:45:27 +0000 |
|---|---|---|
| committer | Vladimír Čunát <v@cunat.cz> | 2024-12-26 17:45:09 +0100 |
| commit | 7c1968764946657e1a1f18fa400863d58720b6ec (patch) | |
| tree | 6cf6d5bdebc662f93fa68c35f820744c7adb6e9d | |
| parent | p11-kit: disable test timeouts (diff) | |
| download | nixpkgs-7c1968764946657e1a1f18fa400863d58720b6ec.tar.gz | |
p11-kit: only cause rebuild on x86_64-darwin where it fails
Fixes: 34f5abab7a2e7b02d4ca67bf4ea1b0979f061dcf
(cherry picked from commit 2cb56f387af6364695f4d5b2dd779bcd3849d89b)
| -rw-r--r-- | pkgs/development/libraries/p11-kit/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/p11-kit/default.nix b/pkgs/development/libraries/p11-kit/default.nix index 721ab154cf4f..79aed33e8ac2 100644 --- a/pkgs/development/libraries/p11-kit/default.nix +++ b/pkgs/development/libraries/p11-kit/default.nix @@ -67,7 +67,7 @@ stdenv.mkDerivation rec { )) ]; - mesonCheckFlags = [ + ${if stdenv.buildPlatform.isDarwin && stdenv.buildPlatform.isx86_64 then "mesonCheckFlags" else null} = [ # Tests regularly exceed the default timeout on `x86_64-darwin`. "--timeout-multiplier=0" ]; |
