about summary refs log tree commit diff
path: root/pkgs/tools/text/gnupatch
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2018-01-08 02:19:47 -0500
committerJohn Ericson <John.Ericson@Obsidian.Systems>2018-01-09 12:37:38 -0500
commit133b4658dfa1da5ae5e56f36ab39e5b12cfdb751 (patch)
treec3c2ee44606ad4f23fb4e15c3cfd8f5beac44536 /pkgs/tools/text/gnupatch
parent4e907dbca19d4b1ab6b110c7e68f88a539df7c97 (diff)
downloadnixlib-133b4658dfa1da5ae5e56f36ab39e5b12cfdb751.tar
nixlib-133b4658dfa1da5ae5e56f36ab39e5b12cfdb751.tar.gz
nixlib-133b4658dfa1da5ae5e56f36ab39e5b12cfdb751.tar.bz2
nixlib-133b4658dfa1da5ae5e56f36ab39e5b12cfdb751.tar.lz
nixlib-133b4658dfa1da5ae5e56f36ab39e5b12cfdb751.tar.xz
nixlib-133b4658dfa1da5ae5e56f36ab39e5b12cfdb751.tar.zst
nixlib-133b4658dfa1da5ae5e56f36ab39e5b12cfdb751.zip
treewide: Simplify some `doCheck` calls
In anticipation of what I outline in #33599, I only simplify exactly those
`doCheck`s which are equal to `hostPlatform != buildPlatform`. I also stick a
comment next to them so I can grep for them later.
Diffstat (limited to 'pkgs/tools/text/gnupatch')
-rw-r--r--pkgs/tools/text/gnupatch/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/text/gnupatch/default.nix b/pkgs/tools/text/gnupatch/default.nix
index 13579b57e796..dfdb25438cfe 100644
--- a/pkgs/tools/text/gnupatch/default.nix
+++ b/pkgs/tools/text/gnupatch/default.nix
@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
     "ac_cv_func_strnlen_working=yes"
   ];
 
-  doCheck = hostPlatform == buildPlatform;
+  doCheck = true; # not cross;
 
   meta = {
     description = "GNU Patch, a program to apply differences to files";