diff --git a/nixos/modules/services/admin/pgadmin.nix b/nixos/modules/services/admin/pgadmin.nix index 1e46d2794261..b4792a28466b 100644 --- a/nixos/modules/services/admin/pgadmin.nix +++ b/nixos/modules/services/admin/pgadmin.nix @@ -208,7 +208,9 @@ in User = "pgadmin"; DynamicUser = true; LogsDirectory = "pgadmin"; + LogsDirectoryMode = "750"; StateDirectory = "pgadmin"; + StateDirectoryMode = "750"; ExecStart = "${cfg.package}/bin/pgadmin4"; LoadCredential = [ "initial_password:${cfg.initialPasswordFile}" @@ -218,17 +220,20 @@ in CapabilityBoundingSet = ""; LockPersonality = true; MemoryDenyWriteExecute = true; + MountAPIVFS = true; NoNewPrivileges = true; PrivateDevices = true; PrivateMounts = true; PrivateTmp = true; + PrivateUsers = true; ProtectClock = true; - ProtectControlGroups = true; + ProtectControlGroups = "strict"; ProtectHome = true; ProtectHostname = true; ProtectKernelLogs = true; ProtectKernelModules = true; ProtectKernelTunables = true; + ProtectProc = "invisible"; ProtectSystem = "full"; RemoveIPC = true; RestrictAddressFamilies = [ diff --git a/nixos/modules/tasks/filesystems/btrfs.nix b/nixos/modules/tasks/filesystems/btrfs.nix index 92d5ffd00d6f..9d3039fccbfb 100644 --- a/nixos/modules/tasks/filesystems/btrfs.nix +++ b/nixos/modules/tasks/filesystems/btrfs.nix @@ -65,6 +65,16 @@ in ''; }; + limit = mkOption { + default = null; + type = types.nullOr (types.strMatching "[0-9]+[KMGT]?"); + example = "100M"; + description = '' + The scrub throughput limit applied on all scrubbed filesystems. + The value is bytes per second, and accepts the usual KMGT prefixes. + ''; + }; + }; }; @@ -185,7 +195,9 @@ in Type = "simple"; Nice = 19; IOSchedulingClass = "idle"; - ExecStart = "${pkgs.btrfs-progs}/bin/btrfs scrub start -B ${fs}"; + ExecStart = "${pkgs.btrfs-progs}/bin/btrfs scrub start -B ${ + lib.optionalString (cfgScrub.limit != null) "--limit ${cfgScrub.limit}" + } ${fs}"; # if the service is stopped before scrub end, cancel it ExecStop = pkgs.writeShellScript "btrfs-scrub-maybe-cancel" '' (${pkgs.btrfs-progs}/bin/btrfs scrub status ${fs} | ${pkgs.gnugrep}/bin/grep finished) || ${pkgs.btrfs-progs}/bin/btrfs scrub cancel ${fs} diff --git a/nixos/modules/virtualisation/nixos-containers.nix b/nixos/modules/virtualisation/nixos-containers.nix index b2c61f3da867..ce86487bbbc3 100644 --- a/nixos/modules/virtualisation/nixos-containers.nix +++ b/nixos/modules/virtualisation/nixos-containers.nix @@ -53,23 +53,23 @@ let trap "exit 0" SIGRTMIN+3 # Initialise the container side of the veth pair. - if [ -n "$HOST_ADDRESS" ] || [ -n "$HOST_ADDRESS6" ] || - [ -n "$LOCAL_ADDRESS" ] || [ -n "$LOCAL_ADDRESS6" ] || - [ -n "$HOST_BRIDGE" ]; then + if [[ -n "''${HOST_ADDRESS-}" ]] || [[ -n "''${HOST_ADDRESS6-}" ]] || + [[ -n "''${LOCAL_ADDRESS-}" ]] || [[ -n "''${LOCAL_ADDRESS6-}" ]] || + [[ -n "''${HOST_BRIDGE-}" ]]; then ip link set host0 name eth0 ip link set dev eth0 up - if [ -n "$LOCAL_ADDRESS" ]; then + if [[ -n "''${LOCAL_ADDRESS-}" ]]; then ip addr add $LOCAL_ADDRESS dev eth0 fi - if [ -n "$LOCAL_ADDRESS6" ]; then + if [[ -n "''${LOCAL_ADDRESS6-}" ]]; then ip -6 addr add $LOCAL_ADDRESS6 dev eth0 fi - if [ -n "$HOST_ADDRESS" ]; then + if [[ -n "''${HOST_ADDRESS-}" ]]; then ip route add $HOST_ADDRESS dev eth0 ip route add default via $HOST_ADDRESS fi - if [ -n "$HOST_ADDRESS6" ]; then + if [[ -n "''${HOST_ADDRESS6-}" ]]; then ip -6 route add $HOST_ADDRESS6 dev eth0 ip -6 route add default via $HOST_ADDRESS6 fi @@ -96,11 +96,11 @@ let chmod 0755 "$root/etc" "$root/var/lib" mkdir -p "$root/var/lib/private" "$root/root" /run/nixos-containers chmod 0700 "$root/var/lib/private" "$root/root" /run/nixos-containers - if ! [ -e "$root/etc/os-release" ] && ! [ -h "$root/etc/os-release" ]; then + if ! [[ -e "$root/etc/os-release" ]] && ! [[ -h "$root/etc/os-release" ]]; then touch "$root/etc/os-release" fi - if ! [ -e "$root/etc/machine-id" ]; then + if ! [[ -e "$root/etc/machine-id" ]]; then touch "$root/etc/machine-id" fi @@ -113,19 +113,19 @@ let cp --remove-destination /etc/resolv.conf "$root/etc/resolv.conf" - if [ -n "$FLAKE" ] && [ ! -e "/nix/var/nix/profiles/per-container/$INSTANCE/system" ]; then + if [ -n "''${FLAKE-}" ] && [ ! -e "/nix/var/nix/profiles/per-container/$INSTANCE/system" ]; then # we create the etc/nixos-container config file, then if we utilize the update function, we can then build all the necessary system files for the container ${lib.getExe nixos-container} update "$INSTANCE" fi declare -a extraFlags - if [ "$PRIVATE_NETWORK" = 1 ]; then + if [[ "''${PRIVATE_NETWORK-}" = 1 ]]; then extraFlags+=("--private-network") fi NIX_BIND_OPT="" - if [ -n "$PRIVATE_USERS" ]; then + if [[ -n "''${PRIVATE_USERS-}" ]]; then extraFlags+=("--private-users=$PRIVATE_USERS") if [[ "$PRIVATE_USERS" = "pick" @@ -137,12 +137,12 @@ let fi fi - if [ -n "$HOST_ADDRESS" ] || [ -n "$LOCAL_ADDRESS" ] || - [ -n "$HOST_ADDRESS6" ] || [ -n "$LOCAL_ADDRESS6" ]; then + if [[ -n "''${HOST_ADDRESS-}" ]] || [[ -n "''${LOCAL_ADDRESS-}" ]] || + [[ -n "''${HOST_ADDRESS6-}" ]] || [[ -n "''${LOCAL_ADDRESS6-}" ]]; then extraFlags+=("--network-veth") fi - if [ -n "$HOST_PORT" ]; then + if [[ -n "''${HOST_PORT-}" ]]; then OIFS=$IFS IFS="," for i in $HOST_PORT @@ -152,28 +152,28 @@ let IFS=$OIFS fi - if [ -n "$HOST_BRIDGE" ]; then + if [[ -n "''${HOST_BRIDGE-}" ]]; then extraFlags+=("--network-bridge=$HOST_BRIDGE") fi - if [ -n "$NETWORK_NAMESPACE_PATH" ]; then + if [[ -n "''${NETWORK_NAMESPACE_PATH-}" ]]; then extraFlags+=("--network-namespace-path=$NETWORK_NAMESPACE_PATH") fi extraFlags+=(${lib.escapeShellArgs (mapAttrsToList nspawnExtraVethArgs cfg.extraVeths)}) - for iface in $INTERFACES; do + for iface in ''${INTERFACES-}; do extraFlags+=("--network-interface=$iface") done - for iface in $MACVLANS; do + for iface in ''${MACVLANS-}; do extraFlags+=("--network-macvlan=$iface") done # If the host is 64-bit and the container is 32-bit, add a # --personality flag. ${optionalString (pkgs.stdenv.hostPlatform.system == "x86_64-linux") '' - if [ "$(< "''${SYSTEM_PATH:-/nix/var/nix/profiles/per-container/$INSTANCE/system}/system")" = i686-linux ]; then + if [[ "$(< "''${SYSTEM_PATH:-/nix/var/nix/profiles/per-container/$INSTANCE/system}/system")" = i686-linux ]]; then extraFlags+=("--personality=x86") fi ''} @@ -198,14 +198,14 @@ let --bind="/nix/var/nix/profiles/per-container/$INSTANCE:/nix/var/nix/profiles$NIX_BIND_OPT" \ --bind="/nix/var/nix/gcroots/per-container/$INSTANCE:/nix/var/nix/gcroots$NIX_BIND_OPT" \ ${optionalString (!cfg.ephemeral) "--link-journal=try-guest"} \ - --setenv PRIVATE_NETWORK="$PRIVATE_NETWORK" \ - --setenv PRIVATE_USERS="$PRIVATE_USERS" \ - --setenv HOST_BRIDGE="$HOST_BRIDGE" \ - --setenv HOST_ADDRESS="$HOST_ADDRESS" \ - --setenv LOCAL_ADDRESS="$LOCAL_ADDRESS" \ - --setenv HOST_ADDRESS6="$HOST_ADDRESS6" \ - --setenv LOCAL_ADDRESS6="$LOCAL_ADDRESS6" \ - --setenv HOST_PORT="$HOST_PORT" \ + --setenv PRIVATE_NETWORK="''${PRIVATE_NETWORK-}" \ + --setenv PRIVATE_USERS="''${PRIVATE_USERS-}" \ + --setenv HOST_BRIDGE="''${HOST_BRIDGE-}" \ + --setenv HOST_ADDRESS="''${HOST_ADDRESS-}" \ + --setenv LOCAL_ADDRESS="''${LOCAL_ADDRESS-}" \ + --setenv HOST_ADDRESS6="''${HOST_ADDRESS6-}" \ + --setenv LOCAL_ADDRESS6="''${LOCAL_ADDRESS6-}" \ + --setenv HOST_PORT="''${HOST_PORT-}" \ --setenv PATH="$PATH" \ ${optionalString cfg.ephemeral "--ephemeral"} \ ${ @@ -218,7 +218,7 @@ let cfg.tmpfs != null && cfg.tmpfs != [ ] ) ''--tmpfs=${concatStringsSep " --tmpfs=" cfg.tmpfs}'' } \ - $EXTRA_NSPAWN_FLAGS \ + ''${EXTRA_NSPAWN_FLAGS-} \ ${containerInit cfg} "''${SYSTEM_PATH:-/nix/var/nix/profiles/system}/init" ''; @@ -226,8 +226,8 @@ let # Clean up existing machined registration and interfaces. machinectl terminate "$INSTANCE" 2> /dev/null || true - if [ -n "$HOST_ADDRESS" ] || [ -n "$LOCAL_ADDRESS" ] || - [ -n "$HOST_ADDRESS6" ] || [ -n "$LOCAL_ADDRESS6" ]; then + if [[ -n "''${HOST_ADDRESS-}" ]] || [[ -n "''${LOCAL_ADDRESS-}" ]] || + [[ -n "''${HOST_ADDRESS6-}" ]] || [[ -n "''${LOCAL_ADDRESS6-}" ]]; then ip link del dev "ve-$INSTANCE" 2> /dev/null || true ip link del dev "vb-$INSTANCE" 2> /dev/null || true fi @@ -244,8 +244,8 @@ let cfg: ipcmd: variable: attribute: if cfg.${attribute} == null then '' - if [ -n "${variable}" ]; then - ${ipcmd} add "${variable}" dev "$ifaceHost" + if [[ -n "''${${variable}-}" ]]; then + ${ipcmd} add "''${${variable}}" dev "$ifaceHost" fi '' else @@ -277,16 +277,16 @@ let ''; in '' - if [ -n "$HOST_ADDRESS" ] || [ -n "$LOCAL_ADDRESS" ] || - [ -n "$HOST_ADDRESS6" ] || [ -n "$LOCAL_ADDRESS6" ]; then - if [ -z "$HOST_BRIDGE" ]; then + if [[ -n "''${HOST_ADDRESS-}" ]] || [[ -n "''${LOCAL_ADDRESS-}" ]] || + [[ -n "''${HOST_ADDRESS6-}" ]] || [[ -n "''${LOCAL_ADDRESS6-}" ]]; then + if [[ -z "''${HOST_BRIDGE-}" ]]; then ifaceHost=ve-$INSTANCE ip link set dev "$ifaceHost" up - ${ipcall cfg "ip addr" "$HOST_ADDRESS" "hostAddress"} - ${ipcall cfg "ip -6 addr" "$HOST_ADDRESS6" "hostAddress6"} - ${ipcall cfg "ip route" "$LOCAL_ADDRESS" "localAddress"} - ${ipcall cfg "ip -6 route" "$LOCAL_ADDRESS6" "localAddress6"} + ${ipcall cfg "ip addr" "HOST_ADDRESS" "hostAddress"} + ${ipcall cfg "ip -6 addr" "HOST_ADDRESS6" "hostAddress6"} + ${ipcall cfg "ip route" "LOCAL_ADDRESS" "localAddress"} + ${ipcall cfg "ip -6 route" "LOCAL_ADDRESS6" "localAddress6"} fi fi ${concatStringsSep "\n" (mapAttrsToList renderExtraVeth cfg.extraVeths)} @@ -967,6 +967,8 @@ in config.nix.package ]; + enableStrictShellChecks = true; + environment = { root = "${stateDirectory}/%i"; INSTANCE = "%i"; diff --git a/nixos/tests/all-tests.nix b/nixos/tests/all-tests.nix index 28b2d18e6685..1a4a1e95abc4 100644 --- a/nixos/tests/all-tests.nix +++ b/nixos/tests/all-tests.nix @@ -377,7 +377,7 @@ in consul = runTest ./consul.nix; consul-template = runTest ./consul-template.nix; containers-bridge = runTest ./containers-bridge.nix; - containers-custom-pkgs.nix = runTest ./containers-custom-pkgs.nix; + containers-custom-pkgs = runTest ./containers-custom-pkgs.nix; containers-ephemeral = runTest ./containers-ephemeral.nix; containers-extra_veth = runTest ./containers-extra_veth.nix; containers-hosts = runTest ./containers-hosts.nix; diff --git a/pkgs/applications/networking/browsers/firefox-bin/release_sources.nix b/pkgs/applications/networking/browsers/firefox-bin/release_sources.nix index 04e4e0cdf046..1ff0a0b50920 100644 --- a/pkgs/applications/networking/browsers/firefox-bin/release_sources.nix +++ b/pkgs/applications/networking/browsers/firefox-bin/release_sources.nix @@ -1,2477 +1,2477 @@ { - version = "143.0.4"; + version = "144.0"; sources = [ { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/ach/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/ach/firefox-144.0.tar.xz"; locale = "ach"; arch = "linux-x86_64"; - sha256 = "fc9161d7822263f35d83d311086468d11e783acc2460cfe7da3ca5ae949bf81e"; + sha256 = "be55ffa2ee01d8facb5c06298a8509b637558af419e62d3512ccafae2dfdacd5"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/af/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/af/firefox-144.0.tar.xz"; locale = "af"; arch = "linux-x86_64"; - sha256 = "1d02eac9faec6a835cf6c053956c5c0439d2863bc35adaaba6b3dfb049d06574"; + sha256 = "9d0f64458d6620894a40a5129688fea3a7acd0f9ec609b7de03deea6f01ec507"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/an/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/an/firefox-144.0.tar.xz"; locale = "an"; arch = "linux-x86_64"; - sha256 = "93a754b23297c5c9c148ef9018e5c8ba5e1069a2ed13367a2e9d83f55926c7fc"; + sha256 = "e2c15a01d6a4a7f24d2c4c7ff084ab3063de9865fd23767c85fb23a0e5e84f7d"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/ar/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/ar/firefox-144.0.tar.xz"; locale = "ar"; arch = "linux-x86_64"; - sha256 = "adfbe476125e4ec3ba9d0f2746fa8bb394d4d33dad76c04096818b8c32c00e82"; + sha256 = "4f9f8d1e1f44b6db46bb7b82cda80f236b60fae1c907b666fd43d4f526423ec5"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/ast/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/ast/firefox-144.0.tar.xz"; locale = "ast"; arch = "linux-x86_64"; - sha256 = "6b027a7d28816eead572d1f3999fc389dbf43cbd17176b27713e21e635ae1fcb"; + sha256 = "3691a010fb0976f8cd033f4a928fc188cd0ff2b41645d687a6dee8c473042068"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/az/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/az/firefox-144.0.tar.xz"; locale = "az"; arch = "linux-x86_64"; - sha256 = "e9ff601dea1604e8f1f0507c8dd55d42b72c53acc430d5d4c1e74eb10d5b7cdc"; + sha256 = "269a4a41b3fa28e371ec9954a2e6f2bd3e667d22fc921fcc9e238f0e7805dfe9"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/be/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/be/firefox-144.0.tar.xz"; locale = "be"; arch = "linux-x86_64"; - sha256 = "3233f2d50b77ed77ea49339f0d2352affeb33d70c96ea21395d15cf56eb341ef"; + sha256 = "7675eb7951d133b9c4a92670658999f18f7a0e66b8d7810f37eeeb8650511bed"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/bg/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/bg/firefox-144.0.tar.xz"; locale = "bg"; arch = "linux-x86_64"; - sha256 = "5033800a3f6f5f1ca3700c875165e8b6f7d58c4e747d968264b2cfd355ff587a"; + sha256 = "9d7201beacc0d804d0fad6e6b4790b52e75f1ac2ea1d31a966e9c4d203323fb6"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/bn/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/bn/firefox-144.0.tar.xz"; locale = "bn"; arch = "linux-x86_64"; - sha256 = "1ede43b96c029fc21fcb77fd7b5f00808f70a59b704f4f5326d2fdc569e8a80c"; + sha256 = "39bf88cf6ec78bfb552259d2292ddf47c455ff3992e16beda0d4ebce976a587b"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/br/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/br/firefox-144.0.tar.xz"; locale = "br"; arch = "linux-x86_64"; - sha256 = "944079c573399022b388f067132d610a7f5fe55362c067db93507c8468cdc4b5"; + sha256 = "1962638b0523fa5250d1c1eeb381b142fadb5494e56cb69035342cc0cfdfe655"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/bs/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/bs/firefox-144.0.tar.xz"; locale = "bs"; arch = "linux-x86_64"; - sha256 = "2740caddaeecdaf3731d9f4e4651d0516953084e8fc51c1a7b4f2b7e09312286"; + sha256 = "0bdb284b63005e93b3a962d6bf92fdd56c7dc5dddb625d14dce9aae0428ac00f"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/ca-valencia/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/ca-valencia/firefox-144.0.tar.xz"; locale = "ca-valencia"; arch = "linux-x86_64"; - sha256 = "534d6032f529421bde15a88b7e5edcdb0cec143ba487efda5ba9ce7e89e83e89"; + sha256 = "bbb6a772df7e18798741a8f23c0f9a73f4e40a6c791e30bd07632dd9c36219ee"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/ca/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/ca/firefox-144.0.tar.xz"; locale = "ca"; arch = "linux-x86_64"; - sha256 = "1cb529f1ecd15576c50f02e2fecb97453bddca6a79c091bd96793a7edd03c61c"; + sha256 = "6b61816b7737f6568ec067875c80a6c24292d7651e69b131b0645da099eb0bf6"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/cak/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/cak/firefox-144.0.tar.xz"; locale = "cak"; arch = "linux-x86_64"; - sha256 = "45e93892d513085cd651851b7ec5648dd411febc38e1523f36ed363bf81026b3"; + sha256 = "f8bde5a2c4cc3ca1c38352fcc138bc9bc4a537190cbb807a391cbb3d90b708c0"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/cs/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/cs/firefox-144.0.tar.xz"; locale = "cs"; arch = "linux-x86_64"; - sha256 = "89a7df07cf2dcfcb7da6a4a1a43823ba80b35daa13e72a0a561eaf9c3cce9d6f"; + sha256 = "14f0bf903d30587102898e5098ea7a8b3bfa1d94ac5f645862dc37258fd50041"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/cy/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/cy/firefox-144.0.tar.xz"; locale = "cy"; arch = "linux-x86_64"; - sha256 = "acc8af1e13d5cd7eb109c1dda87741ff572743d0b521474221759b0801d8c16c"; + sha256 = "22d5c7adfee4b01e1a460364b09dfcdaee2e2fb24a8d87c25774aa585e3ebd49"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/da/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/da/firefox-144.0.tar.xz"; locale = "da"; arch = "linux-x86_64"; - sha256 = "71717ee7a54c607ec27ea2f27a90397f6653be77589ac45b59db4f8d98df2d40"; + sha256 = "382249f9252a9bed2ccab9a5e77da9353c827b3b2cd568838b1460ef1e743d3e"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/de/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/de/firefox-144.0.tar.xz"; locale = "de"; arch = "linux-x86_64"; - sha256 = "cbbca7c2a79b793d440c7d42a8ab37c452de416cde6b37dff1fb85b89d4075b8"; + sha256 = "77da66e91a5e7247dcbd35f4e45034aa5ea5b08ede1652edbc2e9fe99ee7ce6b"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/dsb/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/dsb/firefox-144.0.tar.xz"; locale = "dsb"; arch = "linux-x86_64"; - sha256 = "35854de10dcfa0f068b8dbc9b41da99a33cd860a9dbc13d46cfdaed4848cfdac"; + sha256 = "b46f781e1912e0cc686abaa6765a73c406ef4a4092fae821266f26a7614f60b1"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/el/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/el/firefox-144.0.tar.xz"; locale = "el"; arch = "linux-x86_64"; - sha256 = "b61e0eaff4c281cc5fb26b15327e6cd3afa2a6b6c39b56175c81fc7d92936ddb"; + sha256 = "d9d8a306dc1b2ab4f1345a4409f83ccf14fe57b7b115f7672833325aa09d1bff"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/en-CA/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/en-CA/firefox-144.0.tar.xz"; locale = "en-CA"; arch = "linux-x86_64"; - sha256 = "801fba90331b85589b0ecdcde540af217174b9754011c30467d1f7f83c367ec3"; + sha256 = "b9b5a7222913e72e754d6adf67f9dcdda7e54011c10c33c3909aae5d02269b5e"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/en-GB/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/en-GB/firefox-144.0.tar.xz"; locale = "en-GB"; arch = "linux-x86_64"; - sha256 = "ecd5cf7f755311c00eb4be055fe63f074062a3bcaa312e26edfa31e986d19175"; + sha256 = "078ab7c094bd6829949cfb4cc3a7b26744383daf41a0212df064bca28cb9ff42"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/en-US/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/en-US/firefox-144.0.tar.xz"; locale = "en-US"; arch = "linux-x86_64"; - sha256 = "2cb91bd5c8755a83d65e4ef46a2ce99cfcc0b94e04673669e5e5384320384339"; + sha256 = "c66a48222ff67d51560240d321895c6926c9b3af345cbf688ced8517781d88d1"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/eo/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/eo/firefox-144.0.tar.xz"; locale = "eo"; arch = "linux-x86_64"; - sha256 = "e97fb2ebbc834f0cccb5b9d998410b4a5bc55398088928d9025d9278b34d81c0"; + sha256 = "28b6afa9848d4950f9652f07fec046e48c49e303be950926b5a9ebeef7a3f21c"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/es-AR/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/es-AR/firefox-144.0.tar.xz"; locale = "es-AR"; arch = "linux-x86_64"; - sha256 = "acdd4d432fca1061f917091cc5a023ef6fc5630e5e61fa32d2862f0f7627b9b1"; + sha256 = "9080e57c1cdc44f390d332f5a96fc925d253cb12acce2f88ff8dcd565d2be705"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/es-CL/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/es-CL/firefox-144.0.tar.xz"; locale = "es-CL"; arch = "linux-x86_64"; - sha256 = "5946590c933d55d12c21f6cede6dea3522c73bb9f9a1907383cf40ba4a1a5caa"; + sha256 = "cb385809d728a027ea040a336badd6be2e7dc5ebba81ea21f824cb51f33c853f"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/es-ES/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/es-ES/firefox-144.0.tar.xz"; locale = "es-ES"; arch = "linux-x86_64"; - sha256 = "948eb1d86e9083f8651c830bafc9af6197ec6045fc9623cb0b5d9d1745caa7a1"; + sha256 = "a8be90aab2980be453fff05a6a2f4ed96feb5e204f59435794c44bdec16856ee"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/es-MX/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/es-MX/firefox-144.0.tar.xz"; locale = "es-MX"; arch = "linux-x86_64"; - sha256 = "efe8c8dede7343366ea2ad6c76996489629fba292952cdf0cb2146dc684a3096"; + sha256 = "f4d7e7cf40726fe8254e4ecd2115fafee017e0f12a68d43b1e221b7d52d50252"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/et/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/et/firefox-144.0.tar.xz"; locale = "et"; arch = "linux-x86_64"; - sha256 = "f640add1fae307274268595ee1a02dcc0fb7555d4e1bc910667a2f23d6ab916d"; + sha256 = "f667da54acaab66b245d24f294e0d71cf7655b11fe16f330dfece746d4ff2ed9"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/eu/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/eu/firefox-144.0.tar.xz"; locale = "eu"; arch = "linux-x86_64"; - sha256 = "8b1ff2150cac975c977f5f513004dbc12be879c412ad10fc5ef3b0e241afe021"; + sha256 = "28fb4a5dd0079213fe821bf5dfea60dbcb4111a890c5243de987735aed10fc8c"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/fa/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/fa/firefox-144.0.tar.xz"; locale = "fa"; arch = "linux-x86_64"; - sha256 = "f17329f4cc037cdeff7a977d893bd7c5090401e5a479fd4e4e0dddcb229aaada"; + sha256 = "63110ed4374666edaf20034019c767fb6d5e0c1c1b363138e5aa9d5f4ae467d8"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/ff/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/ff/firefox-144.0.tar.xz"; locale = "ff"; arch = "linux-x86_64"; - sha256 = "05faffc0ca3236af2d79141a53d023b0ae8ae64e2dccbe1040a8d072fbd698f2"; + sha256 = "dff605e5b4ba7a26930eb1ee2fc7c7cf60034589b08a0412bcafb7a9a541daaa"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/fi/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/fi/firefox-144.0.tar.xz"; locale = "fi"; arch = "linux-x86_64"; - sha256 = "b4f81b2c19a66b82939bb3b612d2e55737565501f5cf1bb2e3d797bbf3f335b8"; + sha256 = "46081d738543c68f4db60b9ad960f0989e24006b78caeeec1adaa49870d03027"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/fr/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/fr/firefox-144.0.tar.xz"; locale = "fr"; arch = "linux-x86_64"; - sha256 = "45e09ab585223c385a3fc48b9a7ad5167ba0b8d700a29df7b0a6028bafeb8b89"; + sha256 = "68b095185faaabd71061b64fd65d09641fabe3df32da47ee25f6593792adde84"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/fur/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/fur/firefox-144.0.tar.xz"; locale = "fur"; arch = "linux-x86_64"; - sha256 = "797406e7a15e0cb0ca41bb1ba16c25e33cf5f9fa9dd26dc4872e00301f587ae7"; + sha256 = "efd71bc4d8c3840ac3721d0f2f76df1ea3bacfb823cf5d3a63fb6857b51a309b"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/fy-NL/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/fy-NL/firefox-144.0.tar.xz"; locale = "fy-NL"; arch = "linux-x86_64"; - sha256 = "0429648fe6efbc190fbedbb455a3e975dc948ea037b0d3dd4b7908d491875705"; + sha256 = "705627dfe8a06e0ef42ab61d4b34e1747e924e7028aa4261ad90d3fafa6f1b48"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/ga-IE/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/ga-IE/firefox-144.0.tar.xz"; locale = "ga-IE"; arch = "linux-x86_64"; - sha256 = "b64684f59b63915c4a8b57474307ef2d956912cb69bd95684988cbe493b9ab2d"; + sha256 = "9dd4de9d0a2cc21ea4af728583609fd11ac5d4e7ca6a9b9dcd82831fa51f56eb"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/gd/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/gd/firefox-144.0.tar.xz"; locale = "gd"; arch = "linux-x86_64"; - sha256 = "861bac655d5fb228f860b1fd51eeabcaf75e9b46df00aa5a3cd53983e0b4ae0e"; + sha256 = "9ed22b88b9f1099805b2936cbef5f73961e117753844c8d91ed4fa11acba0f70"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/gl/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/gl/firefox-144.0.tar.xz"; locale = "gl"; arch = "linux-x86_64"; - sha256 = "79832b08438a3550ed0f9b27762c8a2c6a421180154866de1d527ea28d05b88c"; + sha256 = "b7489a9fbe0b96dc8ffbe5368dadb0a68c14d2fad2f070c41fdcbdda61014ca8"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/gn/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/gn/firefox-144.0.tar.xz"; locale = "gn"; arch = "linux-x86_64"; - sha256 = "27101cbabe0eec5e296ec9ee7fc6ffc72468beecda78ce055d122d4324d60afe"; + sha256 = "98d4d62ac3d879cc550baf7d2418953d43fa66dd5709c8e94cbf402e9e51076d"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/gu-IN/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/gu-IN/firefox-144.0.tar.xz"; locale = "gu-IN"; arch = "linux-x86_64"; - sha256 = "fb725a226b06eb30782ac32e896ec2aa637f42a94a95dd00f966742eb45eb214"; + sha256 = "fe7ff566f458a2facd83e4cf89937ad8a07f1f05e3b24da2bedb7aa0fa20b1d2"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/he/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/he/firefox-144.0.tar.xz"; locale = "he"; arch = "linux-x86_64"; - sha256 = "7dc5c66a2627933810c8be4e5d444819ed86b345b4f0be33da8e2eae8b9b0039"; + sha256 = "9f214ce4854b4e2bfc3e3dc677a5ce260a3a28b6f35da0a84f6b3e1f97ffc86d"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/hi-IN/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/hi-IN/firefox-144.0.tar.xz"; locale = "hi-IN"; arch = "linux-x86_64"; - sha256 = "ab4b46f9344cdd30f759d70f2cf611afdf3bd55ddaf018674451c941c6cb1906"; + sha256 = "f0e4f1e738df3945047a988f4e58fdd18e5bcc0a312d9aa39c2e0cc70a8f12f7"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/hr/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/hr/firefox-144.0.tar.xz"; locale = "hr"; arch = "linux-x86_64"; - sha256 = "12898c319b5abfbcd409e74c464f72d4318e0d1e992e5c2b7ae72ca203f017b0"; + sha256 = "0a1eb62bc52711f13b86c09a6d03a9b27fab1a6230a921b141a64134d25c52c4"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/hsb/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/hsb/firefox-144.0.tar.xz"; locale = "hsb"; arch = "linux-x86_64"; - sha256 = "a810f600642a1f027140a69e301ae2425c6966b287be06dd8c19bac95e488bc9"; + sha256 = "499361c7665affecf9ab5f15708e6c7e14e7f8bec19d3f4b604e5953fca67ad7"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/hu/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/hu/firefox-144.0.tar.xz"; locale = "hu"; arch = "linux-x86_64"; - sha256 = "3b0b9914488a18af9940c00dfea57e6f650c74d93590e6b7c33fbe03228493c1"; + sha256 = "921000c92a187c897c433244b1c1f7896c529007374d26aaa18b8b653fcabc6c"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/hy-AM/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/hy-AM/firefox-144.0.tar.xz"; locale = "hy-AM"; arch = "linux-x86_64"; - sha256 = "58f496ff4282229b9dcbaae7224eb157267fa0d7c06f637755c3f57064a4cc2c"; + sha256 = "1cbaae8f2e2838aa39dedd1fa4b9be1ebe571139c7870ebd131263b54f4935b7"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/ia/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/ia/firefox-144.0.tar.xz"; locale = "ia"; arch = "linux-x86_64"; - sha256 = "c6d7b54a0d14282f0700e0dd090b559a0151a570bdb4ca226e6fb86044cbcde0"; + sha256 = "67f88d2dbd6691e11bdabef43253386a0bc9d744146c9bc65f34c19fdfa32371"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/id/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/id/firefox-144.0.tar.xz"; locale = "id"; arch = "linux-x86_64"; - sha256 = "c72606ca633e1db81cb184e2574e47be4cb5357aea6108ed3728b490f1c468fe"; + sha256 = "32728ddd685a352880518cbc3b34e3f693336a89e205882d971d6f210acd9fdf"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/is/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/is/firefox-144.0.tar.xz"; locale = "is"; arch = "linux-x86_64"; - sha256 = "3aba15f60f482979a6476d4985c8f8eacbfe4f41ebd36fc882305f408d1b6e80"; + sha256 = "8853c2a4bda3b86c9aa703c4db6a3986b028a87807b67b9eb8e49690df9b54dc"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/it/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/it/firefox-144.0.tar.xz"; locale = "it"; arch = "linux-x86_64"; - sha256 = "26078ba0d5a4a1d2e3d52fed59ec12b1c89e00af86ff2dac536b78a5fbec14eb"; + sha256 = "ead0547000403fca1cd952c5e93d1270567149b1aa6ab09a37d0af8c57430609"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/ja/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/ja/firefox-144.0.tar.xz"; locale = "ja"; arch = "linux-x86_64"; - sha256 = "b104442c233f111d77856dde60fbfb06f41eec1437b52c5ef95f7089c1cb7748"; + sha256 = "e3cedd5d28e9e6492ad9787254e9f43d0609088d44fdd6f7a85d0c35f5629e30"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/ka/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/ka/firefox-144.0.tar.xz"; locale = "ka"; arch = "linux-x86_64"; - sha256 = "f62cf8c8e2ef0ae80cd1517aabcd66a8487b9f43d0c94ecfd84498e5942f8bf8"; + sha256 = "c6924bb295a86c42d0bd423018a80ab48c475bac112746b64de57214887fa05b"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/kab/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/kab/firefox-144.0.tar.xz"; locale = "kab"; arch = "linux-x86_64"; - sha256 = "b3790896580ba37e2c266907291d11281a4c4e326818681cfde5efe6b928f070"; + sha256 = "b2187c0915d0551ed4870a5d3696061a4f42e2051d4ae6ac97ce0dfe77b27702"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/kk/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/kk/firefox-144.0.tar.xz"; locale = "kk"; arch = "linux-x86_64"; - sha256 = "77ccf2eeabeae6e94b3dd9ebefbc4c65901df9d0fc50528971819845f043d8a6"; + sha256 = "155916174558b7e122ff6d0b0380000d7595a73f64c77bf8ed9ae4354573af64"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/km/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/km/firefox-144.0.tar.xz"; locale = "km"; arch = "linux-x86_64"; - sha256 = "4b1efa9e752c98e3115e4f942cdc3eabe99c34114121189062f2986c8a24b9e5"; + sha256 = "edf1395cd31e8bfa3ffb96193f20f2691d3dc87cccb74bfb6d2f1e164234067e"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/kn/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/kn/firefox-144.0.tar.xz"; locale = "kn"; arch = "linux-x86_64"; - sha256 = "7b9da13e94539adbc3a70b6a632d1601fdf7a519abd96599e1d06c00b80fd26f"; + sha256 = "925e184ae4c6406d4159afe3ec0e66b7ea79423162a83bd490c70d0be72a0ae8"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/ko/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/ko/firefox-144.0.tar.xz"; locale = "ko"; arch = "linux-x86_64"; - sha256 = "90376c6d8e169307183316c5e5293d55e8d3406d23764244f65ce5e88c8c71c0"; + sha256 = "f1c3d043c6ccabaa89329e3946430446166f1ebe6879cec4ce3e28e234aef1e0"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/lij/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/lij/firefox-144.0.tar.xz"; locale = "lij"; arch = "linux-x86_64"; - sha256 = "e3fcff7256966f6b99a2ca08b24f577e4a617943594da5490854067d9bde44bf"; + sha256 = "39314fa98ea8063c7cee7f93aa0534d0e1e6b9e6a67b5893c05d6f7f32d9230e"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/lt/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/lt/firefox-144.0.tar.xz"; locale = "lt"; arch = "linux-x86_64"; - sha256 = "b556bf8d9a58aa2608cb307301c24379e9dd3eae17cc0edd0bddda84ee6ae96e"; + sha256 = "30b0a7b031d73546a2f735d6fc26abeaae89cd0d4f6de7f7b64cff4358454f9d"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/lv/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/lv/firefox-144.0.tar.xz"; locale = "lv"; arch = "linux-x86_64"; - sha256 = "e563a19786f5095f251a852a625ed88186b85d3c4699d75b9deded832230bf49"; + sha256 = "d7e6fbea3f4b3a152aec7e0a8f3796a3f61afccb599d8bbb04c71b22a7d484ee"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/mk/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/mk/firefox-144.0.tar.xz"; locale = "mk"; arch = "linux-x86_64"; - sha256 = "1e651ced38c162c907ae134c056be9a54c7c99843e823e471b746bb165dc2a4a"; + sha256 = "5f4d7fc88ab4e2d5c55ae65231535c2cbf6bec831071278e97f29dbb7d57acf9"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/mr/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/mr/firefox-144.0.tar.xz"; locale = "mr"; arch = "linux-x86_64"; - sha256 = "7ae4efd1a4d4c73508b864d4c05f6bcbee92dd6c0817accc538515738d19a408"; + sha256 = "003a9e0aeaf7de5a1d053c75e6d81bd4f082cb399037ec0a127a5333c1c70327"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/ms/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/ms/firefox-144.0.tar.xz"; locale = "ms"; arch = "linux-x86_64"; - sha256 = "abe32c4bbee3cdcf9aac07d8b76605d54cc7a238e35c9bd5d3829c24b55720a5"; + sha256 = "f9999a7503047a6b6de2f06fd6fd88d3f2c02fde643406018bdd80da5b1f8d5f"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/my/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/my/firefox-144.0.tar.xz"; locale = "my"; arch = "linux-x86_64"; - sha256 = "54610832863a2d557531d82ba37a156558dcc1506a196ba4bc2d9ae17d5cc9c2"; + sha256 = "b3f8cce1ab39a2d38bd82c5b4969fb4324697057545acdacdfc15aa11b379051"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/nb-NO/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/nb-NO/firefox-144.0.tar.xz"; locale = "nb-NO"; arch = "linux-x86_64"; - sha256 = "83576dd063e2def6ed357ebb01b475c6a5d45d6a4c153b07aac2b952499d34b1"; + sha256 = "29273a950b53df2f68f09ebb64c99f827e82de93b9f30fe9e9cffc0deb9e721c"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/ne-NP/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/ne-NP/firefox-144.0.tar.xz"; locale = "ne-NP"; arch = "linux-x86_64"; - sha256 = "cca54e548ef94f85ed369ee674bff1fd3146ed446e750eb6a1e23365e3bd0afd"; + sha256 = "77bbbcaabd8173f656d00cecf52369dfd1c5a0c6e8531ef7966bf24bf1cc816a"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/nl/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/nl/firefox-144.0.tar.xz"; locale = "nl"; arch = "linux-x86_64"; - sha256 = "6fc4b77b7c03167617fce1257f86b1295bad30c7f9568cc4de76846c35bcb575"; + sha256 = "7c2855d50e7851a9919b3ad4f2a18ace6a656083deb8fd190582fa8e294e73cd"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/nn-NO/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/nn-NO/firefox-144.0.tar.xz"; locale = "nn-NO"; arch = "linux-x86_64"; - sha256 = "e4a8ecd49a0a33ecb4adbbc77d00675107bfbe1f1968ac7f95635fc9e31a136e"; + sha256 = "60e73e8192cc0f615e8b701559d25bcfd3b359c276bbcc9f8827921155f916de"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/oc/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/oc/firefox-144.0.tar.xz"; locale = "oc"; arch = "linux-x86_64"; - sha256 = "50345c75555be03750270fa61eff8df4526852d874ba7130dd7ab24b7f5f8bd4"; + sha256 = "7ceecbd1b31c204bf3d7be2d17f4ad7591b31aa792815c3d614417e7278fc491"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/pa-IN/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/pa-IN/firefox-144.0.tar.xz"; locale = "pa-IN"; arch = "linux-x86_64"; - sha256 = "94ad9265fb4f1d2feb8caf7c3941f9ad5786fb1f5aa0edb4bd9f25bf4fb1eb0f"; + sha256 = "c9285d410de6da406f12c3ec4fc9a813fde6f148508c9e49d6c5b6082378c268"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/pl/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/pl/firefox-144.0.tar.xz"; locale = "pl"; arch = "linux-x86_64"; - sha256 = "318e251982dcdf6f35c7113809a936e74338cc79af7361e098b84f59621d28ce"; + sha256 = "3ea776a9173e438aab5711290389f43412a754fddef9fd43941b3603664b8bbd"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/pt-BR/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/pt-BR/firefox-144.0.tar.xz"; locale = "pt-BR"; arch = "linux-x86_64"; - sha256 = "42d784d665d9ca1a72559c29b7e3bbd773d9843bd1037c9885c4348051196a95"; + sha256 = "876f23fa5d649e3a9ff55570cf77549c9031e49da42a26bfbd4267bac9ad99a5"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/pt-PT/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/pt-PT/firefox-144.0.tar.xz"; locale = "pt-PT"; arch = "linux-x86_64"; - sha256 = "8e99905b4dbe0f8913054dd400ddaec70a3782c5e1dbe14442b34f2f97c752b5"; + sha256 = "eb4a39968d70d0a97732b1563854f97a8bc896f64dfab3999177d3498fed2cbd"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/rm/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/rm/firefox-144.0.tar.xz"; locale = "rm"; arch = "linux-x86_64"; - sha256 = "9668977a4ded4e400e932571675a0f9e0e2783adb65fc80b2ec729639321d7cb"; + sha256 = "a7538f119ea6a7f11b8e3ba8ea9a4afa6016f0155858984e039af1625ff7e7dd"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/ro/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/ro/firefox-144.0.tar.xz"; locale = "ro"; arch = "linux-x86_64"; - sha256 = "2e2047bf900ddb52a2f8f84481fd94043026e3a7b879ccf7354220d9be31d521"; + sha256 = "c368b70a2ca5ca40bcb1cdb3cf53b4ec677a702d330ec12719db2d968d91f371"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/ru/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/ru/firefox-144.0.tar.xz"; locale = "ru"; arch = "linux-x86_64"; - sha256 = "ecfe3394dfaac31b13639e4d882de64c57f8764e9679317e117d7c40087b97ad"; + sha256 = "8ca463714672186ee5de9723209a111c20a00fde428a686179c296986cdbfbf6"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/sat/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/sat/firefox-144.0.tar.xz"; locale = "sat"; arch = "linux-x86_64"; - sha256 = "783f9f0f8a5af74aa30ad99d15e2fd962393097d440e1b454e9aaedefd7bec80"; + sha256 = "dd57205808104242491060041ddca045e0226e67cbb3f94a8fd34e108bb0177f"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/sc/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/sc/firefox-144.0.tar.xz"; locale = "sc"; arch = "linux-x86_64"; - sha256 = "6735666f0ced0894321393f63509a57977f6cb2dc997809e8e5f21b860f2a4cd"; + sha256 = "65149571f5a37f4c99d61ff74a40c4c23b82ac7e0d9b41557ecaf6bd3aaddac8"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/sco/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/sco/firefox-144.0.tar.xz"; locale = "sco"; arch = "linux-x86_64"; - sha256 = "a4cc49adaebf9a48f947b27487df5556142b3995f5879cea6f498661df630efe"; + sha256 = "9a4b067092fd3373fbdb47bc787b613c4cec9a0198af32348b8e8be79d901043"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/si/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/si/firefox-144.0.tar.xz"; locale = "si"; arch = "linux-x86_64"; - sha256 = "dcf864e73c69fc7509888f0991710080bf79030a410333cfdd094cd2920a424e"; + sha256 = "a379ab8b6157ef55bdea77a6e20e09dd6ef3387898102b9a3dad0a0715cec286"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/sk/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/sk/firefox-144.0.tar.xz"; locale = "sk"; arch = "linux-x86_64"; - sha256 = "a1ee927e6c11a0b77cfd66fe707970cc724b97e6ac34c1bc3f778f4e0888c7f5"; + sha256 = "2aa0159f9479cdf873839672f79ca087f267b7cd26d37d055be0931a7223aea2"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/skr/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/skr/firefox-144.0.tar.xz"; locale = "skr"; arch = "linux-x86_64"; - sha256 = "a0103662780055cb70b15036cecaee4c36d84abc55376dfbc6d676fcf7e1cb3c"; + sha256 = "15a6ef4c520d39fe1ab1356525f677298825b80fe15e0b6e4a0b615ff4acd291"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/sl/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/sl/firefox-144.0.tar.xz"; locale = "sl"; arch = "linux-x86_64"; - sha256 = "08cdbabf1b8c29b45bf1935e0df4dade1ffeabd82090bdb5e506b30278f4b46b"; + sha256 = "3e5a7acdacd9198911f6335df3e54550db52130dcc85ab97ce6be1d76e18d0af"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/son/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/son/firefox-144.0.tar.xz"; locale = "son"; arch = "linux-x86_64"; - sha256 = "1c31766fbdb57c8af2eb5ec9648aca83c8536804b2995d7abb3bd7221b69def3"; + sha256 = "c7086156bb168f5e91cf499ab0525195d311b317a76266d6024be18f3c9ebbf5"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/sq/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/sq/firefox-144.0.tar.xz"; locale = "sq"; arch = "linux-x86_64"; - sha256 = "b0109024f6c7bedbe46175a4b4a14f1e49f888381fa841ec8cf0233b22480349"; + sha256 = "f72554ea9cb28b75f74a5b86e48f3d2f7307b1598e8e3e594a45638d95c66c45"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/sr/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/sr/firefox-144.0.tar.xz"; locale = "sr"; arch = "linux-x86_64"; - sha256 = "102ff4d228f8e2fae42033e28f1a81efe523460ae30dc25724be14f8b0a1513a"; + sha256 = "d28a8599d3a8c34b02a79a2dc70df49aebec0fd9a3fd0731fab05f0d7335edc8"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/sv-SE/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/sv-SE/firefox-144.0.tar.xz"; locale = "sv-SE"; arch = "linux-x86_64"; - sha256 = "25109416d0a5207f08b6440fbad48126df2ed6646032e4de8f8deedddba32a0b"; + sha256 = "f42e5a86ddd9ae45537fcf025cad9c55fece462c976e2e9596ac2e21a66893ed"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/szl/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/szl/firefox-144.0.tar.xz"; locale = "szl"; arch = "linux-x86_64"; - sha256 = "240a37e9d1ad218af105d731beea921a5d4efe54b718ca237647d86fa857db2e"; + sha256 = "25d4850f4716b19645bb1793c37ff8daf377a648acde9e1743738c75a12e2b15"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/ta/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/ta/firefox-144.0.tar.xz"; locale = "ta"; arch = "linux-x86_64"; - sha256 = "311133a69dabe2ae215c8f14f03bd6453793de7b41f6ea117b07877fc24f1389"; + sha256 = "560a720659530e14a0945f74aa70d25bd6a84d28661f821085d477687189c4ec"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/te/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/te/firefox-144.0.tar.xz"; locale = "te"; arch = "linux-x86_64"; - sha256 = "f83d4e039fba0f5b967e19cd1b6fb4a67f431417122de6549dd9d324edebdf94"; + sha256 = "42d53e201651a3e0ad7892eda166a220cafb582426ee5adad5f037c0a9553397"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/tg/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/tg/firefox-144.0.tar.xz"; locale = "tg"; arch = "linux-x86_64"; - sha256 = "0c4edbc04b13d969716e4d999d7ba7724c2cbac4afc35e18d5063d48841b61e2"; + sha256 = "d6b3249784c1c5026d1031bfdeaab9380fbd96682b40dfab6299e9f6e79f78c4"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/th/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/th/firefox-144.0.tar.xz"; locale = "th"; arch = "linux-x86_64"; - sha256 = "4d135e9867239f40ea357fce183057c91abd2496f06b6f43d3a93cccd6e37a48"; + sha256 = "794fb0c1db204bbbdc6437a3334804be1c7e7fa09da06a0de29f987dcb5724ea"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/tl/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/tl/firefox-144.0.tar.xz"; locale = "tl"; arch = "linux-x86_64"; - sha256 = "bbc17804e0b6619dd6751c76233c46bc4491a00d10aeba2e0d657570db9699a4"; + sha256 = "1851391956be259f3acd5a20cb32e6098a589391562389c7286c81c8600095d3"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/tr/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/tr/firefox-144.0.tar.xz"; locale = "tr"; arch = "linux-x86_64"; - sha256 = "eed2c3e43ec4b578d1a944976287bece9cc3cbdf89945a601a6709227099cf46"; + sha256 = "9d9a247455b7b4206f73288d1cfd70f7139f24c10c8edbb53ef3ec86850c11f2"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/trs/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/trs/firefox-144.0.tar.xz"; locale = "trs"; arch = "linux-x86_64"; - sha256 = "efce749aadc4a5a9d1d728c377e2c76d036dbe38655ff32c36d22c0c118cbb54"; + sha256 = "7973f887e3c421e597072fec24c8cf15f5fb2be494e57cac2314bb3a57e05b17"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/uk/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/uk/firefox-144.0.tar.xz"; locale = "uk"; arch = "linux-x86_64"; - sha256 = "509851ae124398d97520743ab094500a47f69be09285ef396349c1aa1c88f28a"; + sha256 = "cde879b9c5fa0759940604503fe3f285e6dc2ba3c5f80f98405a4e5a01dc4609"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/ur/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/ur/firefox-144.0.tar.xz"; locale = "ur"; arch = "linux-x86_64"; - sha256 = "066f23315a9c82705ad2cdd6755d02a6dfec5c13b47d837e15c40e11db53c76a"; + sha256 = "29e66f36b763d2aa5bb29e695419f498ddfc627c8be8e351a149d60725ee2e27"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/uz/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/uz/firefox-144.0.tar.xz"; locale = "uz"; arch = "linux-x86_64"; - sha256 = "64469de54eb9227e3b78961f48b4c3f4af62eaa3c2526e6974657abe67d58ac3"; + sha256 = "0efddad50b0a075cee00faf6e68ca68dccec1d5fa4e2e0a8a383e600f294f877"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/vi/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/vi/firefox-144.0.tar.xz"; locale = "vi"; arch = "linux-x86_64"; - sha256 = "5ae302ea7f15a8dfa7e110be1e9d8747b5deb5ff8a74b2a24cbc8daf1d15a100"; + sha256 = "375860037ce103a53f948b013855fa9c6f77877a7a95f8a5ba1d7941e4dd167e"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/xh/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/xh/firefox-144.0.tar.xz"; locale = "xh"; arch = "linux-x86_64"; - sha256 = "e18ab37eb5afe9ebbab0ba75e1913993518848c738367ab38bcfb40cb4791291"; + sha256 = "dc91aaad44ecb49b84e6a03c47e1eedc8672f2a4423aee4d2aedf199194e614f"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/zh-CN/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/zh-CN/firefox-144.0.tar.xz"; locale = "zh-CN"; arch = "linux-x86_64"; - sha256 = "89f2ffd682e8ae6e302d7a219d1069d46f6d8e16dcc78f441800d3855233ae90"; + sha256 = "2ae803b84c714a9ee7bd000833653033d511cfd16c3baa86b786912d753bb81c"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-x86_64/zh-TW/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-x86_64/zh-TW/firefox-144.0.tar.xz"; locale = "zh-TW"; arch = "linux-x86_64"; - sha256 = "dd2da03bfc4a8788f743175a885a3e7ed5499f11e50c29a6ed92981f6bf4bbf8"; + sha256 = "48ecde05a52f0750a7d72b86f3c653f28a189fa5ae682fab955c0b97b2d3dfa9"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/ach/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/ach/firefox-144.0.tar.xz"; locale = "ach"; arch = "linux-i686"; - sha256 = "cc22fe2c1b5abf763ee9a6c8a62c77d44af611d3d828c1bc31c069ac5d7206a4"; + sha256 = "9197a7176c36f47e51ec761292327489b1df0281a9ea1018ffb841e0166e81d7"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/af/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/af/firefox-144.0.tar.xz"; locale = "af"; arch = "linux-i686"; - sha256 = "193bf559312b5419d5453edeeaf6c851ad7e38eff8fe5f7bba6670c0fe28c676"; + sha256 = "ff77d967df1a159c686442e98d34b9d3c8c2780843c7ea174dab6286d56ae0c3"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/an/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/an/firefox-144.0.tar.xz"; locale = "an"; arch = "linux-i686"; - sha256 = "4b1fec8756c86e91b1a85e2cb5f7a8a8f5821bed0a06c2dfb7fc6d4000fa0d59"; + sha256 = "4f078a802cfabc1583834e55b2f9f84ff318a112a2371f4aacdc2e7416eb43cf"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/ar/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/ar/firefox-144.0.tar.xz"; locale = "ar"; arch = "linux-i686"; - sha256 = "8b4bf5dba85642349aa434be15f08145638bdf6d9baa76fb50478e259e050e31"; + sha256 = "1e603f99b854c646eb75fd9c0375f8746c4b216dd806d3a649dd3bce9e363afe"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/ast/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/ast/firefox-144.0.tar.xz"; locale = "ast"; arch = "linux-i686"; - sha256 = "12621fb7874e86bd1baed97fc6aec818c25a137cff87c34a49e37a2855a6b9a3"; + sha256 = "881c65fefc0c275e4554bc1d33027559bf6746bff00c39a78a9f5c6a1050e8ae"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/az/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/az/firefox-144.0.tar.xz"; locale = "az"; arch = "linux-i686"; - sha256 = "53a21f35d21ef6392ba652b01790f44e79a9109df26b2d5037b524e0df8e038a"; + sha256 = "1a991d0150176decfded5dfb11a66742c74c62c4526d6941a77382c411ef9e9c"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/be/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/be/firefox-144.0.tar.xz"; locale = "be"; arch = "linux-i686"; - sha256 = "447dfe3177d75e7a3bc7a9b418bf0da05cfb6700917d5d9e45eb5c975bdc246e"; + sha256 = "ee9ed7f542f7b5db38c0e972c96e9ba7ffc9a818c0874c740da4856958becf21"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/bg/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/bg/firefox-144.0.tar.xz"; locale = "bg"; arch = "linux-i686"; - sha256 = "07b0f135431b54489b2655ccccd923d283e521fff5c83cdb313a6aca71bf3d4a"; + sha256 = "e2d5a878424b73330969ffe900ed20b6e5a1e1db549b2a00b8f3002ce712d702"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/bn/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/bn/firefox-144.0.tar.xz"; locale = "bn"; arch = "linux-i686"; - sha256 = "c6c27d1599939756f093f96c4221be4024a40e4a5976527f5780c55c143421ca"; + sha256 = "a498d514a42cc61b6f2aa8ccfd19fa7763e382390dfb65f3e5d4c5c6f51e8ee9"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/br/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/br/firefox-144.0.tar.xz"; locale = "br"; arch = "linux-i686"; - sha256 = "a00d4f02be1cc796821ec25ac758e2fff7408ea5843f959084cdc81ec1f26ea2"; + sha256 = "a3a59ac4f2b704e155b32f33f3f4a7131902ed28b189e248750529a95ffa4121"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/bs/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/bs/firefox-144.0.tar.xz"; locale = "bs"; arch = "linux-i686"; - sha256 = "041096267e27a59ce265a6c87b1e7a3ba4303bd084d2fe74e6cd24287398d229"; + sha256 = "bd62218ae38347200a903bd8cf67fd0b8616749b1f6b78e487c5cb005af97578"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/ca-valencia/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/ca-valencia/firefox-144.0.tar.xz"; locale = "ca-valencia"; arch = "linux-i686"; - sha256 = "834eb2b1e820721a41a883c17a2a42d5ca18c2acc050894a820e878536433e7d"; + sha256 = "f6671614653f15728b87caac4614b61f0548fca79698e9b6d34a018b9307db8a"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/ca/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/ca/firefox-144.0.tar.xz"; locale = "ca"; arch = "linux-i686"; - sha256 = "1c151ffcc190665d0943832df33a0e41e33e2a7a1caaadb99e5b65979cf9a9a4"; + sha256 = "44253b8a49a5ab7899b0361a1b9448d780d2a3cd6d85de36e25ae620a36499df"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/cak/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/cak/firefox-144.0.tar.xz"; locale = "cak"; arch = "linux-i686"; - sha256 = "7344c6f7fdaa0fbf3b987bc265395aa4a427d6f358e6e523e97ccfc4476d7480"; + sha256 = "a57c69066d604ef27e75a3333cd4ddbc30748103bd4d14e74904cb91c0541fa7"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/cs/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/cs/firefox-144.0.tar.xz"; locale = "cs"; arch = "linux-i686"; - sha256 = "40cce8fba78deed2994164f4566c975b8256e19ef731f928d9c75026f6e2bf10"; + sha256 = "381f72b8062de44a11ffcf6a100b608c3bc948a29163a291ae9e36bee31d1e1b"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/cy/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/cy/firefox-144.0.tar.xz"; locale = "cy"; arch = "linux-i686"; - sha256 = "f030a7063adf0bf14c6df27dbe7a94a2e2117190cb872a7b07494eba3c3bd6a6"; + sha256 = "cb453857270076f2addf46036b3fb742e9207694165e0c64fbf00009f381b1e7"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/da/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/da/firefox-144.0.tar.xz"; locale = "da"; arch = "linux-i686"; - sha256 = "00c3defeab1d9c25913ae3b03080cc9f5374bd7472aa1c5b133d15d0b49a73a8"; + sha256 = "8614bba0a5dd151e10c237201599864eeb09a24e88acdd996602753c94465dae"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/de/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/de/firefox-144.0.tar.xz"; locale = "de"; arch = "linux-i686"; - sha256 = "7d20c573f3b8bb76bfc0d8f3eebe06559cd388dce305d8912118bf39a4c68e4d"; + sha256 = "ff4461332696ccf4c21f264ff3352da51dd5bfe77a00c30ace2773d13a87c837"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/dsb/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/dsb/firefox-144.0.tar.xz"; locale = "dsb"; arch = "linux-i686"; - sha256 = "e0f4e4288eab3967b7415a48c1c833ec7b757db346de6a1d20abc8c40147301c"; + sha256 = "1660b74dfc9535530f1b1a88543546188314e459486eeee586adf457e457d9fa"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/el/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/el/firefox-144.0.tar.xz"; locale = "el"; arch = "linux-i686"; - sha256 = "49364b3895a9984658d7014bfa8009f55694944f91f0a09250c0bc4539020511"; + sha256 = "66009a2d56838b7aa6913bf9a99f6e80c9c39fa09623c9fcc0c0469c1d65b5d8"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/en-CA/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/en-CA/firefox-144.0.tar.xz"; locale = "en-CA"; arch = "linux-i686"; - sha256 = "9a98f50a7630165cc99b0a625220fd97577a3acf90fc80b2ebea66641ee72d20"; + sha256 = "dd8a70bbc27b2c5a3580b1e5dc52dd31e90b101e3729a2fdd10436955f87ff92"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/en-GB/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/en-GB/firefox-144.0.tar.xz"; locale = "en-GB"; arch = "linux-i686"; - sha256 = "f3e7a6c950d22a0c335919d18bd78da88f9eae0aa168e240c27a429b12a8ec65"; + sha256 = "18009a2a7b7b250955f02a4f605d1cc6deaeff0420dd3be368a48f87a1817da3"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/en-US/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/en-US/firefox-144.0.tar.xz"; locale = "en-US"; arch = "linux-i686"; - sha256 = "87ae36478b35b8bed26ae11d8747a316a3f8a89681b4b42c05b7159d076c67cc"; + sha256 = "46ffbaf8ab3b68ae7ef3feaffe2339782ecbbd521d08adce61e712cf63589563"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/eo/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/eo/firefox-144.0.tar.xz"; locale = "eo"; arch = "linux-i686"; - sha256 = "49b2ddc777f7e1c6c695a2bbda80a8caa50ab0549f73c8722a14a64380d20833"; + sha256 = "b9d679c4432dfb1fbceb993084126c17d283ebc3e4b87bacf9b18e6a26f4d4ce"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/es-AR/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/es-AR/firefox-144.0.tar.xz"; locale = "es-AR"; arch = "linux-i686"; - sha256 = "7f8222da383bcf69d8d776f4eefb91e18c617435e08e166688b9aec2adfa914d"; + sha256 = "92ab4b67073e61964fa5a8351b1bc4730f8104d21f4160baf65e01c81a10fb0f"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/es-CL/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/es-CL/firefox-144.0.tar.xz"; locale = "es-CL"; arch = "linux-i686"; - sha256 = "54224318dbc924c7fc3b8eeb018714c16b94b557829378c11a6da4622b387f3a"; + sha256 = "ac1f8e08550d6d0c0195a2e7375797abddc62fa4cbf0ceb31601dcaf42c453af"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/es-ES/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/es-ES/firefox-144.0.tar.xz"; locale = "es-ES"; arch = "linux-i686"; - sha256 = "1776cf9fef884e89da7c23a7202eef3a5fb460fe23a9010cb81941dc57790821"; + sha256 = "ccfd4ea5a33eeed4adbed3eba6b0375020b5cedd0a8d80cf3d9e6267da4c78be"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/es-MX/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/es-MX/firefox-144.0.tar.xz"; locale = "es-MX"; arch = "linux-i686"; - sha256 = "6fc3754e2da09d42ead8821d496c15feec0aeb6b7b74d39e1759371c2d6b19c3"; + sha256 = "6ac94047e4b12f6baa91e6adab71abff4630a12e59f433d2e3b1acc62f9ee589"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/et/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/et/firefox-144.0.tar.xz"; locale = "et"; arch = "linux-i686"; - sha256 = "7c4c424df9a65c28b055abf17b7e507f6a2ca034f879b9c87cf69d7829520166"; + sha256 = "dbf04452d283423bf57fbb4009b4650ef058e14e403f3b49269ac385bea2719f"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/eu/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/eu/firefox-144.0.tar.xz"; locale = "eu"; arch = "linux-i686"; - sha256 = "814bee0e5da7017a8c64a1535b78a1ca0ecedfd215843f1895bf59a6eaa3a9b3"; + sha256 = "b11ab98d0503136482e32d77dd98bfd496188c234576c32df399c8f715a39f61"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/fa/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/fa/firefox-144.0.tar.xz"; locale = "fa"; arch = "linux-i686"; - sha256 = "579a048ff0d91c091d22cdbffc1ed0bb6cd2f76882623def1d22e45d5bd10e98"; + sha256 = "b1c6362ce81e8790cc3113a94c4ba8e3eb29c24e6abef807ed723c7d211f3fe9"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/ff/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/ff/firefox-144.0.tar.xz"; locale = "ff"; arch = "linux-i686"; - sha256 = "35bdb91c90a24237edf41e5e554119fae995912dd9af6d39dc6575a9612702e3"; + sha256 = "15b5f1771644b750063c020925f01230a57361a9d3825329eb4df2743394b6eb"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/fi/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/fi/firefox-144.0.tar.xz"; locale = "fi"; arch = "linux-i686"; - sha256 = "f37636cd9ee49179eb404b8afa1cbe488ea7212c0f11c3791d1b7bd349322851"; + sha256 = "4050a4d898787fac35f78c3539253d036a62340b0ee0785befa3da256c826ba3"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/fr/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/fr/firefox-144.0.tar.xz"; locale = "fr"; arch = "linux-i686"; - sha256 = "5d8da72a685525ae00ef23e6d4a737a5ebb96460c2f92818ad8742fe925408d8"; + sha256 = "a6f8b17a3ee1800eec433e645c055a08d9dd9dd5c646d21ce6ecc7d73efb7e5c"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/fur/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/fur/firefox-144.0.tar.xz"; locale = "fur"; arch = "linux-i686"; - sha256 = "e4ba419c609f4b7d36624d65aad5624a5e93f24bb5051b4e286ddee53849ceb1"; + sha256 = "ebe3b75a723dc8f387f9f47442cf976954a75806b6b301fd2a9812254d569aa0"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/fy-NL/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/fy-NL/firefox-144.0.tar.xz"; locale = "fy-NL"; arch = "linux-i686"; - sha256 = "43733c3375efb8aaedb78690a1ab3640fb6c97c92abc9b112bc4250c989d9245"; + sha256 = "81cd1ddbf4c737a57674c2b4a9870213992d42bcef6e65bb909dff5078cb1a46"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/ga-IE/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/ga-IE/firefox-144.0.tar.xz"; locale = "ga-IE"; arch = "linux-i686"; - sha256 = "a41af3c237bbc502e7e8937098ca4687edb3d44e6af3b3711508804938a77a6b"; + sha256 = "2869ff9d9d3768036322e6d02eed7791a03acb0bb0ebaed2431042232adc78df"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/gd/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/gd/firefox-144.0.tar.xz"; locale = "gd"; arch = "linux-i686"; - sha256 = "ae776a4645709a4cda17ddc6dc4fb3c51a9f817385bd49462438ee20484a45e9"; + sha256 = "4b723dd2084b9a45987e318744a44fccd28ec6f38aaaa61c232e086e7ddc22ce"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/gl/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/gl/firefox-144.0.tar.xz"; locale = "gl"; arch = "linux-i686"; - sha256 = "d80d714ee426741bfe9752511e712dd5434c871520ba6e5db73c374563734b7b"; + sha256 = "9e38b6ef7ed6783855d63af6324db0a5c6a48021ec57f17ebfce17208081835a"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/gn/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/gn/firefox-144.0.tar.xz"; locale = "gn"; arch = "linux-i686"; - sha256 = "1ca2ba3f7f0045999ee24beea0c032d390fb829e099cb15234942b9f14cfd244"; + sha256 = "63cad4b437385eaff4ed50f39bef8bc76b2658aaaf3c0ab60372fe7104bfb04c"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/gu-IN/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/gu-IN/firefox-144.0.tar.xz"; locale = "gu-IN"; arch = "linux-i686"; - sha256 = "4245f1cc1d05c9fee11a4deb6089a01c13a6a1cc13e31a6d48a6eca6ebcc053b"; + sha256 = "0ffb4d87adcb1ac2bdbcf4b303c099e72e14a2691d135187bd66a433297e7c1a"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/he/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/he/firefox-144.0.tar.xz"; locale = "he"; arch = "linux-i686"; - sha256 = "98beb15676cd466e7205a64984b72d4d30c8b80f9e76af6997974661e466a96e"; + sha256 = "c7208127bf5c648e4775b7ac05eaba02f5790f5aba82a3456692ccfdb29f1af2"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/hi-IN/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/hi-IN/firefox-144.0.tar.xz"; locale = "hi-IN"; arch = "linux-i686"; - sha256 = "7b86a0962a8778974854726ccb3500de063f807737d2669021ceef73595e8af2"; + sha256 = "dc8ef116c747bce1186af82d7870cde7c7f7bf662666cd90ffaac31d4300079c"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/hr/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/hr/firefox-144.0.tar.xz"; locale = "hr"; arch = "linux-i686"; - sha256 = "20c1a11b77bf44e8fea753b3fab7f70d0edc55a71c3ac5ce67a1e70cf4df9264"; + sha256 = "cd201ee73e3d783817859cbe358cb15c6d582fb8ec4990ece87f75b511754dd0"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/hsb/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/hsb/firefox-144.0.tar.xz"; locale = "hsb"; arch = "linux-i686"; - sha256 = "08b57003d444e920bdc0b7bf4b2d82df2d4c6c50fb7e1a26a5d9c6e0424c360e"; + sha256 = "42724a186d370a1e3d16011a67348d475ff095c59d12bab1b66b5e583089e7c4"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/hu/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/hu/firefox-144.0.tar.xz"; locale = "hu"; arch = "linux-i686"; - sha256 = "024a196e1f845a7ed86dccfbc3bcf0658bfdfd014ccb3a9bfe832fae004d4d3b"; + sha256 = "b0622282a99c87b857cd23c6f8dbef08f997e8a0e46ff08f3b35a974d231d9db"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/hy-AM/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/hy-AM/firefox-144.0.tar.xz"; locale = "hy-AM"; arch = "linux-i686"; - sha256 = "281a0706d42b164c27338dcf1e833baa21e63d22ba8f5976dd7c598689dbafd0"; + sha256 = "86c4468f30842a56f3852ade44850ebae97f5168fe3de5663d09a9edfcb66a22"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/ia/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/ia/firefox-144.0.tar.xz"; locale = "ia"; arch = "linux-i686"; - sha256 = "a9857d35d702c72f52bd0ba2db21db6a1489b2bd2cb5588ca4ead5840cc48eb0"; + sha256 = "bed81f31650c0e9b32176f339d5fe09fc5d72c987542d2a661fd150eb218f6e5"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/id/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/id/firefox-144.0.tar.xz"; locale = "id"; arch = "linux-i686"; - sha256 = "b60a50b470a1e5d0ff81124dcce830b5aca6991f4313416311390b32be7cbfdb"; + sha256 = "2ea6385784dd1df09081749e708ecb539062082bc19fc6a64a704a0738fa91f7"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/is/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/is/firefox-144.0.tar.xz"; locale = "is"; arch = "linux-i686"; - sha256 = "09dcdc811821da54baf5ae1b5cd08dae6fdc1b7cf04aa6f8696390b655b32f50"; + sha256 = "9c991c092c6490e816decb96763b26899835186ae33377d83d3dbfc9b8906cd5"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/it/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/it/firefox-144.0.tar.xz"; locale = "it"; arch = "linux-i686"; - sha256 = "e266ba721000200b1925d76b06cb5871b06fc360725527a0b9f3fb5bc9b1139c"; + sha256 = "1b14405d7826889f0035ea9cf6cae90bf1004b63120ddc1296d4f5f038a87301"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/ja/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/ja/firefox-144.0.tar.xz"; locale = "ja"; arch = "linux-i686"; - sha256 = "fe85dd4f03c4e3072b930fc945b6cab87dc9dfd2c252bd6e9684e9eafbe68972"; + sha256 = "3e4bab59a4c76491c94ec14e8b9a8470c94362ed710049a7f415fed6270ff6bd"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/ka/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/ka/firefox-144.0.tar.xz"; locale = "ka"; arch = "linux-i686"; - sha256 = "759f6932ae0e18cb16274537e859a6af0950cf86e9aea947240d029695b83b12"; + sha256 = "2c615519e57387585e1414afe3ea2f28c8438537a872840aedc7e24ae91308a1"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/kab/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/kab/firefox-144.0.tar.xz"; locale = "kab"; arch = "linux-i686"; - sha256 = "226489ffaae550c16750c64254082926bdc26abbc551343c7571924774d768f3"; + sha256 = "df1a0a738df7e8ce99258a4bc3611e3dfb6e25192539eb02836e7fb6986ce9e2"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/kk/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/kk/firefox-144.0.tar.xz"; locale = "kk"; arch = "linux-i686"; - sha256 = "a6fc227a07030f726da5f28930e7e8da46c7df2f930a46804be4298273e57bc8"; + sha256 = "3b986efb6ba7d2ad39075c23486a5cc307a0b60ad5c4caff168e8b413bbe4f36"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/km/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/km/firefox-144.0.tar.xz"; locale = "km"; arch = "linux-i686"; - sha256 = "1c17cdba83cd3e44950e03d3c862db8f51ea87933d3d2f474db6b29b39ba7ffb"; + sha256 = "f4a26dff7f59e8af745bdef604330e08b3fe3e130aab47156ae91a65fe909c3e"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/kn/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/kn/firefox-144.0.tar.xz"; locale = "kn"; arch = "linux-i686"; - sha256 = "f95d0d62081c30f51f0e78a44fd5fba6aa6e3fc6e9d2c6cbf9009cd165ee9f1a"; + sha256 = "411a048b170b873a9236e98899c43301dfb3120515998c71a47de49b61889de2"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/ko/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/ko/firefox-144.0.tar.xz"; locale = "ko"; arch = "linux-i686"; - sha256 = "bc2cc13c49df33d25b05a67bf4616d0e2fc5200ec1d0f477b8b5b185dd60c038"; + sha256 = "7017df2d5032b02290cb473c8182bb15e1367d1b195c024aede29c33db814dd6"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/lij/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/lij/firefox-144.0.tar.xz"; locale = "lij"; arch = "linux-i686"; - sha256 = "0d77fae5d5bc0ac240295c31beffdc6cb5dc018fc5229c8133469e8166da78da"; + sha256 = "af6cb9daaebe1df157db23e106794261823e14ef9555cc99d0d54313df9f1b47"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/lt/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/lt/firefox-144.0.tar.xz"; locale = "lt"; arch = "linux-i686"; - sha256 = "b44257fca08a8d8e7ed3724a88b526e335efea52bdbd971346ef64e22b488e9c"; + sha256 = "7aca137af26a57b5bba9801357950de55af8e8a8188637cbbfe06135e6d58f83"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/lv/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/lv/firefox-144.0.tar.xz"; locale = "lv"; arch = "linux-i686"; - sha256 = "8acd7ed733e3cb46248301323e0758e11a86e598319910d655442b499959bf24"; + sha256 = "c2397a9486927268241e1d2cc3d80258d014115a6df6bc0785e26551d3526a38"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/mk/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/mk/firefox-144.0.tar.xz"; locale = "mk"; arch = "linux-i686"; - sha256 = "74e87bb2618d9ea0c124a44a2c4a2815b4504d44e46f00cc6b1ff91937247b05"; + sha256 = "042423d01745a124c7a76b649eebcb91b187c4153f2ce8aab43745c35c0c90e2"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/mr/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/mr/firefox-144.0.tar.xz"; locale = "mr"; arch = "linux-i686"; - sha256 = "3013baaf7ca85f71cb00f527799ac8501f17e6fe8f0f3ac680fcba4f64cfa73a"; + sha256 = "b20f8ab986003cffcb49ee57149586f3d0ebcf63b7476a33d030ef47828e66a8"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/ms/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/ms/firefox-144.0.tar.xz"; locale = "ms"; arch = "linux-i686"; - sha256 = "1a836eaff017a45b1cc014e105c051782f416e5d945b3f7f90a8593a417eaecc"; + sha256 = "617a8020fc8dcf4a7f102d25a2d805fee853bc64b575fdbf07f414a249633d3a"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/my/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/my/firefox-144.0.tar.xz"; locale = "my"; arch = "linux-i686"; - sha256 = "d25f47ac51c82ce5589c9e6fb78f81e261439a8ba019080978958d8d92c60fb0"; + sha256 = "183a1077fca94ce124e1c40fa7fdb73459054b1a77cd3e9531123bb189a4ad02"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/nb-NO/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/nb-NO/firefox-144.0.tar.xz"; locale = "nb-NO"; arch = "linux-i686"; - sha256 = "61adadb32b310c485b5c5cd8149f6dfb56cbefbf7af0a6a0569f84e60a5850c5"; + sha256 = "5e8432770b66a5dc89131cc4c15dbcaf7ab4c92b97c3c2c4286db675c12241b9"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/ne-NP/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/ne-NP/firefox-144.0.tar.xz"; locale = "ne-NP"; arch = "linux-i686"; - sha256 = "0104f441046853f64bf9c28fb8f48e54654518f2913ae815ca5523ed4832f631"; + sha256 = "56e43841651cd9f53224f1193f26d2750b2cfaa7779b9613f21b295ba57c6dd3"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/nl/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/nl/firefox-144.0.tar.xz"; locale = "nl"; arch = "linux-i686"; - sha256 = "74b812fec76b3de1e66cb058041e5b28350232bf2afd17f16e40d6ececb3a9e7"; + sha256 = "c7ee1b2f914960c3484a2df0e2841213cb49b7023e54440d8820ee8c7468f37b"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/nn-NO/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/nn-NO/firefox-144.0.tar.xz"; locale = "nn-NO"; arch = "linux-i686"; - sha256 = "1bddc5f45a52f1da1a56eabaf4ee8412f17990370a6beced2b3b1b16c615a599"; + sha256 = "b723933e06e4125a560cdb2fe01d8b2f93fe311be7b2533b3e5e3528eb2e2ebf"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/oc/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/oc/firefox-144.0.tar.xz"; locale = "oc"; arch = "linux-i686"; - sha256 = "9e3efb11f8dfe5d0282a01231b55c6a2400c0c165f641b6dd41e6dd7998900f3"; + sha256 = "9c96f77ad2075da7c31022bc0353ea3312a717ab119f8ba0c7813de28e6b03db"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/pa-IN/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/pa-IN/firefox-144.0.tar.xz"; locale = "pa-IN"; arch = "linux-i686"; - sha256 = "004ae239ae1a89d376ef249061a10af9e8d491a5999a458ac72ebf6275eba5a9"; + sha256 = "baae1fb1244779f570043e1f1d415c030def26843860cc31ff6c16b2410f4620"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/pl/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/pl/firefox-144.0.tar.xz"; locale = "pl"; arch = "linux-i686"; - sha256 = "7d2a4e95873991bed35d88f7d10303a0e36ea4749f824fde9803b6a669ad560f"; + sha256 = "e557c4b44c1ef6665035c3b4d70ce4b795c9497300ebe1f85cb39a0b06a9fb5b"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/pt-BR/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/pt-BR/firefox-144.0.tar.xz"; locale = "pt-BR"; arch = "linux-i686"; - sha256 = "f0913ea7cc82c26f133f8b08741fe9c2599b4b661ad947872d273aab990aee00"; + sha256 = "5cd2dfe143afcf4381d9eb395f12ddbd348a116f652ee0a197bee31bbd5fdd53"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/pt-PT/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/pt-PT/firefox-144.0.tar.xz"; locale = "pt-PT"; arch = "linux-i686"; - sha256 = "626169a4c99af965b1f80e465f2a557f50d7641b39bb2a9cd1cf7ca309711c59"; + sha256 = "d5f2b4c619ba38835152b65808acfb193649d17b1d86c5b9b2d93c45b8c97f44"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/rm/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/rm/firefox-144.0.tar.xz"; locale = "rm"; arch = "linux-i686"; - sha256 = "0e8a38a64e3914304a8a071c871b7bd3fb3978f4e4946a1ebc9964b3783ed6a9"; + sha256 = "e9c7962a4d6c4b513c2bdee8d72bc31af4ff5debcfe34fd9ad9c3aa1cfcb6276"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/ro/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/ro/firefox-144.0.tar.xz"; locale = "ro"; arch = "linux-i686"; - sha256 = "10cfc7b4231585376a5fdaf3530b5e28b358e7950d6ab588dd3b112ba615e1ee"; + sha256 = "ebb0555c385dbf52fd8de2fd54131f4fe8632e7ec40609d2c4c409cdd34a3e55"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/ru/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/ru/firefox-144.0.tar.xz"; locale = "ru"; arch = "linux-i686"; - sha256 = "66d44c91639c836453445eacf593383e85756518724d5753919f7c21b7d8bb2d"; + sha256 = "bf56783f4829d44d405b26443f06a3d43c7e390a5c391589d63af151d5a50f4b"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/sat/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/sat/firefox-144.0.tar.xz"; locale = "sat"; arch = "linux-i686"; - sha256 = "1555e006c37a21cd19c846f896178d5a089dc63b4b0ad6b5b312358b914d283e"; + sha256 = "8a98c043e78ddba6c17c1c657e89fa20771f3fd3a801856324c92729933a3e1f"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/sc/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/sc/firefox-144.0.tar.xz"; locale = "sc"; arch = "linux-i686"; - sha256 = "466e94532884a2e055dd05d9ee8b4e609d325bbe15281553144a6f4e4a88c360"; + sha256 = "7859acb38a46a28d1a524b8623593739b839bf4144da1b02969cd3d8db2007f0"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/sco/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/sco/firefox-144.0.tar.xz"; locale = "sco"; arch = "linux-i686"; - sha256 = "82d20d1d361b0ef5ea5191035347f7e52a7ee2f9088cfeb61f466dd181e84ec0"; + sha256 = "e731574543c18710de36315f2ebadd7f559d1cd25ffdd5097b9ae2048b7699bc"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/si/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/si/firefox-144.0.tar.xz"; locale = "si"; arch = "linux-i686"; - sha256 = "7b114c28ff2ad15b60b6a52559a82e29c52d8bbd44c161e0b76f62ee7879f6b4"; + sha256 = "c8db1ce5b9e07ed11f9dc4b9aef0339f70fbe0dca499429fc65cef9e990a8e2b"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/sk/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/sk/firefox-144.0.tar.xz"; locale = "sk"; arch = "linux-i686"; - sha256 = "d151796b069f1cd8c8ea8808c9f20b157513dafb45f3e9db7760e93319b76139"; + sha256 = "62364f44f922c72eb9a0e3a02e9c7b5d467342af9e7cb513fdaf661fb46a1860"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/skr/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/skr/firefox-144.0.tar.xz"; locale = "skr"; arch = "linux-i686"; - sha256 = "8d43c463c691c31842890daf922054a5d2dc13d98e4334afa56039464b651564"; + sha256 = "f67e0b7d517ad09092e03c2bd629df3a442d4aea2dc223b1968d131384068086"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/sl/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/sl/firefox-144.0.tar.xz"; locale = "sl"; arch = "linux-i686"; - sha256 = "9c1ae347cec22267636ce75c62bc59242f0c2a85e362646bf14c1612b85dfe7d"; + sha256 = "28be22798a0fcf65410de1a154b4aab545e99706b36a3996bafbf32479361aa8"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/son/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/son/firefox-144.0.tar.xz"; locale = "son"; arch = "linux-i686"; - sha256 = "ac97b493eb3975e8cae1375b978e32f47f1df193af0b1042f96070c9d56741ba"; + sha256 = "3cc1314862a52863d9278e3a3a4865a6d449ce79e151a05bc69a814a27ab0bec"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/sq/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/sq/firefox-144.0.tar.xz"; locale = "sq"; arch = "linux-i686"; - sha256 = "e572abe2e26d90cb9449684e94581d7c0cbdeab6a8ebcfef59e2935c4a1f8a36"; + sha256 = "20439a47650da9526b9568b3cdcc98264e9768056aa49f0108a069edb02b9b91"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/sr/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/sr/firefox-144.0.tar.xz"; locale = "sr"; arch = "linux-i686"; - sha256 = "c6143980f6ac715bc193cdd40b45f0da9d4ad7f830dd17f9b7793316a14fa2c6"; + sha256 = "59098ca2bcdd4194849cc276e93b9a1d0c673d555cb66d2ded4f10470622f1d9"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/sv-SE/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/sv-SE/firefox-144.0.tar.xz"; locale = "sv-SE"; arch = "linux-i686"; - sha256 = "58cbe7a13ee5b6fe67267cc6f842bebd8b6cfb3627daa7b58aa769ab062f2ec3"; + sha256 = "3ea87b1e77ffd080e70c5714fd5c94855b1919ef3b78b04f8003a4eb01179998"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/szl/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/szl/firefox-144.0.tar.xz"; locale = "szl"; arch = "linux-i686"; - sha256 = "af45c7ed9b9df71a354a03f1402c908b04f8889c0bc19682d600a478500daf1c"; + sha256 = "2b5e98696226aedbbc11d56c5380f6adbeea8c6d82f4697b6a21b751ccc24014"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/ta/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/ta/firefox-144.0.tar.xz"; locale = "ta"; arch = "linux-i686"; - sha256 = "eed820e42b99ad28d6bde700da47a43c98f83cee2b779bfb7b08f71aea8e2dbd"; + sha256 = "995cfa80377698fa061599ade0e8146ed27ef920290b10d8421764f806f8cc40"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/te/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/te/firefox-144.0.tar.xz"; locale = "te"; arch = "linux-i686"; - sha256 = "498e0210f1ec5eaae0449b9b3d54873ddba2d3f15ed3b9ac21c9322e820fd29d"; + sha256 = "8bd71af712895b00650dd2862c8e871192e6d4ab033cc72abea3586bd4b33261"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/tg/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/tg/firefox-144.0.tar.xz"; locale = "tg"; arch = "linux-i686"; - sha256 = "06c2b9b7e127f6f4bcf23f11116f40ef99a4916df2dba76481935656586a0906"; + sha256 = "fbcee6d0c2f972dd6d4635231669163ff1d658b40de804449ae7ea265dfeb00a"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/th/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/th/firefox-144.0.tar.xz"; locale = "th"; arch = "linux-i686"; - sha256 = "eb1995d5ffee49629acc51bc9ad13e7dc2fab07944bc9993e36d4b9e5e8e1cf0"; + sha256 = "54eccbdf6f5f141c8734328144cdfb830ebcd98ef4da68e7f351350a7ce9ab6b"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/tl/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/tl/firefox-144.0.tar.xz"; locale = "tl"; arch = "linux-i686"; - sha256 = "005864dc09c990a6050358f167cb405560c419fb05333353bbfac9011a97659f"; + sha256 = "1db8fc8099987139ce73d90565cf541b7cd27d473aead5167536fb32b5a13a9e"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/tr/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/tr/firefox-144.0.tar.xz"; locale = "tr"; arch = "linux-i686"; - sha256 = "8337f8e04680c3a1cde4ada6be5636a8432ef206d70106284a07fce8cefcb4f0"; + sha256 = "d0150ad7ce2e12b7d3ad0316f13bf09389930f575fce05c8b05821bad23bb69c"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/trs/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/trs/firefox-144.0.tar.xz"; locale = "trs"; arch = "linux-i686"; - sha256 = "b777fcaad1826d014c3b885569aa455f1ec4399d149cf65b76ce0470e34b9ab2"; + sha256 = "b1ae51b5b599fa2159689329f4becdb7cdb880c6afefa6d35c6aec1f1e59f2ac"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/uk/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/uk/firefox-144.0.tar.xz"; locale = "uk"; arch = "linux-i686"; - sha256 = "b8be29d19231014261d5089c0b544a8c2159e98f530bbbb8825cfa35bda98e75"; + sha256 = "b6f7374c42c970eda8508747d7d2a04881ca4fdf640dfe1da2e9ff6070554144"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/ur/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/ur/firefox-144.0.tar.xz"; locale = "ur"; arch = "linux-i686"; - sha256 = "0f5cef147deb52403ef1297b6c0f2be536642647f3ea780b510082b564f131a7"; + sha256 = "fa78ad0f604d2f9e4c65002fece257a1d99bd128c47b5ae553f744a236dc901d"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/uz/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/uz/firefox-144.0.tar.xz"; locale = "uz"; arch = "linux-i686"; - sha256 = "b30aad97b850c08b8035fc6abf3f09a52aa03de35bead2a14959a098b56d277f"; + sha256 = "3ad4dc6f4d061f5f44ab31ca89bec1b7665c17f80bdab981583bfceac67fb8fd"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/vi/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/vi/firefox-144.0.tar.xz"; locale = "vi"; arch = "linux-i686"; - sha256 = "6f8c6006dab8079ab3fa670fa24a74efc15372d0281843305e412ff24f9103c0"; + sha256 = "044c2bb1e09aeea04b3d1c11f3f1236ac18eef9a9fa9bf00c4cc31c4ed4c44da"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/xh/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/xh/firefox-144.0.tar.xz"; locale = "xh"; arch = "linux-i686"; - sha256 = "f294d0f0e41e1705426d015af25cf4694ec7f325a933835583cc24da90e2a2e3"; + sha256 = "e6313d5fe3143685c8da6c381523740fa8d92462a203ac922687909562ead1de"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/zh-CN/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/zh-CN/firefox-144.0.tar.xz"; locale = "zh-CN"; arch = "linux-i686"; - sha256 = "887846288922e60b2ea8f8c6f2e9bfc5364deba7b0c0a572d11245b1c966d31b"; + sha256 = "5197bf5491718a5eb7d9157ecc13e06ac3ae08384d84ba31c75b92bccc5db028"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-i686/zh-TW/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-i686/zh-TW/firefox-144.0.tar.xz"; locale = "zh-TW"; arch = "linux-i686"; - sha256 = "f8c6330b265606ea3e2f9ecf734893e565cd5333f2cd03d8975c42b4cc1811bc"; + sha256 = "88858a13eca01af516d113bd16692a5166ba9f406aa4db81899dd52f52b68c92"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/ach/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/ach/firefox-144.0.tar.xz"; locale = "ach"; arch = "linux-aarch64"; - sha256 = "3091d2f668c11abdd0c15e73ed4578bf84cc64132095718ab13003c50c4ff494"; + sha256 = "977d28e0187b3a752ccfd9079456619ad4159ad8ff2aa97bf2ade77b1ec3d6c8"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/af/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/af/firefox-144.0.tar.xz"; locale = "af"; arch = "linux-aarch64"; - sha256 = "0cfacd017363c9f9f9b5732a2da672642cdbd89fd1552573c308e5b816854927"; + sha256 = "a0fd46deb1e5d06ae1e9ba36281c677b190c63f64c9ccb301e50376e9508b0a3"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/an/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/an/firefox-144.0.tar.xz"; locale = "an"; arch = "linux-aarch64"; - sha256 = "7c7a3ce9fe7dc3dde0549f6199b370e148da4712fd013c105aa3ddc8c60a9a2e"; + sha256 = "f1a7f4c06fdd334336deca8d74c15ebdb8de03628c1c303744a0e4f356422338"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/ar/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/ar/firefox-144.0.tar.xz"; locale = "ar"; arch = "linux-aarch64"; - sha256 = "fdd11899f2eef07fe47a442127d7fcd89370fb0ef4a84719d05edd97b61c3213"; + sha256 = "83ea0adf5a613fe39cc1ca9c13c42cad2ef921dab634e39c39cd2dfb0d26f8a3"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/ast/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/ast/firefox-144.0.tar.xz"; locale = "ast"; arch = "linux-aarch64"; - sha256 = "cc9af4fb633203ca786ff3ea578e5d723d415153cad5af46cf48c35df5ebcf80"; + sha256 = "fd0a68fb69fc9dfdd4c9399a38b42b28cb56011de93f339cd9b89b65f86b9882"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/az/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/az/firefox-144.0.tar.xz"; locale = "az"; arch = "linux-aarch64"; - sha256 = "5e601de87eb80097ba70d99675d26906a9ad80f9465f7a97766044a201898501"; + sha256 = "50b43273b131a33c1cc6ee050f5294ed3c4e914651f2760953f16b3e78a9350a"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/be/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/be/firefox-144.0.tar.xz"; locale = "be"; arch = "linux-aarch64"; - sha256 = "020227c7addcd69b4226e0e9726800abeee79e085c8aad11ca4a1287dac292d3"; + sha256 = "2491d02b258dc8fba365559795b104a3073180263b16e49099173adaff2cda7d"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/bg/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/bg/firefox-144.0.tar.xz"; locale = "bg"; arch = "linux-aarch64"; - sha256 = "cffc448d0ccf896e19c0f32e078b1ff35641d2434e2d33bc1819786cd830376a"; + sha256 = "dd734a7e075f5c9fdd6ea5d7e44a07de7c8155d77d4bfd1b274a16286b2a9e43"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/bn/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/bn/firefox-144.0.tar.xz"; locale = "bn"; arch = "linux-aarch64"; - sha256 = "53db69f33b2f1b0ed6ca3d0272627d34239f1d8978e547ecabe8de125c721726"; + sha256 = "2ae3fd4686495479106bd271b4863d33eb83cbfaf412bfdb24762578ffe8c450"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/br/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/br/firefox-144.0.tar.xz"; locale = "br"; arch = "linux-aarch64"; - sha256 = "ef70bf9c660df60d13862ad979ce0824ab81405d9c7331443b1a22b9e9b3673e"; + sha256 = "331e6dbe744c92cc2c94f3e81daf9cc0c4609a7133543093edcc381a0207933d"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/bs/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/bs/firefox-144.0.tar.xz"; locale = "bs"; arch = "linux-aarch64"; - sha256 = "d16e1c178f4d78621903be24cf2a39a1831a35a4d19ff1dd0b3350d704059d80"; + sha256 = "350c8a3f4b8ba257a769909ca2d69b9f72c95d182705299dce386e8115d85acf"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/ca-valencia/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/ca-valencia/firefox-144.0.tar.xz"; locale = "ca-valencia"; arch = "linux-aarch64"; - sha256 = "c05fe2b618e7ea2d6cb28b9160c5e54c69abcec5211e1d742843375ce369f68c"; + sha256 = "1161b93a7c47e2f57148ff13f4b3cecc55efe4c44002b8e13e139eea55e090e7"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/ca/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/ca/firefox-144.0.tar.xz"; locale = "ca"; arch = "linux-aarch64"; - sha256 = "4d690a57fcd448f7a7a9cf6443b19bc39addddef690c25fec25d4b8145a9fde5"; + sha256 = "ab58c68bdf394f05db6f5224ca0c08131a5ae40fe9236e4ce7dc2aa8e80b0997"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/cak/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/cak/firefox-144.0.tar.xz"; locale = "cak"; arch = "linux-aarch64"; - sha256 = "5459d2441ea80b041260f63dd864b61696e48f088863b99678ee4b5563db7049"; + sha256 = "b23fe334ae1a4b24d684f8c6a062eaf50f6cbff39e2b4f167464cf411e4f2842"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/cs/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/cs/firefox-144.0.tar.xz"; locale = "cs"; arch = "linux-aarch64"; - sha256 = "d64d30a81bdebc1f366dea8ad0b87a7e6b0605cea34e9380e3221e6e1d4b9bea"; + sha256 = "5bf6194661c1b08eb63e047d7e3703bc5883c2651a8553d617e803eb8a90378e"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/cy/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/cy/firefox-144.0.tar.xz"; locale = "cy"; arch = "linux-aarch64"; - sha256 = "2f629d021c5f3cdc48aaf2f27979457f4d1991f31b83180660ebe51d2d53402d"; + sha256 = "19bd22d7ee9f01b63c756a8ae4843b1c237fa621303f497293f411e916b60f0f"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/da/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/da/firefox-144.0.tar.xz"; locale = "da"; arch = "linux-aarch64"; - sha256 = "5309943a2228859140ce1cbfcf5b06de7e7974fb9bbb3443d23fce49436c73c0"; + sha256 = "cef6a185c2e9ef7332ec24b862f113da11472bcd28606c733dc6ed6cbc7c9163"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/de/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/de/firefox-144.0.tar.xz"; locale = "de"; arch = "linux-aarch64"; - sha256 = "74d26f6d6495eaed5fd8e459b1034be9621fc74b6e2a571931e5028479447c2d"; + sha256 = "1098b67b168abfa976ca1ffa6e0cf3a3d13b80bd0aedda4db2832a0dfceab56d"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/dsb/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/dsb/firefox-144.0.tar.xz"; locale = "dsb"; arch = "linux-aarch64"; - sha256 = "4c3c495dec92c7f1353cb07748ebdd803b86d8a1fbeb74f7e0aa3f47b63f0c5a"; + sha256 = "5493bbddc991d5ab5d06eedabaf5f02fd84025d6f1a82da8afed9f6328f707bc"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/el/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/el/firefox-144.0.tar.xz"; locale = "el"; arch = "linux-aarch64"; - sha256 = "20d1b10351e4a7cf7a161a1fe05d2173787ea5271d1588398834a5c4368e3e14"; + sha256 = "6b568f4fad946f48037337e1304a9ed6c7a260555bee15df07891ea7f79622af"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/en-CA/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/en-CA/firefox-144.0.tar.xz"; locale = "en-CA"; arch = "linux-aarch64"; - sha256 = "d23780890987629d981dcd71ce3a0c6b8f21b634986d52281d777c9b9e8064d0"; + sha256 = "f306d9907759a68f18ed4376d6b095fc8058fcdd06240cb6c38d0b702b8906ad"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/en-GB/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/en-GB/firefox-144.0.tar.xz"; locale = "en-GB"; arch = "linux-aarch64"; - sha256 = "f70e754598f8c127c767ede3c4dd1db1193340adc787ba1d71d9dc6037268a39"; + sha256 = "654f879bc895c0998a5b7db991a11985380e425ef4911420edd1c223d4f8b1de"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/en-US/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/en-US/firefox-144.0.tar.xz"; locale = "en-US"; arch = "linux-aarch64"; - sha256 = "562e67ccae19f654403390b8e18fce316f928b4ace7312c62086d625e44c0616"; + sha256 = "4ef449ffc5af2972b1e91e2fc0753c3f5e103f067e42b7b2cc32f18ceb3a9591"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/eo/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/eo/firefox-144.0.tar.xz"; locale = "eo"; arch = "linux-aarch64"; - sha256 = "084035b5e53f86434264cc7146b5d33bebc849fbe2bf1baae50aa80e1250762f"; + sha256 = "047ff72b370f4118e016761e844bb341730ec808991f4b3066bf7842875de640"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/es-AR/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/es-AR/firefox-144.0.tar.xz"; locale = "es-AR"; arch = "linux-aarch64"; - sha256 = "39086e709dc1db171d5921ef65fa846ded3daeb4a7c83b841640e8ed2c795b4b"; + sha256 = "5771a469b1833014931b5fdfd2724a190a375b3ad79f1cb9cdf005ab33563685"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/es-CL/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/es-CL/firefox-144.0.tar.xz"; locale = "es-CL"; arch = "linux-aarch64"; - sha256 = "32103514cccd0436ef961ab85f24d5220e8d20593886a2b09a26adca79aa071c"; + sha256 = "d4bbb66893b0bd9adecf1749f8b19bb5ced01b87e8c9120790291d6a33bf9b8d"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/es-ES/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/es-ES/firefox-144.0.tar.xz"; locale = "es-ES"; arch = "linux-aarch64"; - sha256 = "70731f4746095d6bd0ef2154287ce4f58d27a27ed52164c08237a86fdf99021d"; + sha256 = "ee01aff419aefbb0bf0f3e7ebe08f347bdb283cab5ada98274294e56610d4c8a"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/es-MX/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/es-MX/firefox-144.0.tar.xz"; locale = "es-MX"; arch = "linux-aarch64"; - sha256 = "42751d2bd5873e56533dda423d163f52c9d5a205285b6f35b6d8dbb397c82d3a"; + sha256 = "ed784b215f1cfbf59ba1ac607212576e29118ec16599dba9c7256887eca65028"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/et/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/et/firefox-144.0.tar.xz"; locale = "et"; arch = "linux-aarch64"; - sha256 = "fdf1431c5e29444725e20f755d5ea0d1ba30958be75eba96398c819c53b9c081"; + sha256 = "e339ba56ea317d17157c91503b519495ac71fa3cfa09d2625df0c800e1b86dfc"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/eu/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/eu/firefox-144.0.tar.xz"; locale = "eu"; arch = "linux-aarch64"; - sha256 = "b60180542d1e13a7d321aeee76676d2f88d868cf2dec6b3550924418a49e00b9"; + sha256 = "0fcf3b03d405a38c95b47b91b845cf27d3f700cd2058241b90b4b3c45f085194"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/fa/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/fa/firefox-144.0.tar.xz"; locale = "fa"; arch = "linux-aarch64"; - sha256 = "6c3c7f705121c2127ed71010586aeedd2222d1b7ff4c2c241af7317bb14aebe0"; + sha256 = "74c76c31b4687e4fecff55b6e26bc9c3570ee99e6c3b0715eb362dc6bbb0ff97"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/ff/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/ff/firefox-144.0.tar.xz"; locale = "ff"; arch = "linux-aarch64"; - sha256 = "93ec9dbb2bf38cd3970a9eb30ac7b52e6f46e2b5d18b0e04fb549f9bdcb6d61c"; + sha256 = "07a7ec35c7553d60229b9d8e7c9b54f2a555292386e6715da953a839d6c97fe8"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/fi/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/fi/firefox-144.0.tar.xz"; locale = "fi"; arch = "linux-aarch64"; - sha256 = "709d4861dd5021709fbc3c62eb16d9c1715c5828c91cb9b33cfa01c51faf2df2"; + sha256 = "7a9727431bd9396cd96ce6914ebf375caf0e64023a047497e5ef68c18da42ee2"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/fr/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/fr/firefox-144.0.tar.xz"; locale = "fr"; arch = "linux-aarch64"; - sha256 = "d21f72979b3220badce133ae069f0627e54f57ea36440b54b3b558b58dbbcbe4"; + sha256 = "6eafdeac0ea54c6179f36de52e1c0803671b95bf765934c3defe70276bb3e5c8"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/fur/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/fur/firefox-144.0.tar.xz"; locale = "fur"; arch = "linux-aarch64"; - sha256 = "b64010d95b243c42f65e527a8e26356493a454185b6bf24c2848d7c628d7f652"; + sha256 = "9d0156949f2a98102f496bca1c657e6dd064562a585c3bb174c89bf2081198b6"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/fy-NL/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/fy-NL/firefox-144.0.tar.xz"; locale = "fy-NL"; arch = "linux-aarch64"; - sha256 = "13c1c79da352fe7f623670865042adbc44c0faca42df0e239e08f2d0f0497be3"; + sha256 = "09ae16dc09de7e8de85e4dcc9f3be262eb09e0f088be3ab90263d20b7b381eb4"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/ga-IE/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/ga-IE/firefox-144.0.tar.xz"; locale = "ga-IE"; arch = "linux-aarch64"; - sha256 = "c4089f05fbbee1477590e0d3d4394b81cc8b4d4e16137f40e7bdeb88e03c2155"; + sha256 = "96bd17c277097ec766b6b980c79654c506d783aa872ae60006da771ac20fe522"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/gd/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/gd/firefox-144.0.tar.xz"; locale = "gd"; arch = "linux-aarch64"; - sha256 = "cc6c93d56d6ef751e96ca2d8d7e4b0b5004f21a80948f8d254d18bc07f94fd9d"; + sha256 = "8fc9ba4ea83184be945363a329ea58c8104b9330b8de3315068a87189e380d72"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/gl/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/gl/firefox-144.0.tar.xz"; locale = "gl"; arch = "linux-aarch64"; - sha256 = "ebaa5dd3e90717775fcec6b1ce71c9fff855bcd298024ded38b7b87f7ff6b4d4"; + sha256 = "2c05e4b1b8d5fdb332d2ff6715a87c1e4917c238a92baf459a402ccf5d905147"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/gn/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/gn/firefox-144.0.tar.xz"; locale = "gn"; arch = "linux-aarch64"; - sha256 = "56d1d9830f506f262b1bb2ffd17be6f342a89e965a96c373e330f8838705d01f"; + sha256 = "c691a83597cadf1f552b496a5d0d0f325682b1ec8db3273f3dc4b7b97c2b0903"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/gu-IN/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/gu-IN/firefox-144.0.tar.xz"; locale = "gu-IN"; arch = "linux-aarch64"; - sha256 = "62992e5d97f4c76ba5b914c55782ee7e3ab6f35aa56b2974459d32ea3f13f672"; + sha256 = "a1dd3e60f7ccfaec8aaade12fd6daf3137b4efe077bc0eb2c8e3f23ede3dbccc"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/he/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/he/firefox-144.0.tar.xz"; locale = "he"; arch = "linux-aarch64"; - sha256 = "0cfba77f4b0f78c721a2ed8fc797eac47d8162b6517f1001f9b21274d9809c6f"; + sha256 = "a1c61306257dab570c29c53fd4dca842a58657a816988d8154e1ce550ee2768a"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/hi-IN/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/hi-IN/firefox-144.0.tar.xz"; locale = "hi-IN"; arch = "linux-aarch64"; - sha256 = "00753f83e1ce70377577aa17189c9671045da61aa48e9cbb25dc238093c9d270"; + sha256 = "d9406932b45a393fed2e9709de9ed947cc7047bc945c287e801bfea30ffc1fac"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/hr/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/hr/firefox-144.0.tar.xz"; locale = "hr"; arch = "linux-aarch64"; - sha256 = "d21d151dc8c5f298b377f6ede353087067f9353b71da8bc65bdbc309f48eeb12"; + sha256 = "967434bc928f4ac864d8927ee343c004800a626eae99244da25dca5568063195"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/hsb/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/hsb/firefox-144.0.tar.xz"; locale = "hsb"; arch = "linux-aarch64"; - sha256 = "1382a62b8cb95689d7e537a6844a129691581a859fc70af023ea5aa8ccd54e7f"; + sha256 = "b08dc9846037f228cf8a370109320f24036c9c2370781f9e66585cc0f484ce33"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/hu/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/hu/firefox-144.0.tar.xz"; locale = "hu"; arch = "linux-aarch64"; - sha256 = "c3ff36c0cb284e777055e60f85eb8d64c163b04f66a8a2b45b9e4cc0d0319b27"; + sha256 = "3c6d102b6510dd20156f5491226c8daebe93d21f48cf20763093d6006c30b91c"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/hy-AM/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/hy-AM/firefox-144.0.tar.xz"; locale = "hy-AM"; arch = "linux-aarch64"; - sha256 = "536a7599aaa8e96b6fcf90a6d1d05155faaa8b61b649da27fcdaec0db4978d60"; + sha256 = "44d305c5295833d3cacc99e5270c8788a894a210df4a469baf4e5bc1eecf9c28"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/ia/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/ia/firefox-144.0.tar.xz"; locale = "ia"; arch = "linux-aarch64"; - sha256 = "542b5bf240ecb5facdf97949641367f7c65079ada2d8b3e92d77b92913d1a152"; + sha256 = "69fa736947780cc6274bf7ab828102acc5df4ceac1114e61c8dd470205805caa"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/id/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/id/firefox-144.0.tar.xz"; locale = "id"; arch = "linux-aarch64"; - sha256 = "f18ad3daebbde150dcbf8ced8efb262b93cd8e7b5b5042418c68111170120387"; + sha256 = "cac310d27ccb503aebd63f021458e75e1a560579984893516ec54328e36dbe1e"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/is/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/is/firefox-144.0.tar.xz"; locale = "is"; arch = "linux-aarch64"; - sha256 = "6569fc9d6c4deb88c6cc32d324e1c0b5881a1d2f51409d3a932b6664a93c7f32"; + sha256 = "cc351c14e000d4f09244e8c2bd4309c6dbb2954ef29f451454591f6ae7de1be1"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/it/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/it/firefox-144.0.tar.xz"; locale = "it"; arch = "linux-aarch64"; - sha256 = "3e8b9eb72fdb92ac247120030523aa3a2d3dced483f9cae9d6619c3edf6b7224"; + sha256 = "ffe217b8c0c9be1837bf9baddee817c4a4b8bdb65fc54c76f4ee999cc0b1818e"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/ja/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/ja/firefox-144.0.tar.xz"; locale = "ja"; arch = "linux-aarch64"; - sha256 = "4fb948fe4bf768c05e6ed687be66454de54445b07d9579d76b86fa95791bf550"; + sha256 = "6ed97bcf1f73aea3b3ffe0c9cfccfef39c5c952aabfe32f43a8d2ffef9f5bdc2"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/ka/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/ka/firefox-144.0.tar.xz"; locale = "ka"; arch = "linux-aarch64"; - sha256 = "8e7c77982807cf23ebe07184929eb127ffe4692c0b56bd532cc32126172ca37d"; + sha256 = "aad03ca002d39d0fb6daa83e4981567a380b793e5ad1f145a42210b9e508eb4c"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/kab/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/kab/firefox-144.0.tar.xz"; locale = "kab"; arch = "linux-aarch64"; - sha256 = "686f3a7a95d08e4c467e5c602a43803cd3daff01146e8e656ef6b6bcb2a978db"; + sha256 = "b7070d75bd21ed5dd3d0c41210d60da6dcdae91813ea2d133bbdb787a01e8a42"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/kk/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/kk/firefox-144.0.tar.xz"; locale = "kk"; arch = "linux-aarch64"; - sha256 = "a6108d016d8bbb740064fb8955483bc2257d25b7c38806583e2229c1c0cbedd8"; + sha256 = "88861dd252e896921f408bc3fabd61a1389df73fa52bfc10925f6102829a349f"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/km/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/km/firefox-144.0.tar.xz"; locale = "km"; arch = "linux-aarch64"; - sha256 = "dde350fee3d7a37e7171fc6ea18c543c50d0ef7c52b43b657f518308dc8281f2"; + sha256 = "4dc643aced535bd03c5ead74cbd88dffddd7b50f6e8b17ea3d4d200cc12c7e6e"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/kn/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/kn/firefox-144.0.tar.xz"; locale = "kn"; arch = "linux-aarch64"; - sha256 = "4aa835dca5d4e48cf9e3b3ee5a410a9efdc0e65307be27230ceacd4ef820ccf2"; + sha256 = "2084841b8e6817ed29b023c1c2ad2f36807f14522a9e7cf71b3ea8fdf77682d4"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/ko/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/ko/firefox-144.0.tar.xz"; locale = "ko"; arch = "linux-aarch64"; - sha256 = "621c1e2e61bfdab890a7c6c65d5da6848e1ef76cf9bf8c0a06be392e4ec11fc2"; + sha256 = "17da54729e21788cc64df81db2afda2c7ec3be4674f74cd8ba357a76943f89bf"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/lij/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/lij/firefox-144.0.tar.xz"; locale = "lij"; arch = "linux-aarch64"; - sha256 = "b32b42d31276054b57dd36747823c07a8caefebada080c4439c97c5b0443b39d"; + sha256 = "0a8c3b2249f27c1929edbf53bdb0654260ca13692a52d18dac053bc771655fb1"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/lt/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/lt/firefox-144.0.tar.xz"; locale = "lt"; arch = "linux-aarch64"; - sha256 = "edacb2ae7ff3cbe6d3f3bc2f6a4d5eed849b04ff1a618cfc2678b54a044d4633"; + sha256 = "58ab2d3bcd5d70c88221826fff86f74de06b71c226f4c4b3ee6d49d7a5178125"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/lv/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/lv/firefox-144.0.tar.xz"; locale = "lv"; arch = "linux-aarch64"; - sha256 = "f7d7eb8b3a1f75418cbbe658da07194a4563c988ed950db843b92ea4d39fcba0"; + sha256 = "910494fde942523b4611dd7776e51f3443b89683a7750782c08e904c435c1380"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/mk/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/mk/firefox-144.0.tar.xz"; locale = "mk"; arch = "linux-aarch64"; - sha256 = "053efa078b49adce741d2e9ebd7aa15279ecb0f89831ba7db542e1c65617849f"; + sha256 = "73302c4e3967b18380f2bef3fb0b5f2e2fe9874231a541bf4880b37f0b1b7f5e"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/mr/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/mr/firefox-144.0.tar.xz"; locale = "mr"; arch = "linux-aarch64"; - sha256 = "7a0a3a6a604846f820134e14f5cb387b9902935e50e85e68ea655fb2d2d83e98"; + sha256 = "35a622225a1f49415c65ab91b0c0b632c7ac9d51e05d7c5dd348237c44fd919d"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/ms/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/ms/firefox-144.0.tar.xz"; locale = "ms"; arch = "linux-aarch64"; - sha256 = "31c643433d67c231c12f833f7e8bf54ad8662700f5232335f1180140ee52842b"; + sha256 = "eb4beeabd1dfa0cec6095da3b89652488954ef9dd3b7d324457c0570bb1ba4d6"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/my/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/my/firefox-144.0.tar.xz"; locale = "my"; arch = "linux-aarch64"; - sha256 = "0a68a538cbbaaea53e7af76143f3c75c3af7c2407ec72846697630bc890f7d81"; + sha256 = "deb2c6c5c54e9594ace400e05745d3dfae771393836433bfb8813a92f843b2c7"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/nb-NO/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/nb-NO/firefox-144.0.tar.xz"; locale = "nb-NO"; arch = "linux-aarch64"; - sha256 = "f50f9aab38e5c77ac3831c75aa586cb7f23eb8ce5b0eea9ce1d4aabca3aa956c"; + sha256 = "c83b00cec208387a2f2d066a88f28b7e1ce8c92cd7c3047c89e7c18b25ddcd80"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/ne-NP/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/ne-NP/firefox-144.0.tar.xz"; locale = "ne-NP"; arch = "linux-aarch64"; - sha256 = "cc33e873835f02411f3a1619caafe4ff7e56791ce50ac5082db67ce242bfd578"; + sha256 = "f260a14d11ad67959b9553cbb605ccceb91f16558aa04a782070a5612cfc69be"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/nl/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/nl/firefox-144.0.tar.xz"; locale = "nl"; arch = "linux-aarch64"; - sha256 = "65b10e9ac4c3bb6a204e08188f83cfbf0d50e015fbacf1747f2037541cd5b9d1"; + sha256 = "4e50397759820ca0806e7a5767b5813cb7e3af58b5ecfcd0c4813c58b99ac392"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/nn-NO/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/nn-NO/firefox-144.0.tar.xz"; locale = "nn-NO"; arch = "linux-aarch64"; - sha256 = "b2d69f48d38b63fb2f5bc8694eb25842838f5d9140b646026e06a4e5dd41106b"; + sha256 = "fd498a5b0d348b0ca8c36b69cc81efd5e6ea79291b5ceacd6fbd56b603abff8e"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/oc/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/oc/firefox-144.0.tar.xz"; locale = "oc"; arch = "linux-aarch64"; - sha256 = "695699581afa827e00806a7909756d835c67e93a4485426e593ab059b5ef8fd8"; + sha256 = "cddd6d64c16f924cf0f3682c04f883eae1b0a65b7d020d236628ea0218ac86fc"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/pa-IN/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/pa-IN/firefox-144.0.tar.xz"; locale = "pa-IN"; arch = "linux-aarch64"; - sha256 = "b0657ecf1c75d987c4825f6c3d2a605d6463dddd60c520b9c5a78466c5e034fa"; + sha256 = "ba9537658679d6aca5f03bd22439dfedaf2949dac92870ee5bd2db10317ac3f6"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/pl/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/pl/firefox-144.0.tar.xz"; locale = "pl"; arch = "linux-aarch64"; - sha256 = "0b0db3589be6854b8b47da0a7c8dea91c28155d6e9bed26f72b5fda90953c071"; + sha256 = "79cce7cf2edee1cb1a22a00e598718103ccb84966a9dbc4a4d21c78f151fdd88"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/pt-BR/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/pt-BR/firefox-144.0.tar.xz"; locale = "pt-BR"; arch = "linux-aarch64"; - sha256 = "e55e4a12606c764a795bfe3fde36a10485d7be0499ce86cd006f8268e949b786"; + sha256 = "b021bf8f42b11c964cf660d7f3c2ae8e7f21c70623ed0da4831f5942953de4bf"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/pt-PT/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/pt-PT/firefox-144.0.tar.xz"; locale = "pt-PT"; arch = "linux-aarch64"; - sha256 = "a5462d35de8895c4a5a45e78667f5afb26668a8edcd287e12429225158104346"; + sha256 = "1373e0fa839939e0c40d378e4c2ae3e0d324ea53c842b2483ff8c9c33999410d"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/rm/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/rm/firefox-144.0.tar.xz"; locale = "rm"; arch = "linux-aarch64"; - sha256 = "1d34af45e6aa15c8628b20a483baa72a148c08997a1dad0cdb483664484c8629"; + sha256 = "cabed3fb21c46d774c88d3841a7861559a8709ec7bd0df3de81d8b29a0b053fc"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/ro/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/ro/firefox-144.0.tar.xz"; locale = "ro"; arch = "linux-aarch64"; - sha256 = "b30b7e152643cce52fe34977eff2f9b35ca9e4a8b68c4c3f57066d468ec4ece7"; + sha256 = "eb5aa563f2b31d8f6c1ac1b5cd9f110667a376d21564d492d7595c3237af495e"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/ru/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/ru/firefox-144.0.tar.xz"; locale = "ru"; arch = "linux-aarch64"; - sha256 = "6728eb45559747ec0487bb6d886886f82041997885b8bd13e40dadbfe61f688d"; + sha256 = "b77c8bebc17033e2aab6d1e1f56336a4ba6e36dc303979fa55bd64701b1643c9"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/sat/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/sat/firefox-144.0.tar.xz"; locale = "sat"; arch = "linux-aarch64"; - sha256 = "d5bebe4acb45adb7bcf9f34c1ce57e3dcf897c77df402e6e4a6bdf165b560310"; + sha256 = "7432b1298fa9d71e781b3751f54c2f28420a2f2eeaaf89ef6e4268fbbb0d4a47"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/sc/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/sc/firefox-144.0.tar.xz"; locale = "sc"; arch = "linux-aarch64"; - sha256 = "cc1ae3ae8f54891e71e94275ec529982d42cb30410b4a7e2c504e90f09e5e99b"; + sha256 = "408f80bed47bd8f73d5bc4b02d182c81c166ee56caadf03d908685fa2338e819"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/sco/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/sco/firefox-144.0.tar.xz"; locale = "sco"; arch = "linux-aarch64"; - sha256 = "94c22b9ce2ff945457caa51a746f7279415921ee5851f629e92c28644823f6de"; + sha256 = "96bd897c26ff462b13e3fb4752910ec4cd4c0b73cf60470aaae02a252b67c6bd"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/si/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/si/firefox-144.0.tar.xz"; locale = "si"; arch = "linux-aarch64"; - sha256 = "11282a449ee6d96019e07eb2aaf77beef66017dec97720639cf27ea15d990056"; + sha256 = "a021fc38960791bfc5d4eb55cda526762f04e899a14c38da57bce64ed389ed6a"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/sk/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/sk/firefox-144.0.tar.xz"; locale = "sk"; arch = "linux-aarch64"; - sha256 = "4fe39acc7861c3d9c8e75032d3d4587463e880b3b52380e4d43b0b9932cc4b13"; + sha256 = "96aa9368a4cbed0e63222314c550ed3c63b47c175408a46cbd91099d529154ea"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/skr/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/skr/firefox-144.0.tar.xz"; locale = "skr"; arch = "linux-aarch64"; - sha256 = "832720255c257ebea528c6c2b2f8b9ebbdc17869e57218229a7ea2c195eb8091"; + sha256 = "968aac06dd991cf7dba4b691e759cf68ecfdb9756dfdccd02acc344d07cce86e"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/sl/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/sl/firefox-144.0.tar.xz"; locale = "sl"; arch = "linux-aarch64"; - sha256 = "eeba378926fa4c207ecbe03629b90999baffd1fef02a09854ea28849a6326e47"; + sha256 = "40d305693c7c9f241533fccf6f2f8a537badffcc621377d7e8338c09dd7364c6"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/son/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/son/firefox-144.0.tar.xz"; locale = "son"; arch = "linux-aarch64"; - sha256 = "f2403c08c3f50bdac8425c2309bd261ad579ea2d5cc8fe1ce9a57fea551292ac"; + sha256 = "dd28d86b98f4ce5e65fd905b2f1563ceb6dfceab88702cdb842c91586afee0cf"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/sq/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/sq/firefox-144.0.tar.xz"; locale = "sq"; arch = "linux-aarch64"; - sha256 = "70203306c0120c37a96bc5766345dfb044b411936c762ffb1daab4efbb486990"; + sha256 = "e1560d11ef6e460109a009d12bc759e3fbfa164916164c577d146b5af6189db1"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/sr/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/sr/firefox-144.0.tar.xz"; locale = "sr"; arch = "linux-aarch64"; - sha256 = "584930198c8d956e4b06e6dafb439595e5f2f6fd515e6ea310cad3ff950cfe6d"; + sha256 = "ac99527789e4e43f7bc177b6f97402c906dc25bdb4ab2579e97f911b0dfd9d81"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/sv-SE/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/sv-SE/firefox-144.0.tar.xz"; locale = "sv-SE"; arch = "linux-aarch64"; - sha256 = "240e794349b0ab782c549bd0fe76dc97560f18a21e6419f1dbdead94a59d1c9b"; + sha256 = "f9a9bc817cbb035f83ef8beead78f7cedfb59f329fff6c5a33bbd97b73b79552"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/szl/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/szl/firefox-144.0.tar.xz"; locale = "szl"; arch = "linux-aarch64"; - sha256 = "3ff1d25322af776039f4d3e4e77b7fbe31330b9f60f9253a193ba16be11502a1"; + sha256 = "5675dd4ec15275841d777e277d7522c36ebc82fa80c41da9aa4741f7e81d9679"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/ta/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/ta/firefox-144.0.tar.xz"; locale = "ta"; arch = "linux-aarch64"; - sha256 = "90925f87ed45a946499e829908a889bc245ce0ae7eb78f748d6293bf027fad17"; + sha256 = "73a7fac61dc3b896d8b125dc849a9ecb3aee1b600222938938f1d007b3470655"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/te/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/te/firefox-144.0.tar.xz"; locale = "te"; arch = "linux-aarch64"; - sha256 = "744e1db649ba74b25c1bb7a48c47e1bd7772675f600753a739ee5dd8d55a7d0c"; + sha256 = "c90da176f9861e91570497b3c34b863167439cd2264a64930c8728672b4f79e3"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/tg/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/tg/firefox-144.0.tar.xz"; locale = "tg"; arch = "linux-aarch64"; - sha256 = "b8fe164772e71513b4c3858caa8036f5f033dfd6673daff946bef6100e516cff"; + sha256 = "f229c636cf344ad9b0b5a80e66b436a879b1066e89bf66630f7a8b3ecdc5787b"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/th/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/th/firefox-144.0.tar.xz"; locale = "th"; arch = "linux-aarch64"; - sha256 = "10e89aedb3bf2c2d287581bc0c6140247f4f6fca3527c17211a1ed7d430f3c0e"; + sha256 = "8941dc84be5d30cf7af79a498ac722cecfa22fa86efa42d003781b81d31b5b3f"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/tl/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/tl/firefox-144.0.tar.xz"; locale = "tl"; arch = "linux-aarch64"; - sha256 = "2b6b83ef9de2ae3486d8a3e94db1e90829079ad2c981128cb2f7fb67641bf189"; + sha256 = "e68485dd4c47c886a0b75d1aefc99e47219c4de7b3da9d7471e97f491a5a0009"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/tr/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/tr/firefox-144.0.tar.xz"; locale = "tr"; arch = "linux-aarch64"; - sha256 = "b4ddbef42b1090a1b008aead9cf8f6cfcd741bd121dd8e388bc05b7fa2b0d423"; + sha256 = "48076d8ad971333a824afd6d5e5021a196a6c8b916c130c1709b148f26e3124d"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/trs/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/trs/firefox-144.0.tar.xz"; locale = "trs"; arch = "linux-aarch64"; - sha256 = "2210dce46dc886e8c7d4a61ad801e5b0351ed28ec7941955c7f7d88015ed5c20"; + sha256 = "3c8deda2c9a4a398c3d51210e36c2d4759e988ee3580e1f561ad1f881d8d485e"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/uk/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/uk/firefox-144.0.tar.xz"; locale = "uk"; arch = "linux-aarch64"; - sha256 = "d601a25d986414ac29ee57229392ffc670eda52f3fd1e38ff864296c0b176d40"; + sha256 = "0a2c77653fe2775cd8c782f4650e4777fc5f1d5824f02d5bf7fae5fbd2486c31"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/ur/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/ur/firefox-144.0.tar.xz"; locale = "ur"; arch = "linux-aarch64"; - sha256 = "8fa4def67c6f3286c08ca54f23264461eee2dcf470117c1977b0d1e02c1fec8b"; + sha256 = "3af39f96710ea7f5390192f833a3d5e20158dfb3cb8f5096ad7ccc8db4b8988c"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/uz/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/uz/firefox-144.0.tar.xz"; locale = "uz"; arch = "linux-aarch64"; - sha256 = "5395c8a68e511894b05b170b205dc2b36f74afcf895f8e892bfe649a0fcf9950"; + sha256 = "390936902fbcf7145863b249fd58ac3ae76c0bd46f518b73a211354d022f23b2"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/vi/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/vi/firefox-144.0.tar.xz"; locale = "vi"; arch = "linux-aarch64"; - sha256 = "1456deefb0ae4fd1dae9ff1babcba4279dd6c44ef073a2bfbbd14dc8b0b04384"; + sha256 = "0c4f5df8a4708990b6b6f4806fed323f031e14faa51a8120e42471b2003b5d8d"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/xh/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/xh/firefox-144.0.tar.xz"; locale = "xh"; arch = "linux-aarch64"; - sha256 = "91d8f47fcba2aeeac3c37bda07d31fc1fb7e917bfd59970bb2473b3ac80bdaf1"; + sha256 = "e2c4814ccd47e915200d59076c5bd1dde4c1ed1ccd2e239897e1bcce02791ffd"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/zh-CN/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/zh-CN/firefox-144.0.tar.xz"; locale = "zh-CN"; arch = "linux-aarch64"; - sha256 = "e1319956bbb1cd20be8cea36672c8f7ee9548df34938a37d6e1ff5cbf2c43c8c"; + sha256 = "8a5bfc84936fd37a02d420aef0de6f51912e3b7f53562f63dd969ec0aebcc17a"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/linux-aarch64/zh-TW/firefox-143.0.4.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/linux-aarch64/zh-TW/firefox-144.0.tar.xz"; locale = "zh-TW"; arch = "linux-aarch64"; - sha256 = "3c6408c3ef0849dc416321f464615006383e76201332c1678fb46059b2feae18"; + sha256 = "b9b7f5cb3a60b5cc44bbaa92b8a5bb570ecb54c506494815e8a5bcb617a43c6c"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/ach/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/ach/Firefox%20144.0.dmg"; locale = "ach"; arch = "mac"; - sha256 = "597dbb17b5b4f949528d10d36029123237143c812cdd720e06ed7da2eff239fa"; + sha256 = "4276b946e9fdb3d002055282ed0aa7f8a1e2543b940dfa3f0bc1bdc2bd9085cf"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/af/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/af/Firefox%20144.0.dmg"; locale = "af"; arch = "mac"; - sha256 = "fb3c1d4c3a32c8f9c69f285b203ad4cdf8cc673dd1df7e2d3443ed1de3183791"; + sha256 = "2f8ab55d6fb725508cc11111511e86a4884ab7b49c4f97f10fd90693079bcf67"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/an/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/an/Firefox%20144.0.dmg"; locale = "an"; arch = "mac"; - sha256 = "19d7057862ead1a2b21808612078cb8555de1576b12842829a91c7fa16fdeddc"; + sha256 = "1d588447cfd14c3d6a265731bf98878a2cfc2ec64696042fc6997a8436b77414"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/ar/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/ar/Firefox%20144.0.dmg"; locale = "ar"; arch = "mac"; - sha256 = "8b5d51d0f906d41557192bc5da1130c1f3f68213c5aa0eb72853ec7047bc2e99"; + sha256 = "b1bcff90539f56d2fc2711ffd0f45b9c5f9f0794ed48719a10a1756f987777ed"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/ast/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/ast/Firefox%20144.0.dmg"; locale = "ast"; arch = "mac"; - sha256 = "38d9c14c436860cef8ae1d0b21afb3e01fd572f78e7ce51f03f70d955216f239"; + sha256 = "87382b1b361221171e7ede3605938c16547ae4ec953bf23b3fc22b8f4a82e81d"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/az/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/az/Firefox%20144.0.dmg"; locale = "az"; arch = "mac"; - sha256 = "71b5401f27f73f72753b5b474c271645c3c62847b3ab64c0e1cc417442c8bf0d"; + sha256 = "319e3dd31b582bed12ff29437d9a3f41f4f67566ec8b5a30490035d1cfd3f53a"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/be/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/be/Firefox%20144.0.dmg"; locale = "be"; arch = "mac"; - sha256 = "b3e3ef2232965d15b966dbcf1bc6197daf56fec561c9fb4d13645ddce43c34de"; + sha256 = "78596d7c4bb996d7251c58f13ea064ec1351337daa6e36ebf31cd59f4f05ddb3"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/bg/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/bg/Firefox%20144.0.dmg"; locale = "bg"; arch = "mac"; - sha256 = "8f6b5119090e3b21c654daefc5f62fe72f37efb4def0eef642d2e6e179c4e500"; + sha256 = "fd8a6094da140a56d4dab7b8a21cee40604d0034bb9b042d0df9b3d1c83b4e0c"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/bn/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/bn/Firefox%20144.0.dmg"; locale = "bn"; arch = "mac"; - sha256 = "bdb3104fc033800bf39875a68ed9f3aa04a61f565819b278e6c4800aea98180c"; + sha256 = "69488f334bb8b2656348dc7f22dac1d12c32981c20592c1ce76208175d543a05"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/br/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/br/Firefox%20144.0.dmg"; locale = "br"; arch = "mac"; - sha256 = "1bc5bce2aa29f5918a6097f2f34871162680cfcc11411aa88f1fb4ce56c4f57c"; + sha256 = "a7fbcbc187aa3216e90556802f7154912c9b4cfce5a829f6b20c578d9beb5181"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/bs/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/bs/Firefox%20144.0.dmg"; locale = "bs"; arch = "mac"; - sha256 = "c374ee32c08d8660c4ab0b75565282562e89a7e2eb94bd8ea56f4acefa6d598c"; + sha256 = "6cc071934a0d80f144883477294c45d71f43bd30e065c483dd6f7c0cac0554b5"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/ca-valencia/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/ca-valencia/Firefox%20144.0.dmg"; locale = "ca-valencia"; arch = "mac"; - sha256 = "8ebe97e5f1b2ea4595e58e90fea9066d4a1d660d1143084a9efe139eb28b83db"; + sha256 = "76aa9af0cfeb14264edf64162b7d0e9419ea5267c3217cbd4da31d2ed7391468"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/ca/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/ca/Firefox%20144.0.dmg"; locale = "ca"; arch = "mac"; - sha256 = "066af3af2ed7d9817e5842297e2094bf781f24a25788633229ab63587d79b71c"; + sha256 = "5b9317700e19061b0dcc582218ee2a49b910a6df4150821dd7a92e752b661217"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/cak/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/cak/Firefox%20144.0.dmg"; locale = "cak"; arch = "mac"; - sha256 = "b9a26c3be4501fee3a5729a5342599cf637dfdcf3fec7f8dc5a6fa8725106f18"; + sha256 = "afe6b73514ae263bbbbac0fc512c9eb68a2fdfda5707ecb8a91fb6e759a750b2"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/cs/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/cs/Firefox%20144.0.dmg"; locale = "cs"; arch = "mac"; - sha256 = "b8d3b36a939c7453a772552826144b53702ade0db3d433c3b47e458d9528e296"; + sha256 = "a6c5c8d8dacd797287e61c4e4df0ca6e80be7f80f9c17b09929f486c02922a80"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/cy/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/cy/Firefox%20144.0.dmg"; locale = "cy"; arch = "mac"; - sha256 = "022a7bfc74a80c0e8c5de42d53813c55833283751cc39e6afaa665cc24d8666b"; + sha256 = "065d475b851901fff7de64baa4cfb0be6179ffe0526dbb23e994b4f7e3bc1476"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/da/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/da/Firefox%20144.0.dmg"; locale = "da"; arch = "mac"; - sha256 = "57ac9f3e71ca67cf42d632745a685c338c26df3746f10931c8ee47d4a3a29754"; + sha256 = "98bfa21c2fc04073a9c667c7f41fbf69b983421197f9b60b52ca02012d98e818"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/de/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/de/Firefox%20144.0.dmg"; locale = "de"; arch = "mac"; - sha256 = "df0649835924a5969c413f1ccd973194a689418d29e110e2f748389872b375b6"; + sha256 = "8a899c5771a0093b1a69acbc67d3a3a0371ed0a8f2b5ebad649c82cfd3fa3a78"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/dsb/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/dsb/Firefox%20144.0.dmg"; locale = "dsb"; arch = "mac"; - sha256 = "40e68a140e2dd64e3ed135fe9ec1240c0bf0657cbf618b553c8f3788dbda5df1"; + sha256 = "673bf924d975d448b96ecadd6dc08a32d199a6f70f35a559fbbe63d630d2d930"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/el/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/el/Firefox%20144.0.dmg"; locale = "el"; arch = "mac"; - sha256 = "174e62be9eda5da11325d96cd6b584bb9a492509b34edbc1cc24cb679c1519ac"; + sha256 = "5ba4f0c5fd7d62dd215cf24f7672706ffa15af601c4fa0909f6406018b7c2d47"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/en-CA/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/en-CA/Firefox%20144.0.dmg"; locale = "en-CA"; arch = "mac"; - sha256 = "ee4da5e1523135f6a50f7aa1164bd12973618511479c29d7f8e345db189cd4af"; + sha256 = "2b7079d5096dacb58ee126b3471f0c3f18fc6aef98c3347148940b8329069e04"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/en-GB/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/en-GB/Firefox%20144.0.dmg"; locale = "en-GB"; arch = "mac"; - sha256 = "33f03fe88b7076d4f314230c1b61badfedd9fb45f6e621f4f71ceac6eefd9a53"; + sha256 = "2a56a7d5364a352c21974fb8ad4ee2537a77382827f3e8c0611c297061523a1c"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/en-US/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/en-US/Firefox%20144.0.dmg"; locale = "en-US"; arch = "mac"; - sha256 = "332ab6fdde189325a8118a401ae445c3caf72d7a696ec3ffd96323a9c11bc8ed"; + sha256 = "1e444b80921bc999d56c05a7decc1eaf88c0297cac5b90416299af2c77f5ecc9"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/eo/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/eo/Firefox%20144.0.dmg"; locale = "eo"; arch = "mac"; - sha256 = "fc7a11e1e08b8de426aea3d2d420fd05237f4c5885c8dad961422e8e0e26d077"; + sha256 = "5ffd379725835541e75757476fab0391b8bbed08a56cf0a8103656dbbd4d200e"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/es-AR/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/es-AR/Firefox%20144.0.dmg"; locale = "es-AR"; arch = "mac"; - sha256 = "38378e39501cb918c947069bd1777abcda2fc653dced389dc1892f59b5f61ba6"; + sha256 = "42bddd11b033a4e46644826a96eb36d4b1427b59472e108fe97afefcf99c9ac8"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/es-CL/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/es-CL/Firefox%20144.0.dmg"; locale = "es-CL"; arch = "mac"; - sha256 = "041ff14deae6fae7087c4a1561b1b9584a121a42550f155c2ebfad836fc65717"; + sha256 = "fb51f95601673c5fc3aad32b503c1421b4fd476fb18606e1e251341098c7e120"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/es-ES/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/es-ES/Firefox%20144.0.dmg"; locale = "es-ES"; arch = "mac"; - sha256 = "a33c32255801b1469a1fec42b1ff8fa948fae851db918d683ef7d5fb9704388d"; + sha256 = "8bfbc38a15c62a47513dc591dbc5eda1c0ae6104ce542ad2221e81942d1a6f4f"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/es-MX/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/es-MX/Firefox%20144.0.dmg"; locale = "es-MX"; arch = "mac"; - sha256 = "955d31b9cd6a9cdf82bbedf85c5921ec0023d8d581869173e7b709b8701e3fbd"; + sha256 = "4ebbea288a29e4fe600bbc30b5d88cfecfe6f862a9e71146b930e5213bc05769"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/et/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/et/Firefox%20144.0.dmg"; locale = "et"; arch = "mac"; - sha256 = "7c21159c0429feba8f07da0a65dac734e794468512ca4d5b9870de9ab6facbd5"; + sha256 = "1035ff3369fdfd4de1f47788d57a76d68e2c97deda16ca20c32ad289bee9e743"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/eu/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/eu/Firefox%20144.0.dmg"; locale = "eu"; arch = "mac"; - sha256 = "5bdeac9807d1e1f24428d04c6ddede18cde9d55fed2862ae65d77cd1ac3718fa"; + sha256 = "46a874673321699a38e2a7f8fc7f4516ddc3b328061338ed54abe2b5ea4709f9"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/fa/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/fa/Firefox%20144.0.dmg"; locale = "fa"; arch = "mac"; - sha256 = "81e67e539757991c7cf127d346347213db68f1479ca612681a0407b0c73139c5"; + sha256 = "fac34940780efac83ff08168cd9ba153c997a2e551419504bbe4df86b54d5fd1"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/ff/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/ff/Firefox%20144.0.dmg"; locale = "ff"; arch = "mac"; - sha256 = "c74ec35d243739366b71d818aecf2103568fbe32dcac04930a524ebc6b3f37da"; + sha256 = "40550b728d1116b197ce151c8f0ab81cf2e05dcb7771aacf42ab3adfe9e8dcbe"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/fi/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/fi/Firefox%20144.0.dmg"; locale = "fi"; arch = "mac"; - sha256 = "e11f41c5f39d8129c3ff080d372c13c886d4698d54d7df21b50d4707b49a1e94"; + sha256 = "11a664fc41e46e0661b12046ba0ecbba66475ae1e755f89e9a34889afea3b12d"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/fr/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/fr/Firefox%20144.0.dmg"; locale = "fr"; arch = "mac"; - sha256 = "1e8c55bc045206cb5ab8c46f1feaa229df826ace8abcc796bddf42bed36b885e"; + sha256 = "b82dd2d38d31191b37307e0044ec44632fb7edee2e8365ba2de7ab5b13189eb0"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/fur/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/fur/Firefox%20144.0.dmg"; locale = "fur"; arch = "mac"; - sha256 = "7e6f3fa90f55d8c296b517e1a0e37181dcfecfc4a7f23f21f7bcfaa7a7612af6"; + sha256 = "5d3e157feed0ba1d27f263c6964e28be17c71ba0784b17f20493335e8cde6067"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/fy-NL/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/fy-NL/Firefox%20144.0.dmg"; locale = "fy-NL"; arch = "mac"; - sha256 = "cfe291e339a2df0d86aaca3446ab1f28c5a0225d4caa6b4c8d1ee274154fde86"; + sha256 = "a511b5a5d0b716e66a4c29a2459243547dbfc0965801a4758c8e2028fa7dab8a"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/ga-IE/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/ga-IE/Firefox%20144.0.dmg"; locale = "ga-IE"; arch = "mac"; - sha256 = "8955741ce868affff997b5b08f31e31c88a5ed9ea94a0298154f94c7f897ec69"; + sha256 = "1b59c37b8bae3181664e27fc85604de24916f84713025cfed0e98a1e0e9b383a"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/gd/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/gd/Firefox%20144.0.dmg"; locale = "gd"; arch = "mac"; - sha256 = "863f0d1ebdb24e1f0f7a9b6cb94a4c1a92b26e3a9ef8b07181d99fcaac5ed29b"; + sha256 = "06773bb70fcbf04549c510e514c218cef3baf085161b444bc5e379df578e01d7"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/gl/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/gl/Firefox%20144.0.dmg"; locale = "gl"; arch = "mac"; - sha256 = "4d738623a62e1f5e65fc5595a7bb3153efbe92dbb280731cabe2abf739bbb868"; + sha256 = "73167d60d07a1746fbb4fbcd1bde0ab6ad5075e7a79bbc9f2cfb63d4b19e2ce1"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/gn/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/gn/Firefox%20144.0.dmg"; locale = "gn"; arch = "mac"; - sha256 = "ae94c2dbf64e15ffe6e396b946025d0001c6d6b2e819134521d0a70bada8fdf0"; + sha256 = "a4d649fbb82b591b711278d15f69dd0eae4f3543558f6f2e48e6011dee9e2773"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/gu-IN/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/gu-IN/Firefox%20144.0.dmg"; locale = "gu-IN"; arch = "mac"; - sha256 = "1b15c3e4db6ac33b29231229d1769cd1463f2fe6b0a4c0ff3c2f9b0cdb41ef31"; + sha256 = "ea77edfa32600b15d2571cb5e2c6730d45c1c84bfd6af235ff92430767d84f46"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/he/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/he/Firefox%20144.0.dmg"; locale = "he"; arch = "mac"; - sha256 = "6e8b99af3512c2bbb604d9de6a309e5b0cddabf504ab8b5cf70348bdfb265593"; + sha256 = "13251f1038a448d942f51311d33acc04db4332b7b7173f29d066cab2148969d3"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/hi-IN/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/hi-IN/Firefox%20144.0.dmg"; locale = "hi-IN"; arch = "mac"; - sha256 = "db575fa7b2ee2ff697bf7b989188413e4c47fafec2adabe5c28e8c8f37a01163"; + sha256 = "cdea9dcf544c1ed44f0876f0a15c30620dcfb036dda05206bad27d3bb07bcad6"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/hr/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/hr/Firefox%20144.0.dmg"; locale = "hr"; arch = "mac"; - sha256 = "1ec5b4174c5e8d9607564a668bd95da194334dbe4c52a5e31857d38178314b5e"; + sha256 = "2ba6b74c9313419a5ceab2f6a80bc9601de99d10cc13c253d4670ac7817d41b8"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/hsb/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/hsb/Firefox%20144.0.dmg"; locale = "hsb"; arch = "mac"; - sha256 = "11a75c33c560e6ccaab33ce5e1086d32305825e782df674fb2d7afb285968f6e"; + sha256 = "5926795f229e7d72bde486a1451742074a210d23b71637c3a1b5109271c9affd"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/hu/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/hu/Firefox%20144.0.dmg"; locale = "hu"; arch = "mac"; - sha256 = "100d7870f62b959152bf972a61f60156b5de6036ed6b2ab066c346394f4b2b56"; + sha256 = "96160986546f66f3aac74e0f350ddf623f93d87246f282a4dc1c5c5eee46a423"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/hy-AM/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/hy-AM/Firefox%20144.0.dmg"; locale = "hy-AM"; arch = "mac"; - sha256 = "22a75359c410e0dbc94797c5892722171d4522ccef9ddb72faeb952b944faf7b"; + sha256 = "e9418b6815cbd29124357ecfb32d9ed5d28149860349066d5b34c48e3969857a"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/ia/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/ia/Firefox%20144.0.dmg"; locale = "ia"; arch = "mac"; - sha256 = "4bc758d2e4f2270a23750778798c0b15b9d943eee7cbf2a317c039ea54f96625"; + sha256 = "e8d7acc6cc15db58b6026aa1605541d2fccd77da083dd35995fdad058258cbea"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/id/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/id/Firefox%20144.0.dmg"; locale = "id"; arch = "mac"; - sha256 = "1ccc57618bbab6365fe065889da456923ee9ccdc563d8cde9f281fa200d173ee"; + sha256 = "039f9c0f1a5fcda8b47ac7032a108daff85deb89c18a2309df80d6cf54991468"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/is/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/is/Firefox%20144.0.dmg"; locale = "is"; arch = "mac"; - sha256 = "e8a4f2c782aa0bd2da35f7731e2fa451ae5161447b19b42bc4950b9dd80ee938"; + sha256 = "83fbe22d2f4e156d5c110d3ac0d08c7b461f2cdaac6cc852d1711dfd367a9460"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/it/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/it/Firefox%20144.0.dmg"; locale = "it"; arch = "mac"; - sha256 = "a0a6f0c71f309c135f0fa3f60feb25c4250b5e30b8f99a81f14c96c76ed8f512"; + sha256 = "4ec979be830e23c1737e60bf1cc82ab5ad64a579f00c338708e6ae06f358fb39"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/ja-JP-mac/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/ja-JP-mac/Firefox%20144.0.dmg"; locale = "ja-JP-mac"; arch = "mac"; - sha256 = "b8de3884d0c23ac49a9b393e3e3bf15a2e05f5709d0100f83867111d07620199"; + sha256 = "94e20e600ff8910ed3f54c45b372f1100ed384fa6e5881e2cf582d64d7723b38"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/ka/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/ka/Firefox%20144.0.dmg"; locale = "ka"; arch = "mac"; - sha256 = "0c729aeb36319615a59f9b97de944b8802e14c02a46fa63f0df79e5483349bde"; + sha256 = "ccba239d6993bd3af0e94c7d858384ee2445f2e0846e1a2d8be940fc0becad4d"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/kab/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/kab/Firefox%20144.0.dmg"; locale = "kab"; arch = "mac"; - sha256 = "83107355f1e0cb760585aeed2089ffad66ef0a54bb21e4b2ef952fc34d957b87"; + sha256 = "db8babfd04de5c3e40f14e41238e4b5fd55775662755ea9966be284c4ee42d1a"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/kk/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/kk/Firefox%20144.0.dmg"; locale = "kk"; arch = "mac"; - sha256 = "3f3875ace31f0b39d00c6920a1c63e345c22a27aa1048b9a32fb03369be17b64"; + sha256 = "3c5696a4c2fbc8fe6ec40225b2605a42bb8d989f4b78f02e384fbdb6534c280b"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/km/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/km/Firefox%20144.0.dmg"; locale = "km"; arch = "mac"; - sha256 = "af0a2f24dd8fb4885cb9a41a40b941d79c99282c0cbd5bb69549130dd63240ff"; + sha256 = "5cae18e877dbfc8340c401d1477fe65cef9768486e609f1f41a286800de73ef2"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/kn/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/kn/Firefox%20144.0.dmg"; locale = "kn"; arch = "mac"; - sha256 = "580d899c23cd30a19900bd66570ff43766f9afb4c275ec06ddf2ac78772b9e20"; + sha256 = "16cdc4eacab04cf0254c8af6c70d0f652d38400167c82c8966e70c83d7471eeb"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/ko/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/ko/Firefox%20144.0.dmg"; locale = "ko"; arch = "mac"; - sha256 = "a5b82c99d4d9f4081bc4e8bafa56b55bbe7f608c4bb1c3956b31a0e5bf62b110"; + sha256 = "c2e91c02dd631405baf187de66a7f603fc74677427ad6bef623c48a25270fb35"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/lij/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/lij/Firefox%20144.0.dmg"; locale = "lij"; arch = "mac"; - sha256 = "ffd396a6e3b4f03537cb1989702840d2898f7a938781f499a2b69b6bc071a6bc"; + sha256 = "80fb2c726c34a12b6d08321e812cbda27d339e4512e043ab669a36597b483a50"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/lt/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/lt/Firefox%20144.0.dmg"; locale = "lt"; arch = "mac"; - sha256 = "9e09756f9f6d1bb12e482da02aa48ad3cff23bf715296461ab35ff929103e3ff"; + sha256 = "b4d56d4b208409a631b3d4d7b132cd807189e8b482a9a7e2a5e99d1dfc7bdd5c"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/lv/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/lv/Firefox%20144.0.dmg"; locale = "lv"; arch = "mac"; - sha256 = "7d6cc236a4134c79699f46411d6c006503796700745851bcae0cb26d991d7cd4"; + sha256 = "16bc890c2c5bc1f25717a381a8dd1de05408bb1ac2d57f25a29e885fb06bbb2b"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/mk/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/mk/Firefox%20144.0.dmg"; locale = "mk"; arch = "mac"; - sha256 = "e11e0142f18c11c040ca77798b917a31bb7da977fae250644c7782285d21a974"; + sha256 = "7440e342bacb25d2c9869599434386fb92c947d5f0980be0fb2c382efaeb07a0"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/mr/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/mr/Firefox%20144.0.dmg"; locale = "mr"; arch = "mac"; - sha256 = "39c99b1c26c499d26c3867b58dac4a9e9f62fdb2138b5aadd9ed8210124980c9"; + sha256 = "80bd295a4e031a5da31b8f9cf12bc806f95bc106811ab79f7603bc0e9b71b059"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/ms/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/ms/Firefox%20144.0.dmg"; locale = "ms"; arch = "mac"; - sha256 = "1e40676ae4b9f93bf61c01735f30910f79738da9fb9d9b2b7fb8374ddb6e9bc1"; + sha256 = "b59abd9035792d95c8ae5b57c4757843c1a5947ad97b3a9b1274c10ca433554f"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/my/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/my/Firefox%20144.0.dmg"; locale = "my"; arch = "mac"; - sha256 = "5269ac2df17c389440852b26011337091f260b0f7e9d4ec0c9aa5c21f1b1f942"; + sha256 = "d03dddb65f99c87576808b6454cce59b13c22399a3868b60160cfb7136b47420"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/nb-NO/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/nb-NO/Firefox%20144.0.dmg"; locale = "nb-NO"; arch = "mac"; - sha256 = "853f688216f77fead44ec51e5100aa1ad6fd9a2df5feaccaf1679e28bf24a25b"; + sha256 = "ec6d9879a6d7ad3eb3815269f8417409cf0b68ffa7d81f975956ed9da3725b72"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/ne-NP/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/ne-NP/Firefox%20144.0.dmg"; locale = "ne-NP"; arch = "mac"; - sha256 = "76ae52f15676142fcfc694c9db3b3809620b65b523cee79ad9b23e19704a3656"; + sha256 = "9f47f263204ce4ce85b0055c01e787e6b57eb3c774eedc788ed9157edbcd74e7"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/nl/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/nl/Firefox%20144.0.dmg"; locale = "nl"; arch = "mac"; - sha256 = "513f728c16970fa8061f65cef30900b699a07404aba7c82a0acbf1908f97c2c6"; + sha256 = "7f4e390eb8c282ebfd3fc350414eccb75c40fd73d739cc6cd531fd9e27c2420b"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/nn-NO/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/nn-NO/Firefox%20144.0.dmg"; locale = "nn-NO"; arch = "mac"; - sha256 = "4fea97720032a19fcdc93f86812754da03cd9173c528544aef87c7d62029e01d"; + sha256 = "b24eb701b7872b8f73a75d971d4441dad0d670b2ebddb164589054c11345f2bb"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/oc/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/oc/Firefox%20144.0.dmg"; locale = "oc"; arch = "mac"; - sha256 = "bb53f040dc4182e56b9ca98edcaf0ebe6af92ccbb2c3171de512ba16f41d88af"; + sha256 = "69c1e0ef56821a5d8dd439e4e14d1a27e01581f89b384a3a25ab14c7c5e7eaa9"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/pa-IN/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/pa-IN/Firefox%20144.0.dmg"; locale = "pa-IN"; arch = "mac"; - sha256 = "dc789330d155083ea6e767497b4cbc51d325554675bdb9d3b3264b128523cef7"; + sha256 = "dde4f090f0966e3f476c52c12e23360dbf11fd0a5fd0b84318551539b35659e8"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/pl/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/pl/Firefox%20144.0.dmg"; locale = "pl"; arch = "mac"; - sha256 = "dfa9725a6a5fbfbbcefe8f2381dab1e5860d16f2227a07f1641e2e04cda5d8f4"; + sha256 = "7ff025e78563d008873b52b8ae3dc0136c16ca08ba225755f5a2963b7d63d8de"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/pt-BR/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/pt-BR/Firefox%20144.0.dmg"; locale = "pt-BR"; arch = "mac"; - sha256 = "268359d9f6500128eb02f0b612f9c32a366f597ff472702852b647da28896f01"; + sha256 = "6f712f5b83ee6403093b659f566348e284844564400ba14180b03f6e2ac8328c"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/pt-PT/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/pt-PT/Firefox%20144.0.dmg"; locale = "pt-PT"; arch = "mac"; - sha256 = "cfcfc464baef914969a0ab7292e4021dc2727fbcd1c291c4e58bee680234ed09"; + sha256 = "04a681a4f2fa1875e7b0cd0304ea2263a9a7c2303a110dbf3c7447cf5f77158f"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/rm/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/rm/Firefox%20144.0.dmg"; locale = "rm"; arch = "mac"; - sha256 = "16710f9eaf865ddb870fee03416e8503d87d88a65fb7c9c21905025bad6966f1"; + sha256 = "818b3c96cafc11a2d1ffd67aaf7569341a5f9b718c9102db9a94f2d4e4b72016"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/ro/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/ro/Firefox%20144.0.dmg"; locale = "ro"; arch = "mac"; - sha256 = "8486ed4de9256cda992ea5d6efff2664dac86afd6218d3154383549623ee9c06"; + sha256 = "4d0c078f6a4f8d26946b00a71031645fd01e7c1978fc0b736297218172bb5312"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/ru/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/ru/Firefox%20144.0.dmg"; locale = "ru"; arch = "mac"; - sha256 = "05a9abd79fbf39ed194d6a321061128557e75111d9f5e170eb75db3d7da5f707"; + sha256 = "e6fef5b53ca85472df3f70d45db7a4f1f8e58adba7bc4f06770e259a68f1a568"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/sat/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/sat/Firefox%20144.0.dmg"; locale = "sat"; arch = "mac"; - sha256 = "b1530800b5d75a37d49f87863acf561d756d0b297f1ed1aaa149abc952c79f41"; + sha256 = "893ce0e0b6da456d1a8f4161f9371eae51b2c3c41458f7cbf7578b8abb2d0e96"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/sc/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/sc/Firefox%20144.0.dmg"; locale = "sc"; arch = "mac"; - sha256 = "15a9adabd806c8c7ba6def665bf73293a4754db1cef9f189bd3e10b13081bca4"; + sha256 = "a4426974e29f754738cd1c1faca7fbdfb3fd626082ea0d40c08338319038c81f"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/sco/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/sco/Firefox%20144.0.dmg"; locale = "sco"; arch = "mac"; - sha256 = "87e7ea1df91ba58d6e2961f48165471a981857b8785365f5dc5284059d1ba7bf"; + sha256 = "ca0fb81dcbbaf4e77ec9fa286ef0b619e0ad4c25e3d2bb1e9c5bc76810bc6820"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/si/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/si/Firefox%20144.0.dmg"; locale = "si"; arch = "mac"; - sha256 = "b90a75ae4534d6f20e936f2256d0dbcffcad2214966492d189593eb02ce1201f"; + sha256 = "b07692d747214eda21cb981612493fac20bc9f918e4108b301d1a176a1e81815"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/sk/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/sk/Firefox%20144.0.dmg"; locale = "sk"; arch = "mac"; - sha256 = "d09a88eaa12adcaa7e918322bcdc253bbd8cecc1bb48850fe9e5f4224030309b"; + sha256 = "df95fdba11ebc15bc728a143af8acca91cc0a9274f7ee869afcfaae7c0e669b4"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/skr/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/skr/Firefox%20144.0.dmg"; locale = "skr"; arch = "mac"; - sha256 = "ddc4fe772005e5bbf56edf37b6855aa9288f7867f7123e014f15155e45c9bea3"; + sha256 = "72cdddfcdc7798db253959b39b6ae03522763b25fa4532b8352144d38c2f2b5d"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/sl/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/sl/Firefox%20144.0.dmg"; locale = "sl"; arch = "mac"; - sha256 = "99ef18cf3ff0be24aae3fca4d5006c65879ec3d4abbe03b825c4e95c2286f6dd"; + sha256 = "b8a298eb59fd39d577cbc92cf708cfa46c4bca8563c84f85dc07a680c9c75d07"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/son/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/son/Firefox%20144.0.dmg"; locale = "son"; arch = "mac"; - sha256 = "76e898600c9cac0414fc8c51df076bb7b54a776654a3633c37fc70c71dfe4475"; + sha256 = "58b3c9fdfc36461c9791dae9b8466751a5038043e01202db35229220eb6850c8"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/sq/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/sq/Firefox%20144.0.dmg"; locale = "sq"; arch = "mac"; - sha256 = "0d4937685247db28acf1eb7ec6d92ef6bf2a1a5e2ffcb78f216926e6719180b2"; + sha256 = "fa798195257309e071be28126751ab5fa1388aa0e1e24bf23790dded0f100b2f"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/sr/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/sr/Firefox%20144.0.dmg"; locale = "sr"; arch = "mac"; - sha256 = "6422668435e6d22048fc18319a3a2704a59ec893833daae7f73793fdd5bd3b44"; + sha256 = "89ea3b70af3c5c99a0020d2113a6905a6680a5966f6b51b9c2ee389c0aad9193"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/sv-SE/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/sv-SE/Firefox%20144.0.dmg"; locale = "sv-SE"; arch = "mac"; - sha256 = "635005750c9a1d962c08b2c68521d8b31c15c388a6597bcc1baae4ca53443754"; + sha256 = "d21256313648c267a92a97a795a3c7d62e7b8d7270d8865b49e725a3a9e50885"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/szl/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/szl/Firefox%20144.0.dmg"; locale = "szl"; arch = "mac"; - sha256 = "5ef933a30a845c2793acb82b4db2b8580e3f83a6ce0fef305fbaf0096c3ee22a"; + sha256 = "b1d6b79b3acddcd48da313098debc82b25eb839ea569334b609bb3d793ee5ac4"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/ta/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/ta/Firefox%20144.0.dmg"; locale = "ta"; arch = "mac"; - sha256 = "51550a47d48906bd364618f0795725d6a4742806aae4977e475f3e5a5a873257"; + sha256 = "9abff19859cf0c3df2cbeeba0e5e79ed5fcfe93b659a25056dbe997ec1ddc69a"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/te/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/te/Firefox%20144.0.dmg"; locale = "te"; arch = "mac"; - sha256 = "bf60bd681a32ec5ea3b8a4110487504bf4d77ad547eee38570a3e9dc7a1557c3"; + sha256 = "a52d31546f1083520ca13692aaec2db9aeac3db9b11c4a09c82041e95a19ea92"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/tg/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/tg/Firefox%20144.0.dmg"; locale = "tg"; arch = "mac"; - sha256 = "3717c82a162d543048bdff99a09ecdb1f49bece1acea9e7e3267e543148c0027"; + sha256 = "f151f83a9b727f918c5ab44f6991b20102cb2c3197a729af7d77ec3a09be1e69"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/th/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/th/Firefox%20144.0.dmg"; locale = "th"; arch = "mac"; - sha256 = "2fd6cf698d23d1c61575192fe7b0fa30948c7e6bea77b7ceab76cb313a8fa651"; + sha256 = "09e95a74b23a93f282e64bed309e078a5dfb9a7d9231dbadef439326a2e3fa18"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/tl/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/tl/Firefox%20144.0.dmg"; locale = "tl"; arch = "mac"; - sha256 = "670bad8ff47bb3d6146782960a93ea4a30141a632180e1ec596f06ffa411c715"; + sha256 = "380578292291aaf57c2343927941fcaadb124214b463b30ccd9c84485d0026b3"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/tr/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/tr/Firefox%20144.0.dmg"; locale = "tr"; arch = "mac"; - sha256 = "5762248a2c1245795349ff4f885dcfde3199443cb26c359146e677015523f345"; + sha256 = "614e5426ea0c5a9bf9d9c2c903ecc9fbebcc36a821a550f2b2680457ef0f63d3"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/trs/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/trs/Firefox%20144.0.dmg"; locale = "trs"; arch = "mac"; - sha256 = "84da5a561d8f53179a7bba85be920cd0de1f4e5949bb3e5f67e6a23b1358683d"; + sha256 = "32d7669f8f87afcd03b131000f17f00e5b55a1479133155723476475d3b921e6"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/uk/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/uk/Firefox%20144.0.dmg"; locale = "uk"; arch = "mac"; - sha256 = "a9f0166b67e7b0b01d4caade6b831ab96402e6fc942054c300df008d40b320a3"; + sha256 = "31a74a758cef43e1d7d4c71e31d742bd79a0c5b9e5946135b8298d06cdedf5b5"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/ur/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/ur/Firefox%20144.0.dmg"; locale = "ur"; arch = "mac"; - sha256 = "d365357a3fda7d11f42d43a8f6d8280f5afdaf9d65c177d611a22ac90572dbef"; + sha256 = "b9e17a696d53dafac98d1c2164ea3b1b619e8bf8b344be30d182f99fd892b5cc"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/uz/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/uz/Firefox%20144.0.dmg"; locale = "uz"; arch = "mac"; - sha256 = "add434c6b3dedbb7998e48ea05dbbe046610e93510bedb303226be4f9ff495ec"; + sha256 = "e9ea930995fdafb634f9a896f3cadc79a920354fc16df64603167680a62098cd"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/vi/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/vi/Firefox%20144.0.dmg"; locale = "vi"; arch = "mac"; - sha256 = "89d254aaa494438edacfd7be1ca6975a4f58fd747e8e79c3fcd3146a0186f915"; + sha256 = "232925d4435628448f27146075519a11763b828b07ee69002fd8ab8718ef7129"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/xh/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/xh/Firefox%20144.0.dmg"; locale = "xh"; arch = "mac"; - sha256 = "7eb37a1f199f3605f6568a5995dfa66e8e5bbab22cbd1af5d1c6a1a2c5d09e46"; + sha256 = "c1e4f9ad80580a99498d04656f64b6d8f4293114b51e928b6264845997cd61ca"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/zh-CN/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/zh-CN/Firefox%20144.0.dmg"; locale = "zh-CN"; arch = "mac"; - sha256 = "813d79e1e7a858197bbdc35bfa1e389f82d8748744663e1998079e9a729be746"; + sha256 = "44ee593ece0711a3eb67fdc8803c88bced8fa887578202dc4d356139cf4acf52"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/143.0.4/mac/zh-TW/Firefox%20143.0.4.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/144.0/mac/zh-TW/Firefox%20144.0.dmg"; locale = "zh-TW"; arch = "mac"; - sha256 = "b0a9a77dc4c62022b091604ed74ffbcf1beb313a04628e826444a2d40dafe717"; + sha256 = "14f924e6184cf01091ea3dffb18f1f684325dccada852b8db39df0beaf532b44"; } ]; } diff --git a/pkgs/applications/networking/browsers/firefox/packages/firefox-esr-140.nix b/pkgs/applications/networking/browsers/firefox/packages/firefox-esr-140.nix index 3d61f4d1f950..75c3252c7a1b 100644 --- a/pkgs/applications/networking/browsers/firefox/packages/firefox-esr-140.nix +++ b/pkgs/applications/networking/browsers/firefox/packages/firefox-esr-140.nix @@ -9,11 +9,11 @@ buildMozillaMach rec { pname = "firefox"; - version = "140.3.1esr"; + version = "140.4.0esr"; applicationName = "Firefox ESR"; src = fetchurl { url = "mirror://mozilla/firefox/releases/${version}/source/firefox-${version}.source.tar.xz"; - sha512 = "a9302d99d7f07f4b250aa214635814964dd083204268e05fe877a3d8330b9c0caa6c29ed19da71bd88979b7cf39ed52f17698968b0da5b0d7430b6764b43b6cc"; + sha512 = "cfce0bdcf6d4599c7b96bccd9fd1390bfb3645db9276a369a30760ce6819850aaa4251869e6bd3c5d8582ea3728b920762c5f16f7ce12ce151c3e74327b8c811"; }; meta = { diff --git a/pkgs/applications/networking/browsers/firefox/packages/firefox.nix b/pkgs/applications/networking/browsers/firefox/packages/firefox.nix index 913b2d18e265..4718b256ce42 100644 --- a/pkgs/applications/networking/browsers/firefox/packages/firefox.nix +++ b/pkgs/applications/networking/browsers/firefox/packages/firefox.nix @@ -9,10 +9,10 @@ buildMozillaMach rec { pname = "firefox"; - version = "143.0.4"; + version = "144.0"; src = fetchurl { url = "mirror://mozilla/firefox/releases/${version}/source/firefox-${version}.source.tar.xz"; - sha512 = "2bcbde4e72ea41e9ccc98836901635350b5dc7b50c618e19ab6103a27adc0f017ca3fa7555378c8af6ee1f3a14d02935289fe2b0d35d840d610f5ac07a88e4b6"; + sha512 = "e1f924ed006a31f5333ea6af219c1fb90d4866e5889ac634c324a3e80b042a7e0b2b9aeb798672ea1a434fbf817fc0b82a12ec0fb405a48e3a2ca21cc394445e"; }; meta = { diff --git a/pkgs/applications/networking/cluster/terraform-providers/default.nix b/pkgs/applications/networking/cluster/terraform-providers/default.nix index 188fe76b500f..620052e8c253 100644 --- a/pkgs/applications/networking/cluster/terraform-providers/default.nix +++ b/pkgs/applications/networking/cluster/terraform-providers/default.nix @@ -82,8 +82,7 @@ let passthru = attrs // { inherit provider-source-address; updateScript = writeShellScript "update" '' - provider="$(basename ${provider-source-address})" - ./pkgs/applications/networking/cluster/terraform-providers/update-provider "$provider" + ./pkgs/applications/networking/cluster/terraform-providers/update-provider "${owner}_${lib.removePrefix "terraform-provider-" repo}" ''; }; } @@ -97,16 +96,16 @@ let # These are the providers that don't fall in line with the default model special-providers = { # github api seems to be broken, doesn't just fail to recognize the license, it's ignored entirely. - checkly = automated-providers.checkly.override { spdx = "MIT"; }; - gitlab = automated-providers.gitlab.override { + checkly_checkly = automated-providers.checkly_checkly.override { spdx = "MIT"; }; + gitlabhq_gitlab = automated-providers.gitlabhq_gitlab.override { mkProviderFetcher = fetchFromGitLab; owner = "gitlab-org"; }; # mkisofs needed to create ISOs holding cloud-init data and wrapped to terraform via deecb4c1aab780047d79978c636eeb879dd68630 - libvirt = automated-providers.libvirt.overrideAttrs (_: { + dmacvicar_libvirt = automated-providers.dmacvicar_libvirt.overrideAttrs (_: { propagatedBuildInputs = [ cdrtools ]; }); - minio = automated-providers.minio.override { spdx = "AGPL-3.0-only"; }; + aminueza_minio = automated-providers.aminueza_minio.override { spdx = "AGPL-3.0-only"; }; }; # Put all the providers we not longer support in this list. @@ -126,7 +125,178 @@ let vra7 = archived "vra7" "2025/10"; }; + # added 2025-10-12 + renamed-providers = lib.optionalAttrs config.allowAliases { + onepassword = + lib.warnOnInstantiate + "terraform-providers.onepassword has been renamed to terraform-providers.1password_onepassword" + actualProviders."1password_onepassword"; + thunder = lib.warnOnInstantiate "terraform-providers.thunder has been renamed to terraform-providers.a10networks_thunder" actualProviders.a10networks_thunder; + netlify = lib.warnOnInstantiate "terraform-providers.netlify has been renamed to terraform-providers.aegirhealth_netlify" actualProviders.aegirhealth_netlify; + aiven = lib.warnOnInstantiate "terraform-providers.aiven has been renamed to terraform-providers.aiven_aiven" actualProviders.aiven_aiven; + akamai = lib.warnOnInstantiate "terraform-providers.akamai has been renamed to terraform-providers.akamai_akamai" actualProviders.akamai_akamai; + alicloud = lib.warnOnInstantiate "terraform-providers.alicloud has been renamed to terraform-providers.aliyun_alicloud" actualProviders.aliyun_alicloud; + minio = lib.warnOnInstantiate "terraform-providers.minio has been renamed to terraform-providers.aminueza_minio" actualProviders.aminueza_minio; + auth0 = lib.warnOnInstantiate "terraform-providers.auth0 has been renamed to terraform-providers.auth0_auth0" actualProviders.auth0_auth0; + aviatrix = lib.warnOnInstantiate "terraform-providers.aviatrix has been renamed to terraform-providers.aviatrixsystems_aviatrix" actualProviders.aviatrixsystems_aviatrix; + dhall = lib.warnOnInstantiate "terraform-providers.dhall has been renamed to terraform-providers.awakesecurity_dhall" actualProviders.awakesecurity_dhall; + baiducloud = lib.warnOnInstantiate "terraform-providers.baiducloud has been renamed to terraform-providers.baidubce_baiducloud" actualProviders.baidubce_baiducloud; + brightbox = lib.warnOnInstantiate "terraform-providers.brightbox has been renamed to terraform-providers.brightbox_brightbox" actualProviders.brightbox_brightbox; + buildkite = lib.warnOnInstantiate "terraform-providers.buildkite has been renamed to terraform-providers.buildkite_buildkite" actualProviders.buildkite_buildkite; + pass = lib.warnOnInstantiate "terraform-providers.pass has been renamed to terraform-providers.camptocamp_pass" actualProviders.camptocamp_pass; + sops = lib.warnOnInstantiate "terraform-providers.sops has been renamed to terraform-providers.carlpett_sops" actualProviders.carlpett_sops; + checkly = lib.warnOnInstantiate "terraform-providers.checkly has been renamed to terraform-providers.checkly_checkly" actualProviders.checkly_checkly; + aci = lib.warnOnInstantiate "terraform-providers.aci has been renamed to terraform-providers.ciscodevnet_aci" actualProviders.ciscodevnet_aci; + ciscoasa = lib.warnOnInstantiate "terraform-providers.ciscoasa has been renamed to terraform-providers.ciscodevnet_ciscoasa" actualProviders.ciscodevnet_ciscoasa; + age = lib.warnOnInstantiate "terraform-providers.age has been renamed to terraform-providers.clementblaise_age" actualProviders.clementblaise_age; + cloudamqp = lib.warnOnInstantiate "terraform-providers.cloudamqp has been renamed to terraform-providers.cloudamqp_cloudamqp" actualProviders.cloudamqp_cloudamqp; + cloudflare = lib.warnOnInstantiate "terraform-providers.cloudflare has been renamed to terraform-providers.cloudflare_cloudflare" actualProviders.cloudflare_cloudflare; + cloudfoundry = lib.warnOnInstantiate "terraform-providers.cloudfoundry has been renamed to terraform-providers.cloudfoundry-community_cloudfoundry" actualProviders.cloudfoundry-community_cloudfoundry; + utils = lib.warnOnInstantiate "terraform-providers.utils has been renamed to terraform-providers.cloudposse_utils" actualProviders.cloudposse_utils; + cloudscale = lib.warnOnInstantiate "terraform-providers.cloudscale has been renamed to terraform-providers.cloudscale-ch_cloudscale" actualProviders.cloudscale-ch_cloudscale; + constellix = lib.warnOnInstantiate "terraform-providers.constellix has been renamed to terraform-providers.constellix_constellix" actualProviders.constellix_constellix; + porkbun = lib.warnOnInstantiate "terraform-providers.porkbun has been renamed to terraform-providers.cullenmcdermott_porkbun" actualProviders.cullenmcdermott_porkbun; + postgresql = lib.warnOnInstantiate "terraform-providers.postgresql has been renamed to terraform-providers.cyrilgdn_postgresql" actualProviders.cyrilgdn_postgresql; + rabbitmq = lib.warnOnInstantiate "terraform-providers.rabbitmq has been renamed to terraform-providers.cyrilgdn_rabbitmq" actualProviders.cyrilgdn_rabbitmq; + datadog = lib.warnOnInstantiate "terraform-providers.datadog has been renamed to terraform-providers.datadog_datadog" actualProviders.datadog_datadog; + nexus = lib.warnOnInstantiate "terraform-providers.nexus has been renamed to terraform-providers.datadrivers_nexus" actualProviders.datadrivers_nexus; + deno = lib.warnOnInstantiate "terraform-providers.deno has been renamed to terraform-providers.denoland_deno" actualProviders.denoland_deno; + hydra = lib.warnOnInstantiate "terraform-providers.hydra has been renamed to terraform-providers.determinatesystems_hydra" actualProviders.determinatesystems_hydra; + digitalocean = lib.warnOnInstantiate "terraform-providers.digitalocean has been renamed to terraform-providers.digitalocean_digitalocean" actualProviders.digitalocean_digitalocean; + libvirt = lib.warnOnInstantiate "terraform-providers.libvirt has been renamed to terraform-providers.dmacvicar_libvirt" actualProviders.dmacvicar_libvirt; + dnsimple = lib.warnOnInstantiate "terraform-providers.dnsimple has been renamed to terraform-providers.dnsimple_dnsimple" actualProviders.dnsimple_dnsimple; + dme = lib.warnOnInstantiate "terraform-providers.dme has been renamed to terraform-providers.dnsmadeeasy_dme" actualProviders.dnsmadeeasy_dme; + doppler = lib.warnOnInstantiate "terraform-providers.doppler has been renamed to terraform-providers.dopplerhq_doppler" actualProviders.dopplerhq_doppler; + bitbucket = lib.warnOnInstantiate "terraform-providers.bitbucket has been renamed to terraform-providers.drfaust92_bitbucket" actualProviders.drfaust92_bitbucket; + equinix = lib.warnOnInstantiate "terraform-providers.equinix has been renamed to terraform-providers.equinix_equinix" actualProviders.equinix_equinix; + exoscale = lib.warnOnInstantiate "terraform-providers.exoscale has been renamed to terraform-providers.exoscale_exoscale" actualProviders.exoscale_exoscale; + bigip = lib.warnOnInstantiate "terraform-providers.bigip has been renamed to terraform-providers.f5networks_bigip" actualProviders.f5networks_bigip; + fastly = lib.warnOnInstantiate "terraform-providers.fastly has been renamed to terraform-providers.fastly_fastly" actualProviders.fastly_fastly; + flexibleengine = lib.warnOnInstantiate "terraform-providers.flexibleengine has been renamed to terraform-providers.flexibleenginecloud_flexibleengine" actualProviders.flexibleenginecloud_flexibleengine; + fortios = lib.warnOnInstantiate "terraform-providers.fortios has been renamed to terraform-providers.fortinetdev_fortios" actualProviders.fortinetdev_fortios; + kubectl = lib.warnOnInstantiate "terraform-providers.kubectl has been renamed to terraform-providers.gavinbunney_kubectl" actualProviders.gavinbunney_kubectl; + gitlab = lib.warnOnInstantiate "terraform-providers.gitlab has been renamed to terraform-providers.gitlabhq_gitlab" actualProviders.gitlabhq_gitlab; + gandi = lib.warnOnInstantiate "terraform-providers.gandi has been renamed to terraform-providers.go-gandi_gandi" actualProviders.go-gandi_gandi; + gitea = lib.warnOnInstantiate "terraform-providers.gitea has been renamed to terraform-providers.go-gitea_gitea" actualProviders.go-gitea_gitea; + harbor = lib.warnOnInstantiate "terraform-providers.harbor has been renamed to terraform-providers.goharbor_harbor" actualProviders.goharbor_harbor; + grafana = lib.warnOnInstantiate "terraform-providers.grafana has been renamed to terraform-providers.grafana_grafana" actualProviders.grafana_grafana; + gridscale = lib.warnOnInstantiate "terraform-providers.gridscale has been renamed to terraform-providers.gridscale_gridscale" actualProviders.gridscale_gridscale; + archive = lib.warnOnInstantiate "terraform-providers.archive has been renamed to terraform-providers.hashicorp_archive" actualProviders.hashicorp_archive; + aws = lib.warnOnInstantiate "terraform-providers.aws has been renamed to terraform-providers.hashicorp_aws" actualProviders.hashicorp_aws; + awscc = lib.warnOnInstantiate "terraform-providers.awscc has been renamed to terraform-providers.hashicorp_awscc" actualProviders.hashicorp_awscc; + azuread = lib.warnOnInstantiate "terraform-providers.azuread has been renamed to terraform-providers.hashicorp_azuread" actualProviders.hashicorp_azuread; + azurerm = lib.warnOnInstantiate "terraform-providers.azurerm has been renamed to terraform-providers.hashicorp_azurerm" actualProviders.hashicorp_azurerm; + cloudinit = lib.warnOnInstantiate "terraform-providers.cloudinit has been renamed to terraform-providers.hashicorp_cloudinit" actualProviders.hashicorp_cloudinit; + consul = lib.warnOnInstantiate "terraform-providers.consul has been renamed to terraform-providers.hashicorp_consul" actualProviders.hashicorp_consul; + dns = lib.warnOnInstantiate "terraform-providers.dns has been renamed to terraform-providers.hashicorp_dns" actualProviders.hashicorp_dns; + external = lib.warnOnInstantiate "terraform-providers.external has been renamed to terraform-providers.hashicorp_external" actualProviders.hashicorp_external; + google = lib.warnOnInstantiate "terraform-providers.google has been renamed to terraform-providers.hashicorp_google" actualProviders.hashicorp_google; + google-beta = lib.warnOnInstantiate "terraform-providers.google-beta has been renamed to terraform-providers.hashicorp_google-beta" actualProviders.hashicorp_google-beta; + helm = lib.warnOnInstantiate "terraform-providers.helm has been renamed to terraform-providers.hashicorp_helm" actualProviders.hashicorp_helm; + http = lib.warnOnInstantiate "terraform-providers.http has been renamed to terraform-providers.hashicorp_http" actualProviders.hashicorp_http; + kubernetes = lib.warnOnInstantiate "terraform-providers.kubernetes has been renamed to terraform-providers.hashicorp_kubernetes" actualProviders.hashicorp_kubernetes; + local = lib.warnOnInstantiate "terraform-providers.local has been renamed to terraform-providers.hashicorp_local" actualProviders.hashicorp_local; + nomad = lib.warnOnInstantiate "terraform-providers.nomad has been renamed to terraform-providers.hashicorp_nomad" actualProviders.hashicorp_nomad; + null = lib.warnOnInstantiate "terraform-providers.null has been renamed to terraform-providers.hashicorp_null" actualProviders.hashicorp_null; + random = lib.warnOnInstantiate "terraform-providers.random has been renamed to terraform-providers.hashicorp_random" actualProviders.hashicorp_random; + tfe = lib.warnOnInstantiate "terraform-providers.tfe has been renamed to terraform-providers.hashicorp_tfe" actualProviders.hashicorp_tfe; + time = lib.warnOnInstantiate "terraform-providers.time has been renamed to terraform-providers.hashicorp_time" actualProviders.hashicorp_time; + tls = lib.warnOnInstantiate "terraform-providers.tls has been renamed to terraform-providers.hashicorp_tls" actualProviders.hashicorp_tls; + vault = lib.warnOnInstantiate "terraform-providers.vault has been renamed to terraform-providers.hashicorp_vault" actualProviders.hashicorp_vault; + vsphere = lib.warnOnInstantiate "terraform-providers.vsphere has been renamed to terraform-providers.hashicorp_vsphere" actualProviders.hashicorp_vsphere; + heroku = lib.warnOnInstantiate "terraform-providers.heroku has been renamed to terraform-providers.heroku_heroku" actualProviders.heroku_heroku; + hcloud = lib.warnOnInstantiate "terraform-providers.hcloud has been renamed to terraform-providers.hetznercloud_hcloud" actualProviders.hetznercloud_hcloud; + huaweicloud = lib.warnOnInstantiate "terraform-providers.huaweicloud has been renamed to terraform-providers.huaweicloud_huaweicloud" actualProviders.huaweicloud_huaweicloud; + ibm = lib.warnOnInstantiate "terraform-providers.ibm has been renamed to terraform-providers.ibm-cloud_ibm" actualProviders.ibm-cloud_ibm; + icinga2 = lib.warnOnInstantiate "terraform-providers.icinga2 has been renamed to terraform-providers.icinga_icinga2" actualProviders.icinga_icinga2; + infoblox = lib.warnOnInstantiate "terraform-providers.infoblox has been renamed to terraform-providers.infobloxopen_infoblox" actualProviders.infobloxopen_infoblox; + github = lib.warnOnInstantiate "terraform-providers.github has been renamed to terraform-providers.integrations_github" actualProviders.integrations_github; + artifactory = lib.warnOnInstantiate "terraform-providers.artifactory has been renamed to terraform-providers.jfrog_artifactory" actualProviders.jfrog_artifactory; + project = lib.warnOnInstantiate "terraform-providers.project has been renamed to terraform-providers.jfrog_project" actualProviders.jfrog_project; + sentry = lib.warnOnInstantiate "terraform-providers.sentry has been renamed to terraform-providers.jianyuan_sentry" actualProviders.jianyuan_sentry; + openwrt = lib.warnOnInstantiate "terraform-providers.openwrt has been renamed to terraform-providers.joneshf_openwrt" actualProviders.joneshf_openwrt; + triton = lib.warnOnInstantiate "terraform-providers.triton has been renamed to terraform-providers.joyent_triton" actualProviders.joyent_triton; + keycloak = lib.warnOnInstantiate "terraform-providers.keycloak has been renamed to terraform-providers.keycloak_keycloak" actualProviders.keycloak_keycloak; + neon = lib.warnOnInstantiate "terraform-providers.neon has been renamed to terraform-providers.kislerdm_neon" actualProviders.kislerdm_neon; + docker = lib.warnOnInstantiate "terraform-providers.docker has been renamed to terraform-providers.kreuzwerker_docker" actualProviders.kreuzwerker_docker; + launchdarkly = lib.warnOnInstantiate "terraform-providers.launchdarkly has been renamed to terraform-providers.launchdarkly_launchdarkly" actualProviders.launchdarkly_launchdarkly; + linode = lib.warnOnInstantiate "terraform-providers.linode has been renamed to terraform-providers.linode_linode" actualProviders.linode_linode; + htpasswd = lib.warnOnInstantiate "terraform-providers.htpasswd has been renamed to terraform-providers.loafoe_htpasswd" actualProviders.loafoe_htpasswd; + ssh = lib.warnOnInstantiate "terraform-providers.ssh has been renamed to terraform-providers.loafoe_ssh" actualProviders.loafoe_ssh; + incus = lib.warnOnInstantiate "terraform-providers.incus has been renamed to terraform-providers.lxc_incus" actualProviders.lxc_incus; + dexidp = lib.warnOnInstantiate "terraform-providers.dexidp has been renamed to terraform-providers.marcofranssen_dexidp" actualProviders.marcofranssen_dexidp; + bitwarden = lib.warnOnInstantiate "terraform-providers.bitwarden has been renamed to terraform-providers.maxlaverse_bitwarden" actualProviders.maxlaverse_bitwarden; + migadu = lib.warnOnInstantiate "terraform-providers.migadu has been renamed to terraform-providers.metio_migadu" actualProviders.metio_migadu; + kafka = lib.warnOnInstantiate "terraform-providers.kafka has been renamed to terraform-providers.mongey_kafka" actualProviders.mongey_kafka; + kafka-connect = lib.warnOnInstantiate "terraform-providers.kafka-connect has been renamed to terraform-providers.mongey_kafka-connect" actualProviders.mongey_kafka-connect; + mongodbatlas = lib.warnOnInstantiate "terraform-providers.mongodbatlas has been renamed to terraform-providers.mongodb_mongodbatlas" actualProviders.mongodb_mongodbatlas; + namecheap = lib.warnOnInstantiate "terraform-providers.namecheap has been renamed to terraform-providers.namecheap_namecheap" actualProviders.namecheap_namecheap; + jetstream = lib.warnOnInstantiate "terraform-providers.jetstream has been renamed to terraform-providers.nats-io_jetstream" actualProviders.nats-io_jetstream; + ansible = lib.warnOnInstantiate "terraform-providers.ansible has been renamed to terraform-providers.nbering_ansible" actualProviders.nbering_ansible; + newrelic = lib.warnOnInstantiate "terraform-providers.newrelic has been renamed to terraform-providers.newrelic_newrelic" actualProviders.newrelic_newrelic; + ns1 = lib.warnOnInstantiate "terraform-providers.ns1 has been renamed to terraform-providers.ns1-terraform_ns1" actualProviders.ns1-terraform_ns1; + linuxbox = lib.warnOnInstantiate "terraform-providers.linuxbox has been renamed to terraform-providers.numtide_linuxbox" actualProviders.numtide_linuxbox; + secret = lib.warnOnInstantiate "terraform-providers.secret has been renamed to terraform-providers.numtide_secret" actualProviders.numtide_secret; + nutanix = lib.warnOnInstantiate "terraform-providers.nutanix has been renamed to terraform-providers.nutanix_nutanix" actualProviders.nutanix_nutanix; + argocd = lib.warnOnInstantiate "terraform-providers.argocd has been renamed to terraform-providers.oboukili_argocd" actualProviders.oboukili_argocd; + okta = lib.warnOnInstantiate "terraform-providers.okta has been renamed to terraform-providers.okta_okta" actualProviders.okta_okta; + oktaasa = lib.warnOnInstantiate "terraform-providers.oktaasa has been renamed to terraform-providers.oktadeveloper_oktaasa" actualProviders.oktadeveloper_oktaasa; + opennebula = lib.warnOnInstantiate "terraform-providers.opennebula has been renamed to terraform-providers.opennebula_opennebula" actualProviders.opennebula_opennebula; + openstack = lib.warnOnInstantiate "terraform-providers.openstack has been renamed to terraform-providers.openstack_openstack" actualProviders.openstack_openstack; + opentelekomcloud = lib.warnOnInstantiate "terraform-providers.opentelekomcloud has been renamed to terraform-providers.opentelekomcloud_opentelekomcloud" actualProviders.opentelekomcloud_opentelekomcloud; + opsgenie = lib.warnOnInstantiate "terraform-providers.opsgenie has been renamed to terraform-providers.opsgenie_opsgenie" actualProviders.opsgenie_opsgenie; + oci = lib.warnOnInstantiate "terraform-providers.oci has been renamed to terraform-providers.oracle_oci" actualProviders.oracle_oci; + ovh = lib.warnOnInstantiate "terraform-providers.ovh has been renamed to terraform-providers.ovh_ovh" actualProviders.ovh_ovh; + slack = lib.warnOnInstantiate "terraform-providers.slack has been renamed to terraform-providers.pablovarela_slack" actualProviders.pablovarela_slack; + pagerduty = lib.warnOnInstantiate "terraform-providers.pagerduty has been renamed to terraform-providers.pagerduty_pagerduty" actualProviders.pagerduty_pagerduty; + powerdns = lib.warnOnInstantiate "terraform-providers.powerdns has been renamed to terraform-providers.pan-net_powerdns" actualProviders.pan-net_powerdns; + elasticsearch = lib.warnOnInstantiate "terraform-providers.elasticsearch has been renamed to terraform-providers.phillbaker_elasticsearch" actualProviders.phillbaker_elasticsearch; + ct = lib.warnOnInstantiate "terraform-providers.ct has been renamed to terraform-providers.poseidon_ct" actualProviders.poseidon_ct; + matchbox = lib.warnOnInstantiate "terraform-providers.matchbox has been renamed to terraform-providers.poseidon_matchbox" actualProviders.poseidon_matchbox; + rancher2 = lib.warnOnInstantiate "terraform-providers.rancher2 has been renamed to terraform-providers.rancher_rancher2" actualProviders.rancher_rancher2; + rootly = lib.warnOnInstantiate "terraform-providers.rootly has been renamed to terraform-providers.rootlyhq_rootly" actualProviders.rootlyhq_rootly; + rundeck = lib.warnOnInstantiate "terraform-providers.rundeck has been renamed to terraform-providers.rundeck_rundeck" actualProviders.rundeck_rundeck; + sakuracloud = lib.warnOnInstantiate "terraform-providers.sakuracloud has been renamed to terraform-providers.sacloud_sakuracloud" actualProviders.sacloud_sakuracloud; + btp = lib.warnOnInstantiate "terraform-providers.btp has been renamed to terraform-providers.sap_btp" actualProviders.sap_btp; + ccloud = lib.warnOnInstantiate "terraform-providers.ccloud has been renamed to terraform-providers.sapcc_ccloud" actualProviders.sapcc_ccloud; + scaleway = lib.warnOnInstantiate "terraform-providers.scaleway has been renamed to terraform-providers.scaleway_scaleway" actualProviders.scaleway_scaleway; + shell = lib.warnOnInstantiate "terraform-providers.shell has been renamed to terraform-providers.scottwinkler_shell" actualProviders.scottwinkler_shell; + selectel = lib.warnOnInstantiate "terraform-providers.selectel has been renamed to terraform-providers.selectel_selectel" actualProviders.selectel_selectel; + talos = lib.warnOnInstantiate "terraform-providers.talos has been renamed to terraform-providers.siderolabs_talos" actualProviders.siderolabs_talos; + skytap = lib.warnOnInstantiate "terraform-providers.skytap has been renamed to terraform-providers.skytap_skytap" actualProviders.skytap_skytap; + snowflake = lib.warnOnInstantiate "terraform-providers.snowflake has been renamed to terraform-providers.snowflake-labs_snowflake" actualProviders.snowflake-labs_snowflake; + spacelift = lib.warnOnInstantiate "terraform-providers.spacelift has been renamed to terraform-providers.spacelift-io_spacelift" actualProviders.spacelift-io_spacelift; + signalfx = lib.warnOnInstantiate "terraform-providers.signalfx has been renamed to terraform-providers.splunk-terraform_signalfx" actualProviders.splunk-terraform_signalfx; + spotinst = lib.warnOnInstantiate "terraform-providers.spotinst has been renamed to terraform-providers.spotinst_spotinst" actualProviders.spotinst_spotinst; + statuscake = lib.warnOnInstantiate "terraform-providers.statuscake has been renamed to terraform-providers.statuscakedev_statuscake" actualProviders.statuscakedev_statuscake; + sumologic = lib.warnOnInstantiate "terraform-providers.sumologic has been renamed to terraform-providers.sumologic_sumologic" actualProviders.sumologic_sumologic; + sysdig = lib.warnOnInstantiate "terraform-providers.sysdig has been renamed to terraform-providers.sysdiglabs_sysdig" actualProviders.sysdiglabs_sysdig; + tailscale = lib.warnOnInstantiate "terraform-providers.tailscale has been renamed to terraform-providers.tailscale_tailscale" actualProviders.tailscale_tailscale; + proxmox = lib.warnOnInstantiate "terraform-providers.proxmox has been renamed to terraform-providers.telmate_proxmox" actualProviders.telmate_proxmox; + temporalcloud = lib.warnOnInstantiate "terraform-providers.temporalcloud has been renamed to terraform-providers.temporalio_temporalcloud" actualProviders.temporalio_temporalcloud; + tencentcloud = lib.warnOnInstantiate "terraform-providers.tencentcloud has been renamed to terraform-providers.tencentcloudstack_tencentcloud" actualProviders.tencentcloudstack_tencentcloud; + remote = lib.warnOnInstantiate "terraform-providers.remote has been renamed to terraform-providers.tenstad_remote" actualProviders.tenstad_remote; + virtualbox = lib.warnOnInstantiate "terraform-providers.virtualbox has been renamed to terraform-providers.terra-farm_virtualbox" actualProviders.terra-farm_virtualbox; + lxd = lib.warnOnInstantiate "terraform-providers.lxd has been renamed to terraform-providers.terraform-lxd_lxd" actualProviders.terraform-lxd_lxd; + routeros = lib.warnOnInstantiate "terraform-providers.routeros has been renamed to terraform-providers.terraform-routeros_routeros" actualProviders.terraform-routeros_routeros; + hetznerdns = lib.warnOnInstantiate "terraform-providers.hetznerdns has been renamed to terraform-providers.timohirt_hetznerdns" actualProviders.timohirt_hetznerdns; + pocketid = lib.warnOnInstantiate "terraform-providers.pocketid has been renamed to terraform-providers.trozz_pocketid" actualProviders.trozz_pocketid; + turbot = lib.warnOnInstantiate "terraform-providers.turbot has been renamed to terraform-providers.turbot_turbot" actualProviders.turbot_turbot; + unifi = lib.warnOnInstantiate "terraform-providers.unifi has been renamed to terraform-providers.ubiquiti-community_unifi" actualProviders.ubiquiti-community_unifi; + ucloud = lib.warnOnInstantiate "terraform-providers.ucloud has been renamed to terraform-providers.ucloud_ucloud" actualProviders.ucloud_ucloud; + acme = lib.warnOnInstantiate "terraform-providers.acme has been renamed to terraform-providers.vancluever_acme" actualProviders.vancluever_acme; + venafi = lib.warnOnInstantiate "terraform-providers.venafi has been renamed to terraform-providers.venafi_venafi" actualProviders.venafi_venafi; + vinyldns = lib.warnOnInstantiate "terraform-providers.vinyldns has been renamed to terraform-providers.vinyldns_vinyldns" actualProviders.vinyldns_vinyldns; + avi = lib.warnOnInstantiate "terraform-providers.avi has been renamed to terraform-providers.vmware_avi" actualProviders.vmware_avi; + vcd = lib.warnOnInstantiate "terraform-providers.vcd has been renamed to terraform-providers.vmware_vcd" actualProviders.vmware_vcd; + wavefront = lib.warnOnInstantiate "terraform-providers.wavefront has been renamed to terraform-providers.vmware_wavefront" actualProviders.vmware_wavefront; + vpsadmin = lib.warnOnInstantiate "terraform-providers.vpsadmin has been renamed to terraform-providers.vpsfreecz_vpsadmin" actualProviders.vpsfreecz_vpsadmin; + vultr = lib.warnOnInstantiate "terraform-providers.vultr has been renamed to terraform-providers.vultr_vultr" actualProviders.vultr_vultr; + mailgun = lib.warnOnInstantiate "terraform-providers.mailgun has been renamed to terraform-providers.wgebis_mailgun" actualProviders.wgebis_mailgun; + yandex = lib.warnOnInstantiate "terraform-providers.yandex has been renamed to terraform-providers.yandex-cloud_yandex" actualProviders.yandex-cloud_yandex; + }; + # excluding aliases, used by terraform-full actualProviders = automated-providers // special-providers; in -actualProviders // removed-providers // { inherit actualProviders mkProvider; } +actualProviders // removed-providers // renamed-providers // { inherit actualProviders mkProvider; } diff --git a/pkgs/applications/networking/cluster/terraform-providers/providers.json b/pkgs/applications/networking/cluster/terraform-providers/providers.json index e0f4c9b2b4a2..2718b93cac25 100644 --- a/pkgs/applications/networking/cluster/terraform-providers/providers.json +++ b/pkgs/applications/networking/cluster/terraform-providers/providers.json @@ -1,32 +1,32 @@ { - "aci": { - "hash": "sha256-+aD4M07xXMTbvp69IuGlO3rSkVEi5NVe5fqEPkWNeM0=", - "homepage": "https://registry.terraform.io/providers/CiscoDevNet/aci", - "owner": "CiscoDevNet", - "repo": "terraform-provider-aci", - "rev": "v2.17.0", + "1password_onepassword": { + "hash": "sha256-u2nSzEKD0o/e0AzeHdKQj3+h7mAt6r5cxaKsPn6nRGo=", + "homepage": "https://registry.terraform.io/providers/1Password/onepassword", + "owner": "1Password", + "repo": "terraform-provider-onepassword", + "rev": "v2.1.2", + "spdx": "MIT", + "vendorHash": null + }, + "a10networks_thunder": { + "hash": "sha256-2i1DSOSt/vbFs0QCPogEBvADhLJFKbrQzwZ20ChCQMk=", + "homepage": "https://registry.terraform.io/providers/a10networks/thunder", + "owner": "a10networks", + "repo": "terraform-provider-thunder", + "rev": "v1.4.2", + "spdx": "BSD-2-Clause", + "vendorHash": null + }, + "aegirhealth_netlify": { + "hash": "sha256-7U+hHN/6GqcbI1gX7L01YqVjlUgvdfhgpXvLF2lwbkA=", + "homepage": "https://registry.terraform.io/providers/AegirHealth/netlify", + "owner": "AegirHealth", + "repo": "terraform-provider-netlify", + "rev": "v0.6.12", "spdx": "MPL-2.0", "vendorHash": null }, - "acme": { - "hash": "sha256-Gi8Lpyl/gWGhMbHE27vtTiluMvs9o7UlNsaYs6c1ecQ=", - "homepage": "https://registry.terraform.io/providers/vancluever/acme", - "owner": "vancluever", - "repo": "terraform-provider-acme", - "rev": "v2.36.0", - "spdx": "MPL-2.0", - "vendorHash": "sha256-88WR4NT1JhJ3JQHcRQXHxTUvD00vRj3dDNPXViSYSUs=" - }, - "age": { - "hash": "sha256-bJrzjvkrCX93bNqCA+FdRibHnAw6cb61StqtwUY5ok4=", - "homepage": "https://registry.terraform.io/providers/clementblaise/age", - "owner": "clementblaise", - "repo": "terraform-provider-age", - "rev": "v0.1.1", - "spdx": "MPL-2.0", - "vendorHash": "sha256-jK7JuARpoxq7hvq5+vTtUwcYot0YqlOZdtDwq4IqKvk=" - }, - "aiven": { + "aiven_aiven": { "hash": "sha256-BF1Js7K6CqxcE5+H/fWFsSvhrNr1UCg2T4Bz9BOSF0w=", "homepage": "https://registry.terraform.io/providers/aiven/aiven", "owner": "aiven", @@ -35,7 +35,7 @@ "spdx": "MIT", "vendorHash": "sha256-t3BENz/43pI33HkWrFnV3ISE3oZOAWyYodjKQcnyE/4=" }, - "akamai": { + "akamai_akamai": { "hash": "sha256-cM3/GwtS4Y7WG1Rg3D58FOvzfwMSNhcggD3bwJcWgE8=", "homepage": "https://registry.terraform.io/providers/akamai/akamai", "owner": "akamai", @@ -44,7 +44,7 @@ "spdx": "MPL-2.0", "vendorHash": "sha256-bS9fFfttu58a2S3CNLO3FOlLPuk/2h1D0bjO6nJbfP8=" }, - "alicloud": { + "aliyun_alicloud": { "hash": "sha256-QZaOnNCfVKBTkDSdNw8mQbF8NfJUhEeN2y3tVt1J1D0=", "homepage": "https://registry.terraform.io/providers/aliyun/alicloud", "owner": "aliyun", @@ -53,43 +53,16 @@ "spdx": "MPL-2.0", "vendorHash": "sha256-+Hc2NCCnJ0fB86fvgE4Kak8fwlsXIiv8avIhE/RoWeM=" }, - "ansible": { - "hash": "sha256-3nha5V4rNgVzgqliebmbC5e12Lj/zlCsyyiIVFlmUrY=", - "homepage": "https://registry.terraform.io/providers/nbering/ansible", - "owner": "nbering", - "repo": "terraform-provider-ansible", - "rev": "v1.0.4", - "spdx": "MPL-2.0", - "vendorHash": "sha256-OAd8SeTqTrH0kMoM2LsK3vM2PI23b3gl57FaJYM9hM0=" + "aminueza_minio": { + "hash": "sha256-A730CkOsaQArSLYdiUQg3pmrGA8gvYokqiwcL2tDqao=", + "homepage": "https://registry.terraform.io/providers/aminueza/minio", + "owner": "aminueza", + "repo": "terraform-provider-minio", + "rev": "v3.8.0", + "spdx": "AGPL-3.0", + "vendorHash": "sha256-QWBzQXx/dzWZr9dn3LHy8RIvZL1EA9xYqi7Ppzvju7g=" }, - "archive": { - "hash": "sha256-nR8bgFvhENwC3L3w580FBtDK5l8WDfJqxDQZeUvWyl0=", - "homepage": "https://registry.terraform.io/providers/hashicorp/archive", - "owner": "hashicorp", - "repo": "terraform-provider-archive", - "rev": "v2.7.1", - "spdx": "MPL-2.0", - "vendorHash": "sha256-MYVkNvJ+rbwGw0htClIbmxk3YX2OK/ZO/QOTyMRFiug=" - }, - "argocd": { - "hash": "sha256-3a/g1SbgeMWFMNTY/sYrItyE1rRimdNro8nu9wPTf6M=", - "homepage": "https://registry.terraform.io/providers/oboukili/argocd", - "owner": "oboukili", - "repo": "terraform-provider-argocd", - "rev": "v6.2.0", - "spdx": "MPL-2.0", - "vendorHash": "sha256-0UM4I/oxIsWIP1G93KJsJxYofXrO4Yy86PEk0FnB1DE=" - }, - "artifactory": { - "hash": "sha256-BSUOmqHwnDEYojtwTXBWo9oGG2FbgaODUKClZPCaK/I=", - "homepage": "https://registry.terraform.io/providers/jfrog/artifactory", - "owner": "jfrog", - "repo": "terraform-provider-artifactory", - "rev": "v12.9.1", - "spdx": "Apache-2.0", - "vendorHash": "sha256-YIn8akPW+DCVF0eYZxsmJxmrJuYhK4QLG/uhmmrXd4c=" - }, - "auth0": { + "auth0_auth0": { "hash": "sha256-+Kc0fXO6E4U9NdRjI1VGM7RMuBVvP/5GeU6jpEjLgr0=", "homepage": "https://registry.terraform.io/providers/auth0/auth0", "owner": "auth0", @@ -98,16 +71,7 @@ "spdx": "MPL-2.0", "vendorHash": "sha256-H1RjKU852ovkrdJrhvedbQS835hN0atDNDCtAcGJMBo=" }, - "avi": { - "hash": "sha256-e8yzc3nRP0ktcuuKyBXydS9NhoceYZKzJcqCWOfaPL0=", - "homepage": "https://registry.terraform.io/providers/vmware/avi", - "owner": "vmware", - "repo": "terraform-provider-avi", - "rev": "v31.1.1", - "spdx": "MPL-2.0", - "vendorHash": "sha256-2NSP0jGFchh3roqSKxCRbkQ+8lNiGRo4JivvBj6wqdg=" - }, - "aviatrix": { + "aviatrixsystems_aviatrix": { "hash": "sha256-V1JRVOMHQu5KlPFw7q/qZuHlJjdVSQotI9w7s88v8GM=", "homepage": "https://registry.terraform.io/providers/AviatrixSystems/aviatrix", "owner": "AviatrixSystems", @@ -116,234 +80,7 @@ "spdx": "MPL-2.0", "vendorHash": null }, - "aws": { - "hash": "sha256-Y/ZDYj6kJ4LaIPk443scDGNAj6J3Y7SqkNFFUaSOj0o=", - "homepage": "https://registry.terraform.io/providers/hashicorp/aws", - "owner": "hashicorp", - "repo": "terraform-provider-aws", - "rev": "v6.16.0", - "spdx": "MPL-2.0", - "vendorHash": "sha256-LYrda07sa7I4aOmr+mOQRN0NkA9ZI7VxOSWFkqGEKQ4=" - }, - "awscc": { - "hash": "sha256-qxCrBJo8oPy9+2e7Pq9Ex5jslJMEkfOzpTdhn/ouV0c=", - "homepage": "https://registry.terraform.io/providers/hashicorp/awscc", - "owner": "hashicorp", - "repo": "terraform-provider-awscc", - "rev": "v1.58.0", - "spdx": "MPL-2.0", - "vendorHash": "sha256-BNc2pwbIBPkLiUaGjBbUayysgIgS58AUA9nfr/KGMZo=" - }, - "azuread": { - "hash": "sha256-9vGXzFLRaQPXECcFtZMnbhHQvEm0FeGwYm4K9utpZf4=", - "homepage": "https://registry.terraform.io/providers/hashicorp/azuread", - "owner": "hashicorp", - "repo": "terraform-provider-azuread", - "rev": "v3.6.0", - "spdx": "MPL-2.0", - "vendorHash": null - }, - "azurerm": { - "hash": "sha256-gpIIj/nSMjhenXs2LbdJV5hdXoMKieueJ6o4xIG7HtA=", - "homepage": "https://registry.terraform.io/providers/hashicorp/azurerm", - "owner": "hashicorp", - "repo": "terraform-provider-azurerm", - "rev": "v4.47.0", - "spdx": "MPL-2.0", - "vendorHash": null - }, - "baiducloud": { - "hash": "sha256-zKkXfSIVVW0QxQB/fJNowy1mQPfXlv6HFcNaNlBSIvY=", - "homepage": "https://registry.terraform.io/providers/baidubce/baiducloud", - "owner": "baidubce", - "repo": "terraform-provider-baiducloud", - "rev": "v1.22.11", - "spdx": "MPL-2.0", - "vendorHash": null - }, - "bigip": { - "hash": "sha256-oJIIhIBQXx5u2OwYcyMo4uRdzWdWLz2PlO9r9ZSRIzo=", - "homepage": "https://registry.terraform.io/providers/F5Networks/bigip", - "owner": "F5Networks", - "repo": "terraform-provider-bigip", - "rev": "v1.24.0", - "spdx": "MPL-2.0", - "vendorHash": null - }, - "bitbucket": { - "hash": "sha256-CJ86MKT2FKf5KbHZegZBbyNoAGe9hg59q8E5urNDqAo=", - "homepage": "https://registry.terraform.io/providers/DrFaust92/bitbucket", - "owner": "DrFaust92", - "repo": "terraform-provider-bitbucket", - "rev": "v2.49.0", - "spdx": "MPL-2.0", - "vendorHash": "sha256-ok73U0WWFGXp5TJ7sp7U9umq7DlChCw7fSyFmbifwKE=" - }, - "bitwarden": { - "hash": "sha256-dYWiz5DjkMQliUpvapKANj45vUyiPaE6GeP/HOBrKt8=", - "homepage": "https://registry.terraform.io/providers/maxlaverse/bitwarden", - "owner": "maxlaverse", - "repo": "terraform-provider-bitwarden", - "rev": "v0.16.0", - "spdx": "MPL-2.0", - "vendorHash": "sha256-I8yMdS+yOk5doWGU9VPdl5ITGNrPhs5tGwluwXSrnI0=" - }, - "brightbox": { - "hash": "sha256-pwFbCP+qDL/4IUfbPRCkddkbsEEeAu7Wp12/mDL0ABA=", - "homepage": "https://registry.terraform.io/providers/brightbox/brightbox", - "owner": "brightbox", - "repo": "terraform-provider-brightbox", - "rev": "v3.4.3", - "spdx": "MPL-2.0", - "vendorHash": "sha256-/dOiXO2aPkuZaFiwv/6AXJdIADgx8T7eOwvJfBBoqg8=" - }, - "btp": { - "hash": "sha256-pz5+Hhu3pBTjBOVzpUXI589PZzKJtoUrOpTC8/TNEE0=", - "homepage": "https://registry.terraform.io/providers/SAP/btp", - "owner": "SAP", - "repo": "terraform-provider-btp", - "rev": "v1.16.1", - "spdx": "Apache-2.0", - "vendorHash": "sha256-pCBmeisWcyw/Box1yrWwYj+hSrsqmToiiom2jS8I1SU=" - }, - "buildkite": { - "hash": "sha256-WP1CcGYtyItpMzKvYFiv5q0jQfvB5nSv8suDmSB1tSs=", - "homepage": "https://registry.terraform.io/providers/buildkite/buildkite", - "owner": "buildkite", - "repo": "terraform-provider-buildkite", - "rev": "v1.26.0", - "spdx": "MIT", - "vendorHash": "sha256-nKXQsAu1tHOHnle7G0Bt+CCNU9AGvxIIv6LJ/INiU7g=" - }, - "ccloud": { - "hash": "sha256-Dpx0eugcHCJV8GNPqjxx4P9ohgJgB10DTnHr+CeN/iQ=", - "homepage": "https://registry.terraform.io/providers/sapcc/ccloud", - "owner": "sapcc", - "repo": "terraform-provider-ccloud", - "rev": "v1.6.7", - "spdx": "MPL-2.0", - "vendorHash": "sha256-OqbnkuEy9w6F1DxmlYhRNYhBaYhWV0FtMK4wdwSybh8=" - }, - "checkly": { - "hash": "sha256-nKD9qjIRudq/MK+c8eC+hv8oDiW+ycYVnDO8+DHg3W4=", - "homepage": "https://registry.terraform.io/providers/checkly/checkly", - "owner": "checkly", - "repo": "terraform-provider-checkly", - "rev": "v1.14.0", - "spdx": null, - "vendorHash": "sha256-Lz8ixBnWqecxBqS+XVrpkVg1X2Ew28axO+jmo+Zb8cE=" - }, - "ciscoasa": { - "hash": "sha256-xzc44FEy2MPo51Faq/VFwg411JK9e0kQucpt0vdN8yg=", - "homepage": "https://registry.terraform.io/providers/CiscoDevNet/ciscoasa", - "owner": "CiscoDevNet", - "repo": "terraform-provider-ciscoasa", - "rev": "v1.3.0", - "spdx": "MPL-2.0", - "vendorHash": null - }, - "cloudamqp": { - "hash": "sha256-WjmZTm04m0iTrXg2/B4I64ccXnfT+qYHZzaYgnJRy3c=", - "homepage": "https://registry.terraform.io/providers/cloudamqp/cloudamqp", - "owner": "cloudamqp", - "repo": "terraform-provider-cloudamqp", - "rev": "v1.37.0", - "spdx": "MPL-2.0", - "vendorHash": "sha256-p/vZYmNBkUGHjZHYzmixOzOWi55YUrbbEdVbOeX1JIs=" - }, - "cloudflare": { - "hash": "sha256-Lc9bC1dM4wNe+ZN2EYFRYfoZosocBEOI9SHvxJIOQCY=", - "homepage": "https://registry.terraform.io/providers/cloudflare/cloudflare", - "owner": "cloudflare", - "repo": "terraform-provider-cloudflare", - "rev": "v5.11.0", - "spdx": "Apache-2.0", - "vendorHash": "sha256-N1vG3U7gxEbVbBax7g6AfHr2Aj1ypVefsEIuvZyLPYQ=" - }, - "cloudfoundry": { - "hash": "sha256-1nYncJLVU/f9WD6Quh9IieIXgixPzbPk4zbtI1zmf9g=", - "homepage": "https://registry.terraform.io/providers/cloudfoundry-community/cloudfoundry", - "owner": "cloudfoundry-community", - "proxyVendor": true, - "repo": "terraform-provider-cloudfoundry", - "rev": "v0.52.0", - "spdx": "MPL-2.0", - "vendorHash": "sha256-6MKWpiDq4yI3mfIJyzEsWLa7gi0+DScI5jKcOcM6Qs0=" - }, - "cloudinit": { - "hash": "sha256-xDHp2bG0/T4pE3j8L4zTVnaQ9te5MuAbiGmopFedOpk=", - "homepage": "https://registry.terraform.io/providers/hashicorp/cloudinit", - "owner": "hashicorp", - "repo": "terraform-provider-cloudinit", - "rev": "v2.3.7", - "spdx": "MPL-2.0", - "vendorHash": "sha256-bD8BHhP4jxBRnFjmZE1MMkBn2/sMqNEaxTlQRMj2Crw=" - }, - "cloudscale": { - "hash": "sha256-uqELnAcx72lIIUGEiO7y9lXhiyNgThmCiMtC/EKFpTA=", - "homepage": "https://registry.terraform.io/providers/cloudscale-ch/cloudscale", - "owner": "cloudscale-ch", - "repo": "terraform-provider-cloudscale", - "rev": "v5.0.0", - "spdx": "MIT", - "vendorHash": "sha256-elNXA2PH6mDolyuLhUsVBDCiL/ydZfi7LAVPjwnbMIw=" - }, - "constellix": { - "deleteVendor": true, - "hash": "sha256-yDXZ+lizDK+Ds8/Z3jfNLjO7fvlfRhx5y88bMLZCaj0=", - "homepage": "https://registry.terraform.io/providers/Constellix/constellix", - "owner": "Constellix", - "repo": "terraform-provider-constellix", - "rev": "v0.4.6", - "spdx": "MPL-2.0", - "vendorHash": "sha256-UJHDX/vx3n/RTuQ50Y6TAhpEEFk9yBoaz8yK02E8Fhw=" - }, - "consul": { - "hash": "sha256-kLoJKnqbjsrzBqFNPpG59UOYlp2UKYsS7b6cu5xImp8=", - "homepage": "https://registry.terraform.io/providers/hashicorp/consul", - "owner": "hashicorp", - "repo": "terraform-provider-consul", - "rev": "v2.22.0", - "spdx": "MPL-2.0", - "vendorHash": "sha256-ODAqEy04jptTR2dggCm9Vs2xxVt02SVVgGAUa06+9YY=" - }, - "ct": { - "hash": "sha256-c1cqTfMlZ5fXDNMYLsk4447X0p/qIQYvRTqVY8cSs+E=", - "homepage": "https://registry.terraform.io/providers/poseidon/ct", - "owner": "poseidon", - "repo": "terraform-provider-ct", - "rev": "v0.13.0", - "spdx": "Apache-2.0", - "vendorHash": "sha256-ZCMSmOCPEMxCSpl3DjIUGPj1W/KNJgyjtHpmQ19JquA=" - }, - "datadog": { - "hash": "sha256-J3fkSivj89bLNu+4HHd+9Q4tI731jTTozGNSgxbuwug=", - "homepage": "https://registry.terraform.io/providers/DataDog/datadog", - "owner": "DataDog", - "repo": "terraform-provider-datadog", - "rev": "v3.75.0", - "spdx": "MPL-2.0", - "vendorHash": "sha256-DzJGSfqDOteTX+rQJ7NY/GvAaGhNAhOzE91Je40UhnU=" - }, - "deno": { - "hash": "sha256-7IvJrhXMeAmf8e21QBdYNSJyVMEzLpat4Tm4zHWglW8=", - "homepage": "https://registry.terraform.io/providers/denoland/deno", - "owner": "denoland", - "repo": "terraform-provider-deno", - "rev": "v0.1.0", - "spdx": "MPL-2.0", - "vendorHash": "sha256-mJXQVfCmW7ssFCrrRSiNb5Vg2QnS9NoBCgZlDDPMoEU=" - }, - "dexidp": { - "hash": "sha256-un+jAmcK1MYljcAFyIHw0AFmvz4GltAsWxTOd/zXxyU=", - "homepage": "https://registry.terraform.io/providers/marcofranssen/dexidp", - "owner": "marcofranssen", - "repo": "terraform-provider-dexidp", - "rev": "v0.7.0", - "spdx": "MIT", - "vendorHash": "sha256-0yoaiVn6j6g//iTPgX/y6M0A+cWAASDIuWMIHi/4w1o=" - }, - "dhall": { + "awakesecurity_dhall": { "hash": "sha256-QjY5ZazQn4HiLQtdmw9X7o5tFw+27B2IISzmzMMHjHE=", "homepage": "https://registry.terraform.io/providers/awakesecurity/dhall", "owner": "awakesecurity", @@ -353,646 +90,43 @@ "spdx": "BSD-3-Clause", "vendorHash": "sha256-quoFrJbB1vjz+MdV+jnr7FPACHuUe5Gx9POLubD2IaM=" }, - "digitalocean": { - "hash": "sha256-Twj59NRaUwx1YsgzAQm7XYbOZaJlJ/pDLzP/jam4D/8=", - "homepage": "https://registry.terraform.io/providers/digitalocean/digitalocean", - "owner": "digitalocean", - "repo": "terraform-provider-digitalocean", - "rev": "v2.67.0", + "baidubce_baiducloud": { + "hash": "sha256-zKkXfSIVVW0QxQB/fJNowy1mQPfXlv6HFcNaNlBSIvY=", + "homepage": "https://registry.terraform.io/providers/baidubce/baiducloud", + "owner": "baidubce", + "repo": "terraform-provider-baiducloud", + "rev": "v1.22.11", "spdx": "MPL-2.0", "vendorHash": null }, - "dme": { - "hash": "sha256-JH9YcM9Fvd1x0BJpLUZCm6a9hZZxySrkFVLP89FO3fU=", - "homepage": "https://registry.terraform.io/providers/DNSMadeEasy/dme", - "owner": "DNSMadeEasy", - "repo": "terraform-provider-dme", - "rev": "v1.0.8", + "bpg_proxmox": { + "hash": "sha256-Pa0JfrZIL1y1O5Ay9D/QDtp8721tQaFjXCIsYX3J/DE=", + "homepage": "https://registry.terraform.io/providers/bpg/proxmox", + "owner": "bpg", + "repo": "terraform-provider-proxmox", + "rev": "v0.84.1", "spdx": "MPL-2.0", - "vendorHash": null + "vendorHash": "sha256-+v4swQIR/QrhhZjeoqrUrZQ5q+9W+6F5k+njTQ7LiLw=" }, - "dns": { - "hash": "sha256-+M4i5tvGrjGRBwB9bFp6YYhbz3qGRcg9W6PhD59Rfbk=", - "homepage": "https://registry.terraform.io/providers/hashicorp/dns", - "owner": "hashicorp", - "repo": "terraform-provider-dns", + "brightbox_brightbox": { + "hash": "sha256-pwFbCP+qDL/4IUfbPRCkddkbsEEeAu7Wp12/mDL0ABA=", + "homepage": "https://registry.terraform.io/providers/brightbox/brightbox", + "owner": "brightbox", + "repo": "terraform-provider-brightbox", "rev": "v3.4.3", "spdx": "MPL-2.0", - "vendorHash": "sha256-xu5t7VaLvbwo/Q7Xb4mkNt7UjU+hzfk7NgfFlxwbIhU=" + "vendorHash": "sha256-/dOiXO2aPkuZaFiwv/6AXJdIADgx8T7eOwvJfBBoqg8=" }, - "dnsimple": { - "hash": "sha256-Zx4M0TKamyfm5Z5EAtiHWQQTNX/VT0EkAaHM7x/2SGk=", - "homepage": "https://registry.terraform.io/providers/dnsimple/dnsimple", - "owner": "dnsimple", - "repo": "terraform-provider-dnsimple", - "rev": "v1.10.0", - "spdx": "MPL-2.0", - "vendorHash": "sha256-M6Z/wMOKhQncuHAhkSPfWT77b14lIZ/sVQT7DmM60FI=" - }, - "docker": { - "hash": "sha256-THMGfpRrPFReRdYusdrJGnUKEUtxy4Pu+HdcceK2FNc=", - "homepage": "https://registry.terraform.io/providers/kreuzwerker/docker", - "owner": "kreuzwerker", - "repo": "terraform-provider-docker", - "rev": "v3.6.2", - "spdx": "MPL-2.0", - "vendorHash": "sha256-duHOqjy8AthXuDX63GO3myJ9TJmV0Ts1a8OsbSOGZWI=" - }, - "doppler": { - "hash": "sha256-8HE9Y4enoUpl5qarmuBHE0pAbK1UF0fPkmBhHj4T1As=", - "homepage": "https://registry.terraform.io/providers/DopplerHQ/doppler", - "owner": "DopplerHQ", - "repo": "terraform-provider-doppler", - "rev": "v1.21.0", - "spdx": "Apache-2.0", - "vendorHash": "sha256-B8mYLd4VdADWoQLWiCM85VQrBfDdlYQ0wkCp9eUBQ4U=" - }, - "elasticsearch": { - "hash": "sha256-a6kHN3w0sQCP+0+ZtFwcg9erfVBYkhNo+yOrnwweGWo=", - "homepage": "https://registry.terraform.io/providers/phillbaker/elasticsearch", - "owner": "phillbaker", - "repo": "terraform-provider-elasticsearch", - "rev": "v2.0.7", - "spdx": "MPL-2.0", - "vendorHash": "sha256-oVTanZpCWs05HwyIKW2ajiBPz1HXOFzBAt5Us+EtTRw=" - }, - "equinix": { - "hash": "sha256-QE8ukiQHZqhSsZyFnInIpnGvsSlFuFMun7paK/Z3HTM=", - "homepage": "https://registry.terraform.io/providers/equinix/equinix", - "owner": "equinix", - "repo": "terraform-provider-equinix", - "rev": "v4.3.0", + "buildkite_buildkite": { + "hash": "sha256-WP1CcGYtyItpMzKvYFiv5q0jQfvB5nSv8suDmSB1tSs=", + "homepage": "https://registry.terraform.io/providers/buildkite/buildkite", + "owner": "buildkite", + "repo": "terraform-provider-buildkite", + "rev": "v1.26.0", "spdx": "MIT", - "vendorHash": "sha256-BzlSPZ11K9wZXd66jh3CAL+5qco6m0Hb/QiVtAi1Ub8=" + "vendorHash": "sha256-nKXQsAu1tHOHnle7G0Bt+CCNU9AGvxIIv6LJ/INiU7g=" }, - "exoscale": { - "hash": "sha256-tTFGYzDwx7VXzS287eNUUjsAuwY/Rh2zuOsGwLT6BRU=", - "homepage": "https://registry.terraform.io/providers/exoscale/exoscale", - "owner": "exoscale", - "repo": "terraform-provider-exoscale", - "rev": "v0.65.1", - "spdx": "MPL-2.0", - "vendorHash": null - }, - "external": { - "hash": "sha256-rHMmGzYvsE5GT0E71UUIXjDG9+v52LI69/gdP2xuI7w=", - "homepage": "https://registry.terraform.io/providers/hashicorp/external", - "owner": "hashicorp", - "repo": "terraform-provider-external", - "rev": "v2.3.5", - "spdx": "MPL-2.0", - "vendorHash": "sha256-xIagZvWtlNpz5SQfxbA7r9ojAeS3CW2pwV337ObKOwU=" - }, - "fastly": { - "hash": "sha256-nevSFpLx1N+rM6ps0jstLem/VdAPIhnTaJefLpfLG/A=", - "homepage": "https://registry.terraform.io/providers/fastly/fastly", - "owner": "fastly", - "repo": "terraform-provider-fastly", - "rev": "v8.3.0", - "spdx": "MPL-2.0", - "vendorHash": "sha256-5T6pwozD0RKDzdd2XAMuHY651jEvo6V6s1gvwYTHTRI=" - }, - "flexibleengine": { - "hash": "sha256-yEZ9JiUSqFFbfqzOOD59ZBv4yFCeUBBKlp6aiUqDqiM=", - "homepage": "https://registry.terraform.io/providers/FlexibleEngineCloud/flexibleengine", - "owner": "FlexibleEngineCloud", - "repo": "terraform-provider-flexibleengine", - "rev": "v1.46.0", - "spdx": "MPL-2.0", - "vendorHash": "sha256-ZbU2z7qUHPR7vDSflesSjgK7x3LYXVe/gnVsy19q6Bs=" - }, - "fortios": { - "hash": "sha256-dQMDGaYG3TDK5FBH8ODAsDcdScoDWWrk1vsWmL7sIPc=", - "homepage": "https://registry.terraform.io/providers/fortinetdev/fortios", - "owner": "fortinetdev", - "repo": "terraform-provider-fortios", - "rev": "1.23.0", - "spdx": "MPL-2.0", - "vendorHash": "sha256-V+D/D+i1xbPp9IAfrAds2rNv5t/aXQxPwH9vY09DsMo=" - }, - "gandi": { - "hash": "sha256-fsCtmwyxkXfOtiZG27VEb010jglK35yr4EynnUWlFog=", - "homepage": "https://registry.terraform.io/providers/go-gandi/gandi", - "owner": "go-gandi", - "repo": "terraform-provider-gandi", - "rev": "v2.3.0", - "spdx": "MPL-2.0", - "vendorHash": "sha256-EiTWJ4bw8IwsRTD9Lt28Up2DXH0oVneO2IaO8VqWtkw=" - }, - "gitea": { - "hash": "sha256-A9jwUtLNT5ikB5iR5qaRHBiTXsmwvJXycpFxciZSeZg=", - "homepage": "https://registry.terraform.io/providers/go-gitea/gitea", - "owner": "go-gitea", - "repo": "terraform-provider-gitea", - "rev": "v0.7.0", - "spdx": "MIT", - "vendorHash": "sha256-/8h2bmesnFz3tav3+iDelZSjp1Z9lreexwcw0WdYekA=" - }, - "github": { - "hash": "sha256-rmIoyGlkw2f56UwD0mfI5MiHPDFDuhtsoPmerIrJcGs=", - "homepage": "https://registry.terraform.io/providers/integrations/github", - "owner": "integrations", - "repo": "terraform-provider-github", - "rev": "v6.6.0", - "spdx": "MIT", - "vendorHash": null - }, - "gitlab": { - "hash": "sha256-wggQtY+E4O/iWo0OrjPlxK8j2aLavRAG31RpOOC08AY=", - "homepage": "https://registry.terraform.io/providers/gitlabhq/gitlab", - "owner": "gitlabhq", - "repo": "terraform-provider-gitlab", - "rev": "v18.4.1", - "spdx": "MPL-2.0", - "vendorHash": "sha256-29uvPCepGHRPohGY7viaPD9VQPPj9XB/plragACC4e4=" - }, - "google": { - "hash": "sha256-lJ5XBL983pKdZdN8scof+uJ16CJAOXp1NIxWmJCa4O0=", - "homepage": "https://registry.terraform.io/providers/hashicorp/google", - "owner": "hashicorp", - "repo": "terraform-provider-google", - "rev": "v7.6.0", - "spdx": "MPL-2.0", - "vendorHash": "sha256-cQybnUaDLVmQrtFkiI5k3OwqN9Oks+J1H2kbkNjO4jc=" - }, - "google-beta": { - "hash": "sha256-YefUWAHgBiZebigcCmn5poVkg6ZxHjILzL5JXhrGKFY=", - "homepage": "https://registry.terraform.io/providers/hashicorp/google-beta", - "owner": "hashicorp", - "repo": "terraform-provider-google-beta", - "rev": "v7.6.0", - "spdx": "MPL-2.0", - "vendorHash": "sha256-Bii3UrY1WbhewgsURxq7gGVqT1WSszFkif0V88hiyZo=" - }, - "grafana": { - "hash": "sha256-KVNwgn7swWXRNJNpXV8oy++s+CrDZhMPDDP40qIZIlY=", - "homepage": "https://registry.terraform.io/providers/grafana/grafana", - "owner": "grafana", - "repo": "terraform-provider-grafana", - "rev": "v4.10.0", - "spdx": "MPL-2.0", - "vendorHash": "sha256-JS0moRxd+Vxzg4Wq5Med4/daVSZPver+JifAdgt2sQk=" - }, - "gridscale": { - "hash": "sha256-gkOAV1iKv7r2OouHAemlresb9sLcjZ5i8tLQazQrgyA=", - "homepage": "https://registry.terraform.io/providers/gridscale/gridscale", - "owner": "gridscale", - "repo": "terraform-provider-gridscale", - "rev": "v2.2.2", - "spdx": "MPL-2.0", - "vendorHash": null - }, - "harbor": { - "hash": "sha256-Z3lytylGY67wOajPPLqnmmhzxoJD1EfjSU0h3yg+kzY=", - "homepage": "https://registry.terraform.io/providers/goharbor/harbor", - "owner": "goharbor", - "repo": "terraform-provider-harbor", - "rev": "v3.11.2", - "spdx": "MIT", - "vendorHash": "sha256-UmlhKa2SVgrhRc1EOO9sEkherIS77CP+hkAL3Y79h3U=" - }, - "hcloud": { - "hash": "sha256-Y7W4pMH9wuiTasobEWtQOZNyeZ6MJKuegveZnlORxm0=", - "homepage": "https://registry.terraform.io/providers/hetznercloud/hcloud", - "owner": "hetznercloud", - "repo": "terraform-provider-hcloud", - "rev": "v1.54.0", - "spdx": "MPL-2.0", - "vendorHash": "sha256-jwDezL9gI6A9pCdD1CUgEOJT8dqVuPX/sFjTO4Jiqs4=" - }, - "helm": { - "hash": "sha256-i4ceWiEXJYL1x9DmqAfcUidiW5+x/sRCxevDz4MnzHs=", - "homepage": "https://registry.terraform.io/providers/hashicorp/helm", - "owner": "hashicorp", - "repo": "terraform-provider-helm", - "rev": "v3.0.2", - "spdx": "MPL-2.0", - "vendorHash": "sha256-sPvX69R2BmlY/KhXZgxCunzseoOkz1h2b8yqekBBn0k=" - }, - "heroku": { - "hash": "sha256-VGx2J7huF05HU/59Hyo2rxwV3SR+kVJWtrfWoRmln2o=", - "homepage": "https://registry.terraform.io/providers/heroku/heroku", - "owner": "heroku", - "repo": "terraform-provider-heroku", - "rev": "v5.3.1", - "spdx": "MPL-2.0", - "vendorHash": null - }, - "hetznerdns": { - "hash": "sha256-wmXZ6+5Ex3G2JUdw2is2VIo/X1X0V1Auw5KmYpGllug=", - "homepage": "https://registry.terraform.io/providers/timohirt/hetznerdns", - "owner": "timohirt", - "repo": "terraform-provider-hetznerdns", - "rev": "v2.2.0", - "spdx": "MPL-2.0", - "vendorHash": "sha256-Bat/S4e5vzT0/XOhJ9zCWLa4IE4owLC6ec1yvEh+c0Y=" - }, - "htpasswd": { - "hash": "sha256-ALTyTTVyS2HHenmk8HVwtQenCmJX05kyXifJTzzmnHE=", - "homepage": "https://registry.terraform.io/providers/loafoe/htpasswd", - "owner": "loafoe", - "repo": "terraform-provider-htpasswd", - "rev": "v1.5.0", - "spdx": "MIT", - "vendorHash": "sha256-6+ZQVWc4/2RoNjQLzetLTl9L8AdbFu2uFmqJ9Kxcc7Q=" - }, - "http": { - "hash": "sha256-IXqKZ9RQP0kZVxc9OfaWglF8GeycSAl5DATdqc8n35g=", - "homepage": "https://registry.terraform.io/providers/hashicorp/http", - "owner": "hashicorp", - "repo": "terraform-provider-http", - "rev": "v3.5.0", - "spdx": "MPL-2.0", - "vendorHash": "sha256-SsEWNIBkgcdTlSrB4hIvRmhMv2eJ2qQaPUmiN09A+NM=" - }, - "huaweicloud": { - "hash": "sha256-uMWYrO5X8+CrafIN+NyYX3C1U2r9JAsAsAG5czlxyDY=", - "homepage": "https://registry.terraform.io/providers/huaweicloud/huaweicloud", - "owner": "huaweicloud", - "repo": "terraform-provider-huaweicloud", - "rev": "v1.79.0", - "spdx": "MPL-2.0", - "vendorHash": null - }, - "hydra": { - "hash": "sha256-A9BemEPLhvYzhksvYRfmhQXY3EEdTxQcmjE9+2+BKqg=", - "homepage": "https://registry.terraform.io/providers/DeterminateSystems/hydra", - "owner": "DeterminateSystems", - "repo": "terraform-provider-hydra", - "rev": "v0.1.2", - "spdx": "MPL-2.0", - "vendorHash": null - }, - "ibm": { - "hash": "sha256-+Ux/Xp598uRpRgBfVucrl8GYkpaKcmZ5h67ExdBEchY=", - "homepage": "https://registry.terraform.io/providers/IBM-Cloud/ibm", - "owner": "IBM-Cloud", - "repo": "terraform-provider-ibm", - "rev": "v1.83.3", - "spdx": "MPL-2.0", - "vendorHash": "sha256-G6kqcQMpNKioBEWNDGIYCJaoYv6EPAbu2Nh/8EkQGAA=" - }, - "icinga2": { - "hash": "sha256-Y/Oq0aTzP+oSKPhHiHY9Leal4HJJm7TNDpcdqkUsCmk=", - "homepage": "https://registry.terraform.io/providers/Icinga/icinga2", - "owner": "Icinga", - "repo": "terraform-provider-icinga2", - "rev": "v0.5.0", - "spdx": "MPL-2.0", - "vendorHash": null - }, - "incus": { - "hash": "sha256-ecTodsExnc96AoyYKutPLNu5UQrVObcWQwFUcv9oCB4=", - "homepage": "https://registry.terraform.io/providers/lxc/incus", - "owner": "lxc", - "repo": "terraform-provider-incus", - "rev": "v0.5.1", - "spdx": "MPL-2.0", - "vendorHash": "sha256-gyU+RiCtf5gl5RDuAalYHgXqvU2sioxnL6ZfOwn6vYE=" - }, - "infoblox": { - "hash": "sha256-uxzWgxetwgzj9L5+yxw2EoMzdx6NbR2kEb4fGw3Wxn0=", - "homepage": "https://registry.terraform.io/providers/infobloxopen/infoblox", - "owner": "infobloxopen", - "repo": "terraform-provider-infoblox", - "rev": "v2.10.0", - "spdx": "MPL-2.0", - "vendorHash": null - }, - "jetstream": { - "hash": "sha256-I9T5PTNiZfCyPnNiqL8yDhJxpLRQpK7ynZmlr682BnY=", - "homepage": "https://registry.terraform.io/providers/nats-io/jetstream", - "owner": "nats-io", - "repo": "terraform-provider-jetstream", - "rev": "v0.2.1", - "spdx": "Apache-2.0", - "vendorHash": "sha256-ctd9V5EXL0c9b4aJ47nfjhqCMTewL55IkjkQ39ShoUk=" - }, - "kafka": { - "hash": "sha256-rTa6c7jAMH027V7h/yUGVGz6TS0PDdObilxU0Vpr6FI=", - "homepage": "https://registry.terraform.io/providers/Mongey/kafka", - "owner": "Mongey", - "repo": "terraform-provider-kafka", - "rev": "v0.13.1", - "spdx": "MIT", - "vendorHash": "sha256-JRqBv5N+i5yhKrC+Eenm1xmwylNF7k/EIJXaklrsFfA=" - }, - "kafka-connect": { - "hash": "sha256-XMGpK22Ww8swvfrnbClxjErVmkBKX3dxdlkjgNJHlCE=", - "homepage": "https://registry.terraform.io/providers/Mongey/kafka-connect", - "owner": "Mongey", - "repo": "terraform-provider-kafka-connect", - "rev": "v0.4.3", - "spdx": "MIT", - "vendorHash": "sha256-5cqj1O57snU+NoVqmWc/KIGnowQNMww+rJxYfIPvHWU=" - }, - "keycloak": { - "hash": "sha256-59+rVoS49w6aGFqpvcgoiYAFebsQLjXbPrhvZHMYV3s=", - "homepage": "https://registry.terraform.io/providers/keycloak/keycloak", - "owner": "keycloak", - "repo": "terraform-provider-keycloak", - "rev": "v5.4.0", - "spdx": "Apache-2.0", - "vendorHash": "sha256-pnOwYupql5EWoA0l72RENXeAQELaFHlDorJLQKJUz+c=" - }, - "kubectl": { - "hash": "sha256-UQ/xvhs7II+EGH5bKdrVC47hp5dhLqQZeqSBz06ho1s=", - "homepage": "https://registry.terraform.io/providers/gavinbunney/kubectl", - "owner": "gavinbunney", - "repo": "terraform-provider-kubectl", - "rev": "v1.19.0", - "spdx": "MPL-2.0", - "vendorHash": "sha256-FcxAh8EOvnT8r1GHu0Oj2C5Jgbr2WPwD7/vY4/qIvTA=" - }, - "kubernetes": { - "hash": "sha256-QVHLGLTzr39liRcM5AKJ0unYoc/DW2elcJWisiHC2pw=", - "homepage": "https://registry.terraform.io/providers/hashicorp/kubernetes", - "owner": "hashicorp", - "repo": "terraform-provider-kubernetes", - "rev": "v2.38.0", - "spdx": "MPL-2.0", - "vendorHash": "sha256-LeMFN4pOJotTTqakEbVelHSTEb4p7CQIuKzeuX3SZUM=" - }, - "launchdarkly": { - "hash": "sha256-U3l2Tf7vcLAz7nZYKaGR0Nv/Qw2HgbGNV7w1dYBvSEc=", - "homepage": "https://registry.terraform.io/providers/launchdarkly/launchdarkly", - "owner": "launchdarkly", - "repo": "terraform-provider-launchdarkly", - "rev": "v2.25.3", - "spdx": "MPL-2.0", - "vendorHash": "sha256-b9+0YLuv9AVszGDQ2v+VbYameN16PCdE3jUhL9efK6M=" - }, - "libvirt": { - "hash": "sha256-6wG6J6SQGxR74gbGZlW5/8zgIqsBUo0Xg/gN0wNppSg=", - "homepage": "https://registry.terraform.io/providers/dmacvicar/libvirt", - "owner": "dmacvicar", - "repo": "terraform-provider-libvirt", - "rev": "v0.8.3", - "spdx": "Apache-2.0", - "vendorHash": "sha256-fP6brpY/wRI1Yjgapzi+FfOci65gxWeOZulXbGdilrE=" - }, - "linode": { - "hash": "sha256-ofgX6ih/UHd1Lm36KgS7BG8QY7ENhywHY2IhQ/ebfqM=", - "homepage": "https://registry.terraform.io/providers/linode/linode", - "owner": "linode", - "repo": "terraform-provider-linode", - "rev": "v3.4.0", - "spdx": "MPL-2.0", - "vendorHash": "sha256-iZGbGd16fHtYKXh25O7LLcrjwm4Ceeak5dTN9t5rZGk=" - }, - "linuxbox": { - "hash": "sha256-svQRz1/PdVLpHoxOam1sfRTwHqgqs4ohJQs3IPMMAM4=", - "homepage": "https://registry.terraform.io/providers/numtide/linuxbox", - "owner": "numtide", - "repo": "terraform-provider-linuxbox", - "rev": "v0.5.8", - "spdx": "BSD-3-Clause", - "vendorHash": "sha256-GxMCY/udIy3c7zLeNeghXtfCUw4+Ll83L/40N4/yVh8=" - }, - "local": { - "hash": "sha256-JXGBZglJwUbclTzsHap8QaQnkjw6rRIsSPL+lpLLLBE=", - "homepage": "https://registry.terraform.io/providers/hashicorp/local", - "owner": "hashicorp", - "repo": "terraform-provider-local", - "rev": "v2.5.3", - "spdx": "MPL-2.0", - "vendorHash": "sha256-AlvcjfvyBwGawUqzba66qF97qoCUMVybKmIrf3jFyi8=" - }, - "lxd": { - "hash": "sha256-ToK0Zua7e4CPm+8ZLIVw+dpt4bbahqWvvCKhjrAeW7s=", - "homepage": "https://registry.terraform.io/providers/terraform-lxd/lxd", - "owner": "terraform-lxd", - "repo": "terraform-provider-lxd", - "rev": "v2.5.0", - "spdx": "MPL-2.0", - "vendorHash": "sha256-zGHbDQhr1UjF6jcK4NHw90eTVrC+R76G8Fg7vJht20c=" - }, - "mailgun": { - "hash": "sha256-fuJnzloJa0S1r3/22Wecbq1oF8oRQP2nrrmwCONHITA=", - "homepage": "https://registry.terraform.io/providers/wgebis/mailgun", - "owner": "wgebis", - "repo": "terraform-provider-mailgun", - "rev": "v0.7.7", - "spdx": "MPL-2.0", - "vendorHash": "sha256-Y6zsbhLNehO3i/BRjKggVhcM15Qesbd6HbARFH/arM8=" - }, - "matchbox": { - "hash": "sha256-B1PxdbqXrB1ioB5utI4LI6rkhwHmaAiYkSxRAcjJnAA=", - "homepage": "https://registry.terraform.io/providers/poseidon/matchbox", - "owner": "poseidon", - "repo": "terraform-provider-matchbox", - "rev": "v0.5.4", - "spdx": "Apache-2.0", - "vendorHash": "sha256-L1wufPa7LPPyOPTL+jFQgiWzJoJYS+fCdw3N0KZqKtc=" - }, - "migadu": { - "hash": "sha256-Ld7+cL/Ei06Z3Lkx6HyrBP0dPX3S9KYPNwnRG86xsRk=", - "homepage": "https://registry.terraform.io/providers/metio/migadu", - "owner": "metio", - "repo": "terraform-provider-migadu", - "rev": "2025.10.2", - "spdx": "0BSD", - "vendorHash": "sha256-3/rZWHBQZMvu1nCM/SCdL0TkJ2cxtOCQqGgIblnR9+k=" - }, - "minio": { - "hash": "sha256-A730CkOsaQArSLYdiUQg3pmrGA8gvYokqiwcL2tDqao=", - "homepage": "https://registry.terraform.io/providers/aminueza/minio", - "owner": "aminueza", - "repo": "terraform-provider-minio", - "rev": "v3.8.0", - "spdx": "AGPL-3.0", - "vendorHash": "sha256-QWBzQXx/dzWZr9dn3LHy8RIvZL1EA9xYqi7Ppzvju7g=" - }, - "mongodbatlas": { - "hash": "sha256-evMjL6I9q80olTkuigJLbAHTDU4nYXNaMVf8cq6yZsM=", - "homepage": "https://registry.terraform.io/providers/mongodb/mongodbatlas", - "owner": "mongodb", - "repo": "terraform-provider-mongodbatlas", - "rev": "v2.0.1", - "spdx": "MPL-2.0", - "vendorHash": "sha256-BWItAEI+ST5wN/CyTHljFJvutJiDHYjV4HEeLtmhC2o=" - }, - "namecheap": { - "hash": "sha256-fHH9sHI1mqQ9q9nX9DHJ0qfEfmDB4/2uzyVvUuIAF18=", - "homepage": "https://registry.terraform.io/providers/namecheap/namecheap", - "owner": "namecheap", - "repo": "terraform-provider-namecheap", - "rev": "v2.2.0", - "spdx": "Apache-2.0", - "vendorHash": null - }, - "neon": { - "hash": "sha256-D1KWC2D4OLMUSWKzQmiZaDrATCv4SEUWwk6SK/o1U5M=", - "homepage": "https://registry.terraform.io/providers/kislerdm/neon", - "owner": "kislerdm", - "repo": "terraform-provider-neon", - "rev": "v0.9.0", - "spdx": "MPL-2.0", - "vendorHash": "sha256-8WY2iEOFOwx7zDMps5cctxzv1stRseS/OUaHkMDuBYs=" - }, - "netlify": { - "hash": "sha256-7U+hHN/6GqcbI1gX7L01YqVjlUgvdfhgpXvLF2lwbkA=", - "homepage": "https://registry.terraform.io/providers/AegirHealth/netlify", - "owner": "AegirHealth", - "repo": "terraform-provider-netlify", - "rev": "v0.6.12", - "spdx": "MPL-2.0", - "vendorHash": null - }, - "newrelic": { - "hash": "sha256-XF62BlLPEF9CYPO00HV05T6djLyMvyC/N4HlYg5MM0I=", - "homepage": "https://registry.terraform.io/providers/newrelic/newrelic", - "owner": "newrelic", - "repo": "terraform-provider-newrelic", - "rev": "v3.70.5", - "spdx": "MPL-2.0", - "vendorHash": "sha256-45psSf69IetY0o8LjBDEv2GnOxaOzaQcPCnV2YHPXGs=" - }, - "nexus": { - "hash": "sha256-Lm5CZ+eBDUNIL2KuK/iKc5dTif7P+E9II714vwvYuyU=", - "homepage": "https://registry.terraform.io/providers/datadrivers/nexus", - "owner": "datadrivers", - "repo": "terraform-provider-nexus", - "rev": "v2.6.0", - "spdx": "MPL-2.0", - "vendorHash": "sha256-pez5anuq3hHXH7XMthT7y8+rjCHsMV3Vqk/DBCpbkdg=" - }, - "nomad": { - "hash": "sha256-+lWAVb9ffyTfnkR3qZzgggRVjizdrgQ96Tj/K4ngZWQ=", - "homepage": "https://registry.terraform.io/providers/hashicorp/nomad", - "owner": "hashicorp", - "repo": "terraform-provider-nomad", - "rev": "v2.5.1", - "spdx": "MPL-2.0", - "vendorHash": "sha256-CIR59EIgC5kkwfITQYrzoU8quCx5iCDRNOdYphVVk6Y=" - }, - "ns1": { - "hash": "sha256-JJ+Zcf7r8bB1a8l+DtHhjT4Ce2VqRIkD1fS+EWI6QtI=", - "homepage": "https://registry.terraform.io/providers/ns1-terraform/ns1", - "owner": "ns1-terraform", - "repo": "terraform-provider-ns1", - "rev": "v2.7.1", - "spdx": "MPL-2.0", - "vendorHash": "sha256-HC2MCVF3gS4nXKplC1pGrdjbhjRzr03ajqZ7pQIgSOc=" - }, - "null": { - "hash": "sha256-hPAcFWkeK1vjl1Cg/d7FaZpPhyU3pkU6VBIwxX2gEvA=", - "homepage": "https://registry.terraform.io/providers/hashicorp/null", - "owner": "hashicorp", - "repo": "terraform-provider-null", - "rev": "v3.2.4", - "spdx": "MPL-2.0", - "vendorHash": "sha256-ssmAveYUVI8z/1UWNeaMX0qdUewowCHNufJIFMirdVg=" - }, - "nutanix": { - "hash": "sha256-nk5wdbAzgBJ6gyYSXZAiNdjx/XQ6XldAMsjb8yv+y7w=", - "homepage": "https://registry.terraform.io/providers/nutanix/nutanix", - "owner": "nutanix", - "repo": "terraform-provider-nutanix", - "rev": "v2.3.1", - "spdx": "MPL-2.0", - "vendorHash": "sha256-ByB1ztK2/1pTFeO34eXVyQSSbe35qqoCeWe6MPZN7vY=" - }, - "oci": { - "hash": "sha256-LnR1bXTr+j7tKALZll/dwUI+o9TepPGS0mAHGxYK7g0=", - "homepage": "https://registry.terraform.io/providers/oracle/oci", - "owner": "oracle", - "repo": "terraform-provider-oci", - "rev": "v7.22.0", - "spdx": "MPL-2.0", - "vendorHash": null - }, - "okta": { - "hash": "sha256-O4zZ+D/+GTGf7Q7hHKlAcBg/0C7nCrhCV0St+LohedA=", - "homepage": "https://registry.terraform.io/providers/okta/okta", - "owner": "okta", - "repo": "terraform-provider-okta", - "rev": "v6.2.0", - "spdx": "MPL-2.0", - "vendorHash": "sha256-oE4nB0dFsiz82kj9QOr0vIjD3aBR+jxeAW5/ZWUxp44=" - }, - "oktaasa": { - "hash": "sha256-2LhxgowqKvDDDOwdznusL52p2DKP+UiXALHcs9ZQd0U=", - "homepage": "https://registry.terraform.io/providers/oktadeveloper/oktaasa", - "owner": "oktadeveloper", - "repo": "terraform-provider-oktaasa", - "rev": "v1.0.1", - "spdx": "MPL-2.0", - "vendorHash": null - }, - "onepassword": { - "hash": "sha256-u2nSzEKD0o/e0AzeHdKQj3+h7mAt6r5cxaKsPn6nRGo=", - "homepage": "https://registry.terraform.io/providers/1Password/onepassword", - "owner": "1Password", - "repo": "terraform-provider-onepassword", - "rev": "v2.1.2", - "spdx": "MIT", - "vendorHash": null - }, - "opennebula": { - "hash": "sha256-ClxUDFacloovD4qKumIWEL+QWyb7JD58w2WyFItPFM8=", - "homepage": "https://registry.terraform.io/providers/OpenNebula/opennebula", - "owner": "OpenNebula", - "repo": "terraform-provider-opennebula", - "rev": "v1.5.0", - "spdx": "MPL-2.0", - "vendorHash": "sha256-ofzbDmivXgH1i1Gjhpyp0bk3FDs5SnxwoRuNAWyMqyI=" - }, - "openstack": { - "hash": "sha256-vACjj5wo2zqNls0VgKeylEW5rrsNv1jz5iKoEywBAEc=", - "homepage": "https://registry.terraform.io/providers/terraform-provider-openstack/openstack", - "owner": "terraform-provider-openstack", - "repo": "terraform-provider-openstack", - "rev": "v3.3.2", - "spdx": "MPL-2.0", - "vendorHash": "sha256-AlB9tC3KejgUAjjT2pY7Q2mTS/AV4QRusSnyPiOheXE=" - }, - "opentelekomcloud": { - "hash": "sha256-3+ravOgTUzGXKd/e12opM/xcm0Vqaz4lLbpo3MLetrg=", - "homepage": "https://registry.terraform.io/providers/opentelekomcloud/opentelekomcloud", - "owner": "opentelekomcloud", - "repo": "terraform-provider-opentelekomcloud", - "rev": "v1.36.49", - "spdx": "MPL-2.0", - "vendorHash": "sha256-Nvq1/t5TlLSBon8jlPmPUduQtFGKBLQRTZKBmpYHV1M=" - }, - "openwrt": { - "hash": "sha256-z78IceF2VJtiQpVqC+rTUDsph73LZawIK+az3rEhljA=", - "homepage": "https://registry.terraform.io/providers/joneshf/openwrt", - "owner": "joneshf", - "repo": "terraform-provider-openwrt", - "rev": "v0.0.20", - "spdx": "MPL-2.0", - "vendorHash": "sha256-jHZMBhXu7fJaQFzhxAYGQJrzm2EY1XdGHyoDsyOCAVo=" - }, - "opsgenie": { - "hash": "sha256-+msy9kPAryR0Ll5jKOd47DMjeMxEdSIfKZZKVHohQGY=", - "homepage": "https://registry.terraform.io/providers/opsgenie/opsgenie", - "owner": "opsgenie", - "repo": "terraform-provider-opsgenie", - "rev": "v0.6.37", - "spdx": "MPL-2.0", - "vendorHash": null - }, - "ovh": { - "hash": "sha256-G6pLpThqKuCDx4QdTYvJYpba56ZWaxPML/3H1oslw34=", - "homepage": "https://registry.terraform.io/providers/ovh/ovh", - "owner": "ovh", - "repo": "terraform-provider-ovh", - "rev": "v2.8.0", - "spdx": "MPL-2.0", - "vendorHash": null - }, - "pagerduty": { - "hash": "sha256-3Dv2EOh/4xa7rjJBikIhbSQaskncGjxHYaS6WqHriKo=", - "homepage": "https://registry.terraform.io/providers/PagerDuty/pagerduty", - "owner": "PagerDuty", - "repo": "terraform-provider-pagerduty", - "rev": "v3.30.2", - "spdx": "MPL-2.0", - "vendorHash": null - }, - "pass": { + "camptocamp_pass": { "hash": "sha256-GQ2g7VyK+eeBqW3LMR4U0gMYsvQnG3y+KEKKkvnmfsk=", "homepage": "https://registry.terraform.io/providers/camptocamp/pass", "owner": "camptocamp", @@ -1001,214 +135,7 @@ "spdx": "MPL-2.0", "vendorHash": "sha256-Koojva0MAw5WC942VbxZ6d1Pf1VwFvJMmp16TsHRS3w=" }, - "pocketid": { - "hash": "sha256-rUCjvJKLZE+cSsHZdntBF9WpZDtIkVkukmLGEvGVC8s=", - "homepage": "https://registry.terraform.io/providers/Trozz/pocketid", - "owner": "Trozz", - "repo": "terraform-provider-pocketid", - "rev": "v0.1.5", - "spdx": "MIT", - "vendorHash": "sha256-0oX7f4L5eljmOL8+g6KYdBcoIwng87+pi3XCXKDEb3w=" - }, - "porkbun": { - "hash": "sha256-Vi73nRH32fJEUXGGV+RKaGNpsIv6PuPY0HqIkYDdcBY=", - "homepage": "https://registry.terraform.io/providers/cullenmcdermott/porkbun", - "owner": "cullenmcdermott", - "repo": "terraform-provider-porkbun", - "rev": "v0.3.0", - "spdx": "MPL-2.0", - "vendorHash": "sha256-vT1n4FN0s9rQFj4HuXPm6lvNdzWZMyrzeWAanHOQqCg=" - }, - "postgresql": { - "hash": "sha256-q4duDY9//BK5Jkg6stn0Ig4DJfzkc0gAkUua18XPgSM=", - "homepage": "https://registry.terraform.io/providers/cyrilgdn/postgresql", - "owner": "cyrilgdn", - "repo": "terraform-provider-postgresql", - "rev": "v1.26.0", - "spdx": "MPL-2.0", - "vendorHash": "sha256-wUd5cFXX/oc96WFyNKgQxw8kvYDiqwpDM84wbNml7LA=" - }, - "powerdns": { - "hash": "sha256-NtJs2oNJbjUYNFsbrfo2RYhqOlKA15GJt9gi1HuTIw0=", - "homepage": "https://registry.terraform.io/providers/pan-net/powerdns", - "owner": "pan-net", - "repo": "terraform-provider-powerdns", - "rev": "v1.5.0", - "spdx": "MPL-2.0", - "vendorHash": null - }, - "project": { - "hash": "sha256-cDq77FvYOSRXcm8haec4LvnnUptgcj7gdc1/ohFuD3g=", - "homepage": "https://registry.terraform.io/providers/jfrog/project", - "owner": "jfrog", - "repo": "terraform-provider-project", - "rev": "v1.9.3", - "spdx": "Apache-2.0", - "vendorHash": "sha256-mnKXYT0GfIS+ODzBCS9l4rLF1ugadesmpgdOgj74nLg=" - }, - "proxmox": { - "hash": "sha256-1aKKlOIk1mH4yx66eD635d1IaUWXIiBGHEt4A2F2mGM=", - "homepage": "https://registry.terraform.io/providers/Telmate/proxmox", - "owner": "Telmate", - "repo": "terraform-provider-proxmox", - "rev": "v3.0.2-rc04", - "spdx": "MIT", - "vendorHash": "sha256-Hzq97ElAjs7Y4tmJ2x7+g4j74MEdEvI2bD8pkvi5ZXg=" - }, - "rabbitmq": { - "hash": "sha256-313I7E3mMiZfa7i5lZGIZolPMcGuSqhrTWVt3MVpEGA=", - "homepage": "https://registry.terraform.io/providers/cyrilgdn/rabbitmq", - "owner": "cyrilgdn", - "repo": "terraform-provider-rabbitmq", - "rev": "v1.10.1", - "spdx": "MPL-2.0", - "vendorHash": "sha256-3o6YRDrq4rQhNAFyqiGJrAoxuAykWw85OExRGSE3kGI=" - }, - "rancher2": { - "hash": "sha256-E1E7xrQUOGbGV1xNpZFrIql6zgfzr3jmCbIFREbJdwE=", - "homepage": "https://registry.terraform.io/providers/rancher/rancher2", - "owner": "rancher", - "repo": "terraform-provider-rancher2", - "rev": "v8.2.1", - "spdx": "MPL-2.0", - "vendorHash": "sha256-M2lJKmIR66lQKFkInjizn68ax2Gq4sim5Y3vZKyDhZ8=" - }, - "random": { - "hash": "sha256-tdTVqSJmQ6Ht3kdoYMxhoRN+XJqvu8BPVB0VQghcDVs=", - "homepage": "https://registry.terraform.io/providers/hashicorp/random", - "owner": "hashicorp", - "repo": "terraform-provider-random", - "rev": "v3.7.2", - "spdx": "MPL-2.0", - "vendorHash": "sha256-jyfzk3vbgZwHlyiFFw1mhD+us/7WNatUQTGN4WsrfgE=" - }, - "remote": { - "hash": "sha256-9Q67XRZwJkTrOQZ0IXiMWKLCJgJ/woDL9U+3yBHGZG0=", - "homepage": "https://registry.terraform.io/providers/tenstad/remote", - "owner": "tenstad", - "repo": "terraform-provider-remote", - "rev": "v0.2.1", - "spdx": "MPL-2.0", - "vendorHash": "sha256-vsnihN98O5RzMZk5YNycCnjpvxklQoLbZolCJXbJRMU=" - }, - "rootly": { - "hash": "sha256-HlUjEeyomuLqlKFq5U+dpgyBOxrxHALqywVbJM9Fm/s=", - "homepage": "https://registry.terraform.io/providers/rootlyhq/rootly", - "owner": "rootlyhq", - "repo": "terraform-provider-rootly", - "rev": "v4.3.2", - "spdx": "MPL-2.0", - "vendorHash": "sha256-auyQLDDQ+tfMQCqICDR5tfvaYrO89Eani7lAsfoPwwU=" - }, - "routeros": { - "hash": "sha256-k+q4n20bvYK7nn9ZGQEQH70xt6ugNKzK58XyzwrKh0Q=", - "homepage": "https://registry.terraform.io/providers/terraform-routeros/routeros", - "owner": "terraform-routeros", - "repo": "terraform-provider-routeros", - "rev": "v1.88.0", - "spdx": "MPL-2.0", - "vendorHash": "sha256-gkXP+0w5PDscLaiNK+WsJxz3eYhae5ajxHUmkYuBvwI=" - }, - "rundeck": { - "hash": "sha256-g8unbz8+UGLiAOJju6E2bLkygvZgHkv173PdMDefmrc=", - "homepage": "https://registry.terraform.io/providers/rundeck/rundeck", - "owner": "rundeck", - "repo": "terraform-provider-rundeck", - "rev": "v0.5.2", - "spdx": "MPL-2.0", - "vendorHash": null - }, - "sakuracloud": { - "hash": "sha256-hS4hXmi30yiIkWNqXKhuIE3UtzcWrfu4w6XR6B9Vebc=", - "homepage": "https://registry.terraform.io/providers/sacloud/sakuracloud", - "owner": "sacloud", - "repo": "terraform-provider-sakuracloud", - "rev": "v2.30.0", - "spdx": "Apache-2.0", - "vendorHash": "sha256-at8i4gCFrJxE9fVIL5uI7iSFex0gLXu1SnlPKlZAmrY=" - }, - "scaleway": { - "hash": "sha256-FT9V0qAs6NSULqOMsW9uolc1WgueUnU4vfL4rntMA1A=", - "homepage": "https://registry.terraform.io/providers/scaleway/scaleway", - "owner": "scaleway", - "repo": "terraform-provider-scaleway", - "rev": "v2.60.4", - "spdx": "MPL-2.0", - "vendorHash": "sha256-OcKCtH4ciGrKwidTQC+yTWMyMfShJMsTnsKOyBxwLDg=" - }, - "secret": { - "hash": "sha256-MmAnA/4SAPqLY/gYcJSTnEttQTsDd2kEdkQjQj6Bb+A=", - "homepage": "https://registry.terraform.io/providers/numtide/secret", - "owner": "numtide", - "repo": "terraform-provider-secret", - "rev": "v1.2.1", - "spdx": "MPL-2.0", - "vendorHash": null - }, - "selectel": { - "hash": "sha256-J0hz5qtT3bBKqoZ9SkZn0oxix1fIQRmwv7feME7CljM=", - "homepage": "https://registry.terraform.io/providers/selectel/selectel", - "owner": "selectel", - "repo": "terraform-provider-selectel", - "rev": "v6.8.0", - "spdx": "MPL-2.0", - "vendorHash": "sha256-TQXj2Em665zhCqXiT2BG1xxvVCo0/G2SaQKUbqGwcQM=" - }, - "sentry": { - "hash": "sha256-b5a0++mu6roN6VuJaBZEczfqA6Stt+a7fTOLGLvqPeQ=", - "homepage": "https://registry.terraform.io/providers/jianyuan/sentry", - "owner": "jianyuan", - "repo": "terraform-provider-sentry", - "rev": "v0.14.6", - "spdx": "MIT", - "vendorHash": "sha256-67xoILi88FEN005tk8Z3ggc3ggfuS1AHthYglqvOLE4=" - }, - "shell": { - "hash": "sha256-LTWEdXxi13sC09jh+EFZ6pOi1mzuvgBz5vceIkNE/JY=", - "homepage": "https://registry.terraform.io/providers/scottwinkler/shell", - "owner": "scottwinkler", - "repo": "terraform-provider-shell", - "rev": "v1.7.10", - "spdx": "MPL-2.0", - "vendorHash": "sha256-MIO0VHofPtKPtynbvjvEukMNr5NXHgk7BqwIhbc9+u0=" - }, - "signalfx": { - "hash": "sha256-Lx7L9S6uw++51LehLJSESJXXjLUhpMP4LRVGme85y6k=", - "homepage": "https://registry.terraform.io/providers/splunk-terraform/signalfx", - "owner": "splunk-terraform", - "repo": "terraform-provider-signalfx", - "rev": "v9.21.2", - "spdx": "MPL-2.0", - "vendorHash": "sha256-TMoZ1uR7G9oC7/9CiwC9rIJazqB9g6Xb+vxvYX2T9RY=" - }, - "skytap": { - "hash": "sha256-JII4czazo6Di2sad1uFHMKDO2gWgZlQE8l/+IRYHQHU=", - "homepage": "https://registry.terraform.io/providers/skytap/skytap", - "owner": "skytap", - "repo": "terraform-provider-skytap", - "rev": "v0.15.1", - "spdx": "MPL-2.0", - "vendorHash": null - }, - "slack": { - "hash": "sha256-efYNaDvy9cQmR4VhUABF+ozAh6M3y+em8bQtHlU7A2o=", - "homepage": "https://registry.terraform.io/providers/pablovarela/slack", - "owner": "pablovarela", - "repo": "terraform-provider-slack", - "rev": "v1.2.2", - "spdx": "GPL-3.0", - "vendorHash": "sha256-F1AuO/dkldEDRvkwrbq2EjByxjg3K2rohZAM4DzKPUw=" - }, - "snowflake": { - "hash": "sha256-5vhCej98gkq8rQqAfNt04fWKvjFCuNp2lUmlXJrBXCY=", - "homepage": "https://registry.terraform.io/providers/Snowflake-Labs/snowflake", - "owner": "Snowflake-Labs", - "repo": "terraform-provider-snowflake", - "rev": "v1.0.5", - "spdx": "MIT", - "vendorHash": "sha256-skswuFKhN4FFpIunbom9rM/FVRJVOFb1WwHeAIaEjn8=" - }, - "sops": { + "carlpett_sops": { "hash": "sha256-0dYL/4R3nb9pjAjooilRNEgUmDwxCNLUwxdsMyHfTgc=", "homepage": "https://registry.terraform.io/providers/carlpett/sops", "owner": "carlpett", @@ -1217,97 +144,495 @@ "spdx": "MPL-2.0", "vendorHash": "sha256-iEQdSvQOCwvxhqh+veQ59uDVoXjCxsysxzkF4DHAf1E=" }, - "spacelift": { - "hash": "sha256-pYe8xmqudCkRvXNHJ4bSm9uitcDfpRlaGij7CrjQjd8=", - "homepage": "https://registry.terraform.io/providers/spacelift-io/spacelift", - "owner": "spacelift-io", - "repo": "terraform-provider-spacelift", - "rev": "v1.34.0", - "spdx": "MIT", - "vendorHash": "sha256-DLiS2fqr/gNdZGkhvqjdgpICY0QTlE/Ejl3m29Vanm4=" + "checkly_checkly": { + "hash": "sha256-nKD9qjIRudq/MK+c8eC+hv8oDiW+ycYVnDO8+DHg3W4=", + "homepage": "https://registry.terraform.io/providers/checkly/checkly", + "owner": "checkly", + "repo": "terraform-provider-checkly", + "rev": "v1.14.0", + "spdx": null, + "vendorHash": "sha256-Lz8ixBnWqecxBqS+XVrpkVg1X2Ew28axO+jmo+Zb8cE=" }, - "spotinst": { - "hash": "sha256-bbQ7WDizMnCF95E/iXOSSx0e5K2wMtUW39OxT/45Jn4=", - "homepage": "https://registry.terraform.io/providers/spotinst/spotinst", - "owner": "spotinst", - "repo": "terraform-provider-spotinst", - "rev": "v1.228.0", - "spdx": "MPL-2.0", - "vendorHash": "sha256-huHeWKzq/4cHAU4P7q9bOiJ2cAFqevZ80BsCyPiujxw=" - }, - "ssh": { - "hash": "sha256-1UN5QJyjCuxs2vQYlSuz2jsu/HgGTxOoWWRcv4qcwow=", - "homepage": "https://registry.terraform.io/providers/loafoe/ssh", - "owner": "loafoe", - "repo": "terraform-provider-ssh", - "rev": "v2.7.0", - "spdx": "MIT", - "vendorHash": "sha256-vcuUt3WIo1TnLApch410JgtyCzliQRYMQQQ2Z9diDZ8=" - }, - "statuscake": { - "hash": "sha256-zXBZZA+2uRN2FeGrayq0a4EBk7T+PvlBIwbuxwM7yBc=", - "homepage": "https://registry.terraform.io/providers/StatusCakeDev/statuscake", - "owner": "StatusCakeDev", - "repo": "terraform-provider-statuscake", - "rev": "v2.2.2", - "spdx": "MPL-2.0", - "vendorHash": "sha256-9M1DsE/FPQK8TG7xCJWbU3HAJCK3p/7lxdzjO1oAfWs=" - }, - "sumologic": { - "hash": "sha256-0vWAKROcci1v9QRnBEyN5o9kD3c3YYAKimixRbC3mpk=", - "homepage": "https://registry.terraform.io/providers/SumoLogic/sumologic", - "owner": "SumoLogic", - "repo": "terraform-provider-sumologic", - "rev": "v3.1.6", - "spdx": "MPL-2.0", - "vendorHash": "sha256-IR6KjFW5GbsOIm3EEFyx3ctwhbifZlcNaZeGhbeK/Wo=" - }, - "sysdig": { - "hash": "sha256-nLZgUNWv2e3yTl7/ntSP//BNAaidJxzYA5+v2pJCYDM=", - "homepage": "https://registry.terraform.io/providers/sysdiglabs/sysdig", - "owner": "sysdiglabs", - "repo": "terraform-provider-sysdig", - "rev": "v2.1.0", - "spdx": "MPL-2.0", - "vendorHash": "sha256-rWiafaFE1RolO9JUN1WoW4EWJjR7kpfeVEOTLf21j50=" - }, - "tailscale": { - "hash": "sha256-3sStrkhEZqtR+G5kTFSx++Yxa26h00Y2fa8DI6/8ftY=", - "homepage": "https://registry.terraform.io/providers/tailscale/tailscale", - "owner": "tailscale", - "repo": "terraform-provider-tailscale", - "rev": "v0.22.0", - "spdx": "MIT", - "vendorHash": "sha256-Di4Mc67GrGue0fN47APjJKiWSCw5MRuYF4tS9hP6HLw=" - }, - "talos": { - "hash": "sha256-PPD4blyXt4/IalzwEn4+lvuD1Qx7VuUD/CUJILDRI5k=", - "homepage": "https://registry.terraform.io/providers/siderolabs/talos", - "owner": "siderolabs", - "repo": "terraform-provider-talos", - "rev": "v0.9.0", - "spdx": "MPL-2.0", - "vendorHash": "sha256-J2fLyYvlnefFIaJ6UwRfJ5nas86JCuOHAdWalr9T9fw=" - }, - "temporalcloud": { - "hash": "sha256-hHHZ+5LF5AoDB2JZyPRce6oEtOZOGi8lYNgbTlAqTuA=", - "homepage": "https://registry.terraform.io/providers/temporalio/temporalcloud", - "owner": "temporalio", - "repo": "terraform-provider-temporalcloud", - "rev": "v1.1.1", - "spdx": "MPL-2.0", - "vendorHash": "sha256-9GjhP/Oh2HlVuMcuXFhS7MUmF3eS4qlUsW5XhugaK14=" - }, - "tencentcloud": { - "hash": "sha256-SfkTyjf0sPrVcOs27JYuLu4ebjelsVUV/L061KU1xOs=", - "homepage": "https://registry.terraform.io/providers/tencentcloudstack/tencentcloud", - "owner": "tencentcloudstack", - "repo": "terraform-provider-tencentcloud", - "rev": "v1.82.29", + "ciscodevnet_aci": { + "hash": "sha256-+aD4M07xXMTbvp69IuGlO3rSkVEi5NVe5fqEPkWNeM0=", + "homepage": "https://registry.terraform.io/providers/CiscoDevNet/aci", + "owner": "CiscoDevNet", + "repo": "terraform-provider-aci", + "rev": "v2.17.0", "spdx": "MPL-2.0", "vendorHash": null }, - "tfe": { + "ciscodevnet_ciscoasa": { + "hash": "sha256-xzc44FEy2MPo51Faq/VFwg411JK9e0kQucpt0vdN8yg=", + "homepage": "https://registry.terraform.io/providers/CiscoDevNet/ciscoasa", + "owner": "CiscoDevNet", + "repo": "terraform-provider-ciscoasa", + "rev": "v1.3.0", + "spdx": "MPL-2.0", + "vendorHash": null + }, + "clementblaise_age": { + "hash": "sha256-bJrzjvkrCX93bNqCA+FdRibHnAw6cb61StqtwUY5ok4=", + "homepage": "https://registry.terraform.io/providers/clementblaise/age", + "owner": "clementblaise", + "repo": "terraform-provider-age", + "rev": "v0.1.1", + "spdx": "MPL-2.0", + "vendorHash": "sha256-jK7JuARpoxq7hvq5+vTtUwcYot0YqlOZdtDwq4IqKvk=" + }, + "cloudamqp_cloudamqp": { + "hash": "sha256-WjmZTm04m0iTrXg2/B4I64ccXnfT+qYHZzaYgnJRy3c=", + "homepage": "https://registry.terraform.io/providers/cloudamqp/cloudamqp", + "owner": "cloudamqp", + "repo": "terraform-provider-cloudamqp", + "rev": "v1.37.0", + "spdx": "MPL-2.0", + "vendorHash": "sha256-p/vZYmNBkUGHjZHYzmixOzOWi55YUrbbEdVbOeX1JIs=" + }, + "cloudflare_cloudflare": { + "hash": "sha256-Lc9bC1dM4wNe+ZN2EYFRYfoZosocBEOI9SHvxJIOQCY=", + "homepage": "https://registry.terraform.io/providers/cloudflare/cloudflare", + "owner": "cloudflare", + "repo": "terraform-provider-cloudflare", + "rev": "v5.11.0", + "spdx": "Apache-2.0", + "vendorHash": "sha256-N1vG3U7gxEbVbBax7g6AfHr2Aj1ypVefsEIuvZyLPYQ=" + }, + "cloudfoundry-community_cloudfoundry": { + "hash": "sha256-1nYncJLVU/f9WD6Quh9IieIXgixPzbPk4zbtI1zmf9g=", + "homepage": "https://registry.terraform.io/providers/cloudfoundry-community/cloudfoundry", + "owner": "cloudfoundry-community", + "proxyVendor": true, + "repo": "terraform-provider-cloudfoundry", + "rev": "v0.52.0", + "spdx": "MPL-2.0", + "vendorHash": "sha256-6MKWpiDq4yI3mfIJyzEsWLa7gi0+DScI5jKcOcM6Qs0=" + }, + "cloudposse_utils": { + "hash": "sha256-TcCDv6IB6Z4llvogKWasAK4u2NFsOG4UKAUERDH6SXg=", + "homepage": "https://registry.terraform.io/providers/cloudposse/utils", + "owner": "cloudposse", + "repo": "terraform-provider-utils", + "rev": "v1.31.0", + "spdx": "Apache-2.0", + "vendorHash": "sha256-djz3kNV+13Sz9prRPhWaWi50hvYXq3I3cp4neLexeEs=" + }, + "cloudscale-ch_cloudscale": { + "hash": "sha256-uqELnAcx72lIIUGEiO7y9lXhiyNgThmCiMtC/EKFpTA=", + "homepage": "https://registry.terraform.io/providers/cloudscale-ch/cloudscale", + "owner": "cloudscale-ch", + "repo": "terraform-provider-cloudscale", + "rev": "v5.0.0", + "spdx": "MIT", + "vendorHash": "sha256-elNXA2PH6mDolyuLhUsVBDCiL/ydZfi7LAVPjwnbMIw=" + }, + "constellix_constellix": { + "deleteVendor": true, + "hash": "sha256-yDXZ+lizDK+Ds8/Z3jfNLjO7fvlfRhx5y88bMLZCaj0=", + "homepage": "https://registry.terraform.io/providers/Constellix/constellix", + "owner": "Constellix", + "repo": "terraform-provider-constellix", + "rev": "v0.4.6", + "spdx": "MPL-2.0", + "vendorHash": "sha256-UJHDX/vx3n/RTuQ50Y6TAhpEEFk9yBoaz8yK02E8Fhw=" + }, + "cullenmcdermott_porkbun": { + "hash": "sha256-Vi73nRH32fJEUXGGV+RKaGNpsIv6PuPY0HqIkYDdcBY=", + "homepage": "https://registry.terraform.io/providers/cullenmcdermott/porkbun", + "owner": "cullenmcdermott", + "repo": "terraform-provider-porkbun", + "rev": "v0.3.0", + "spdx": "MPL-2.0", + "vendorHash": "sha256-vT1n4FN0s9rQFj4HuXPm6lvNdzWZMyrzeWAanHOQqCg=" + }, + "cyrilgdn_postgresql": { + "hash": "sha256-q4duDY9//BK5Jkg6stn0Ig4DJfzkc0gAkUua18XPgSM=", + "homepage": "https://registry.terraform.io/providers/cyrilgdn/postgresql", + "owner": "cyrilgdn", + "repo": "terraform-provider-postgresql", + "rev": "v1.26.0", + "spdx": "MPL-2.0", + "vendorHash": "sha256-wUd5cFXX/oc96WFyNKgQxw8kvYDiqwpDM84wbNml7LA=" + }, + "cyrilgdn_rabbitmq": { + "hash": "sha256-313I7E3mMiZfa7i5lZGIZolPMcGuSqhrTWVt3MVpEGA=", + "homepage": "https://registry.terraform.io/providers/cyrilgdn/rabbitmq", + "owner": "cyrilgdn", + "repo": "terraform-provider-rabbitmq", + "rev": "v1.10.1", + "spdx": "MPL-2.0", + "vendorHash": "sha256-3o6YRDrq4rQhNAFyqiGJrAoxuAykWw85OExRGSE3kGI=" + }, + "datadog_datadog": { + "hash": "sha256-J3fkSivj89bLNu+4HHd+9Q4tI731jTTozGNSgxbuwug=", + "homepage": "https://registry.terraform.io/providers/DataDog/datadog", + "owner": "DataDog", + "repo": "terraform-provider-datadog", + "rev": "v3.75.0", + "spdx": "MPL-2.0", + "vendorHash": "sha256-DzJGSfqDOteTX+rQJ7NY/GvAaGhNAhOzE91Je40UhnU=" + }, + "datadrivers_nexus": { + "hash": "sha256-Lm5CZ+eBDUNIL2KuK/iKc5dTif7P+E9II714vwvYuyU=", + "homepage": "https://registry.terraform.io/providers/datadrivers/nexus", + "owner": "datadrivers", + "repo": "terraform-provider-nexus", + "rev": "v2.6.0", + "spdx": "MPL-2.0", + "vendorHash": "sha256-pez5anuq3hHXH7XMthT7y8+rjCHsMV3Vqk/DBCpbkdg=" + }, + "denoland_deno": { + "hash": "sha256-7IvJrhXMeAmf8e21QBdYNSJyVMEzLpat4Tm4zHWglW8=", + "homepage": "https://registry.terraform.io/providers/denoland/deno", + "owner": "denoland", + "repo": "terraform-provider-deno", + "rev": "v0.1.0", + "spdx": "MPL-2.0", + "vendorHash": "sha256-mJXQVfCmW7ssFCrrRSiNb5Vg2QnS9NoBCgZlDDPMoEU=" + }, + "determinatesystems_hydra": { + "hash": "sha256-A9BemEPLhvYzhksvYRfmhQXY3EEdTxQcmjE9+2+BKqg=", + "homepage": "https://registry.terraform.io/providers/DeterminateSystems/hydra", + "owner": "DeterminateSystems", + "repo": "terraform-provider-hydra", + "rev": "v0.1.2", + "spdx": "MPL-2.0", + "vendorHash": null + }, + "digitalocean_digitalocean": { + "hash": "sha256-Twj59NRaUwx1YsgzAQm7XYbOZaJlJ/pDLzP/jam4D/8=", + "homepage": "https://registry.terraform.io/providers/digitalocean/digitalocean", + "owner": "digitalocean", + "repo": "terraform-provider-digitalocean", + "rev": "v2.67.0", + "spdx": "MPL-2.0", + "vendorHash": null + }, + "dmacvicar_libvirt": { + "hash": "sha256-6wG6J6SQGxR74gbGZlW5/8zgIqsBUo0Xg/gN0wNppSg=", + "homepage": "https://registry.terraform.io/providers/dmacvicar/libvirt", + "owner": "dmacvicar", + "repo": "terraform-provider-libvirt", + "rev": "v0.8.3", + "spdx": "Apache-2.0", + "vendorHash": "sha256-fP6brpY/wRI1Yjgapzi+FfOci65gxWeOZulXbGdilrE=" + }, + "dnsimple_dnsimple": { + "hash": "sha256-Zx4M0TKamyfm5Z5EAtiHWQQTNX/VT0EkAaHM7x/2SGk=", + "homepage": "https://registry.terraform.io/providers/dnsimple/dnsimple", + "owner": "dnsimple", + "repo": "terraform-provider-dnsimple", + "rev": "v1.10.0", + "spdx": "MPL-2.0", + "vendorHash": "sha256-M6Z/wMOKhQncuHAhkSPfWT77b14lIZ/sVQT7DmM60FI=" + }, + "dnsmadeeasy_dme": { + "hash": "sha256-JH9YcM9Fvd1x0BJpLUZCm6a9hZZxySrkFVLP89FO3fU=", + "homepage": "https://registry.terraform.io/providers/DNSMadeEasy/dme", + "owner": "DNSMadeEasy", + "repo": "terraform-provider-dme", + "rev": "v1.0.8", + "spdx": "MPL-2.0", + "vendorHash": null + }, + "dopplerhq_doppler": { + "hash": "sha256-8HE9Y4enoUpl5qarmuBHE0pAbK1UF0fPkmBhHj4T1As=", + "homepage": "https://registry.terraform.io/providers/DopplerHQ/doppler", + "owner": "DopplerHQ", + "repo": "terraform-provider-doppler", + "rev": "v1.21.0", + "spdx": "Apache-2.0", + "vendorHash": "sha256-B8mYLd4VdADWoQLWiCM85VQrBfDdlYQ0wkCp9eUBQ4U=" + }, + "drfaust92_bitbucket": { + "hash": "sha256-CJ86MKT2FKf5KbHZegZBbyNoAGe9hg59q8E5urNDqAo=", + "homepage": "https://registry.terraform.io/providers/DrFaust92/bitbucket", + "owner": "DrFaust92", + "repo": "terraform-provider-bitbucket", + "rev": "v2.49.0", + "spdx": "MPL-2.0", + "vendorHash": "sha256-ok73U0WWFGXp5TJ7sp7U9umq7DlChCw7fSyFmbifwKE=" + }, + "equinix_equinix": { + "hash": "sha256-QE8ukiQHZqhSsZyFnInIpnGvsSlFuFMun7paK/Z3HTM=", + "homepage": "https://registry.terraform.io/providers/equinix/equinix", + "owner": "equinix", + "repo": "terraform-provider-equinix", + "rev": "v4.3.0", + "spdx": "MIT", + "vendorHash": "sha256-BzlSPZ11K9wZXd66jh3CAL+5qco6m0Hb/QiVtAi1Ub8=" + }, + "exoscale_exoscale": { + "hash": "sha256-tTFGYzDwx7VXzS287eNUUjsAuwY/Rh2zuOsGwLT6BRU=", + "homepage": "https://registry.terraform.io/providers/exoscale/exoscale", + "owner": "exoscale", + "repo": "terraform-provider-exoscale", + "rev": "v0.65.1", + "spdx": "MPL-2.0", + "vendorHash": null + }, + "f5networks_bigip": { + "hash": "sha256-oJIIhIBQXx5u2OwYcyMo4uRdzWdWLz2PlO9r9ZSRIzo=", + "homepage": "https://registry.terraform.io/providers/F5Networks/bigip", + "owner": "F5Networks", + "repo": "terraform-provider-bigip", + "rev": "v1.24.0", + "spdx": "MPL-2.0", + "vendorHash": null + }, + "fastly_fastly": { + "hash": "sha256-nevSFpLx1N+rM6ps0jstLem/VdAPIhnTaJefLpfLG/A=", + "homepage": "https://registry.terraform.io/providers/fastly/fastly", + "owner": "fastly", + "repo": "terraform-provider-fastly", + "rev": "v8.3.0", + "spdx": "MPL-2.0", + "vendorHash": "sha256-5T6pwozD0RKDzdd2XAMuHY651jEvo6V6s1gvwYTHTRI=" + }, + "flexibleenginecloud_flexibleengine": { + "hash": "sha256-yEZ9JiUSqFFbfqzOOD59ZBv4yFCeUBBKlp6aiUqDqiM=", + "homepage": "https://registry.terraform.io/providers/FlexibleEngineCloud/flexibleengine", + "owner": "FlexibleEngineCloud", + "repo": "terraform-provider-flexibleengine", + "rev": "v1.46.0", + "spdx": "MPL-2.0", + "vendorHash": "sha256-ZbU2z7qUHPR7vDSflesSjgK7x3LYXVe/gnVsy19q6Bs=" + }, + "fortinetdev_fortios": { + "hash": "sha256-dQMDGaYG3TDK5FBH8ODAsDcdScoDWWrk1vsWmL7sIPc=", + "homepage": "https://registry.terraform.io/providers/fortinetdev/fortios", + "owner": "fortinetdev", + "repo": "terraform-provider-fortios", + "rev": "1.23.0", + "spdx": "MPL-2.0", + "vendorHash": "sha256-V+D/D+i1xbPp9IAfrAds2rNv5t/aXQxPwH9vY09DsMo=" + }, + "gavinbunney_kubectl": { + "hash": "sha256-UQ/xvhs7II+EGH5bKdrVC47hp5dhLqQZeqSBz06ho1s=", + "homepage": "https://registry.terraform.io/providers/gavinbunney/kubectl", + "owner": "gavinbunney", + "repo": "terraform-provider-kubectl", + "rev": "v1.19.0", + "spdx": "MPL-2.0", + "vendorHash": "sha256-FcxAh8EOvnT8r1GHu0Oj2C5Jgbr2WPwD7/vY4/qIvTA=" + }, + "gitlabhq_gitlab": { + "hash": "sha256-wggQtY+E4O/iWo0OrjPlxK8j2aLavRAG31RpOOC08AY=", + "homepage": "https://registry.terraform.io/providers/gitlabhq/gitlab", + "owner": "gitlabhq", + "repo": "terraform-provider-gitlab", + "rev": "v18.4.1", + "spdx": "MPL-2.0", + "vendorHash": "sha256-29uvPCepGHRPohGY7viaPD9VQPPj9XB/plragACC4e4=" + }, + "go-gandi_gandi": { + "hash": "sha256-fsCtmwyxkXfOtiZG27VEb010jglK35yr4EynnUWlFog=", + "homepage": "https://registry.terraform.io/providers/go-gandi/gandi", + "owner": "go-gandi", + "repo": "terraform-provider-gandi", + "rev": "v2.3.0", + "spdx": "MPL-2.0", + "vendorHash": "sha256-EiTWJ4bw8IwsRTD9Lt28Up2DXH0oVneO2IaO8VqWtkw=" + }, + "go-gitea_gitea": { + "hash": "sha256-A9jwUtLNT5ikB5iR5qaRHBiTXsmwvJXycpFxciZSeZg=", + "homepage": "https://registry.terraform.io/providers/go-gitea/gitea", + "owner": "go-gitea", + "repo": "terraform-provider-gitea", + "rev": "v0.7.0", + "spdx": "MIT", + "vendorHash": "sha256-/8h2bmesnFz3tav3+iDelZSjp1Z9lreexwcw0WdYekA=" + }, + "goharbor_harbor": { + "hash": "sha256-Z3lytylGY67wOajPPLqnmmhzxoJD1EfjSU0h3yg+kzY=", + "homepage": "https://registry.terraform.io/providers/goharbor/harbor", + "owner": "goharbor", + "repo": "terraform-provider-harbor", + "rev": "v3.11.2", + "spdx": "MIT", + "vendorHash": "sha256-UmlhKa2SVgrhRc1EOO9sEkherIS77CP+hkAL3Y79h3U=" + }, + "grafana_grafana": { + "hash": "sha256-KVNwgn7swWXRNJNpXV8oy++s+CrDZhMPDDP40qIZIlY=", + "homepage": "https://registry.terraform.io/providers/grafana/grafana", + "owner": "grafana", + "repo": "terraform-provider-grafana", + "rev": "v4.10.0", + "spdx": "MPL-2.0", + "vendorHash": "sha256-JS0moRxd+Vxzg4Wq5Med4/daVSZPver+JifAdgt2sQk=" + }, + "gridscale_gridscale": { + "hash": "sha256-gkOAV1iKv7r2OouHAemlresb9sLcjZ5i8tLQazQrgyA=", + "homepage": "https://registry.terraform.io/providers/gridscale/gridscale", + "owner": "gridscale", + "repo": "terraform-provider-gridscale", + "rev": "v2.2.2", + "spdx": "MPL-2.0", + "vendorHash": null + }, + "hashicorp_archive": { + "hash": "sha256-nR8bgFvhENwC3L3w580FBtDK5l8WDfJqxDQZeUvWyl0=", + "homepage": "https://registry.terraform.io/providers/hashicorp/archive", + "owner": "hashicorp", + "repo": "terraform-provider-archive", + "rev": "v2.7.1", + "spdx": "MPL-2.0", + "vendorHash": "sha256-MYVkNvJ+rbwGw0htClIbmxk3YX2OK/ZO/QOTyMRFiug=" + }, + "hashicorp_aws": { + "hash": "sha256-Y/ZDYj6kJ4LaIPk443scDGNAj6J3Y7SqkNFFUaSOj0o=", + "homepage": "https://registry.terraform.io/providers/hashicorp/aws", + "owner": "hashicorp", + "repo": "terraform-provider-aws", + "rev": "v6.16.0", + "spdx": "MPL-2.0", + "vendorHash": "sha256-LYrda07sa7I4aOmr+mOQRN0NkA9ZI7VxOSWFkqGEKQ4=" + }, + "hashicorp_awscc": { + "hash": "sha256-qxCrBJo8oPy9+2e7Pq9Ex5jslJMEkfOzpTdhn/ouV0c=", + "homepage": "https://registry.terraform.io/providers/hashicorp/awscc", + "owner": "hashicorp", + "repo": "terraform-provider-awscc", + "rev": "v1.58.0", + "spdx": "MPL-2.0", + "vendorHash": "sha256-BNc2pwbIBPkLiUaGjBbUayysgIgS58AUA9nfr/KGMZo=" + }, + "hashicorp_azuread": { + "hash": "sha256-9vGXzFLRaQPXECcFtZMnbhHQvEm0FeGwYm4K9utpZf4=", + "homepage": "https://registry.terraform.io/providers/hashicorp/azuread", + "owner": "hashicorp", + "repo": "terraform-provider-azuread", + "rev": "v3.6.0", + "spdx": "MPL-2.0", + "vendorHash": null + }, + "hashicorp_azurerm": { + "hash": "sha256-gpIIj/nSMjhenXs2LbdJV5hdXoMKieueJ6o4xIG7HtA=", + "homepage": "https://registry.terraform.io/providers/hashicorp/azurerm", + "owner": "hashicorp", + "repo": "terraform-provider-azurerm", + "rev": "v4.47.0", + "spdx": "MPL-2.0", + "vendorHash": null + }, + "hashicorp_cloudinit": { + "hash": "sha256-xDHp2bG0/T4pE3j8L4zTVnaQ9te5MuAbiGmopFedOpk=", + "homepage": "https://registry.terraform.io/providers/hashicorp/cloudinit", + "owner": "hashicorp", + "repo": "terraform-provider-cloudinit", + "rev": "v2.3.7", + "spdx": "MPL-2.0", + "vendorHash": "sha256-bD8BHhP4jxBRnFjmZE1MMkBn2/sMqNEaxTlQRMj2Crw=" + }, + "hashicorp_consul": { + "hash": "sha256-kLoJKnqbjsrzBqFNPpG59UOYlp2UKYsS7b6cu5xImp8=", + "homepage": "https://registry.terraform.io/providers/hashicorp/consul", + "owner": "hashicorp", + "repo": "terraform-provider-consul", + "rev": "v2.22.0", + "spdx": "MPL-2.0", + "vendorHash": "sha256-ODAqEy04jptTR2dggCm9Vs2xxVt02SVVgGAUa06+9YY=" + }, + "hashicorp_dns": { + "hash": "sha256-+M4i5tvGrjGRBwB9bFp6YYhbz3qGRcg9W6PhD59Rfbk=", + "homepage": "https://registry.terraform.io/providers/hashicorp/dns", + "owner": "hashicorp", + "repo": "terraform-provider-dns", + "rev": "v3.4.3", + "spdx": "MPL-2.0", + "vendorHash": "sha256-xu5t7VaLvbwo/Q7Xb4mkNt7UjU+hzfk7NgfFlxwbIhU=" + }, + "hashicorp_external": { + "hash": "sha256-rHMmGzYvsE5GT0E71UUIXjDG9+v52LI69/gdP2xuI7w=", + "homepage": "https://registry.terraform.io/providers/hashicorp/external", + "owner": "hashicorp", + "repo": "terraform-provider-external", + "rev": "v2.3.5", + "spdx": "MPL-2.0", + "vendorHash": "sha256-xIagZvWtlNpz5SQfxbA7r9ojAeS3CW2pwV337ObKOwU=" + }, + "hashicorp_google": { + "hash": "sha256-lJ5XBL983pKdZdN8scof+uJ16CJAOXp1NIxWmJCa4O0=", + "homepage": "https://registry.terraform.io/providers/hashicorp/google", + "owner": "hashicorp", + "repo": "terraform-provider-google", + "rev": "v7.6.0", + "spdx": "MPL-2.0", + "vendorHash": "sha256-cQybnUaDLVmQrtFkiI5k3OwqN9Oks+J1H2kbkNjO4jc=" + }, + "hashicorp_google-beta": { + "hash": "sha256-YefUWAHgBiZebigcCmn5poVkg6ZxHjILzL5JXhrGKFY=", + "homepage": "https://registry.terraform.io/providers/hashicorp/google-beta", + "owner": "hashicorp", + "repo": "terraform-provider-google-beta", + "rev": "v7.6.0", + "spdx": "MPL-2.0", + "vendorHash": "sha256-Bii3UrY1WbhewgsURxq7gGVqT1WSszFkif0V88hiyZo=" + }, + "hashicorp_helm": { + "hash": "sha256-i4ceWiEXJYL1x9DmqAfcUidiW5+x/sRCxevDz4MnzHs=", + "homepage": "https://registry.terraform.io/providers/hashicorp/helm", + "owner": "hashicorp", + "repo": "terraform-provider-helm", + "rev": "v3.0.2", + "spdx": "MPL-2.0", + "vendorHash": "sha256-sPvX69R2BmlY/KhXZgxCunzseoOkz1h2b8yqekBBn0k=" + }, + "hashicorp_http": { + "hash": "sha256-IXqKZ9RQP0kZVxc9OfaWglF8GeycSAl5DATdqc8n35g=", + "homepage": "https://registry.terraform.io/providers/hashicorp/http", + "owner": "hashicorp", + "repo": "terraform-provider-http", + "rev": "v3.5.0", + "spdx": "MPL-2.0", + "vendorHash": "sha256-SsEWNIBkgcdTlSrB4hIvRmhMv2eJ2qQaPUmiN09A+NM=" + }, + "hashicorp_kubernetes": { + "hash": "sha256-QVHLGLTzr39liRcM5AKJ0unYoc/DW2elcJWisiHC2pw=", + "homepage": "https://registry.terraform.io/providers/hashicorp/kubernetes", + "owner": "hashicorp", + "repo": "terraform-provider-kubernetes", + "rev": "v2.38.0", + "spdx": "MPL-2.0", + "vendorHash": "sha256-LeMFN4pOJotTTqakEbVelHSTEb4p7CQIuKzeuX3SZUM=" + }, + "hashicorp_local": { + "hash": "sha256-JXGBZglJwUbclTzsHap8QaQnkjw6rRIsSPL+lpLLLBE=", + "homepage": "https://registry.terraform.io/providers/hashicorp/local", + "owner": "hashicorp", + "repo": "terraform-provider-local", + "rev": "v2.5.3", + "spdx": "MPL-2.0", + "vendorHash": "sha256-AlvcjfvyBwGawUqzba66qF97qoCUMVybKmIrf3jFyi8=" + }, + "hashicorp_nomad": { + "hash": "sha256-+lWAVb9ffyTfnkR3qZzgggRVjizdrgQ96Tj/K4ngZWQ=", + "homepage": "https://registry.terraform.io/providers/hashicorp/nomad", + "owner": "hashicorp", + "repo": "terraform-provider-nomad", + "rev": "v2.5.1", + "spdx": "MPL-2.0", + "vendorHash": "sha256-CIR59EIgC5kkwfITQYrzoU8quCx5iCDRNOdYphVVk6Y=" + }, + "hashicorp_null": { + "hash": "sha256-hPAcFWkeK1vjl1Cg/d7FaZpPhyU3pkU6VBIwxX2gEvA=", + "homepage": "https://registry.terraform.io/providers/hashicorp/null", + "owner": "hashicorp", + "repo": "terraform-provider-null", + "rev": "v3.2.4", + "spdx": "MPL-2.0", + "vendorHash": "sha256-ssmAveYUVI8z/1UWNeaMX0qdUewowCHNufJIFMirdVg=" + }, + "hashicorp_random": { + "hash": "sha256-tdTVqSJmQ6Ht3kdoYMxhoRN+XJqvu8BPVB0VQghcDVs=", + "homepage": "https://registry.terraform.io/providers/hashicorp/random", + "owner": "hashicorp", + "repo": "terraform-provider-random", + "rev": "v3.7.2", + "spdx": "MPL-2.0", + "vendorHash": "sha256-jyfzk3vbgZwHlyiFFw1mhD+us/7WNatUQTGN4WsrfgE=" + }, + "hashicorp_tfe": { "hash": "sha256-VKRifnvUTtGCs9XEMeqTVvbtES7rvWBWoiSYLfMxIhQ=", "homepage": "https://registry.terraform.io/providers/hashicorp/tfe", "owner": "hashicorp", @@ -1316,16 +641,7 @@ "spdx": "MPL-2.0", "vendorHash": "sha256-JrdL91xO4EyAtWfDFsjr09oTfgx+tQQ965ex/AnBkGk=" }, - "thunder": { - "hash": "sha256-2i1DSOSt/vbFs0QCPogEBvADhLJFKbrQzwZ20ChCQMk=", - "homepage": "https://registry.terraform.io/providers/a10networks/thunder", - "owner": "a10networks", - "repo": "terraform-provider-thunder", - "rev": "v1.4.2", - "spdx": "BSD-2-Clause", - "vendorHash": null - }, - "time": { + "hashicorp_time": { "hash": "sha256-ZArYfbzbrkxGlL1BRFM7PN3hLzdssIL4COsUBdLVMYY=", "homepage": "https://registry.terraform.io/providers/hashicorp/time", "owner": "hashicorp", @@ -1334,7 +650,7 @@ "spdx": "MPL-2.0", "vendorHash": "sha256-4XCCzB5Va1jtTn5vgIVKjQq4g8sKe0SIw3ynZExz/Vg=" }, - "tls": { + "hashicorp_tls": { "hash": "sha256-t/nUt0deyckP8opNiPZc5rbC1SleZwkrFXuQFw47sqA=", "homepage": "https://registry.terraform.io/providers/hashicorp/tls", "owner": "hashicorp", @@ -1343,7 +659,124 @@ "spdx": "MPL-2.0", "vendorHash": "sha256-tYvQURTrFtr+rgSMGq2zi/5p5jJVGIse7+hj95gz68U=" }, - "triton": { + "hashicorp_vault": { + "hash": "sha256-5jx6a2BfnugD41D6iK7wvOzmMPImxNHCiIix4+puRp4=", + "homepage": "https://registry.terraform.io/providers/hashicorp/vault", + "owner": "hashicorp", + "repo": "terraform-provider-vault", + "rev": "v5.3.0", + "spdx": "MPL-2.0", + "vendorHash": "sha256-qrztgFJ/WDTxP5565rnx2sAELFKQGOxFuEYqWQQYVVY=" + }, + "hashicorp_vsphere": { + "hash": "sha256-vRO6vxzi4d0hNc0MmQLhN7roONnsjxPBtFt0fyvxWd8=", + "homepage": "https://registry.terraform.io/providers/hashicorp/vsphere", + "owner": "hashicorp", + "repo": "terraform-provider-vsphere", + "rev": "v2.12.0", + "spdx": "MPL-2.0", + "vendorHash": "sha256-47xWjlzpQ/EYzjbuuMKQiu5cfYAXdYkXRl+AOEP+sA4=" + }, + "heroku_heroku": { + "hash": "sha256-VGx2J7huF05HU/59Hyo2rxwV3SR+kVJWtrfWoRmln2o=", + "homepage": "https://registry.terraform.io/providers/heroku/heroku", + "owner": "heroku", + "repo": "terraform-provider-heroku", + "rev": "v5.3.1", + "spdx": "MPL-2.0", + "vendorHash": null + }, + "hetznercloud_hcloud": { + "hash": "sha256-Y7W4pMH9wuiTasobEWtQOZNyeZ6MJKuegveZnlORxm0=", + "homepage": "https://registry.terraform.io/providers/hetznercloud/hcloud", + "owner": "hetznercloud", + "repo": "terraform-provider-hcloud", + "rev": "v1.54.0", + "spdx": "MPL-2.0", + "vendorHash": "sha256-jwDezL9gI6A9pCdD1CUgEOJT8dqVuPX/sFjTO4Jiqs4=" + }, + "huaweicloud_huaweicloud": { + "hash": "sha256-uMWYrO5X8+CrafIN+NyYX3C1U2r9JAsAsAG5czlxyDY=", + "homepage": "https://registry.terraform.io/providers/huaweicloud/huaweicloud", + "owner": "huaweicloud", + "repo": "terraform-provider-huaweicloud", + "rev": "v1.79.0", + "spdx": "MPL-2.0", + "vendorHash": null + }, + "ibm-cloud_ibm": { + "hash": "sha256-+Ux/Xp598uRpRgBfVucrl8GYkpaKcmZ5h67ExdBEchY=", + "homepage": "https://registry.terraform.io/providers/IBM-Cloud/ibm", + "owner": "IBM-Cloud", + "repo": "terraform-provider-ibm", + "rev": "v1.83.3", + "spdx": "MPL-2.0", + "vendorHash": "sha256-G6kqcQMpNKioBEWNDGIYCJaoYv6EPAbu2Nh/8EkQGAA=" + }, + "icinga_icinga2": { + "hash": "sha256-Y/Oq0aTzP+oSKPhHiHY9Leal4HJJm7TNDpcdqkUsCmk=", + "homepage": "https://registry.terraform.io/providers/Icinga/icinga2", + "owner": "Icinga", + "repo": "terraform-provider-icinga2", + "rev": "v0.5.0", + "spdx": "MPL-2.0", + "vendorHash": null + }, + "infobloxopen_infoblox": { + "hash": "sha256-uxzWgxetwgzj9L5+yxw2EoMzdx6NbR2kEb4fGw3Wxn0=", + "homepage": "https://registry.terraform.io/providers/infobloxopen/infoblox", + "owner": "infobloxopen", + "repo": "terraform-provider-infoblox", + "rev": "v2.10.0", + "spdx": "MPL-2.0", + "vendorHash": null + }, + "integrations_github": { + "hash": "sha256-rmIoyGlkw2f56UwD0mfI5MiHPDFDuhtsoPmerIrJcGs=", + "homepage": "https://registry.terraform.io/providers/integrations/github", + "owner": "integrations", + "repo": "terraform-provider-github", + "rev": "v6.6.0", + "spdx": "MIT", + "vendorHash": null + }, + "jfrog_artifactory": { + "hash": "sha256-BSUOmqHwnDEYojtwTXBWo9oGG2FbgaODUKClZPCaK/I=", + "homepage": "https://registry.terraform.io/providers/jfrog/artifactory", + "owner": "jfrog", + "repo": "terraform-provider-artifactory", + "rev": "v12.9.1", + "spdx": "Apache-2.0", + "vendorHash": "sha256-YIn8akPW+DCVF0eYZxsmJxmrJuYhK4QLG/uhmmrXd4c=" + }, + "jfrog_project": { + "hash": "sha256-cDq77FvYOSRXcm8haec4LvnnUptgcj7gdc1/ohFuD3g=", + "homepage": "https://registry.terraform.io/providers/jfrog/project", + "owner": "jfrog", + "repo": "terraform-provider-project", + "rev": "v1.9.3", + "spdx": "Apache-2.0", + "vendorHash": "sha256-mnKXYT0GfIS+ODzBCS9l4rLF1ugadesmpgdOgj74nLg=" + }, + "jianyuan_sentry": { + "hash": "sha256-b5a0++mu6roN6VuJaBZEczfqA6Stt+a7fTOLGLvqPeQ=", + "homepage": "https://registry.terraform.io/providers/jianyuan/sentry", + "owner": "jianyuan", + "repo": "terraform-provider-sentry", + "rev": "v0.14.6", + "spdx": "MIT", + "vendorHash": "sha256-67xoILi88FEN005tk8Z3ggc3ggfuS1AHthYglqvOLE4=" + }, + "joneshf_openwrt": { + "hash": "sha256-z78IceF2VJtiQpVqC+rTUDsph73LZawIK+az3rEhljA=", + "homepage": "https://registry.terraform.io/providers/joneshf/openwrt", + "owner": "joneshf", + "repo": "terraform-provider-openwrt", + "rev": "v0.0.20", + "spdx": "MPL-2.0", + "vendorHash": "sha256-jHZMBhXu7fJaQFzhxAYGQJrzm2EY1XdGHyoDsyOCAVo=" + }, + "joyent_triton": { "deleteVendor": true, "hash": "sha256-NrXK1ic5F8fBC0lvq7GxlrZe9lMbHvNhodijsC/VG0o=", "homepage": "https://registry.terraform.io/providers/joyent/triton", @@ -1353,79 +786,538 @@ "spdx": "MPL-2.0", "vendorHash": "sha256-UuLHaOEG6jmOAgfdNOtLyUimlAr3g6K8n3Ehu64sKqk=" }, - "turbot": { - "hash": "sha256-hUiILS5OVpa5MurChW2U9DQElQxzXo8yQfHRjWcd8cc=", - "homepage": "https://registry.terraform.io/providers/turbot/turbot", - "owner": "turbot", - "repo": "terraform-provider-turbot", - "rev": "v1.13.0", + "keycloak_keycloak": { + "hash": "sha256-59+rVoS49w6aGFqpvcgoiYAFebsQLjXbPrhvZHMYV3s=", + "homepage": "https://registry.terraform.io/providers/keycloak/keycloak", + "owner": "keycloak", + "repo": "terraform-provider-keycloak", + "rev": "v5.4.0", + "spdx": "Apache-2.0", + "vendorHash": "sha256-pnOwYupql5EWoA0l72RENXeAQELaFHlDorJLQKJUz+c=" + }, + "kislerdm_neon": { + "hash": "sha256-D1KWC2D4OLMUSWKzQmiZaDrATCv4SEUWwk6SK/o1U5M=", + "homepage": "https://registry.terraform.io/providers/kislerdm/neon", + "owner": "kislerdm", + "repo": "terraform-provider-neon", + "rev": "v0.9.0", + "spdx": "MPL-2.0", + "vendorHash": "sha256-8WY2iEOFOwx7zDMps5cctxzv1stRseS/OUaHkMDuBYs=" + }, + "kreuzwerker_docker": { + "hash": "sha256-THMGfpRrPFReRdYusdrJGnUKEUtxy4Pu+HdcceK2FNc=", + "homepage": "https://registry.terraform.io/providers/kreuzwerker/docker", + "owner": "kreuzwerker", + "repo": "terraform-provider-docker", + "rev": "v3.6.2", + "spdx": "MPL-2.0", + "vendorHash": "sha256-duHOqjy8AthXuDX63GO3myJ9TJmV0Ts1a8OsbSOGZWI=" + }, + "launchdarkly_launchdarkly": { + "hash": "sha256-U3l2Tf7vcLAz7nZYKaGR0Nv/Qw2HgbGNV7w1dYBvSEc=", + "homepage": "https://registry.terraform.io/providers/launchdarkly/launchdarkly", + "owner": "launchdarkly", + "repo": "terraform-provider-launchdarkly", + "rev": "v2.25.3", + "spdx": "MPL-2.0", + "vendorHash": "sha256-b9+0YLuv9AVszGDQ2v+VbYameN16PCdE3jUhL9efK6M=" + }, + "linode_linode": { + "hash": "sha256-ofgX6ih/UHd1Lm36KgS7BG8QY7ENhywHY2IhQ/ebfqM=", + "homepage": "https://registry.terraform.io/providers/linode/linode", + "owner": "linode", + "repo": "terraform-provider-linode", + "rev": "v3.4.0", + "spdx": "MPL-2.0", + "vendorHash": "sha256-iZGbGd16fHtYKXh25O7LLcrjwm4Ceeak5dTN9t5rZGk=" + }, + "loafoe_htpasswd": { + "hash": "sha256-ALTyTTVyS2HHenmk8HVwtQenCmJX05kyXifJTzzmnHE=", + "homepage": "https://registry.terraform.io/providers/loafoe/htpasswd", + "owner": "loafoe", + "repo": "terraform-provider-htpasswd", + "rev": "v1.5.0", + "spdx": "MIT", + "vendorHash": "sha256-6+ZQVWc4/2RoNjQLzetLTl9L8AdbFu2uFmqJ9Kxcc7Q=" + }, + "loafoe_ssh": { + "hash": "sha256-1UN5QJyjCuxs2vQYlSuz2jsu/HgGTxOoWWRcv4qcwow=", + "homepage": "https://registry.terraform.io/providers/loafoe/ssh", + "owner": "loafoe", + "repo": "terraform-provider-ssh", + "rev": "v2.7.0", + "spdx": "MIT", + "vendorHash": "sha256-vcuUt3WIo1TnLApch410JgtyCzliQRYMQQQ2Z9diDZ8=" + }, + "lxc_incus": { + "hash": "sha256-ecTodsExnc96AoyYKutPLNu5UQrVObcWQwFUcv9oCB4=", + "homepage": "https://registry.terraform.io/providers/lxc/incus", + "owner": "lxc", + "repo": "terraform-provider-incus", + "rev": "v0.5.1", + "spdx": "MPL-2.0", + "vendorHash": "sha256-gyU+RiCtf5gl5RDuAalYHgXqvU2sioxnL6ZfOwn6vYE=" + }, + "marcofranssen_dexidp": { + "hash": "sha256-un+jAmcK1MYljcAFyIHw0AFmvz4GltAsWxTOd/zXxyU=", + "homepage": "https://registry.terraform.io/providers/marcofranssen/dexidp", + "owner": "marcofranssen", + "repo": "terraform-provider-dexidp", + "rev": "v0.7.0", + "spdx": "MIT", + "vendorHash": "sha256-0yoaiVn6j6g//iTPgX/y6M0A+cWAASDIuWMIHi/4w1o=" + }, + "maxlaverse_bitwarden": { + "hash": "sha256-dYWiz5DjkMQliUpvapKANj45vUyiPaE6GeP/HOBrKt8=", + "homepage": "https://registry.terraform.io/providers/maxlaverse/bitwarden", + "owner": "maxlaverse", + "repo": "terraform-provider-bitwarden", + "rev": "v0.16.0", + "spdx": "MPL-2.0", + "vendorHash": "sha256-I8yMdS+yOk5doWGU9VPdl5ITGNrPhs5tGwluwXSrnI0=" + }, + "metio_migadu": { + "hash": "sha256-Ld7+cL/Ei06Z3Lkx6HyrBP0dPX3S9KYPNwnRG86xsRk=", + "homepage": "https://registry.terraform.io/providers/metio/migadu", + "owner": "metio", + "repo": "terraform-provider-migadu", + "rev": "2025.10.2", + "spdx": "0BSD", + "vendorHash": "sha256-3/rZWHBQZMvu1nCM/SCdL0TkJ2cxtOCQqGgIblnR9+k=" + }, + "mongey_kafka": { + "hash": "sha256-rTa6c7jAMH027V7h/yUGVGz6TS0PDdObilxU0Vpr6FI=", + "homepage": "https://registry.terraform.io/providers/Mongey/kafka", + "owner": "Mongey", + "repo": "terraform-provider-kafka", + "rev": "v0.13.1", + "spdx": "MIT", + "vendorHash": "sha256-JRqBv5N+i5yhKrC+Eenm1xmwylNF7k/EIJXaklrsFfA=" + }, + "mongey_kafka-connect": { + "hash": "sha256-XMGpK22Ww8swvfrnbClxjErVmkBKX3dxdlkjgNJHlCE=", + "homepage": "https://registry.terraform.io/providers/Mongey/kafka-connect", + "owner": "Mongey", + "repo": "terraform-provider-kafka-connect", + "rev": "v0.4.3", + "spdx": "MIT", + "vendorHash": "sha256-5cqj1O57snU+NoVqmWc/KIGnowQNMww+rJxYfIPvHWU=" + }, + "mongodb_mongodbatlas": { + "hash": "sha256-evMjL6I9q80olTkuigJLbAHTDU4nYXNaMVf8cq6yZsM=", + "homepage": "https://registry.terraform.io/providers/mongodb/mongodbatlas", + "owner": "mongodb", + "repo": "terraform-provider-mongodbatlas", + "rev": "v2.0.1", + "spdx": "MPL-2.0", + "vendorHash": "sha256-BWItAEI+ST5wN/CyTHljFJvutJiDHYjV4HEeLtmhC2o=" + }, + "namecheap_namecheap": { + "hash": "sha256-fHH9sHI1mqQ9q9nX9DHJ0qfEfmDB4/2uzyVvUuIAF18=", + "homepage": "https://registry.terraform.io/providers/namecheap/namecheap", + "owner": "namecheap", + "repo": "terraform-provider-namecheap", + "rev": "v2.2.0", + "spdx": "Apache-2.0", + "vendorHash": null + }, + "nats-io_jetstream": { + "hash": "sha256-I9T5PTNiZfCyPnNiqL8yDhJxpLRQpK7ynZmlr682BnY=", + "homepage": "https://registry.terraform.io/providers/nats-io/jetstream", + "owner": "nats-io", + "repo": "terraform-provider-jetstream", + "rev": "v0.2.1", + "spdx": "Apache-2.0", + "vendorHash": "sha256-ctd9V5EXL0c9b4aJ47nfjhqCMTewL55IkjkQ39ShoUk=" + }, + "nbering_ansible": { + "hash": "sha256-3nha5V4rNgVzgqliebmbC5e12Lj/zlCsyyiIVFlmUrY=", + "homepage": "https://registry.terraform.io/providers/nbering/ansible", + "owner": "nbering", + "repo": "terraform-provider-ansible", + "rev": "v1.0.4", + "spdx": "MPL-2.0", + "vendorHash": "sha256-OAd8SeTqTrH0kMoM2LsK3vM2PI23b3gl57FaJYM9hM0=" + }, + "newrelic_newrelic": { + "hash": "sha256-XF62BlLPEF9CYPO00HV05T6djLyMvyC/N4HlYg5MM0I=", + "homepage": "https://registry.terraform.io/providers/newrelic/newrelic", + "owner": "newrelic", + "repo": "terraform-provider-newrelic", + "rev": "v3.70.5", + "spdx": "MPL-2.0", + "vendorHash": "sha256-45psSf69IetY0o8LjBDEv2GnOxaOzaQcPCnV2YHPXGs=" + }, + "ns1-terraform_ns1": { + "hash": "sha256-JJ+Zcf7r8bB1a8l+DtHhjT4Ce2VqRIkD1fS+EWI6QtI=", + "homepage": "https://registry.terraform.io/providers/ns1-terraform/ns1", + "owner": "ns1-terraform", + "repo": "terraform-provider-ns1", + "rev": "v2.7.1", + "spdx": "MPL-2.0", + "vendorHash": "sha256-HC2MCVF3gS4nXKplC1pGrdjbhjRzr03ajqZ7pQIgSOc=" + }, + "numtide_linuxbox": { + "hash": "sha256-svQRz1/PdVLpHoxOam1sfRTwHqgqs4ohJQs3IPMMAM4=", + "homepage": "https://registry.terraform.io/providers/numtide/linuxbox", + "owner": "numtide", + "repo": "terraform-provider-linuxbox", + "rev": "v0.5.8", + "spdx": "BSD-3-Clause", + "vendorHash": "sha256-GxMCY/udIy3c7zLeNeghXtfCUw4+Ll83L/40N4/yVh8=" + }, + "numtide_secret": { + "hash": "sha256-MmAnA/4SAPqLY/gYcJSTnEttQTsDd2kEdkQjQj6Bb+A=", + "homepage": "https://registry.terraform.io/providers/numtide/secret", + "owner": "numtide", + "repo": "terraform-provider-secret", + "rev": "v1.2.1", "spdx": "MPL-2.0", "vendorHash": null }, - "ucloud": { - "hash": "sha256-mPTejWXREIBjEZVb660bUUnyj3z7hgfKPrUsSVvMx7A=", - "homepage": "https://registry.terraform.io/providers/ucloud/ucloud", - "owner": "ucloud", - "repo": "terraform-provider-ucloud", - "rev": "v1.39.1", + "nutanix_nutanix": { + "hash": "sha256-nk5wdbAzgBJ6gyYSXZAiNdjx/XQ6XldAMsjb8yv+y7w=", + "homepage": "https://registry.terraform.io/providers/nutanix/nutanix", + "owner": "nutanix", + "repo": "terraform-provider-nutanix", + "rev": "v2.3.1", + "spdx": "MPL-2.0", + "vendorHash": "sha256-ByB1ztK2/1pTFeO34eXVyQSSbe35qqoCeWe6MPZN7vY=" + }, + "oboukili_argocd": { + "hash": "sha256-3a/g1SbgeMWFMNTY/sYrItyE1rRimdNro8nu9wPTf6M=", + "homepage": "https://registry.terraform.io/providers/oboukili/argocd", + "owner": "oboukili", + "repo": "terraform-provider-argocd", + "rev": "v6.2.0", + "spdx": "MPL-2.0", + "vendorHash": "sha256-0UM4I/oxIsWIP1G93KJsJxYofXrO4Yy86PEk0FnB1DE=" + }, + "okta_okta": { + "hash": "sha256-O4zZ+D/+GTGf7Q7hHKlAcBg/0C7nCrhCV0St+LohedA=", + "homepage": "https://registry.terraform.io/providers/okta/okta", + "owner": "okta", + "repo": "terraform-provider-okta", + "rev": "v6.2.0", + "spdx": "MPL-2.0", + "vendorHash": "sha256-oE4nB0dFsiz82kj9QOr0vIjD3aBR+jxeAW5/ZWUxp44=" + }, + "oktadeveloper_oktaasa": { + "hash": "sha256-2LhxgowqKvDDDOwdznusL52p2DKP+UiXALHcs9ZQd0U=", + "homepage": "https://registry.terraform.io/providers/oktadeveloper/oktaasa", + "owner": "oktadeveloper", + "repo": "terraform-provider-oktaasa", + "rev": "v1.0.1", "spdx": "MPL-2.0", "vendorHash": null }, - "unifi": { - "hash": "sha256-IqsQRVgAB1PUqYJ0JPig6oq7FKJuS/a2NCgTCxX9+cg=", - "homepage": "https://registry.terraform.io/providers/ubiquiti-community/unifi", - "owner": "ubiquiti-community", - "repo": "terraform-provider-unifi", - "rev": "v0.41.3", + "opennebula_opennebula": { + "hash": "sha256-ClxUDFacloovD4qKumIWEL+QWyb7JD58w2WyFItPFM8=", + "homepage": "https://registry.terraform.io/providers/OpenNebula/opennebula", + "owner": "OpenNebula", + "repo": "terraform-provider-opennebula", + "rev": "v1.5.0", "spdx": "MPL-2.0", - "vendorHash": "sha256-iqwdSzyVZE5CitzXc8rWn2zO3v+VvuDNeS0ll0V6MtU=" + "vendorHash": "sha256-ofzbDmivXgH1i1Gjhpyp0bk3FDs5SnxwoRuNAWyMqyI=" }, - "utils": { - "hash": "sha256-TcCDv6IB6Z4llvogKWasAK4u2NFsOG4UKAUERDH6SXg=", - "homepage": "https://registry.terraform.io/providers/cloudposse/utils", - "owner": "cloudposse", - "repo": "terraform-provider-utils", - "rev": "v1.31.0", + "opentelekomcloud_opentelekomcloud": { + "hash": "sha256-3+ravOgTUzGXKd/e12opM/xcm0Vqaz4lLbpo3MLetrg=", + "homepage": "https://registry.terraform.io/providers/opentelekomcloud/opentelekomcloud", + "owner": "opentelekomcloud", + "repo": "terraform-provider-opentelekomcloud", + "rev": "v1.36.49", + "spdx": "MPL-2.0", + "vendorHash": "sha256-Nvq1/t5TlLSBon8jlPmPUduQtFGKBLQRTZKBmpYHV1M=" + }, + "opsgenie_opsgenie": { + "hash": "sha256-+msy9kPAryR0Ll5jKOd47DMjeMxEdSIfKZZKVHohQGY=", + "homepage": "https://registry.terraform.io/providers/opsgenie/opsgenie", + "owner": "opsgenie", + "repo": "terraform-provider-opsgenie", + "rev": "v0.6.37", + "spdx": "MPL-2.0", + "vendorHash": null + }, + "oracle_oci": { + "hash": "sha256-LnR1bXTr+j7tKALZll/dwUI+o9TepPGS0mAHGxYK7g0=", + "homepage": "https://registry.terraform.io/providers/oracle/oci", + "owner": "oracle", + "repo": "terraform-provider-oci", + "rev": "v7.22.0", + "spdx": "MPL-2.0", + "vendorHash": null + }, + "ovh_ovh": { + "hash": "sha256-G6pLpThqKuCDx4QdTYvJYpba56ZWaxPML/3H1oslw34=", + "homepage": "https://registry.terraform.io/providers/ovh/ovh", + "owner": "ovh", + "repo": "terraform-provider-ovh", + "rev": "v2.8.0", + "spdx": "MPL-2.0", + "vendorHash": null + }, + "pablovarela_slack": { + "hash": "sha256-efYNaDvy9cQmR4VhUABF+ozAh6M3y+em8bQtHlU7A2o=", + "homepage": "https://registry.terraform.io/providers/pablovarela/slack", + "owner": "pablovarela", + "repo": "terraform-provider-slack", + "rev": "v1.2.2", + "spdx": "GPL-3.0", + "vendorHash": "sha256-F1AuO/dkldEDRvkwrbq2EjByxjg3K2rohZAM4DzKPUw=" + }, + "pagerduty_pagerduty": { + "hash": "sha256-3Dv2EOh/4xa7rjJBikIhbSQaskncGjxHYaS6WqHriKo=", + "homepage": "https://registry.terraform.io/providers/PagerDuty/pagerduty", + "owner": "PagerDuty", + "repo": "terraform-provider-pagerduty", + "rev": "v3.30.2", + "spdx": "MPL-2.0", + "vendorHash": null + }, + "pan-net_powerdns": { + "hash": "sha256-NtJs2oNJbjUYNFsbrfo2RYhqOlKA15GJt9gi1HuTIw0=", + "homepage": "https://registry.terraform.io/providers/pan-net/powerdns", + "owner": "pan-net", + "repo": "terraform-provider-powerdns", + "rev": "v1.5.0", + "spdx": "MPL-2.0", + "vendorHash": null + }, + "phillbaker_elasticsearch": { + "hash": "sha256-a6kHN3w0sQCP+0+ZtFwcg9erfVBYkhNo+yOrnwweGWo=", + "homepage": "https://registry.terraform.io/providers/phillbaker/elasticsearch", + "owner": "phillbaker", + "repo": "terraform-provider-elasticsearch", + "rev": "v2.0.7", + "spdx": "MPL-2.0", + "vendorHash": "sha256-oVTanZpCWs05HwyIKW2ajiBPz1HXOFzBAt5Us+EtTRw=" + }, + "poseidon_ct": { + "hash": "sha256-c1cqTfMlZ5fXDNMYLsk4447X0p/qIQYvRTqVY8cSs+E=", + "homepage": "https://registry.terraform.io/providers/poseidon/ct", + "owner": "poseidon", + "repo": "terraform-provider-ct", + "rev": "v0.13.0", "spdx": "Apache-2.0", - "vendorHash": "sha256-djz3kNV+13Sz9prRPhWaWi50hvYXq3I3cp4neLexeEs=" + "vendorHash": "sha256-ZCMSmOCPEMxCSpl3DjIUGPj1W/KNJgyjtHpmQ19JquA=" }, - "vault": { - "hash": "sha256-5jx6a2BfnugD41D6iK7wvOzmMPImxNHCiIix4+puRp4=", - "homepage": "https://registry.terraform.io/providers/hashicorp/vault", - "owner": "hashicorp", - "repo": "terraform-provider-vault", - "rev": "v5.3.0", - "spdx": "MPL-2.0", - "vendorHash": "sha256-qrztgFJ/WDTxP5565rnx2sAELFKQGOxFuEYqWQQYVVY=" - }, - "vcd": { - "hash": "sha256-W+ffIT70IaePg3xfOaQgCjPTWTN3iSAYwkf+s+zkB84=", - "homepage": "https://registry.terraform.io/providers/vmware/vcd", - "owner": "vmware", - "repo": "terraform-provider-vcd", - "rev": "v3.14.1", - "spdx": "MPL-2.0", - "vendorHash": "sha256-eCIJ2w8DjmUCGp0VbliLaQ6C29mJhl6Spya06Xyiqd4=" - }, - "venafi": { - "hash": "sha256-wpAckNRqZjSDt7KpCRpLSYkn6Gm+QPzn5sIJ90wRXjI=", - "homepage": "https://registry.terraform.io/providers/Venafi/venafi", - "owner": "Venafi", - "repo": "terraform-provider-venafi", - "rev": "v0.23.1", - "spdx": "MPL-2.0", - "vendorHash": "sha256-chDZVBd7tb1VsfTXcWz7j29LzHpUnJpXKRFAyqxnR8s=" - }, - "vinyldns": { - "hash": "sha256-ow+o9fRw/t2i4N65zuVFbfPb68ZUcJfNB5ARYqRTsIs=", - "homepage": "https://registry.terraform.io/providers/vinyldns/vinyldns", - "owner": "vinyldns", - "repo": "terraform-provider-vinyldns", - "rev": "v0.10.3", + "poseidon_matchbox": { + "hash": "sha256-B1PxdbqXrB1ioB5utI4LI6rkhwHmaAiYkSxRAcjJnAA=", + "homepage": "https://registry.terraform.io/providers/poseidon/matchbox", + "owner": "poseidon", + "repo": "terraform-provider-matchbox", + "rev": "v0.5.4", "spdx": "Apache-2.0", - "vendorHash": "sha256-B4W8rzWHucYqA0HXrMrtKQ91ZfFAgcxHqFMvMnVuGfk=" + "vendorHash": "sha256-L1wufPa7LPPyOPTL+jFQgiWzJoJYS+fCdw3N0KZqKtc=" }, - "virtualbox": { + "rancher_rancher2": { + "hash": "sha256-E1E7xrQUOGbGV1xNpZFrIql6zgfzr3jmCbIFREbJdwE=", + "homepage": "https://registry.terraform.io/providers/rancher/rancher2", + "owner": "rancher", + "repo": "terraform-provider-rancher2", + "rev": "v8.2.1", + "spdx": "MPL-2.0", + "vendorHash": "sha256-M2lJKmIR66lQKFkInjizn68ax2Gq4sim5Y3vZKyDhZ8=" + }, + "rootlyhq_rootly": { + "hash": "sha256-HlUjEeyomuLqlKFq5U+dpgyBOxrxHALqywVbJM9Fm/s=", + "homepage": "https://registry.terraform.io/providers/rootlyhq/rootly", + "owner": "rootlyhq", + "repo": "terraform-provider-rootly", + "rev": "v4.3.2", + "spdx": "MPL-2.0", + "vendorHash": "sha256-auyQLDDQ+tfMQCqICDR5tfvaYrO89Eani7lAsfoPwwU=" + }, + "rundeck_rundeck": { + "hash": "sha256-g8unbz8+UGLiAOJju6E2bLkygvZgHkv173PdMDefmrc=", + "homepage": "https://registry.terraform.io/providers/rundeck/rundeck", + "owner": "rundeck", + "repo": "terraform-provider-rundeck", + "rev": "v0.5.2", + "spdx": "MPL-2.0", + "vendorHash": null + }, + "sacloud_sakuracloud": { + "hash": "sha256-hS4hXmi30yiIkWNqXKhuIE3UtzcWrfu4w6XR6B9Vebc=", + "homepage": "https://registry.terraform.io/providers/sacloud/sakuracloud", + "owner": "sacloud", + "repo": "terraform-provider-sakuracloud", + "rev": "v2.30.0", + "spdx": "Apache-2.0", + "vendorHash": "sha256-at8i4gCFrJxE9fVIL5uI7iSFex0gLXu1SnlPKlZAmrY=" + }, + "sap_btp": { + "hash": "sha256-pz5+Hhu3pBTjBOVzpUXI589PZzKJtoUrOpTC8/TNEE0=", + "homepage": "https://registry.terraform.io/providers/SAP/btp", + "owner": "SAP", + "repo": "terraform-provider-btp", + "rev": "v1.16.1", + "spdx": "Apache-2.0", + "vendorHash": "sha256-pCBmeisWcyw/Box1yrWwYj+hSrsqmToiiom2jS8I1SU=" + }, + "sapcc_ccloud": { + "hash": "sha256-Dpx0eugcHCJV8GNPqjxx4P9ohgJgB10DTnHr+CeN/iQ=", + "homepage": "https://registry.terraform.io/providers/sapcc/ccloud", + "owner": "sapcc", + "repo": "terraform-provider-ccloud", + "rev": "v1.6.7", + "spdx": "MPL-2.0", + "vendorHash": "sha256-OqbnkuEy9w6F1DxmlYhRNYhBaYhWV0FtMK4wdwSybh8=" + }, + "scaleway_scaleway": { + "hash": "sha256-FT9V0qAs6NSULqOMsW9uolc1WgueUnU4vfL4rntMA1A=", + "homepage": "https://registry.terraform.io/providers/scaleway/scaleway", + "owner": "scaleway", + "repo": "terraform-provider-scaleway", + "rev": "v2.60.4", + "spdx": "MPL-2.0", + "vendorHash": "sha256-OcKCtH4ciGrKwidTQC+yTWMyMfShJMsTnsKOyBxwLDg=" + }, + "scottwinkler_shell": { + "hash": "sha256-LTWEdXxi13sC09jh+EFZ6pOi1mzuvgBz5vceIkNE/JY=", + "homepage": "https://registry.terraform.io/providers/scottwinkler/shell", + "owner": "scottwinkler", + "repo": "terraform-provider-shell", + "rev": "v1.7.10", + "spdx": "MPL-2.0", + "vendorHash": "sha256-MIO0VHofPtKPtynbvjvEukMNr5NXHgk7BqwIhbc9+u0=" + }, + "selectel_selectel": { + "hash": "sha256-J0hz5qtT3bBKqoZ9SkZn0oxix1fIQRmwv7feME7CljM=", + "homepage": "https://registry.terraform.io/providers/selectel/selectel", + "owner": "selectel", + "repo": "terraform-provider-selectel", + "rev": "v6.8.0", + "spdx": "MPL-2.0", + "vendorHash": "sha256-TQXj2Em665zhCqXiT2BG1xxvVCo0/G2SaQKUbqGwcQM=" + }, + "siderolabs_talos": { + "hash": "sha256-PPD4blyXt4/IalzwEn4+lvuD1Qx7VuUD/CUJILDRI5k=", + "homepage": "https://registry.terraform.io/providers/siderolabs/talos", + "owner": "siderolabs", + "repo": "terraform-provider-talos", + "rev": "v0.9.0", + "spdx": "MPL-2.0", + "vendorHash": "sha256-J2fLyYvlnefFIaJ6UwRfJ5nas86JCuOHAdWalr9T9fw=" + }, + "skytap_skytap": { + "hash": "sha256-JII4czazo6Di2sad1uFHMKDO2gWgZlQE8l/+IRYHQHU=", + "homepage": "https://registry.terraform.io/providers/skytap/skytap", + "owner": "skytap", + "repo": "terraform-provider-skytap", + "rev": "v0.15.1", + "spdx": "MPL-2.0", + "vendorHash": null + }, + "snowflake-labs_snowflake": { + "hash": "sha256-5vhCej98gkq8rQqAfNt04fWKvjFCuNp2lUmlXJrBXCY=", + "homepage": "https://registry.terraform.io/providers/Snowflake-Labs/snowflake", + "owner": "Snowflake-Labs", + "repo": "terraform-provider-snowflake", + "rev": "v1.0.5", + "spdx": "MIT", + "vendorHash": "sha256-skswuFKhN4FFpIunbom9rM/FVRJVOFb1WwHeAIaEjn8=" + }, + "spacelift-io_spacelift": { + "hash": "sha256-pYe8xmqudCkRvXNHJ4bSm9uitcDfpRlaGij7CrjQjd8=", + "homepage": "https://registry.terraform.io/providers/spacelift-io/spacelift", + "owner": "spacelift-io", + "repo": "terraform-provider-spacelift", + "rev": "v1.34.0", + "spdx": "MIT", + "vendorHash": "sha256-DLiS2fqr/gNdZGkhvqjdgpICY0QTlE/Ejl3m29Vanm4=" + }, + "splunk-terraform_signalfx": { + "hash": "sha256-Lx7L9S6uw++51LehLJSESJXXjLUhpMP4LRVGme85y6k=", + "homepage": "https://registry.terraform.io/providers/splunk-terraform/signalfx", + "owner": "splunk-terraform", + "repo": "terraform-provider-signalfx", + "rev": "v9.21.2", + "spdx": "MPL-2.0", + "vendorHash": "sha256-TMoZ1uR7G9oC7/9CiwC9rIJazqB9g6Xb+vxvYX2T9RY=" + }, + "spotinst_spotinst": { + "hash": "sha256-bbQ7WDizMnCF95E/iXOSSx0e5K2wMtUW39OxT/45Jn4=", + "homepage": "https://registry.terraform.io/providers/spotinst/spotinst", + "owner": "spotinst", + "repo": "terraform-provider-spotinst", + "rev": "v1.228.0", + "spdx": "MPL-2.0", + "vendorHash": "sha256-huHeWKzq/4cHAU4P7q9bOiJ2cAFqevZ80BsCyPiujxw=" + }, + "statuscakedev_statuscake": { + "hash": "sha256-zXBZZA+2uRN2FeGrayq0a4EBk7T+PvlBIwbuxwM7yBc=", + "homepage": "https://registry.terraform.io/providers/StatusCakeDev/statuscake", + "owner": "StatusCakeDev", + "repo": "terraform-provider-statuscake", + "rev": "v2.2.2", + "spdx": "MPL-2.0", + "vendorHash": "sha256-9M1DsE/FPQK8TG7xCJWbU3HAJCK3p/7lxdzjO1oAfWs=" + }, + "sumologic_sumologic": { + "hash": "sha256-0vWAKROcci1v9QRnBEyN5o9kD3c3YYAKimixRbC3mpk=", + "homepage": "https://registry.terraform.io/providers/SumoLogic/sumologic", + "owner": "SumoLogic", + "repo": "terraform-provider-sumologic", + "rev": "v3.1.6", + "spdx": "MPL-2.0", + "vendorHash": "sha256-IR6KjFW5GbsOIm3EEFyx3ctwhbifZlcNaZeGhbeK/Wo=" + }, + "sysdiglabs_sysdig": { + "hash": "sha256-nLZgUNWv2e3yTl7/ntSP//BNAaidJxzYA5+v2pJCYDM=", + "homepage": "https://registry.terraform.io/providers/sysdiglabs/sysdig", + "owner": "sysdiglabs", + "repo": "terraform-provider-sysdig", + "rev": "v2.1.0", + "spdx": "MPL-2.0", + "vendorHash": "sha256-rWiafaFE1RolO9JUN1WoW4EWJjR7kpfeVEOTLf21j50=" + }, + "tailscale_tailscale": { + "hash": "sha256-3sStrkhEZqtR+G5kTFSx++Yxa26h00Y2fa8DI6/8ftY=", + "homepage": "https://registry.terraform.io/providers/tailscale/tailscale", + "owner": "tailscale", + "repo": "terraform-provider-tailscale", + "rev": "v0.22.0", + "spdx": "MIT", + "vendorHash": "sha256-Di4Mc67GrGue0fN47APjJKiWSCw5MRuYF4tS9hP6HLw=" + }, + "telmate_proxmox": { + "hash": "sha256-1aKKlOIk1mH4yx66eD635d1IaUWXIiBGHEt4A2F2mGM=", + "homepage": "https://registry.terraform.io/providers/Telmate/proxmox", + "owner": "Telmate", + "repo": "terraform-provider-proxmox", + "rev": "v3.0.2-rc04", + "spdx": "MIT", + "vendorHash": "sha256-Hzq97ElAjs7Y4tmJ2x7+g4j74MEdEvI2bD8pkvi5ZXg=" + }, + "temporalio_temporalcloud": { + "hash": "sha256-hHHZ+5LF5AoDB2JZyPRce6oEtOZOGi8lYNgbTlAqTuA=", + "homepage": "https://registry.terraform.io/providers/temporalio/temporalcloud", + "owner": "temporalio", + "repo": "terraform-provider-temporalcloud", + "rev": "v1.1.1", + "spdx": "MPL-2.0", + "vendorHash": "sha256-9GjhP/Oh2HlVuMcuXFhS7MUmF3eS4qlUsW5XhugaK14=" + }, + "tencentcloudstack_tencentcloud": { + "hash": "sha256-SfkTyjf0sPrVcOs27JYuLu4ebjelsVUV/L061KU1xOs=", + "homepage": "https://registry.terraform.io/providers/tencentcloudstack/tencentcloud", + "owner": "tencentcloudstack", + "repo": "terraform-provider-tencentcloud", + "rev": "v1.82.29", + "spdx": "MPL-2.0", + "vendorHash": null + }, + "tenstad_remote": { + "hash": "sha256-9Q67XRZwJkTrOQZ0IXiMWKLCJgJ/woDL9U+3yBHGZG0=", + "homepage": "https://registry.terraform.io/providers/tenstad/remote", + "owner": "tenstad", + "repo": "terraform-provider-remote", + "rev": "v0.2.1", + "spdx": "MPL-2.0", + "vendorHash": "sha256-vsnihN98O5RzMZk5YNycCnjpvxklQoLbZolCJXbJRMU=" + }, + "terra-farm_virtualbox": { "hash": "sha256-Oijdx22s7wIDC+Sms097rFVNRF9tzMlUNlPMV7GSsiI=", "homepage": "https://registry.terraform.io/providers/terra-farm/virtualbox", "owner": "terra-farm", @@ -1434,34 +1326,124 @@ "spdx": "MIT", "vendorHash": "sha256-SF11E60OQiRdf+Pf6XyJg60yGRnGOcSzhrYccrWaeYE=" }, - "vpsadmin": { - "hash": "sha256-Yi5mFhJsGGPg3IyOdgV2mTfj5ZVd76vu3/JFNrh5+Wc=", - "homepage": "https://registry.terraform.io/providers/vpsfreecz/vpsadmin", - "owner": "vpsfreecz", - "repo": "terraform-provider-vpsadmin", - "rev": "v1.2.0", + "terraform-lxd_lxd": { + "hash": "sha256-ToK0Zua7e4CPm+8ZLIVw+dpt4bbahqWvvCKhjrAeW7s=", + "homepage": "https://registry.terraform.io/providers/terraform-lxd/lxd", + "owner": "terraform-lxd", + "repo": "terraform-provider-lxd", + "rev": "v2.5.0", "spdx": "MPL-2.0", - "vendorHash": "sha256-rUYHapEVqRupLOPVbcAH8YP0cuXclMmYTQUkqeOwCN0=" + "vendorHash": "sha256-zGHbDQhr1UjF6jcK4NHw90eTVrC+R76G8Fg7vJht20c=" }, - "vsphere": { - "hash": "sha256-vRO6vxzi4d0hNc0MmQLhN7roONnsjxPBtFt0fyvxWd8=", - "homepage": "https://registry.terraform.io/providers/hashicorp/vsphere", - "owner": "hashicorp", - "repo": "terraform-provider-vsphere", - "rev": "v2.12.0", + "terraform-provider-openstack_openstack": { + "hash": "sha256-vACjj5wo2zqNls0VgKeylEW5rrsNv1jz5iKoEywBAEc=", + "homepage": "https://registry.terraform.io/providers/terraform-provider-openstack/openstack", + "owner": "terraform-provider-openstack", + "repo": "terraform-provider-openstack", + "rev": "v3.3.2", "spdx": "MPL-2.0", - "vendorHash": "sha256-47xWjlzpQ/EYzjbuuMKQiu5cfYAXdYkXRl+AOEP+sA4=" + "vendorHash": "sha256-AlB9tC3KejgUAjjT2pY7Q2mTS/AV4QRusSnyPiOheXE=" }, - "vultr": { - "hash": "sha256-Vxp8Uv6W6nKGvypPAvlY+TI5O77How79c7xBTJWg/5Q=", - "homepage": "https://registry.terraform.io/providers/vultr/vultr", - "owner": "vultr", - "repo": "terraform-provider-vultr", - "rev": "v2.27.1", + "terraform-routeros_routeros": { + "hash": "sha256-k+q4n20bvYK7nn9ZGQEQH70xt6ugNKzK58XyzwrKh0Q=", + "homepage": "https://registry.terraform.io/providers/terraform-routeros/routeros", + "owner": "terraform-routeros", + "repo": "terraform-provider-routeros", + "rev": "v1.88.0", "spdx": "MPL-2.0", - "vendorHash": "sha256-OoIlSsR8vbS15TfZvPP+RBDjPvD7Jzr2CpgMk76s6R8=" + "vendorHash": "sha256-gkXP+0w5PDscLaiNK+WsJxz3eYhae5ajxHUmkYuBvwI=" }, - "wavefront": { + "timohirt_hetznerdns": { + "hash": "sha256-wmXZ6+5Ex3G2JUdw2is2VIo/X1X0V1Auw5KmYpGllug=", + "homepage": "https://registry.terraform.io/providers/timohirt/hetznerdns", + "owner": "timohirt", + "repo": "terraform-provider-hetznerdns", + "rev": "v2.2.0", + "spdx": "MPL-2.0", + "vendorHash": "sha256-Bat/S4e5vzT0/XOhJ9zCWLa4IE4owLC6ec1yvEh+c0Y=" + }, + "trozz_pocketid": { + "hash": "sha256-rUCjvJKLZE+cSsHZdntBF9WpZDtIkVkukmLGEvGVC8s=", + "homepage": "https://registry.terraform.io/providers/Trozz/pocketid", + "owner": "Trozz", + "repo": "terraform-provider-pocketid", + "rev": "v0.1.5", + "spdx": "MIT", + "vendorHash": "sha256-0oX7f4L5eljmOL8+g6KYdBcoIwng87+pi3XCXKDEb3w=" + }, + "turbot_turbot": { + "hash": "sha256-hUiILS5OVpa5MurChW2U9DQElQxzXo8yQfHRjWcd8cc=", + "homepage": "https://registry.terraform.io/providers/turbot/turbot", + "owner": "turbot", + "repo": "terraform-provider-turbot", + "rev": "v1.13.0", + "spdx": "MPL-2.0", + "vendorHash": null + }, + "ubiquiti-community_unifi": { + "hash": "sha256-IqsQRVgAB1PUqYJ0JPig6oq7FKJuS/a2NCgTCxX9+cg=", + "homepage": "https://registry.terraform.io/providers/ubiquiti-community/unifi", + "owner": "ubiquiti-community", + "repo": "terraform-provider-unifi", + "rev": "v0.41.3", + "spdx": "MPL-2.0", + "vendorHash": "sha256-iqwdSzyVZE5CitzXc8rWn2zO3v+VvuDNeS0ll0V6MtU=" + }, + "ucloud_ucloud": { + "hash": "sha256-mPTejWXREIBjEZVb660bUUnyj3z7hgfKPrUsSVvMx7A=", + "homepage": "https://registry.terraform.io/providers/ucloud/ucloud", + "owner": "ucloud", + "repo": "terraform-provider-ucloud", + "rev": "v1.39.1", + "spdx": "MPL-2.0", + "vendorHash": null + }, + "vancluever_acme": { + "hash": "sha256-Gi8Lpyl/gWGhMbHE27vtTiluMvs9o7UlNsaYs6c1ecQ=", + "homepage": "https://registry.terraform.io/providers/vancluever/acme", + "owner": "vancluever", + "repo": "terraform-provider-acme", + "rev": "v2.36.0", + "spdx": "MPL-2.0", + "vendorHash": "sha256-88WR4NT1JhJ3JQHcRQXHxTUvD00vRj3dDNPXViSYSUs=" + }, + "venafi_venafi": { + "hash": "sha256-wpAckNRqZjSDt7KpCRpLSYkn6Gm+QPzn5sIJ90wRXjI=", + "homepage": "https://registry.terraform.io/providers/Venafi/venafi", + "owner": "Venafi", + "repo": "terraform-provider-venafi", + "rev": "v0.23.1", + "spdx": "MPL-2.0", + "vendorHash": "sha256-chDZVBd7tb1VsfTXcWz7j29LzHpUnJpXKRFAyqxnR8s=" + }, + "vinyldns_vinyldns": { + "hash": "sha256-ow+o9fRw/t2i4N65zuVFbfPb68ZUcJfNB5ARYqRTsIs=", + "homepage": "https://registry.terraform.io/providers/vinyldns/vinyldns", + "owner": "vinyldns", + "repo": "terraform-provider-vinyldns", + "rev": "v0.10.3", + "spdx": "Apache-2.0", + "vendorHash": "sha256-B4W8rzWHucYqA0HXrMrtKQ91ZfFAgcxHqFMvMnVuGfk=" + }, + "vmware_avi": { + "hash": "sha256-e8yzc3nRP0ktcuuKyBXydS9NhoceYZKzJcqCWOfaPL0=", + "homepage": "https://registry.terraform.io/providers/vmware/avi", + "owner": "vmware", + "repo": "terraform-provider-avi", + "rev": "v31.1.1", + "spdx": "MPL-2.0", + "vendorHash": "sha256-2NSP0jGFchh3roqSKxCRbkQ+8lNiGRo4JivvBj6wqdg=" + }, + "vmware_vcd": { + "hash": "sha256-W+ffIT70IaePg3xfOaQgCjPTWTN3iSAYwkf+s+zkB84=", + "homepage": "https://registry.terraform.io/providers/vmware/vcd", + "owner": "vmware", + "repo": "terraform-provider-vcd", + "rev": "v3.14.1", + "spdx": "MPL-2.0", + "vendorHash": "sha256-eCIJ2w8DjmUCGp0VbliLaQ6C29mJhl6Spya06Xyiqd4=" + }, + "vmware_wavefront": { "hash": "sha256-yNNtOkodzwxKvHQq9GZlUicezGW6u2ih6ry/cOtJQGM=", "homepage": "https://registry.terraform.io/providers/vmware/wavefront", "owner": "vmware", @@ -1470,7 +1452,34 @@ "spdx": "MPL-2.0", "vendorHash": "sha256-GRnVhGpVgFI83Lg34Zv1xgV5Kp8ioKTFV5uaqS80ATg=" }, - "yandex": { + "vpsfreecz_vpsadmin": { + "hash": "sha256-Yi5mFhJsGGPg3IyOdgV2mTfj5ZVd76vu3/JFNrh5+Wc=", + "homepage": "https://registry.terraform.io/providers/vpsfreecz/vpsadmin", + "owner": "vpsfreecz", + "repo": "terraform-provider-vpsadmin", + "rev": "v1.2.0", + "spdx": "MPL-2.0", + "vendorHash": "sha256-rUYHapEVqRupLOPVbcAH8YP0cuXclMmYTQUkqeOwCN0=" + }, + "vultr_vultr": { + "hash": "sha256-Vxp8Uv6W6nKGvypPAvlY+TI5O77How79c7xBTJWg/5Q=", + "homepage": "https://registry.terraform.io/providers/vultr/vultr", + "owner": "vultr", + "repo": "terraform-provider-vultr", + "rev": "v2.27.1", + "spdx": "MPL-2.0", + "vendorHash": "sha256-OoIlSsR8vbS15TfZvPP+RBDjPvD7Jzr2CpgMk76s6R8=" + }, + "wgebis_mailgun": { + "hash": "sha256-fuJnzloJa0S1r3/22Wecbq1oF8oRQP2nrrmwCONHITA=", + "homepage": "https://registry.terraform.io/providers/wgebis/mailgun", + "owner": "wgebis", + "repo": "terraform-provider-mailgun", + "rev": "v0.7.7", + "spdx": "MPL-2.0", + "vendorHash": "sha256-Y6zsbhLNehO3i/BRjKggVhcM15Qesbd6HbARFH/arM8=" + }, + "yandex-cloud_yandex": { "hash": "sha256-5dqOMkm+/uSvNdN+9WLaulHFmDvSiXv/1ZOZUDOFvZs=", "homepage": "https://registry.terraform.io/providers/yandex-cloud/yandex", "owner": "yandex-cloud", diff --git a/pkgs/applications/networking/cluster/terraform-providers/update-provider b/pkgs/applications/networking/cluster/terraform-providers/update-provider index 38ce1f0b7fcf..b54b1cdccc7a 100755 --- a/pkgs/applications/networking/cluster/terraform-providers/update-provider +++ b/pkgs/applications/networking/cluster/terraform-providers/update-provider @@ -12,18 +12,13 @@ set -x show_usage() { cat </] +Usage: ./update-provider [--force] [--no-build] _ -Update a single provider in the providers.json inventory file. +Add or update a single provider in the providers.json inventory file. -For example to update 'terraform-providers.aws' run: +For example to update 'terraform-providers.hashicorp_aws' run: - ./update-provider aws - -If the provider is not in the list already, use the form '/' -to add the provider to the list: - - ./update-provider hetznercloud/hcloud + ./update-provider hashicorp_aws Options: @@ -104,9 +99,11 @@ is_stable_version() { pushd "$(dirname "$0")" >/dev/null -if [[ ${provider} =~ ^[^/]+/[^/]+$ ]]; then - homepage="https://registry.terraform.io/providers/${provider}" - provider=$(basename "${provider}") +provider="$(echo "$provider" | tr '[:upper:]' '[:lower:]')" +homepage="$(read_attr homepage)" + +if [[ $homepage == "null" ]]; then + homepage="https://registry.terraform.io/providers/${provider//_//}" echo_provider "init" update_attr homepage "${homepage}" # create empty stings so nix-prefetch works @@ -115,18 +112,16 @@ if [[ ${provider} =~ ^[^/]+/[^/]+$ ]]; then update_attr spdx "" fi -homepage="$(read_attr homepage)" - old_rev="$(read_attr rev)" registry_response_unstable=$(curl -s "${homepage//providers/v1/providers}") if is_stable_version "${old_rev}"; then - version_stable=$(jq -r '.versions | map(select(test("^[0-9]+\\.[0-9]+\\.[0-9]+$"))) | last' <<<${registry_response_unstable}) + version_stable=$(jq -r '.versions | map(select(test("^[0-9]+\\.[0-9]+\\.[0-9]+$"))) | last' <<<"${registry_response_unstable}") registry_response_stable=$(curl -s "${homepage//providers/v1/providers}/${version_stable}") - rev="$(jq -r '.tag' <<<${registry_response_stable})" + rev="$(jq -r '.tag' <<<"${registry_response_stable}")" registry_response=$registry_response_stable else - rev="$(jq -r '.tag' <<<${registry_response_unstable})" + rev="$(jq -r '.tag' <<<"${registry_response_unstable}")" registry_response=$registry_response_unstable fi diff --git a/pkgs/applications/networking/cluster/terraform/default.nix b/pkgs/applications/networking/cluster/terraform/default.nix index 5a0224bc33ab..867a846b8f88 100644 --- a/pkgs/applications/networking/cluster/terraform/default.nix +++ b/pkgs/applications/networking/cluster/terraform/default.nix @@ -213,7 +213,7 @@ rec { mainTf = writeText "main.tf" '' resource "random_id" "test" {} ''; - terraform = terraform_1.withPlugins (p: [ p.random ]); + terraform = terraform_1.withPlugins (p: [ p.hashicorp_random ]); test = runCommand "terraform-plugin-test" { buildInputs = [ terraform ]; } '' set -e # make it fail outside of sandbox diff --git a/pkgs/build-support/build-mozilla-mach/default.nix b/pkgs/build-support/build-mozilla-mach/default.nix index 834654bee746..b578050bf8c9 100644 --- a/pkgs/build-support/build-mozilla-mach/default.nix +++ b/pkgs/build-support/build-mozilla-mach/default.nix @@ -89,7 +89,6 @@ in nasm, nspr, nss_esr, - nss_3_114, nss_3_115, nss_latest, onnxruntime, @@ -578,8 +577,6 @@ buildStdenv.mkDerivation { nss_latest else if (lib.versionAtLeast version "143") then nss_3_115 - else if (lib.versionAtLeast version "141") then - nss_3_114 else nss_esr ) diff --git a/pkgs/by-name/do/docfd/nottui-unix.patch b/pkgs/by-name/do/docfd/nottui-unix.patch index 68e36a99974a..03a61576d00d 100644 --- a/pkgs/by-name/do/docfd/nottui-unix.patch +++ b/pkgs/by-name/do/docfd/nottui-unix.patch @@ -12,8 +12,8 @@ index e0ddc1f..a4e8523 100644 eio diff --git a/bin/ui_base.ml b/bin/ui_base.ml index f56ee8d..8d8ed70 100644 ---- a/bin/ui_base.ml -+++ b/bin/ui_base.ml +--- a/bin/UI_base.ml ++++ b/bin/UI_base.ml @@ -587,7 +587,7 @@ let ui_loop ~quit ~term root = if term_width <> prev_term_width || term_height <> prev_term_height then ( Lwd.set Vars.term_width_height (term_width, term_height) diff --git a/pkgs/by-name/do/docfd/package.nix b/pkgs/by-name/do/docfd/package.nix index 12e0a118c15d..14e0d9983153 100644 --- a/pkgs/by-name/do/docfd/package.nix +++ b/pkgs/by-name/do/docfd/package.nix @@ -14,7 +14,7 @@ ocamlPackages.buildDunePackage rec { pname = "docfd"; - version = "11.0.1"; + version = "12.0.0"; minimalOCamlVersion = "5.1"; @@ -22,7 +22,7 @@ ocamlPackages.buildDunePackage rec { owner = "darrenldl"; repo = "docfd"; rev = version; - hash = "sha256-uRC2QBn4gAfS9u85YaNH2Mm2C0reP8FnDHbyloY+OC8="; + hash = "sha256-Tb5J9FgI2JBpl5oejWRT3ixzt7kufnM+Xy6DdiB9s98="; }; # Compatibility with nottui ≥ 0.4 diff --git a/pkgs/by-name/gp/gpxsee/package.nix b/pkgs/by-name/gp/gpxsee/package.nix index 1b5fb9015e4a..0de781b67b92 100644 --- a/pkgs/by-name/gp/gpxsee/package.nix +++ b/pkgs/by-name/gp/gpxsee/package.nix @@ -9,13 +9,13 @@ stdenv.mkDerivation (finalAttrs: { pname = "gpxsee"; - version = "14.0"; + version = "14.1"; src = fetchFromGitHub { owner = "tumic0"; repo = "GPXSee"; tag = finalAttrs.version; - hash = "sha256-oLwkryR2C1rGAUM7Gvn0uUy1aQGtFaAkFy8RQAAnNHU="; + hash = "sha256-wXlmly2KtjyY5hdBAroP3H93+1tg5rtFPpDKFn3jnhA="; }; buildInputs = [ diff --git a/pkgs/by-name/iv/ivan/cmake.patch b/pkgs/by-name/iv/ivan/cmake.patch new file mode 100644 index 000000000000..4c02ce1c96aa --- /dev/null +++ b/pkgs/by-name/iv/ivan/cmake.patch @@ -0,0 +1,19 @@ +From bbfcbd7c039ddcfc3f419a4a45eee0076696fd39 Mon Sep 17 00:00:00 2001 +From: ryfactor <6005108+ryfactor@users.noreply.github.com> +Date: Fri, 13 Jun 2025 11:00:58 +1200 +Subject: [PATCH] Update CMake min version to 3.5 + +--- + CMakeLists.txt | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/CMakeLists.txt b/CMakeLists.txt +index e2358bad4..95db47bc7 100644 +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -1,4 +1,4 @@ +-cmake_minimum_required(VERSION 2.8.12.2) ++cmake_minimum_required(VERSION 3.5) + project(ivan CXX C) + + set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake") diff --git a/pkgs/by-name/iv/ivan/package.nix b/pkgs/by-name/iv/ivan/package.nix index 46106beb314e..51c045bb67aa 100644 --- a/pkgs/by-name/iv/ivan/package.nix +++ b/pkgs/by-name/iv/ivan/package.nix @@ -23,6 +23,10 @@ stdenv.mkDerivation rec { hash = "sha256-vqrQozsNrqW4oqoJ4V5E15AsMEuHq+pyZz7EtiA5euE="; }; + patches = [ + ./cmake.patch + ]; + nativeBuildInputs = [ cmake pkg-config diff --git a/pkgs/by-name/ki/kitget/package.nix b/pkgs/by-name/ki/kitget/package.nix new file mode 100644 index 000000000000..cfa57151f633 --- /dev/null +++ b/pkgs/by-name/ki/kitget/package.nix @@ -0,0 +1,36 @@ +{ + lib, + fetchFromGitHub, + rustPlatform, + openssl, + pkg-config, +}: + +rustPlatform.buildRustPackage (finalAttrs: { + pname = "kitget"; + version = "0.0.2"; + + src = fetchFromGitHub { + owner = "adamperkowski"; + repo = "kitget"; + tag = "v${finalAttrs.version}"; + hash = "sha256-i26nu5SkcPhqwh+/bw1rz7h8K2u+hhSsOGiLj3sF1RQ="; + }; + + cargoHash = "sha256-KARJV8SdbNa4tUuwyyfrLKdsj9fPF10MpL9hDGOQLm4="; + + nativeBuildInputs = [ pkg-config ]; + buildInputs = [ openssl ]; + + # the project doesn't implement any tests + doCheck = false; + + meta = { + description = "Display and customize cat images in your terminal"; + homepage = "https://github.com/adamperkowski/kitget"; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ adamperkowski ]; + mainProgram = "kitget"; + platforms = lib.platforms.linux; + }; +}) diff --git a/pkgs/by-name/lo/lockbook-desktop/package.nix b/pkgs/by-name/lo/lockbook-desktop/package.nix index d0e091b644b7..1e1cff27153f 100644 --- a/pkgs/by-name/lo/lockbook-desktop/package.nix +++ b/pkgs/by-name/lo/lockbook-desktop/package.nix @@ -18,16 +18,16 @@ let in rustPlatform.buildRustPackage rec { pname = "lockbook-desktop"; - version = "25.10.7"; + version = "25.10.13"; src = fetchFromGitHub { owner = "lockbook"; repo = "lockbook"; tag = version; - hash = "sha256-EzVMTJaxPeIOJUdwmaShMLEe1XQcJx+0i1Rl0ILi5+c="; + hash = "sha256-TxNJpHQc18VVEnETNGpDSOn5yh+vHRyha8wXfipyyII="; }; - cargoHash = "sha256-ze82Iu2lH0n3ucKibLu3/VWMaaDWhs0oFFe/na2GbmY="; + cargoHash = "sha256-UBzngkgfTObhoh9MSq80gZqpJtmB6hFDtW2dYuGgQB4="; nativeBuildInputs = [ pkg-config diff --git a/pkgs/by-name/lo/lockbook/package.nix b/pkgs/by-name/lo/lockbook/package.nix index aa0bf6970c25..b7a28602a8dc 100644 --- a/pkgs/by-name/lo/lockbook/package.nix +++ b/pkgs/by-name/lo/lockbook/package.nix @@ -7,16 +7,16 @@ }: rustPlatform.buildRustPackage rec { pname = "lockbook"; - version = "25.10.7"; + version = "25.10.13"; src = fetchFromGitHub { owner = "lockbook"; repo = "lockbook"; tag = version; - hash = "sha256-EzVMTJaxPeIOJUdwmaShMLEe1XQcJx+0i1Rl0ILi5+c="; + hash = "sha256-TxNJpHQc18VVEnETNGpDSOn5yh+vHRyha8wXfipyyII="; }; - cargoHash = "sha256-ze82Iu2lH0n3ucKibLu3/VWMaaDWhs0oFFe/na2GbmY="; + cargoHash = "sha256-UBzngkgfTObhoh9MSq80gZqpJtmB6hFDtW2dYuGgQB4="; doCheck = false; # there are no cli tests cargoBuildFlags = [ diff --git a/pkgs/by-name/op/opentofu/package.nix b/pkgs/by-name/op/opentofu/package.nix index eed5a19636f1..93007668e11d 100644 --- a/pkgs/by-name/op/opentofu/package.nix +++ b/pkgs/by-name/op/opentofu/package.nix @@ -86,7 +86,7 @@ let resource "random_id" "test" {} ''; - opentofu = (pluggable package).withPlugins (p: [ p.random ]); + opentofu = (pluggable package).withPlugins (p: [ p.hashicorp_random ]); test = runCommand "opentofu-plugin-test" { buildInputs = [ opentofu ]; } '' # make it fail outside of sandbox export HTTP_PROXY=http://127.0.0.1:0 HTTPS_PROXY=https://127.0.0.1:0 diff --git a/pkgs/by-name/vc/vcpkg-tool/package.nix b/pkgs/by-name/vc/vcpkg-tool/package.nix index b0f750244d9a..9e8059e3c2ad 100644 --- a/pkgs/by-name/vc/vcpkg-tool/package.nix +++ b/pkgs/by-name/vc/vcpkg-tool/package.nix @@ -24,13 +24,13 @@ }: stdenv.mkDerivation (finalAttrs: { pname = "vcpkg-tool"; - version = "2025-09-03"; + version = "2025-10-10"; src = fetchFromGitHub { owner = "microsoft"; repo = "vcpkg-tool"; rev = finalAttrs.version; - hash = "sha256-mQY5K0dBRWkZooeqRm5X0JXTuD4Xfzs9Vi5j+tbd1aw="; + hash = "sha256-u88yjYhBKo8uX/jVQypYzOqWeE6PSM+GJD5v5qZyjC4="; }; nativeBuildInputs = [ diff --git a/pkgs/development/compilers/ocaml/5.4.nix b/pkgs/development/compilers/ocaml/5.4.nix new file mode 100644 index 000000000000..966b24944e90 --- /dev/null +++ b/pkgs/development/compilers/ocaml/5.4.nix @@ -0,0 +1,6 @@ +import ./generic.nix { + major_version = "5"; + minor_version = "4"; + patch_version = "0"; + sha256 = "sha256-36qKLhHHmbwXZdi+9EkRQG7l9IAwJxkDgqk5+IyRImY="; +} diff --git a/pkgs/development/libraries/nss/3_114.nix b/pkgs/development/libraries/nss/3_114.nix deleted file mode 100644 index af578ffeb2e4..000000000000 --- a/pkgs/development/libraries/nss/3_114.nix +++ /dev/null @@ -1,6 +0,0 @@ -import ./generic.nix { - version = "3.114.1"; - hash = "sha256-xs7G5MHOd6mPVpBfDd2fFG2qw+5KypBTPqErbl0zfrk="; - filename = "3_114.nix"; - versionRegex = "NSS_(3)_(114)(?:_(\\d+))?_RTM"; -} diff --git a/pkgs/development/ocaml-modules/bistro/default.nix b/pkgs/development/ocaml-modules/bistro/default.nix index a861414c4a27..e717ae737d51 100644 --- a/pkgs/development/ocaml-modules/bistro/default.nix +++ b/pkgs/development/ocaml-modules/bistro/default.nix @@ -48,6 +48,6 @@ buildDunePackage rec { description = "Build and execute typed scientific workflows"; maintainers = [ lib.maintainers.vbgl ]; license = lib.licenses.gpl2; - meta.broken = lib.versionAtLeast ppxlib.version "0.36"; + broken = lib.versionAtLeast ppxlib.version "0.36"; }; } diff --git a/pkgs/development/ocaml-modules/kcas/default.nix b/pkgs/development/ocaml-modules/kcas/default.nix index f1945790168c..707fdc095b58 100644 --- a/pkgs/development/ocaml-modules/kcas/default.nix +++ b/pkgs/development/ocaml-modules/kcas/default.nix @@ -2,6 +2,7 @@ lib, buildDunePackage, fetchurl, + ocaml, domain-local-await, domain-local-timeout, alcotest, @@ -29,7 +30,7 @@ buildDunePackage rec { backoff ]; - doCheck = true; + doCheck = !lib.versionAtLeast ocaml.version "5.4"; nativeCheckInputs = [ mdx.bin ]; checkInputs = [ alcotest diff --git a/pkgs/development/ocaml-modules/morbig/default.nix b/pkgs/development/ocaml-modules/morbig/default.nix index 76150f19cf18..5d95d4eaaf85 100644 --- a/pkgs/development/ocaml-modules/morbig/default.nix +++ b/pkgs/development/ocaml-modules/morbig/default.nix @@ -1,5 +1,6 @@ { lib, + ocaml, buildDunePackage, fetchFromGitHub, menhir, @@ -9,34 +10,36 @@ yojson, }: -buildDunePackage rec { - pname = "morbig"; - version = "0.11.0"; +lib.throwIf (lib.versionAtLeast ocaml.version "5.4") + "morbig is not available for OCaml ${ocaml.version}" - src = fetchFromGitHub { - owner = "colis-anr"; - repo = pname; - rev = "v${version}"; - sha256 = "sha256-fOBaJHHP/Imi9UDLflI52OdKDcmMxpl+NH3pfofmv/o="; - }; + buildDunePackage + rec { + pname = "morbig"; + version = "0.11.0"; - duneVersion = "3"; + src = fetchFromGitHub { + owner = "colis-anr"; + repo = pname; + rev = "v${version}"; + hash = "sha256-fOBaJHHP/Imi9UDLflI52OdKDcmMxpl+NH3pfofmv/o="; + }; - nativeBuildInputs = [ - menhir - ]; + nativeBuildInputs = [ + menhir + ]; - propagatedBuildInputs = [ - menhirLib - ppx_deriving_yojson - visitors - yojson - ]; + propagatedBuildInputs = [ + menhirLib + ppx_deriving_yojson + visitors + yojson + ]; - meta = with lib; { - homepage = "https://github.com/colis-anr/${pname}"; - description = "Static parser for POSIX Shell"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ niols ]; - }; -} + meta = with lib; { + homepage = "https://github.com/colis-anr/${pname}"; + description = "Static parser for POSIX Shell"; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ niols ]; + }; + } diff --git a/pkgs/development/ocaml-modules/notty/default.nix b/pkgs/development/ocaml-modules/notty/default.nix index 26ed24c5f322..1fb11ee9737e 100644 --- a/pkgs/development/ocaml-modules/notty/default.nix +++ b/pkgs/development/ocaml-modules/notty/default.nix @@ -2,6 +2,7 @@ lib, buildDunePackage, fetchurl, + fetchpatch, cppo, uutf, lwt, @@ -18,6 +19,12 @@ buildDunePackage rec { sha256 = "sha256-dGWfsUBz20Q4mJiRqyTyS++Bqkl9rBbZpn+aHJwgCCQ="; }; + # Compatibility with OCaml 5.4 + patches = fetchpatch { + url = "https://github.com/pqwy/notty/commit/a4d62f467e257196a5192da2184bd021dfd948b7.patch"; + hash = "sha256-p1eUuCvQKLj8uBeGyT2+i9WOYy4rk84pf9L3QioJDNY="; + }; + nativeBuildInputs = [ cppo ]; propagatedBuildInputs = [ diff --git a/pkgs/development/ocaml-modules/ocaml-lsp/jsonrpc.nix b/pkgs/development/ocaml-modules/ocaml-lsp/jsonrpc.nix index 576db0dfe2b9..f9aab2144986 100644 --- a/pkgs/development/ocaml-modules/ocaml-lsp/jsonrpc.nix +++ b/pkgs/development/ocaml-modules/ocaml-lsp/jsonrpc.nix @@ -9,7 +9,9 @@ lib, ocaml, version ? - if lib.versionAtLeast ocaml.version "5.3" then + if lib.versionAtLeast ocaml.version "5.4" then + "1.24.0" + else if lib.versionAtLeast ocaml.version "5.3" then "1.23.1" else if lib.versionAtLeast ocaml.version "5.2" then "1.21.0" @@ -26,6 +28,11 @@ let params = { + "1.24.0" = { + name = "lsp"; + minimalOCamlVersion = "5.3"; + sha256 = "sha256-TVoaIVf2EvbALY+DjZferKX4GyOt08XOpcts7Ot7N1c="; + }; "1.23.1" = { name = "lsp"; minimalOCamlVersion = "5.3"; diff --git a/pkgs/development/ocaml-modules/ocaml-lsp/lsp.nix b/pkgs/development/ocaml-modules/ocaml-lsp/lsp.nix index 902c632fb76a..11954a620834 100644 --- a/pkgs/development/ocaml-modules/ocaml-lsp/lsp.nix +++ b/pkgs/development/ocaml-modules/ocaml-lsp/lsp.nix @@ -23,7 +23,9 @@ ocamlformat-rpc-lib, ocaml, version ? - if lib.versionAtLeast ocaml.version "5.3" then + if lib.versionAtLeast ocaml.version "5.4" then + "1.24.0" + else if lib.versionAtLeast ocaml.version "5.3" then "1.23.1" else if lib.versionAtLeast ocaml.version "5.2" then "1.21.0" diff --git a/pkgs/development/ocaml-modules/ocf/ppx.nix b/pkgs/development/ocaml-modules/ocf/ppx.nix index a01c36942ea9..891bde287a9d 100644 --- a/pkgs/development/ocaml-modules/ocf/ppx.nix +++ b/pkgs/development/ocaml-modules/ocf/ppx.nix @@ -1,4 +1,5 @@ { + fetchpatch, buildDunePackage, ocf, ppxlib, @@ -10,7 +11,14 @@ buildDunePackage { inherit (ocf) src version; - duneVersion = "3"; + patches = [ + # Support for ppxlib ≥ 0.37 + (fetchpatch { + url = "https://framagit.org/zoggy/ocf/-/commit/38b1f6420e5c01b3ea6b2fed99b6b62e4c848dc0.patch"; + hash = "sha256-GymTdK/dOYGianvNIKkl9OhBGW+4dX5TqAkQuEF5FmA="; + includes = [ "*.ml" ]; + }) + ]; buildInputs = [ ppxlib diff --git a/pkgs/development/ocaml-modules/ppxlib/default.nix b/pkgs/development/ocaml-modules/ppxlib/default.nix index f97140fd0e53..759d92bb4467 100644 --- a/pkgs/development/ocaml-modules/ppxlib/default.nix +++ b/pkgs/development/ocaml-modules/ppxlib/default.nix @@ -1,13 +1,17 @@ { lib, fetchurl, + fetchFromGitHub, buildDunePackage, ocaml, version ? if lib.versionAtLeast ocaml.version "4.07" then if lib.versionAtLeast ocaml.version "4.08" then if lib.versionAtLeast ocaml.version "4.11" then - if lib.versionAtLeast ocaml.version "5.03" then "0.36.2" else "0.33.0" + if lib.versionAtLeast ocaml.version "5.03" then + if lib.versionAtLeast ocaml.version "5.04" then "0.37.0" else "0.36.2" + else + "0.33.0" else "0.24.0" else @@ -91,6 +95,10 @@ let sha256 = "sha256-yHVgB9jKwTeahGEUYQDB1hHH327MGpoKqb3ewNbk5xs="; min_version = "4.08"; }; + "0.37.0" = { + sha256 = "sha256-LiI4N+fOzDvISkMkMsCnL04dW+kWXJwzdy8VbbhdsLM="; + min_version = "4.08"; + }; } ."${version}"; in @@ -106,10 +114,11 @@ else pname = "ppxlib"; inherit version; - src = fetchurl { - url = "https://github.com/ocaml-ppx/ppxlib/releases/download/${version}/ppxlib-${version}.tbz"; - inherit (param) sha256; - }; + src = + param.src or (fetchurl { + url = "https://github.com/ocaml-ppx/ppxlib/releases/download/${version}/ppxlib-${version}.tbz"; + inherit (param) sha256; + }); propagatedBuildInputs = [ ocaml-compiler-libs diff --git a/pkgs/development/ocaml-modules/xtmpl/ppx.nix b/pkgs/development/ocaml-modules/xtmpl/ppx.nix index 3206c31bac17..749a83bb6201 100644 --- a/pkgs/development/ocaml-modules/xtmpl/ppx.nix +++ b/pkgs/development/ocaml-modules/xtmpl/ppx.nix @@ -9,6 +9,12 @@ buildDunePackage { inherit (xtmpl) src version; + # Fix for ppxlib ≥ 0.37 + postPatch = '' + substituteInPlace ppx/ppx_xtmpl.ml --replace-fail 'Parse.longident b' \ + 'Astlib.Longident.parse s' + ''; + buildInputs = [ ppxlib xtmpl diff --git a/pkgs/development/python-modules/async-upnp-client/default.nix b/pkgs/development/python-modules/async-upnp-client/default.nix index bd40593000fa..b88e8b942788 100644 --- a/pkgs/development/python-modules/async-upnp-client/default.nix +++ b/pkgs/development/python-modules/async-upnp-client/default.nix @@ -9,7 +9,6 @@ # dependencies aiohttp, - async-timeout, defusedxml, python-didl-lite, voluptuous, @@ -33,15 +32,18 @@ buildPythonPackage rec { }; pythonRelaxDeps = [ - "async-timeout" "defusedxml" ]; + pythonRemoveDeps = [ + # https://github.com/StevenLooman/async_upnp_client/pull/278 + "async-timeout" + ]; + build-system = [ setuptools ]; dependencies = [ aiohttp - async-timeout defusedxml python-didl-lite voluptuous diff --git a/pkgs/development/python-modules/mayavi/default.nix b/pkgs/development/python-modules/mayavi/default.nix index 9371ffb923e3..e8501f49a801 100644 --- a/pkgs/development/python-modules/mayavi/default.nix +++ b/pkgs/development/python-modules/mayavi/default.nix @@ -10,7 +10,6 @@ pygments, pyqt5, pythonOlder, - pythonAtLeast, traitsui, vtk, wrapQtAppsHook, @@ -62,7 +61,5 @@ buildPythonPackage rec { license = licenses.bsdOriginal; maintainers = [ ]; mainProgram = "mayavi2"; - # segfault - broken = pythonAtLeast "3.13"; }; } diff --git a/pkgs/development/python-modules/mkdocs-gen-files/default.nix b/pkgs/development/python-modules/mkdocs-gen-files/default.nix new file mode 100644 index 000000000000..67fb28dadc4c --- /dev/null +++ b/pkgs/development/python-modules/mkdocs-gen-files/default.nix @@ -0,0 +1,47 @@ +{ + lib, + buildPythonPackage, + fetchFromGitHub, + hatchling, + mkdocs, + pytestCheckHook, + pytest-golden, +}: + +buildPythonPackage rec { + pname = "mkdocs-gen-files"; + version = "0.5.0"; + pyproject = true; + + src = fetchFromGitHub { + owner = "oprypin"; + repo = "mkdocs-gen-files"; + tag = "v${version}"; + hash = "sha256-nRRdY7/en42s4PmHH+9vccRIl4pIp1F/Ka1bYvSHpBw="; + }; + + build-system = [ + hatchling + ]; + + dependencies = [ + mkdocs + ]; + + nativeCheckInputs = [ + pytestCheckHook + pytest-golden + ]; + + pythonImportsCheck = [ + "mkdocs_gen_files" + ]; + + meta = { + description = "MkDocs plugin to programmatically generate documentation pages during the build"; + homepage = "https://oprypin.github.io/mkdocs-gen-files/"; + changelog = "https://github.com/oprypin/mkdocs-gen-files/releases/tag/${src.tag}"; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ erooke ]; + }; +} diff --git a/pkgs/development/python-modules/pytask/default.nix b/pkgs/development/python-modules/pytask/default.nix index 7e1ae80c0b6a..a43fc8065bd7 100644 --- a/pkgs/development/python-modules/pytask/default.nix +++ b/pkgs/development/python-modules/pytask/default.nix @@ -16,6 +16,7 @@ sqlalchemy, universal-pathlib, pytestCheckHook, + cloudpickle, nbmake, pexpect, pytest-xdist, @@ -27,7 +28,6 @@ buildPythonPackage rec { pname = "pytask"; version = "0.5.5"; pyproject = true; - disabled = pythonOlder "3.8"; src = fetchFromGitHub { owner = "pytask-dev"; @@ -36,6 +36,10 @@ buildPythonPackage rec { hash = "sha256-0e1pJzoszTW8n+uFJlEeYstvHf4v+I2Is7oEHJ1qV7o="; }; + patches = [ + ./dont-use-uv-in-tests.patch + ]; + build-system = [ hatchling hatch-vcs @@ -57,6 +61,7 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook + cloudpickle git nbmake pexpect @@ -74,6 +79,11 @@ buildPythonPackage rec { "test_download_file" # Racy "test_more_nested_pytree_and_python_node_as_return_with_names" + # Without uv, subprocess unexpectedly doesn't fail + "test_pytask_on_a_module_that_uses_the_functional_api" + # Timeout + "test_pdb_interaction_capturing_twice" + "test_pdb_interaction_capturing_simple" ]; meta = with lib; { diff --git a/pkgs/development/python-modules/pytask/dont-use-uv-in-tests.patch b/pkgs/development/python-modules/pytask/dont-use-uv-in-tests.patch new file mode 100644 index 000000000000..13229c9020e1 --- /dev/null +++ b/pkgs/development/python-modules/pytask/dont-use-uv-in-tests.patch @@ -0,0 +1,155 @@ +diff --git a/tests/test_capture.py b/tests/test_capture.py +index ba37be8..8f70c9e 100644 +--- a/tests/test_capture.py ++++ b/tests/test_capture.py +@@ -87,7 +87,7 @@ def test_show_capture_with_build(tmp_path, show_capture): + """ + tmp_path.joinpath("workflow.py").write_text(textwrap.dedent(source)) + +- result = run_in_subprocess(("uv", "run", "python", "workflow.py"), cwd=tmp_path) ++ result = run_in_subprocess(("python", "workflow.py"), cwd=tmp_path) + + assert result.exit_code == ExitCode.FAILED + +@@ -128,7 +128,7 @@ def test_wrong_capture_method(tmp_path): + """ + tmp_path.joinpath("workflow.py").write_text(textwrap.dedent(source)) + +- result = run_in_subprocess(("uv", "run", "python", "workflow.py"), cwd=tmp_path) ++ result = run_in_subprocess(("python", "workflow.py"), cwd=tmp_path) + assert result.exit_code == ExitCode.CONFIGURATION_FAILED + assert "Value 'a' is not a valid" in result.stdout + assert "Traceback" not in result.stdout +@@ -255,7 +255,7 @@ def test_capturing_unicode_with_build(tmp_path, method): + tmp_path.joinpath("workflow.py").write_text( + textwrap.dedent(source), encoding="utf-8" + ) +- result = run_in_subprocess(("uv", "run", "python", "workflow.py"), cwd=tmp_path) ++ result = run_in_subprocess(("python", "workflow.py"), cwd=tmp_path) + assert result.exit_code == ExitCode.OK + assert "1 Succeeded" in result.stdout + +diff --git a/tests/test_config.py b/tests/test_config.py +index c46f5ed..eaa0934 100644 +--- a/tests/test_config.py ++++ b/tests/test_config.py +@@ -114,7 +114,7 @@ def test_paths_are_relative_to_configuration_file(tmp_path): + session = build(paths=[Path("src")]) + """ + tmp_path.joinpath("script.py").write_text(textwrap.dedent(source)) +- result = run_in_subprocess(("uv", "run", "python", "script.py"), cwd=tmp_path) ++ result = run_in_subprocess(("python", "script.py"), cwd=tmp_path) + assert result.exit_code == ExitCode.OK + assert "1 Succeeded" in result.stdout + +diff --git a/tests/test_dag_command.py b/tests/test_dag_command.py +index 3ca41ba..7c0c4fc 100644 +--- a/tests/test_dag_command.py ++++ b/tests/test_dag_command.py +@@ -92,7 +92,7 @@ def test_create_graph_via_task(tmp_path, format_, layout, rankdir): + tmp_path.joinpath("input.txt").touch() + + result = subprocess.run( +- ("uv", "run", "python", "task_example.py"), ++ ("python", "task_example.py"), + cwd=tmp_path, + check=True, + capture_output=True, +diff --git a/tests/test_execute.py b/tests/test_execute.py +index 1a23316..6532b48 100644 +--- a/tests/test_execute.py ++++ b/tests/test_execute.py +@@ -26,7 +26,7 @@ from tests.conftest import run_in_subprocess + def test_python_m_pytask(tmp_path): + tmp_path.joinpath("task_module.py").write_text("def task_example(): pass") + result = run_in_subprocess( +- ("uv", "run", "python", "-m", "pytask", tmp_path.as_posix()) ++ ("python", "-m", "pytask", tmp_path.as_posix()) + ) + assert result.exit_code == ExitCode.OK + +@@ -602,7 +602,7 @@ def test_execute_tasks_via_functional_api(tmp_path): + """ + tmp_path.joinpath("task_module.py").write_text(textwrap.dedent(source)) + result = subprocess.run( +- ("uv", "run", "python", tmp_path.joinpath("task_module.py").as_posix()), ++ ("python", tmp_path.joinpath("task_module.py").as_posix()), + check=False, + ) + assert result.returncode == ExitCode.OK +@@ -632,7 +632,7 @@ def test_execute_tasks_multiple_times_via_api(tmp_path): + """ + tmp_path.joinpath("task_module.py").write_text(textwrap.dedent(source)) + result = run_in_subprocess( +- ("uv", "run", "python", tmp_path.joinpath("task_module.py").as_posix()) ++ ("python", tmp_path.joinpath("task_module.py").as_posix()) + ) + assert result.exit_code == ExitCode.OK + +diff --git a/tests/test_hook_module.py b/tests/test_hook_module.py +index eba4868..e26288a 100644 +--- a/tests/test_hook_module.py ++++ b/tests/test_hook_module.py +@@ -25,8 +25,6 @@ def test_add_new_hook_via_cli(tmp_path, module_name): + + if module_name: + args = ( +- "uv", +- "run", + "python", + "-m", + "pytask", +@@ -37,8 +35,6 @@ def test_add_new_hook_via_cli(tmp_path, module_name): + ) + else: + args = ( +- "uv", +- "run", + "pytask", + "build", + "--hook-module", +@@ -70,9 +66,6 @@ def test_add_new_hook_via_config(tmp_path, module_name): + + if module_name: + args = ( +- "uv", +- "run", +- "--no-project", + "python", + "-m", + "pytask", +@@ -80,7 +73,7 @@ def test_add_new_hook_via_config(tmp_path, module_name): + "--help", + ) + else: +- args = ("uv", "run", "--no-project", "pytask", "build", "--help") ++ args = ("pytask", "build", "--help") + + result = run_in_subprocess(args, cwd=tmp_path) + assert result.exit_code == ExitCode.OK +diff --git a/tests/test_task.py b/tests/test_task.py +index a2f70ad..510619e 100644 +--- a/tests/test_task.py ++++ b/tests/test_task.py +@@ -667,7 +667,7 @@ def test_task_will_be_executed_after_another_one_with_function_session( + tmp_path.joinpath("task_example.py").write_text(textwrap.dedent(source)) + + result = subprocess.run( +- ("uv", "run", "python", "task_example.py"), ++ ("python", "task_example.py"), + cwd=tmp_path, + capture_output=True, + check=False, +diff --git a/tests/test_warnings.py b/tests/test_warnings.py +index 8811018..5aae724 100644 +--- a/tests/test_warnings.py ++++ b/tests/test_warnings.py +@@ -148,7 +148,7 @@ def test_deprecation_warnings_are_not_captured(tmp_path, warning): + path_to_warn_module.write_text(textwrap.dedent(warn_module)) + + # Cannot use runner since then warnings are not ignored by default. +- result = run_in_subprocess(("uv", "run", "pytask"), cwd=tmp_path) ++ result = run_in_subprocess(("pytask"), cwd=tmp_path) + assert result.exit_code == ExitCode.OK + assert "Warnings" not in result.stdout + assert "warning!!!" not in result.stdout diff --git a/pkgs/development/tools/ocaml/merlin/4.x.nix b/pkgs/development/tools/ocaml/merlin/4.x.nix index 2f96e5a66cca..8f32bc5d8521 100644 --- a/pkgs/development/tools/ocaml/merlin/4.x.nix +++ b/pkgs/development/tools/ocaml/merlin/4.x.nix @@ -29,6 +29,7 @@ "5.2.0" = "5.3-502"; "5.2.1" = "5.3-502"; "5.3.0" = "5.6-503"; + "5.4.0" = "5.6-504"; } ."${ocaml.version}", }: @@ -47,6 +48,7 @@ let "5.3-502" = "sha256-LOpG8SOX+m4x7wwNT14Rwc/ZFu5JQgaUAFyV67OqJLw="; "5.4.1-503" = "sha256-SbO0x3jBISX8dAXnN5CwsxLV15dJ3XPUg4tlYqJTMCI="; "5.6-503" = "sha256-sNytCSqq96I/ZauaCJ6HYb1mXMcjV5CeCsbCGC9PwtQ="; + "5.6-504" = "sha256-gtZIpBgNbVqjoIMhjii/GX9OnxR4hN6TArtoEa2Yt38="; }; in diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 741b4a23c43a..ecbf644f5d5d 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8228,7 +8228,6 @@ with pkgs; nss_latest = callPackage ../development/libraries/nss/latest.nix { }; nss_3_115 = callPackage ../development/libraries/nss/3_115.nix { }; - nss_3_114 = callPackage ../development/libraries/nss/3_114.nix { }; nss_esr = callPackage ../development/libraries/nss/esr.nix { }; nss = nss_esr; nssTools = nss.tools; diff --git a/pkgs/top-level/ocaml-packages.nix b/pkgs/top-level/ocaml-packages.nix index 92da02d990d1..b67b7bd0b607 100644 --- a/pkgs/top-level/ocaml-packages.nix +++ b/pkgs/top-level/ocaml-packages.nix @@ -2317,6 +2317,8 @@ rec { ocamlPackages_5_3 = mkOcamlPackages (callPackage ../development/compilers/ocaml/5.3.nix { }); + ocamlPackages_5_4 = mkOcamlPackages (callPackage ../development/compilers/ocaml/5.4.nix { }); + ocamlPackages_latest = ocamlPackages_5_3; ocamlPackages = ocamlPackages_5_3; diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 476d331a8353..00b6df8bbd81 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -9113,7 +9113,7 @@ self: super: with self; { maya = callPackage ../development/python-modules/maya { }; mayavi = pkgs.libsForQt5.callPackage ../development/python-modules/mayavi { - inherit buildPythonPackage pythonOlder pythonAtLeast; + inherit buildPythonPackage pythonOlder; inherit (self) pyface pygments @@ -9471,6 +9471,8 @@ self: super: with self; { mkdocs-exclude = callPackage ../development/python-modules/mkdocs-exclude { }; + mkdocs-gen-files = callPackage ../development/python-modules/mkdocs-gen-files { }; + mkdocs-get-deps = callPackage ../development/python-modules/mkdocs-get-deps { }; mkdocs-git-authors-plugin = callPackage ../development/python-modules/mkdocs-git-authors-plugin { };