summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArtemis Tosini <me@artem.ist>2024-03-01 02:12:22 +0000
committerDomen Kožar <domen@dev.si>2024-03-01 08:12:18 +0000
commit0e172b739ff09c9dc652f2c9175ac0cf745cca81 (patch)
treeac7b46db5871ff29667646a328f426b945d3013c
parentMake venv change work on Darwin (diff)
downloadnixpkgs-origin/python-venv.tar.gz
tzdata: do not run check_now testorigin/python-venv
-rw-r--r--pkgs/data/misc/tzdata/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/data/misc/tzdata/default.nix b/pkgs/data/misc/tzdata/default.nix
index 3d40384132cb..522b2da68ca5 100644
--- a/pkgs/data/misc/tzdata/default.nix
+++ b/pkgs/data/misc/tzdata/default.nix
@@ -46,8 +46,10 @@ stdenv.mkDerivation (finalAttrs: {
];
doCheck = true;
- # everything except for check_web, because that needs curl and wants to talk to https://validator.w3.org
- checkTarget = "check_back check_character_set check_white_space check_links check_name_lengths check_now check_slashed_abbrs check_sorted check_tables check_ziguard check_zishrink check_tzs";
+ # everything except for:
+ # - check_web, because that needs curl and wants to talk to https://validator.w3.org
+ # - check_now, because that depends on the current time
+ checkTarget = "check_back check_character_set check_white_space check_links check_name_lengths check_slashed_abbrs check_sorted check_tables check_ziguard check_zishrink check_tzs";
installFlags = lib.optionals (stdenv.buildPlatform != stdenv.hostPlatform) [
"zic=${buildPackages.tzdata.bin}/bin/zic"