about summary refs log tree commit diff
path: root/pkgs/development/libraries
diff options
context:
space:
mode:
authorFrancesco Gazzetta <fgaz@fgaz.me>2023-07-09 13:53:43 +0200
committerFrancesco Gazzetta <fgaz@fgaz.me>2023-07-09 13:53:43 +0200
commit78593c83f7b69e1f08a8cb6e3d1e8f5cfa6f3905 (patch)
tree80a19604ea997f7fe7c39655d29a673d38bfc759 /pkgs/development/libraries
parentf6dc216ee26c2e92558992074c81148f7f500ba3 (diff)
downloadnixlib-78593c83f7b69e1f08a8cb6e3d1e8f5cfa6f3905.tar
nixlib-78593c83f7b69e1f08a8cb6e3d1e8f5cfa6f3905.tar.gz
nixlib-78593c83f7b69e1f08a8cb6e3d1e8f5cfa6f3905.tar.bz2
nixlib-78593c83f7b69e1f08a8cb6e3d1e8f5cfa6f3905.tar.lz
nixlib-78593c83f7b69e1f08a8cb6e3d1e8f5cfa6f3905.tar.xz
nixlib-78593c83f7b69e1f08a8cb6e3d1e8f5cfa6f3905.tar.zst
nixlib-78593c83f7b69e1f08a8cb6e3d1e8f5cfa6f3905.zip
x265: enable unit tests on x64 only
As written in the comment
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
 }: