···11+diff --git a/django/conf/__init__.py b/django/conf/__init__.py22+index cb70a71791..5156f7dd73 10064433+--- a/django/conf/__init__.py44++++ b/django/conf/__init__.py55+@@ -227,7 +227,7 @@ class Settings:66+ if hasattr(time, "tzset") and self.TIME_ZONE:77+ # When we can, attempt to validate the timezone. If we can't find88+ # this file, no check happens and it's harmless.99+- zoneinfo_root = Path("/usr/share/zoneinfo")1010++ zoneinfo_root = Path("@zoneinfo@")1111+ zone_info_file = zoneinfo_root.joinpath(*self.TIME_ZONE.split("/"))1212+ if zoneinfo_root.exists() and not zone_info_file.exists():1313+ raise ValueError("Incorrect timezone setting: %s" % self.TIME_ZONE)
···2424 fi2525 done2626 '';2727+ meta = {2828+ # ihaskell has an indirect dependency on the Python package mistune, which2929+ # is marked insecure.3030+ hydraPlatforms = lib.platforms.none;3131+ };2732}
+3-3
pkgs/development/tools/kdash/default.nix
···12121313rustPlatform.buildRustPackage rec {1414 pname = "kdash";1515- version = "0.3.3";1515+ version = "0.3.4";16161717 src = fetchFromGitHub {1818 owner = "kdash-rs";1919 repo = pname;2020 rev = "v${version}";2121- sha256 = "sha256-u5Qa1rStWeFku3VA2ljg+RQxh12byfyBHXC+NQJTr0w=";2121+ sha256 = "sha256-xKrgRUU0ENJ8CIQUaU/6dMbmxN9RX4jksQnBfgcsRYE=";2222 };23232424 nativeBuildInputs = [ perl python3 pkg-config ];···2626 buildInputs = [ openssl xorg.xcbutil ]2727 ++ lib.optional stdenv.isDarwin AppKit;28282929- cargoSha256 = "sha256-rSPe7kkeHEYDqF80oO+Z+bGkWewtjnKut13EP6tmUIc=";2929+ cargoSha256 = "sha256-7RQvd9zx6iXKmgYLp8N8hGDfq9IX0LoNf2jXwv+iOkM=";30303131 meta = with lib; {3232 description = "A simple and fast dashboard for Kubernetes";
···11+{ lib22+, rustPlatform33+, fetchFromGitHub44+, pkg-config55+, glibc66+, libsoup77+, cairo88+, gtk399+, webkitgtk1010+}:1111+1212+rustPlatform.buildRustPackage rec {1313+ pname = "tauri";1414+ version = "1.0.5";1515+1616+ src = fetchFromGitHub {1717+ owner = "tauri-apps";1818+ repo = pname;1919+ rev = "v${version}";2020+ sha256 = "sha256-mp9U46H03NTMumUkx5kjsh9LnbPBrvlhh3yCH6FYdbE=";2121+ };2222+2323+ # Manually specify the sourceRoot since this crate depends on other crates in the workspace. Relevant info at2424+ # https://discourse.nixos.org/t/difficulty-using-buildrustpackage-with-a-src-containing-multiple-cargo-workspaces/102022525+ sourceRoot = "source/tooling/cli";2626+2727+ cargoSha256 = "sha256-iFXuVrxE/QmM+TAZmN8Ivt6Le19NWYIfVn1PNPvmhZo=";2828+2929+ buildInputs = [ glibc libsoup cairo gtk3 webkitgtk ];3030+ nativeBuildInputs = [ pkg-config ];3131+3232+ meta = with lib; {3333+ description = "Build smaller, faster, and more secure desktop applications with a web frontend";3434+ homepage = "https://tauri.app/";3535+ license = with licenses; [ asl20 /* or */ mit ];3636+ maintainers = with maintainers; [ dit7ya ];3737+ };3838+}
+3
pkgs/games/hedgewars/default.nix
···107107 all movement on the battlefield has ceased).'';108108 maintainers = with maintainers; [ kragniz fpletz ];109109 inherit (fpc.meta) platforms;110110+ # https://github.com/NixOS/nixpkgs/pull/185755#issuecomment-1219024584111111+ broken = true;112112+ hydraPlatforms = platforms.none;110113 };111114}
···157157 };158158 ghc941 = callPackage ../development/compilers/ghc/9.4.1.nix {159159 bootPkgs =160160- # TODO(@sternenseemann): Package 9.0.2 bindist or wait for upstream fix161161- # Need to use 902 due to160160+ # Building with 9.2 is broken due to162161 # https://gitlab.haskell.org/ghc/ghc/-/issues/21914163163- packages.ghc902;162162+ # Use 8.10 as a workaround where possible to keep bootstrap path short.163163+164164+ # On ARM text won't build with GHC 8.10.*165165+ if stdenv.hostPlatform.isAarch then166166+ # TODO(@sternenseemann): package bindist167167+ packages.ghc902168168+ # No suitable bindists for powerpc64le169169+ else if stdenv.hostPlatform.isPower64 && stdenv.hostPlatform.isLittleEndian then170170+ packages.ghc902171171+ else172172+ packages.ghc8107Binary;164173 inherit (buildPackages.python3Packages) sphinx;165174 # Need to use apple's patched xattr until166175 # https://github.com/xattr/xattr/issues/44 and