summary refs log tree commit diff
path: root/pkgs/development/libraries/libtiff/default.nix
diff options
context:
space:
mode:
authorJohn Ericson <Ericson2314@yahoo.com>2018-01-09 15:09:54 -0500
committerGitHub <noreply@github.com>2018-01-09 15:09:54 -0500
commit06a8d665286b3afa854a357a7fda63b2d875feb0 (patch)
treea9f29030f4dfb4c1e50f3518eb4b90d1c91e86d3 /pkgs/development/libraries/libtiff/default.nix
parent17bdefd1425dc91f77b4645e858992d944917bb2 (diff)
parent133b4658dfa1da5ae5e56f36ab39e5b12cfdb751 (diff)
downloadnixlib-06a8d665286b3afa854a357a7fda63b2d875feb0.tar
nixlib-06a8d665286b3afa854a357a7fda63b2d875feb0.tar.gz
nixlib-06a8d665286b3afa854a357a7fda63b2d875feb0.tar.bz2
nixlib-06a8d665286b3afa854a357a7fda63b2d875feb0.tar.lz
nixlib-06a8d665286b3afa854a357a7fda63b2d875feb0.tar.xz
nixlib-06a8d665286b3afa854a357a7fda63b2d875feb0.tar.zst
nixlib-06a8d665286b3afa854a357a7fda63b2d875feb0.zip
Merge pull request #33603 from obsidiansystems/cross-check
stdenv: Force `doCheck` to be false when we are cross compiling
Diffstat (limited to 'pkgs/development/libraries/libtiff/default.nix')
-rw-r--r--pkgs/development/libraries/libtiff/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/libtiff/default.nix b/pkgs/development/libraries/libtiff/default.nix
index ee21f3df7ac9..0f95b6d34c77 100644
--- a/pkgs/development/libraries/libtiff/default.nix
+++ b/pkgs/development/libraries/libtiff/default.nix
@@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
 
   enableParallelBuilding = true;
 
-  doCheck = stdenv.buildPlatform == stdenv.hostPlatform;
+  doCheck = true; # not cross;
 
   meta = with stdenv.lib; {
     description = "Library and utilities for working with the TIFF image file format";