about summary refs log tree commit diff
path: root/pkgs/development/libraries
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2023-07-09 18:17:48 +0300
committerGitHub <noreply@github.com>2023-07-09 18:17:48 +0300
commit6510fd1c3d847b6dfd2c96cfcf762a4844786b68 (patch)
treed03f8e656e26a89a65b5f1ed89381d8b4c7a9c0b /pkgs/development/libraries
parent763c1744404b3ac4863d587dd72d4b9914802e4a (diff)
parent78593c83f7b69e1f08a8cb6e3d1e8f5cfa6f3905 (diff)
downloadnixlib-6510fd1c3d847b6dfd2c96cfcf762a4844786b68.tar
nixlib-6510fd1c3d847b6dfd2c96cfcf762a4844786b68.tar.gz
nixlib-6510fd1c3d847b6dfd2c96cfcf762a4844786b68.tar.bz2
nixlib-6510fd1c3d847b6dfd2c96cfcf762a4844786b68.tar.lz
nixlib-6510fd1c3d847b6dfd2c96cfcf762a4844786b68.tar.xz
nixlib-6510fd1c3d847b6dfd2c96cfcf762a4844786b68.tar.zst
nixlib-6510fd1c3d847b6dfd2c96cfcf762a4844786b68.zip
Merge pull request #242464 from fgaz/x265/unittests-x86
x265: enable unit tests on x64 only
Diffstat (limited to 'pkgs/development/libraries')
-rw-r--r--pkgs/development/libraries/x265/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/x265/default.nix b/pkgs/development/libraries/x265/default.nix
index b63b0101d54b..2fb4f995fe4c 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.is64bit && !(stdenv.isDarwin && stdenv.isAarch64)) # Unit tests - only testing x64 assembly
+, unittestsSupport ? stdenv.isx86_64 # Unit tests - only testing x64 assembly
 , vtuneSupport ? false # Vtune profiling instrumentation
 , werrorSupport ? false # Warnings as errors
 }: