summary refs log tree commit diff
path: root/pkgs/development/libraries/gdbm
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/development/libraries/gdbm
parent4e907dbca19d4b1ab6b110c7e68f88a539df7c97 (diff)
downloadnixpkgs-133b4658dfa1da5ae5e56f36ab39e5b12cfdb751.tar
nixpkgs-133b4658dfa1da5ae5e56f36ab39e5b12cfdb751.tar.gz
nixpkgs-133b4658dfa1da5ae5e56f36ab39e5b12cfdb751.tar.bz2
nixpkgs-133b4658dfa1da5ae5e56f36ab39e5b12cfdb751.tar.lz
nixpkgs-133b4658dfa1da5ae5e56f36ab39e5b12cfdb751.tar.xz
nixpkgs-133b4658dfa1da5ae5e56f36ab39e5b12cfdb751.tar.zst
nixpkgs-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/development/libraries/gdbm')
-rw-r--r--pkgs/development/libraries/gdbm/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/gdbm/default.nix b/pkgs/development/libraries/gdbm/default.nix
index 3b78225a447..7a602f5430e 100644
--- a/pkgs/development/libraries/gdbm/default.nix
+++ b/pkgs/development/libraries/gdbm/default.nix
@@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
     sha256 = "0lx201q20dvc70f8a3c9s7s18z15inlxvbffph97ngvrgnyjq9cx";
   };
 
-  doCheck = stdenv.buildPlatform == stdenv.hostPlatform;
+  doCheck = true; # not cross;
 
   # Linking static stubs on cygwin requires correct ordering.
   # Consider upstreaming this.