···1+diff --git a/django/conf/__init__.py b/django/conf/__init__.py
2+index cb70a71791..5156f7dd73 100644
3+--- a/django/conf/__init__.py
4++++ b/django/conf/__init__.py
5+@@ -227,7 +227,7 @@ class Settings:
6+ if hasattr(time, "tzset") and self.TIME_ZONE:
7+ # When we can, attempt to validate the timezone. If we can't find
8+ # this file, no check happens and it's harmless.
9+- zoneinfo_root = Path("/usr/share/zoneinfo")
10++ zoneinfo_root = Path("@zoneinfo@")
11+ zone_info_file = zoneinfo_root.joinpath(*self.TIME_ZONE.split("/"))
12+ if zoneinfo_root.exists() and not zone_info_file.exists():
13+ raise ValueError("Incorrect timezone setting: %s" % self.TIME_ZONE)
···24 fi
25 done
26 '';
27+ meta = {
28+ # ihaskell has an indirect dependency on the Python package mistune, which
29+ # is marked insecure.
30+ hydraPlatforms = lib.platforms.none;
31+ };
32}
···1+{ lib
2+, rustPlatform
3+, fetchFromGitHub
4+, pkg-config
5+, glibc
6+, libsoup
7+, cairo
8+, gtk3
9+, webkitgtk
10+}:
11+12+rustPlatform.buildRustPackage rec {
13+ pname = "tauri";
14+ version = "1.0.5";
15+16+ src = fetchFromGitHub {
17+ owner = "tauri-apps";
18+ repo = pname;
19+ rev = "v${version}";
20+ sha256 = "sha256-mp9U46H03NTMumUkx5kjsh9LnbPBrvlhh3yCH6FYdbE=";
21+ };
22+23+ # Manually specify the sourceRoot since this crate depends on other crates in the workspace. Relevant info at
24+ # https://discourse.nixos.org/t/difficulty-using-buildrustpackage-with-a-src-containing-multiple-cargo-workspaces/10202
25+ sourceRoot = "source/tooling/cli";
26+27+ cargoSha256 = "sha256-iFXuVrxE/QmM+TAZmN8Ivt6Le19NWYIfVn1PNPvmhZo=";
28+29+ buildInputs = [ glibc libsoup cairo gtk3 webkitgtk ];
30+ nativeBuildInputs = [ pkg-config ];
31+32+ meta = with lib; {
33+ description = "Build smaller, faster, and more secure desktop applications with a web frontend";
34+ homepage = "https://tauri.app/";
35+ license = with licenses; [ asl20 /* or */ mit ];
36+ maintainers = with maintainers; [ dit7ya ];
37+ };
38+}
+3
pkgs/games/hedgewars/default.nix
···107 all movement on the battlefield has ceased).'';
108 maintainers = with maintainers; [ kragniz fpletz ];
109 inherit (fpc.meta) platforms;
000110 };
111}
···107 all movement on the battlefield has ceased).'';
108 maintainers = with maintainers; [ kragniz fpletz ];
109 inherit (fpc.meta) platforms;
110+ # https://github.com/NixOS/nixpkgs/pull/185755#issuecomment-1219024584
111+ broken = true;
112+ hydraPlatforms = platforms.none;
113 };
114}
···157 };
158 ghc941 = callPackage ../development/compilers/ghc/9.4.1.nix {
159 bootPkgs =
160- # TODO(@sternenseemann): Package 9.0.2 bindist or wait for upstream fix
161- # Need to use 902 due to
162 # https://gitlab.haskell.org/ghc/ghc/-/issues/21914
163- packages.ghc902;
0000000000164 inherit (buildPackages.python3Packages) sphinx;
165 # Need to use apple's patched xattr until
166 # https://github.com/xattr/xattr/issues/44 and
···157 };
158 ghc941 = callPackage ../development/compilers/ghc/9.4.1.nix {
159 bootPkgs =
160+ # Building with 9.2 is broken due to
0161 # https://gitlab.haskell.org/ghc/ghc/-/issues/21914
162+ # Use 8.10 as a workaround where possible to keep bootstrap path short.
163+164+ # On ARM text won't build with GHC 8.10.*
165+ if stdenv.hostPlatform.isAarch then
166+ # TODO(@sternenseemann): package bindist
167+ packages.ghc902
168+ # No suitable bindists for powerpc64le
169+ else if stdenv.hostPlatform.isPower64 && stdenv.hostPlatform.isLittleEndian then
170+ packages.ghc902
171+ else
172+ packages.ghc8107Binary;
173 inherit (buildPackages.python3Packages) sphinx;
174 # Need to use apple's patched xattr until
175 # https://github.com/xattr/xattr/issues/44 and