x265: disable tests on aarch64-darwin
Temporary to not break its dependencies. See https://github.com/NixOS/nixpkgs/pull/154347#issuecomment-1030949445
This commit is contained in:
parent
79cb125a6d
commit
48fe791e40
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
}:
|
||||
|
|
Loading…
Reference in a new issue