From 48fe791e401c07bd5bbd3540158f99be4b3229e9 Mon Sep 17 00:00:00 2001 From: Zane van Iperen Date: Mon, 7 Feb 2022 19:31:26 +1000 Subject: [PATCH] x265: disable tests on aarch64-darwin Temporary to not break its dependencies. See https://github.com/NixOS/nixpkgs/pull/154347#issuecomment-1030949445 --- pkgs/development/libraries/x265/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/x265/default.nix b/pkgs/development/libraries/x265/default.nix index 8ddcedf198b..20c56f4d903 100644 --- a/pkgs/development/libraries/x265/default.nix +++ b/pkgs/development/libraries/x265/default.nix @@ -17,7 +17,7 @@ , custatsSupport ? false # Internal profiling of encoder work , debugSupport ? false # Run-time sanity checks (debugging) , ppaSupport ? false # PPA profiling instrumentation -, unittestsSupport ? (!stdenv.is32bit) # Unit tests - only testing x64 assembly +, unittestsSupport ? (stdenv.is64bit && !(stdenv.isDarwin && stdenv.isAarch64)) # Unit tests - only testing x64 assembly , vtuneSupport ? false # Vtune profiling instrumentation , werrorSupport ? false # Warnings as errors }: