Skip to content

Commit

Permalink
p11-kit: fix check flag conditionalization (#355233)
Browse files Browse the repository at this point in the history
  • Loading branch information
emilazy authored Nov 11, 2024
2 parents 1ca0de5 + 2cb56f3 commit 1c3064c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/by-name/p1/p11-kit/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ stdenv.mkDerivation rec {
]))
];

mesonCheckFlags = lib.optionals (stdenv.buildPlatform.isDarwin && stdenv.buildPlatform.isx86_64) [
${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"
];
Expand Down

0 comments on commit 1c3064c

Please sign in to comment.