diff --git a/doc/build-helpers/fetchers.chapter.md b/doc/build-helpers/fetchers.chapter.md index e5ec5f93888b..188c1c5417a9 100644 --- a/doc/build-helpers/fetchers.chapter.md +++ b/doc/build-helpers/fetchers.chapter.md @@ -505,8 +505,8 @@ fetchurl { downloadToTemp = true; postFetch = '' - ${lib.getExe hello} >> $downloadedFile - mv $downloadedFile $out + hello >> "$downloadedFile" + mv "$downloadedFile" "$out" ''; hash = "sha256-ceooQQYmDx5+0nfg40uU3NNI2yKrixP7HZ/xLZUNv+w="; diff --git a/doc/release-notes/rl-2511.section.md b/doc/release-notes/rl-2511.section.md index fdb632369890..871d0168cd7e 100644 --- a/doc/release-notes/rl-2511.section.md +++ b/doc/release-notes/rl-2511.section.md @@ -157,8 +157,6 @@ - Zig 0.12 has been removed. -- `services.forgejo.dump.age` now defaults to `4w`, which deletes dumps older than 4 weeks. This new behaviour could result in older backups being deleted. - - `ansible-later` has been removed because it was discontinued by the author. - `k3s` airgap images passthru attributes have changed: diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 6bcc6b19061b..9d1ef522ebf0 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -3054,6 +3054,12 @@ githubId = 5409401; name = "Bradley Cooley"; }; + bct = { + email = "bct@diffeq.com"; + github = "bct"; + githubId = 548; + name = "Brendan Taylor"; + }; bcyran = { email = "bazyli@cyran.dev"; github = "bcyran"; @@ -21361,6 +21367,12 @@ matrix = "@zitrone:utwente.io"; name = "quantenzitrone"; }; + quarterstar = { + email = "quarterstar+nix@proton.me"; + github = "quarterstar"; + githubId = 201157222; + name = "Quarterstar"; + }; qubasa = { email = "consulting@qube.email"; github = "Qubasa"; diff --git a/maintainers/scripts/update-channel-branches.sh b/maintainers/scripts/update-channel-branches.sh index eaa731adccce..9d9e8b62fb14 100755 --- a/maintainers/scripts/update-channel-branches.sh +++ b/maintainers/scripts/update-channel-branches.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash set -e -: ${NIXOS_CHANNELS:=https://nixos.org/channels/} +: ${NIXOS_CHANNELS:=https://channels.nixos.org/} : ${CHANNELS_NAMESPACE:=refs/heads/channels/} # List all channels which are currently in the repository which we would diff --git a/nixos/doc/manual/development/replace-modules.section.md b/nixos/doc/manual/development/replace-modules.section.md index eb89ba7d7246..3065930b9a06 100644 --- a/nixos/doc/manual/development/replace-modules.section.md +++ b/nixos/doc/manual/development/replace-modules.section.md @@ -37,7 +37,7 @@ nixos-unstable unless explicitly configured to do so. imports = [ # Use postgresql service from nixos-unstable channel. - # sudo nix-channel --add https://nixos.org/channels/nixos-unstable nixos-unstable + # sudo nix-channel --add https://channels.nixos.org/nixos-unstable nixos-unstable ]; diff --git a/nixos/doc/manual/installation/installing-from-other-distro.section.md b/nixos/doc/manual/installation/installing-from-other-distro.section.md index 134192fa425b..56b1cca00e05 100644 --- a/nixos/doc/manual/installation/installing-from-other-distro.section.md +++ b/nixos/doc/manual/installation/installing-from-other-distro.section.md @@ -35,14 +35,14 @@ The first steps to all these are the same: ```ShellSession $ nix-channel --list - nixpkgs https://nixos.org/channels/nixpkgs-unstable + nixpkgs https://channels.nixos.org/nixpkgs-unstable ``` As that channel gets released without running the NixOS tests, it will be safer to use the `nixos-*` channels instead: ```ShellSession - $ nix-channel --add https://nixos.org/channels/nixos- nixpkgs + $ nix-channel --add https://channels.nixos.org/nixos- nixpkgs ``` Where `` corresponds to the latest version available on [channels.nixos.org](https://channels.nixos.org/). diff --git a/nixos/doc/manual/release-notes/rl-1809.section.md b/nixos/doc/manual/release-notes/rl-1809.section.md index efaf86720a0e..acea4d5dae86 100644 --- a/nixos/doc/manual/release-notes/rl-1809.section.md +++ b/nixos/doc/manual/release-notes/rl-1809.section.md @@ -39,7 +39,7 @@ Notable changes and additions for 18.09 include: For example ```ShellSession - $ nix-channel --add https://nixos.org/channels/nixpkgs-unstable nixpkgsunstable + $ nix-channel --add https://channels.nixos.org/nixpkgs-unstable nixpkgsunstable $ nix-channel --update $ nix-build '' -A gitFull $ nix run -f '' gitFull diff --git a/nixos/doc/manual/release-notes/rl-2511.section.md b/nixos/doc/manual/release-notes/rl-2511.section.md index 7bd7d5b6658a..e8d8392a45e3 100644 --- a/nixos/doc/manual/release-notes/rl-2511.section.md +++ b/nixos/doc/manual/release-notes/rl-2511.section.md @@ -124,6 +124,9 @@ - [Szurubooru](https://github.com/rr-/szurubooru), an image board engine inspired by services such as Danbooru, dedicated for small and medium communities. Available as [services.szurubooru](#opt-services.szurubooru.enable). +- [LubeLogger](https://lubelogger.com/), a vehicle maintenance and fuel mileage tracker. + Available as [services.lubelogger](#opt-services.lubelogger.enable). + - The [Neat IP Address Planner](https://spritelink.github.io/NIPAP/) (NIPAP) can now be enabled through [services.nipap.enable](#opt-services.nipap.enable). - [tpm2-totp](https://github.com/tpm2-software/tpm2-totp) can now be used to show a TOTP during boot using Plymouth. Available as [boot.plymouth.tpm2-totp](#opt-boot.plymouth.tpm2-totp.enable). @@ -242,6 +245,8 @@ - The non-LTS Forgejo package (`forgejo`) has been updated to 12.0.0. This release contains breaking changes, see the [release blog post](https://forgejo.org/2025-07-release-v12-0/) for all the details and how to ensure smooth upgrades. +- `services.forgejo.dump.age` now defaults to `4w`, which deletes dumps older than 4 weeks. This new behaviour could result in older backups being deleted. + - `sing-box` has been updated to 1.12.3, which includes a number of breaking changes, old configurations may need updating or they will cause the tool to fail to run. See the [change log](https://sing-box.sagernet.org/changelog/#1123) for details and [migration](https://sing-box.sagernet.org/migration/#1120) for how to update old configurations. diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix index 7c0a969f9257..0b9bd6d976f6 100644 --- a/nixos/modules/module-list.nix +++ b/nixos/modules/module-list.nix @@ -1646,6 +1646,7 @@ ./services/web-apps/libretranslate.nix ./services/web-apps/limesurvey.nix ./services/web-apps/linkwarden.nix + ./services/web-apps/lubelogger.nix ./services/web-apps/mainsail.nix ./services/web-apps/mastodon.nix ./services/web-apps/matomo.nix diff --git a/nixos/modules/security/polkit.nix b/nixos/modules/security/polkit.nix index 5d37cdf65115..27a70c7c4896 100644 --- a/nixos/modules/security/polkit.nix +++ b/nixos/modules/security/polkit.nix @@ -73,6 +73,9 @@ in ]; systemd.services.polkit.restartTriggers = [ config.system.path ]; + systemd.services.polkit.reloadTriggers = [ + config.environment.etc."polkit-1/rules.d/10-nixos.rules".source + ]; systemd.services.polkit.stopIfChanged = false; # The polkit daemon reads action/rule files diff --git a/nixos/modules/services/continuous-integration/gitlab-runner.nix b/nixos/modules/services/continuous-integration/gitlab-runner.nix index eb305d1e9a19..8361ce7f71d4 100644 --- a/nixos/modules/services/continuous-integration/gitlab-runner.nix +++ b/nixos/modules/services/continuous-integration/gitlab-runner.nix @@ -318,7 +318,7 @@ in ''${pkgs.nix}/bin/nix-env -i ''${concatStringsSep " " (with pkgs; [ nix cacert git openssh ])} - ''${pkgs.nix}/bin/nix-channel --add https://nixos.org/channels/nixpkgs-unstable + ''${pkgs.nix}/bin/nix-channel --add https://channels.nixos.org/nixpkgs-unstable ''${pkgs.nix}/bin/nix-channel --update nixpkgs '''; environmentVariables = { diff --git a/nixos/modules/services/web-apps/code-server.nix b/nixos/modules/services/web-apps/code-server.nix index 1f8defce5e22..2ee20e12853b 100644 --- a/nixos/modules/services/web-apps/code-server.nix +++ b/nixos/modules/services/web-apps/code-server.nix @@ -232,6 +232,9 @@ in + lib.optionalString (cfg.socket != null) '' --socket=${cfg.socket} \ '' + + lib.optionalString (cfg.socketMode != null) '' + --socket-mode=${cfg.socketMode} \ + '' + lib.optionalString (cfg.userDataDir != null) '' --user-data-dir=${cfg.userDataDir} \ '' diff --git a/nixos/modules/services/web-apps/lubelogger.nix b/nixos/modules/services/web-apps/lubelogger.nix new file mode 100644 index 000000000000..7bb7bad2cd98 --- /dev/null +++ b/nixos/modules/services/web-apps/lubelogger.nix @@ -0,0 +1,134 @@ +{ + config, + lib, + pkgs, + ... +}: + +let + cfg = config.services.lubelogger; +in +{ + meta.maintainers = with lib.maintainers; [ + bct + lyndeno + ]; + + options = { + services.lubelogger = { + enable = lib.mkEnableOption "LubeLogger, a self-hosted, open-source, web-based vehicle maintenance and fuel milage tracker"; + + package = lib.mkPackageOption pkgs "lubelogger" { }; + + dataDir = lib.mkOption { + description = "Path to LubeLogger config and metadata inside of `/var/lib/`."; + default = "lubelogger"; + type = lib.types.str; + }; + + port = lib.mkOption { + description = "The TCP port LubeLogger will listen on."; + default = 5000; + type = lib.types.port; + }; + + user = lib.mkOption { + description = "User account under which LubeLogger runs."; + default = "lubelogger"; + type = lib.types.str; + }; + + group = lib.mkOption { + description = "Group under which LubeLogger runs."; + default = "lubelogger"; + type = lib.types.str; + }; + + openFirewall = lib.mkOption { + description = "Open ports in the firewall for the LubeLogger web interface."; + default = false; + type = lib.types.bool; + }; + + settings = lib.mkOption { + type = with lib.types; attrsOf str; + default = { }; + example = { + LUBELOGGER_ALLOWED_FILE_EXTENSIONS = ""; + LUBELOGGER_LOGO_URL = ""; + }; + description = '' + Additional configuration for LubeLogger, see for supported values. + ''; + }; + + environmentFile = lib.mkOption { + type = lib.types.nullOr lib.types.path; + default = null; + example = "/run/secrets/lubelogger"; + description = '' + Path to a file containing extra LubeLogger config options in the systemd `EnvironmentFile` format. + Refer to the [documentation] for supported options. + + [documentation]: https://docs.lubelogger.com/Advanced/Environment%20Variables + + This can be used to pass secrets to LubeLogger without putting them in the Nix store. + + For example, to set an SMTP password, point `environmentFile` at a file containing: + ``` + MailConfig__Password= + ``` + ''; + }; + }; + }; + + config = lib.mkIf cfg.enable { + systemd.services.lubelogger = { + description = "LubeLogger"; + + after = [ "network.target" ]; + wantedBy = [ "multi-user.target" ]; + + environment = { + Kestrel__Endpoints__Http__Url = "http://localhost:${toString cfg.port}"; + } + // cfg.settings; + + serviceConfig = { + Type = "simple"; + User = cfg.user; + Group = cfg.group; + StateDirectory = cfg.dataDir; + WorkingDirectory = "/var/lib/${cfg.dataDir}"; + ExecStart = lib.getExe cfg.package; + EnvironmentFile = lib.mkIf (cfg.environmentFile != null) cfg.environmentFile; + Restart = "on-failure"; + + CapabilityBoundingSet = [ "" ]; + DeviceAllow = [ "" ]; + PrivateDevices = true; + PrivateTmp = true; + ProtectHome = true; + RestrictAddressFamilies = [ + "AF_UNIX" + "AF_INET" + "AF_INET6" + ]; + RestrictNamespaces = true; + }; + }; + + users.users = lib.mkIf (cfg.user == "lubelogger") { + lubelogger = { + isSystemUser = true; + group = cfg.group; + home = "/var/lib/${cfg.dataDir}"; + }; + }; + + users.groups = lib.mkIf (cfg.group == "lubelogger") { lubelogger = { }; }; + + networking.firewall = lib.mkIf cfg.openFirewall { allowedTCPPorts = [ cfg.port ]; }; + }; +} diff --git a/nixos/modules/services/x11/display-managers/lightdm.nix b/nixos/modules/services/x11/display-managers/lightdm.nix index 8226f2cf0be5..be0f4bf368bb 100644 --- a/nixos/modules/services/x11/display-managers/lightdm.nix +++ b/nixos/modules/services/x11/display-managers/lightdm.nix @@ -156,7 +156,7 @@ in }; background = mkOption { - type = types.either types.path (types.strMatching "^#[0-9]{6}$"); + type = types.either types.path (types.strMatching "^#[0-9A-Fa-f]{6}$"); # Manual cannot depend on packages, we are actually setting the default in config below. defaultText = literalExpression "pkgs.nixos-artwork.wallpapers.simple-dark-gray-bottom.gnomeFilePath"; description = '' diff --git a/nixos/modules/tasks/auto-upgrade.nix b/nixos/modules/tasks/auto-upgrade.nix index 29eb03743b9c..7028c0be444d 100644 --- a/nixos/modules/tasks/auto-upgrade.nix +++ b/nixos/modules/tasks/auto-upgrade.nix @@ -52,7 +52,7 @@ in channel = lib.mkOption { type = lib.types.nullOr lib.types.str; default = null; - example = "https://nixos.org/channels/nixos-14.12-small"; + example = "https://channels.nixos.org/nixos-14.12-small"; description = '' The URI of the NixOS channel to use for automatic upgrades. By default, this is the channel set using diff --git a/nixos/tests/activation/nix-channel.nix b/nixos/tests/activation/nix-channel.nix index fac028b32659..4452a89bdb74 100644 --- a/nixos/tests/activation/nix-channel.nix +++ b/nixos/tests/activation/nix-channel.nix @@ -17,7 +17,7 @@ assert machine.succeed("cat /root/.nix-channels") == "${nodes.machine.system.defaultChannel} nixos\n" - nixpkgs_unstable_channel = "https://nixos.org/channels/nixpkgs-unstable nixpkgs" + nixpkgs_unstable_channel = "https://channels.nixos.org/nixpkgs-unstable nixpkgs" machine.succeed(f"echo '{nixpkgs_unstable_channel}' > /root/.nix-channels") machine.reboot() diff --git a/nixos/tests/all-tests.nix b/nixos/tests/all-tests.nix index db34a192e767..0b4b244b263b 100644 --- a/nixos/tests/all-tests.nix +++ b/nixos/tests/all-tests.nix @@ -242,7 +242,6 @@ in apparmor = runTest ./apparmor; appliance-repart-image = runTest ./appliance-repart-image.nix; appliance-repart-image-verity-store = runTest ./appliance-repart-image-verity-store.nix; - archi = runTest ./archi.nix; aria2 = runTest ./aria2.nix; armagetronad = runTest ./armagetronad.nix; artalk = runTest ./artalk.nix; diff --git a/nixos/tests/archi.nix b/nixos/tests/archi.nix deleted file mode 100644 index 74cca03829c5..000000000000 --- a/nixos/tests/archi.nix +++ /dev/null @@ -1,36 +0,0 @@ -{ lib, ... }: -{ - name = "archi"; - meta.maintainers = with lib.maintainers; [ paumr ]; - - nodes.machine = - { pkgs, ... }: - { - imports = [ - ./common/x11.nix - ]; - - environment.systemPackages = with pkgs; [ archi ]; - }; - - enableOCR = true; - - testScript = '' - machine.wait_for_x() - - with subtest("createEmptyModel via CLI"): - machine.succeed("Archi -application com.archimatetool.commandline.app -consoleLog -nosplash --createEmptyModel --saveModel smoke.archimate") - machine.copy_from_vm("smoke.archimate", "") - - with subtest("UI smoketest"): - machine.succeed("DISPLAY=:0 Archi --createEmptyModel >&2 &") - machine.wait_for_window("Archi") - - # wait till main UI is open - # since OCR seems to be buggy wait_for_text was replaced by sleep, issue: #302965 - # machine.wait_for_text("Welcome to Archi") - machine.sleep(20) - - machine.screenshot("welcome-screen") - ''; -} diff --git a/nixos/tests/ec2.nix b/nixos/tests/ec2.nix index 4285a703eee1..508b943910da 100644 --- a/nixos/tests/ec2.nix +++ b/nixos/tests/ec2.nix @@ -123,7 +123,7 @@ in inherit image; sshPublicKey = snakeOilPublicKey; - # ### https://nixos.org/channels/nixos-unstable nixos + # ### https://channels.nixos.org/nixos-unstable nixos userData = '' { pkgs, ... }: diff --git a/pkgs/applications/editors/vscode/extensions/anthropic.claude-code/default.nix b/pkgs/applications/editors/vscode/extensions/anthropic.claude-code/default.nix index bf97b4b6760b..6bf8accc9069 100644 --- a/pkgs/applications/editors/vscode/extensions/anthropic.claude-code/default.nix +++ b/pkgs/applications/editors/vscode/extensions/anthropic.claude-code/default.nix @@ -7,8 +7,8 @@ vscode-utils.buildVscodeMarketplaceExtension { mktplcRef = { name = "claude-code"; publisher = "anthropic"; - version = "2.0.44"; - hash = "sha256-XsmHGsAlUWuLd9WqeWA4bW40gy62h7TCffiG9zOndPA="; + version = "2.0.46"; + hash = "sha256-fa6/yU2JZChTzOc0oFfjb61fTvbJBAtvea1XWL2dqrM="; }; meta = { diff --git a/pkgs/applications/editors/vscode/extensions/default.nix b/pkgs/applications/editors/vscode/extensions/default.nix index e8a1b0540adb..c5a72472c9eb 100644 --- a/pkgs/applications/editors/vscode/extensions/default.nix +++ b/pkgs/applications/editors/vscode/extensions/default.nix @@ -3852,8 +3852,8 @@ let mktplcRef = { publisher = "redhat"; name = "java"; - version = "1.47.0"; - hash = "sha256-zxhNZJWi4mjENzHsO74FjOrztl5uZbVU3aMPO5DwGRo="; + version = "1.48.0"; + hash = "sha256-/JW5PVM4USBflC5eloi8u9AgpdIzkpEmoHKYr1yVkgI="; }; buildInputs = [ jdk ]; meta = { @@ -5318,8 +5318,8 @@ let mktplcRef = { name = "php-debug"; publisher = "xdebug"; - version = "1.37.0"; - hash = "sha256-7Dz8i66tWPStk2fgFdZPY2Jz3j4IquJVyQbSnV+SVpk="; + version = "1.38.0"; + hash = "sha256-QOA8At2akj9zLYxIuQJLkDL2Zg/isPIssFG/UipRBbU="; }; meta = { description = "PHP Debug Adapter"; diff --git a/pkgs/applications/editors/vscode/extensions/eamodio.gitlens/default.nix b/pkgs/applications/editors/vscode/extensions/eamodio.gitlens/default.nix index e6adba435fe6..f442f4e034fb 100644 --- a/pkgs/applications/editors/vscode/extensions/eamodio.gitlens/default.nix +++ b/pkgs/applications/editors/vscode/extensions/eamodio.gitlens/default.nix @@ -30,6 +30,8 @@ let postPatch = '' substituteInPlace scripts/generateLicenses.mjs --replace-fail 'https://raw.githubusercontent.com/microsoft/vscode/refs/heads/main/LICENSE.txt' '${pkgs.vscode-json-languageserver.src}/LICENSE.txt' + substituteInPlace webpack.config.mjs --replace-fail 'minify: TerserPlugin.swcMinify' 'minify: TerserPlugin.terserMinify' + substituteInPlace webpack.config.mjs --replace-fail 'env.skipLint' 'true' ''; nativeBuildInputs = [ diff --git a/pkgs/applications/editors/vscode/vscode.nix b/pkgs/applications/editors/vscode/vscode.nix index dfb4da392b96..d8490e16351d 100644 --- a/pkgs/applications/editors/vscode/vscode.nix +++ b/pkgs/applications/editors/vscode/vscode.nix @@ -36,20 +36,20 @@ let hash = { - x86_64-linux = "sha256-C+VAuyK2/4unyQm6h0lJJnAMFpGZYC3v8qPaeHkL8gE="; - x86_64-darwin = "sha256-DpBTTIrKZdItpBgDp3SA9fL9eVvvp/O1FDsVK93nTPw="; - aarch64-linux = "sha256-o1YyBeQ/ydcd06vxf8sndik4DTqmcgqBSDAuOsMr3WM="; - aarch64-darwin = "sha256-7XO+Y8T85EeGOUy8traWt+MOFhtCmPQp0benY6ZJCS4="; - armv7l-linux = "sha256-FAjeY+D4sRpt4/7U+k5c+JZMRMT6vvkYdUTahiQt/mM="; + x86_64-linux = "sha256-zQ6HHayJy48g/0viZRWm2Ea3Oy50LLkLhSjum68HETk="; + x86_64-darwin = "sha256-nl4Dn1xiXKZbbKfBHx92h4cxlNTQ7ManVg1LyYvd1xQ="; + aarch64-linux = "sha256-Yxr2JgpE6nW1B9iCpu8zDHpKHkDr0yy5gQRjNsq73tc="; + aarch64-darwin = "sha256-iElSgv6jjmKoVZqrZ1ET2EnwyZfiaXkfx9xlSgsUsTc="; + armv7l-linux = "sha256-M0ZkHHnJB/BtRagJjCi3yfhKz8B4v79IYuiaqdmPrkg="; } .${system} or throwSystem; # Please backport all compatible updates to the stable release. # This is important for the extension ecosystem. - version = "1.106.0"; + version = "1.106.1"; # This is used for VS Code - Remote SSH test - rev = "ac4cbdf48759c7d8c3eb91ffe6bb04316e263c57"; + rev = "cb1933bbc38d329b3595673a600fab5c7368f0a7"; in callPackage ./generic.nix { pname = "vscode" + lib.optionalString isInsiders "-insiders"; @@ -82,7 +82,7 @@ callPackage ./generic.nix { src = fetchurl { name = "vscode-server-${rev}.tar.gz"; url = "https://update.code.visualstudio.com/commit:${rev}/server-linux-x64/stable"; - hash = "sha256-/ZBBSQTj0gr6H4wRLH9r2Qhukua8qeOq1MVlaScy+IE="; + hash = "sha256-HYyzA5qfE7CHFqenBjPCe9QhANP0mOgUoORRm/QvxVk="; }; stdenv = stdenvNoCC; }; diff --git a/pkgs/applications/emulators/libretro/cores/mupen64plus.nix b/pkgs/applications/emulators/libretro/cores/mupen64plus.nix index d87f69b41040..b7d77967bde7 100644 --- a/pkgs/applications/emulators/libretro/cores/mupen64plus.nix +++ b/pkgs/applications/emulators/libretro/cores/mupen64plus.nix @@ -12,13 +12,13 @@ }: mkLibretroCore { core = "mupen64plus-next"; - version = "0-unstable-2025-08-20"; + version = "0-unstable-2025-11-14"; src = fetchFromGitHub { owner = "libretro"; repo = "mupen64plus-libretro-nx"; - rev = "222acbd3f98391458a047874d0372fe78e14fe94"; - hash = "sha256-esssh/0nxNUDW/eMDQbWEdcSPuqLjnKLkK4mKN17HjQ="; + rev = "680e033fc8ed1a49df7b156d97164e0050ee13bc"; + hash = "sha256-oBsOC1YtHx+mTgi9rwucU7rVeFt6RbxKrxHyPDx0eXg="; }; # Fix for GCC 14 diff --git a/pkgs/applications/graphics/gimp/2.0/default.nix b/pkgs/applications/graphics/gimp/2.0/default.nix index c68a0b03d6a3..6e2d8ced22ed 100644 --- a/pkgs/applications/graphics/gimp/2.0/default.nix +++ b/pkgs/applications/graphics/gimp/2.0/default.nix @@ -64,6 +64,7 @@ stdenv.mkDerivation (finalAttrs: { outputs = [ "out" "dev" + "man" ]; src = fetchurl { diff --git a/pkgs/applications/graphics/gimp/default.nix b/pkgs/applications/graphics/gimp/default.nix index c0f63b9f11f5..e419f1b06f9a 100644 --- a/pkgs/applications/graphics/gimp/default.nix +++ b/pkgs/applications/graphics/gimp/default.nix @@ -85,6 +85,7 @@ stdenv.mkDerivation (finalAttrs: { "out" "dev" "devdoc" + "man" ]; src = fetchurl { diff --git a/pkgs/applications/graphics/gimp/wrapper.nix b/pkgs/applications/graphics/gimp/wrapper.nix index efac48c2f7e2..25deade8162f 100644 --- a/pkgs/applications/graphics/gimp/wrapper.nix +++ b/pkgs/applications/graphics/gimp/wrapper.nix @@ -25,6 +25,10 @@ let in symlinkJoin { name = "gimp-with-plugins-${gimp.version}"; + outputs = [ + "out" + "man" + ]; paths = [ gimp ] ++ selectedPlugins; @@ -41,6 +45,8 @@ symlinkJoin { for each in gimp gimp-console; do ln -sf "$each-${exeVersion}" $out/bin/$each done + + ln -s ${gimp.man} $man ''; inherit (gimp) meta; diff --git a/pkgs/applications/graphics/inkscape/default.nix b/pkgs/applications/graphics/inkscape/default.nix index 4220b8d1de2f..329353210fe5 100644 --- a/pkgs/applications/graphics/inkscape/default.nix +++ b/pkgs/applications/graphics/inkscape/default.nix @@ -75,6 +75,10 @@ in stdenv.mkDerivation (finalAttrs: { pname = "inkscape"; version = "1.4.2"; + outputs = [ + "out" + "man" + ]; src = fetchurl { url = "https://inkscape.org/release/inkscape-${finalAttrs.version}/source/archive/xz/dl/inkscape-${finalAttrs.version}.tar.xz"; diff --git a/pkgs/applications/graphics/inkscape/with-extensions.nix b/pkgs/applications/graphics/inkscape/with-extensions.nix index 7970cdfb89a4..e7ba0b10e8ac 100644 --- a/pkgs/applications/graphics/inkscape/with-extensions.nix +++ b/pkgs/applications/graphics/inkscape/with-extensions.nix @@ -17,6 +17,11 @@ in symlinkJoin { name = "inkscape-with-extensions-${lib.getVersion inkscape}"; + outputs = [ + "out" + "man" + ]; + paths = [ inkscape ] ++ selectedExtensions; nativeBuildInputs = [ makeWrapper ]; @@ -24,6 +29,8 @@ symlinkJoin { postBuild = '' rm -f $out/bin/inkscape makeWrapper "${inkscape}/bin/inkscape" "$out/bin/inkscape" --set INKSCAPE_DATADIR "$out/share" + + ln -s ${inkscape.man} $man ''; inherit (inkscape) meta; diff --git a/pkgs/applications/misc/clight/clight-gui.nix b/pkgs/applications/misc/clight/clight-gui.nix deleted file mode 100644 index 495ebc5024cd..000000000000 --- a/pkgs/applications/misc/clight/clight-gui.nix +++ /dev/null @@ -1,41 +0,0 @@ -{ - lib, - stdenv, - fetchFromGitHub, - cmake, - qtbase, - qtcharts, - wrapQtAppsHook, -}: - -stdenv.mkDerivation rec { - pname = "clight-gui"; - version = "unstable-2023-02-21"; - - src = fetchFromGitHub { - owner = "nullobsi"; - repo = "clight-gui"; - rev = "29e7216bfcc68135350a695ce446134bcb0463a6"; - hash = "sha256-U4vaMwnVDZnYLc+K3/yD81Q1vyBL8uSrrhOHbjbox5U="; - }; - - buildInputs = [ - qtbase - qtcharts - ]; - nativeBuildInputs = [ - cmake - wrapQtAppsHook - ]; - - sourceRoot = "${src.name}/src"; - - meta = with lib; { - description = "Qt GUI for clight"; - homepage = "https://github.com/nullobsi/clight-gui"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ nickhu ]; - mainProgram = "clight-gui"; - platforms = platforms.linux; - }; -} diff --git a/pkgs/applications/networking/browsers/firefox-bin/release_sources.nix b/pkgs/applications/networking/browsers/firefox-bin/release_sources.nix index 6ea427975c1a..8570b169f42d 100644 --- a/pkgs/applications/networking/browsers/firefox-bin/release_sources.nix +++ b/pkgs/applications/networking/browsers/firefox-bin/release_sources.nix @@ -1,1859 +1,1859 @@ { - version = "145.0"; + version = "145.0.1"; sources = [ { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/ach/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/ach/firefox-145.0.1.tar.xz"; locale = "ach"; arch = "linux-x86_64"; - sha256 = "4d15f661721929921ea248448a2e0c4dda567bc68efde771d4fea670ef235947"; + sha256 = "d39264d7660169ea6675ec7252fecf3d3b6859f4e2b04e7d00d7d6191b323832"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/af/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/af/firefox-145.0.1.tar.xz"; locale = "af"; arch = "linux-x86_64"; - sha256 = "7af7aa9e47724db2249c33fc92553236b826b7b507d9eea8f41bd16e62950f65"; + sha256 = "7a9c19f1264ef1243c571177118288298471a6c8438f7bf156f72675af359cfb"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/an/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/an/firefox-145.0.1.tar.xz"; locale = "an"; arch = "linux-x86_64"; - sha256 = "2829ecba769bafea59ee74e50dd3fd357cef2f4dd4dd529f4d7567be7d75c41e"; + sha256 = "74eb290c5b416682ba77393d725f605f5492621eb8fe1efc3897832416c40339"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/ar/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/ar/firefox-145.0.1.tar.xz"; locale = "ar"; arch = "linux-x86_64"; - sha256 = "15c195f03dcec6132f7fa1ee748e1466d53040b3605dfad5aa7abd66de547ac8"; + sha256 = "79a3f16d2c7c241f6e1d84219f5604a932e489aa74f4e62dd73210c518d6a58c"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/ast/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/ast/firefox-145.0.1.tar.xz"; locale = "ast"; arch = "linux-x86_64"; - sha256 = "550477bfe7da8aec98ecc33d8564669edbed42f3861c18cb59036414bc788639"; + sha256 = "1d3fe10a16714f4523161618b10dfb2ca3790858331bf3a575f27bc830ee458e"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/az/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/az/firefox-145.0.1.tar.xz"; locale = "az"; arch = "linux-x86_64"; - sha256 = "a9ef233c6534d465bec08c8baae3da804c7e0c87baf0fbadbff42f8969e7da25"; + sha256 = "a92a05f7ffe1764f0e581b0fe7074bdd5d6d290eef4dc72953ea0d33d9181058"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/be/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/be/firefox-145.0.1.tar.xz"; locale = "be"; arch = "linux-x86_64"; - sha256 = "10bbee0a87bd1ea5db06f5cc9b1a6c230aacdc9d93b994e0a1307646e9ebf03d"; + sha256 = "7e8e0231f95842fd4e1f95828739e14b928752b56b742e6cccb74db70458f34f"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/bg/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/bg/firefox-145.0.1.tar.xz"; locale = "bg"; arch = "linux-x86_64"; - sha256 = "06168583ea016b97e4d56a358182bd2fa3a0b1fbec7f55fcb0c09eaabad5eee7"; + sha256 = "ccc541887b1ebd8105cc2c4aa4e9843d2d03bac4fc8824167dcc97fef4c903f1"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/bn/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/bn/firefox-145.0.1.tar.xz"; locale = "bn"; arch = "linux-x86_64"; - sha256 = "99c189041b673caa6fd0e936e8807ea35e9c8ad5168c71be9efdfa1b4c8c139c"; + sha256 = "d420bd94eb13fbf8c46b20681ab0fa4203f1e48067476cdc4cefa6896b78d299"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/br/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/br/firefox-145.0.1.tar.xz"; locale = "br"; arch = "linux-x86_64"; - sha256 = "f9e6139cb944cc8d634afb01a9be05cacba22a9f92875a30a819d1f969576cd5"; + sha256 = "3bcb222e7c5f9dedffb2c7fbae9d6e7a6eca8269f8a9b22c2051c0bbc91322f8"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/bs/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/bs/firefox-145.0.1.tar.xz"; locale = "bs"; arch = "linux-x86_64"; - sha256 = "b7cacf9ae51fed418d905343c6593e52f5c2a9081b61760ae8c2ab78a90c1514"; + sha256 = "812973e8d544bda04c46a7cc6421e8283eac780e3a9a60ee5afcfb4d99bdb0b2"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/ca-valencia/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/ca-valencia/firefox-145.0.1.tar.xz"; locale = "ca-valencia"; arch = "linux-x86_64"; - sha256 = "abb20338452f4dc17c681be6fce48ecb83241afb3d0653e69515e2fbbf707ca9"; + sha256 = "19e44e9fbf5029710d781d32cbdfbb21a707aaafd434f25d0bf98c27dea23872"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/ca/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/ca/firefox-145.0.1.tar.xz"; locale = "ca"; arch = "linux-x86_64"; - sha256 = "c87063dfc38a405f7217877f9e902b480b44e504ac1c6232a2ec11daf3a95513"; + sha256 = "0767f1f2530eac4a6b5cab7f53d5a74a950c0dc211fb89f77da3e0cd9efab64c"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/cak/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/cak/firefox-145.0.1.tar.xz"; locale = "cak"; arch = "linux-x86_64"; - sha256 = "4f573023f56eaad2341873b57b9963ffc6b4855135a9d03a5431b21332555bb7"; + sha256 = "13728365af70b60c7d7d094353f9a9a1f789ee2be900855c0791da88f2e399a8"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/cs/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/cs/firefox-145.0.1.tar.xz"; locale = "cs"; arch = "linux-x86_64"; - sha256 = "b10b0e113bbb61b90534b2162d3f64a5384fbfd0885ce96190189d87f10b3a94"; + sha256 = "845cdb02e9ad883b7e59c70509c988ac8d2ca8700b34548b66f4a12483d63a99"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/cy/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/cy/firefox-145.0.1.tar.xz"; locale = "cy"; arch = "linux-x86_64"; - sha256 = "fe7f20adadd98234b1a9470b1db76e4070b5b521077d55702d722b7b9929649f"; + sha256 = "f49db1e9e8beea161a26227b5eaaf4dc8fad200e38cfd86fe8fd43220e1a97a0"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/da/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/da/firefox-145.0.1.tar.xz"; locale = "da"; arch = "linux-x86_64"; - sha256 = "d0272a18cb8e8c10813f0a8e595562e60be973c908463d710fe39dce142a796f"; + sha256 = "cdeffee8ec0ab42e644edfbb516abe567fca3e3b9cae41e2b41de51005c89d5b"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/de/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/de/firefox-145.0.1.tar.xz"; locale = "de"; arch = "linux-x86_64"; - sha256 = "69e3e761445b3b3a7da4a9604d01de2ecfee5c8715409a3093d5de1ae2150367"; + sha256 = "6e0bb6b209720ab610db378777ded4e902868c6d18b9ef7b7e0f13732b08ee61"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/dsb/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/dsb/firefox-145.0.1.tar.xz"; locale = "dsb"; arch = "linux-x86_64"; - sha256 = "3586b36c609a52e89b66d67af9ed16f1831234ddb79ebbd07828b405150ee67a"; + sha256 = "92e2a7b5e70862debb54dc1ec49546be58ea390b845feb68057b6e558b42ea39"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/el/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/el/firefox-145.0.1.tar.xz"; locale = "el"; arch = "linux-x86_64"; - sha256 = "60ab0c79e0f8bdf281009c0ada81c9ae4e613819a23a6b66f0ff9b62ab37d9b0"; + sha256 = "e32ab51097f8df8a177c008cc78edc3444bf0a5687eafd12c43b58e605ea91ed"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/en-CA/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/en-CA/firefox-145.0.1.tar.xz"; locale = "en-CA"; arch = "linux-x86_64"; - sha256 = "033c42a59b4f9363ebc3011a52bbc1181d2bf4f627af60cff0e3e06ff6815333"; + sha256 = "3a3529874c4fdcbdb6a5b439d530e49403508fffc18cd70c3f1859fe15470567"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/en-GB/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/en-GB/firefox-145.0.1.tar.xz"; locale = "en-GB"; arch = "linux-x86_64"; - sha256 = "ddc6edce610b853d1472eb83344d7cba6c0f243c09e700c16dce561361ddbc45"; + sha256 = "6897d88e5c0f3d199b9078e58d81c9817f228f028bb80e80f66d21b21ac701a4"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/en-US/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/en-US/firefox-145.0.1.tar.xz"; locale = "en-US"; arch = "linux-x86_64"; - sha256 = "00fb922cda6bab971e02bcbfb77923b0a234388ed7d77c23506ca0a1a61d4a86"; + sha256 = "12b7dcaf1bf1fd9848a35c1e890f4ef4ae5095ccc39b7e44c15dbbeaf64f21e5"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/eo/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/eo/firefox-145.0.1.tar.xz"; locale = "eo"; arch = "linux-x86_64"; - sha256 = "3116fdf9c7b7ac34bef39a7b72d5e8bd0c86f6feb40cf86cf3a8f6361a57134d"; + sha256 = "510e6e44d0731ff3fd574672b2b34528aca366ab7b178b5f3c53d72c4b604140"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/es-AR/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/es-AR/firefox-145.0.1.tar.xz"; locale = "es-AR"; arch = "linux-x86_64"; - sha256 = "66611a74df0cef048af0939849339056174aa7f0f01626a2afa2efd14d9aff63"; + sha256 = "604c116a900a4592fbaa6401a9e87c5901dbe49fa1778243bbca0918c7bcd915"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/es-CL/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/es-CL/firefox-145.0.1.tar.xz"; locale = "es-CL"; arch = "linux-x86_64"; - sha256 = "bb0e14c079fbca4b50c9c6b59a95ec94911bfcde9c42a70e6231128d213fa4db"; + sha256 = "920f91b765ad5ddcecb4b96a40e5a7e5abe0149fba4ea5ca8871e3670b815f6b"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/es-ES/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/es-ES/firefox-145.0.1.tar.xz"; locale = "es-ES"; arch = "linux-x86_64"; - sha256 = "65bb855be8a32e44dfb5b2906a121c121eaf33ec9cca9e0ee6b494f91192027b"; + sha256 = "a3f64deaa51e726738050bb0cd03d9a2b85bf1cb24bf85aaaa1d3c1a3a2c7ef9"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/es-MX/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/es-MX/firefox-145.0.1.tar.xz"; locale = "es-MX"; arch = "linux-x86_64"; - sha256 = "5d5522fcda87dd5ca043994cd0c02ef790303d30905aba1827bd501e38d7427f"; + sha256 = "648bd2296d000c9b3a6efc8138c7ba0f2e44bace142d086105a4cf4513f5a857"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/et/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/et/firefox-145.0.1.tar.xz"; locale = "et"; arch = "linux-x86_64"; - sha256 = "494db46f42e4cccc509d042aebcb74d5addde5c36c065e23541d31ab5a619f47"; + sha256 = "cfc4f3cfbd9e552690ec4a9b7b574d40fe1297c5ba71d869f6391cf80880cc4f"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/eu/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/eu/firefox-145.0.1.tar.xz"; locale = "eu"; arch = "linux-x86_64"; - sha256 = "54fd2956ffe041f60bbcb7df033684ffe797588773be3baf94666896956948bb"; + sha256 = "ea2cee00c866f027ec273db07f7fe3ab30c1e2307eb3baa7ea4a8b4554624031"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/fa/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/fa/firefox-145.0.1.tar.xz"; locale = "fa"; arch = "linux-x86_64"; - sha256 = "dfccae1a48250a60fa6fe1461fc0e40c279c773108be34fd636095c462831efb"; + sha256 = "720e8328f009502398c6a959afc66f1afebdcc88e96d3576af8fa9476d4d636c"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/ff/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/ff/firefox-145.0.1.tar.xz"; locale = "ff"; arch = "linux-x86_64"; - sha256 = "2ad7ec000027df2773381a7fb12ce8217b67924043faefa1f5a5470652584fcc"; + sha256 = "97cf000499e393ffb6369b5af377e6bfa4ff63d447dfec81904b846a0006ccab"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/fi/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/fi/firefox-145.0.1.tar.xz"; locale = "fi"; arch = "linux-x86_64"; - sha256 = "6685ae93abcffb9b61cbf91ab0069acd7d353960d07ab542208cfa07d0d8698a"; + sha256 = "7c5034a34d256e02a733c4dd8902e1a9b8a62665d545b22dca37e7a90f0d2319"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/fr/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/fr/firefox-145.0.1.tar.xz"; locale = "fr"; arch = "linux-x86_64"; - sha256 = "c62c13743a096df13a1144a7eb702bfb05bcd8a1d942ebc8407f00074de4e52b"; + sha256 = "a87b3ee9dfd3c720f58757c83bb115d68d21b36f75914fb993dff9164694f089"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/fur/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/fur/firefox-145.0.1.tar.xz"; locale = "fur"; arch = "linux-x86_64"; - sha256 = "338b2d9ede247e9e1a3beafdd91e365a0d4e7a72c92045651dada05d8baf8d89"; + sha256 = "114f91a8bfb426da266404fdfc2e44ea7be2daf6af80f01dac360817a7536bce"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/fy-NL/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/fy-NL/firefox-145.0.1.tar.xz"; locale = "fy-NL"; arch = "linux-x86_64"; - sha256 = "ff54ad48623d46d1c85f3facec499be70c09b177a11fa1e23f0ffc92b492fbf0"; + sha256 = "485fca2b23c3fca042bdfa7785b5b1519fd3cb67ef0783c69ceeb860cfb79e1b"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/ga-IE/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/ga-IE/firefox-145.0.1.tar.xz"; locale = "ga-IE"; arch = "linux-x86_64"; - sha256 = "c325c6cbdc80838b19982bc5ec32765b6c842b784e17690680e0c31ff3f7214a"; + sha256 = "d5e56877e4a5a89b87be5460d6ce1723a6f416b7a0e0faa84913da269263b2a8"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/gd/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/gd/firefox-145.0.1.tar.xz"; locale = "gd"; arch = "linux-x86_64"; - sha256 = "2984a0d4f0524636fc1932a4d01ae902c5ebc78f54d8f6dbbda194eae1135fe1"; + sha256 = "32fd41c24d2a1a0f7716c5dd040970b97223114661c7ffc66e1bb76fd28c50e1"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/gl/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/gl/firefox-145.0.1.tar.xz"; locale = "gl"; arch = "linux-x86_64"; - sha256 = "49f8bed9ed7794049b94cd6b4c13caf3e2db46774ded00bd87a7f53997fc1187"; + sha256 = "62118bcaf88d20726a17368ff60d517e154456edf4b3a4b77eb43c7800960bda"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/gn/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/gn/firefox-145.0.1.tar.xz"; locale = "gn"; arch = "linux-x86_64"; - sha256 = "cd738ad854281cb4edff8676430e79bd2dd83256164bfcc3fe652ff35df9fa8d"; + sha256 = "f97f5a8e56695ddf38ffd8816b7d4aa6c49ff9b37273952b3a391104fcc81e19"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/gu-IN/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/gu-IN/firefox-145.0.1.tar.xz"; locale = "gu-IN"; arch = "linux-x86_64"; - sha256 = "10a353ece6ea7650e80b77d96197880b3f7dd5e1efac1b9a2cf49f60ba95d6aa"; + sha256 = "c8276a592e6b06d0e93d095940b4f3605141b0ed43502677523a0d10091d5247"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/he/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/he/firefox-145.0.1.tar.xz"; locale = "he"; arch = "linux-x86_64"; - sha256 = "c41d68ea658cc3c5505c0d28a2f94238e96cba47af1027ba1d784c481d8ae20a"; + sha256 = "2663d1d708909f32addf91ae0912ae22e6df980a2f00498033aa081bf0f0031d"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/hi-IN/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/hi-IN/firefox-145.0.1.tar.xz"; locale = "hi-IN"; arch = "linux-x86_64"; - sha256 = "af6a8bf344b6e906917729c5afc73f9c8d1b47a8549a9e6022341549e0791136"; + sha256 = "c9123be92d58fb98c072fe0df9968400bb3288c3c96c6d343c8388f82c6e8b17"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/hr/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/hr/firefox-145.0.1.tar.xz"; locale = "hr"; arch = "linux-x86_64"; - sha256 = "af1d87669880c6e458f13f1412b083c6742f4d1363dddeae07ffbe61bdd3649e"; + sha256 = "16ab30ae6b0e7e42eb46bf7be4119dcd9721f9ab37b14bf32acbe3951211975e"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/hsb/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/hsb/firefox-145.0.1.tar.xz"; locale = "hsb"; arch = "linux-x86_64"; - sha256 = "91b7813b2e818146c74b14409652b2ee217ab1c8d913ae3ed9fdf791a1d5a912"; + sha256 = "f93b90cc7a150ef0f6fb6120086b23c33410a74d17b7f8b344fb3e5bdfe05fc8"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/hu/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/hu/firefox-145.0.1.tar.xz"; locale = "hu"; arch = "linux-x86_64"; - sha256 = "0fd8bad6fb56819e11a6cd4776a034a6b9c0690023870808227104f008f84435"; + sha256 = "fa91d31f8bbb33276890417b68e7688ab01cd904ce2e6067c30fa8c9a5a81797"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/hy-AM/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/hy-AM/firefox-145.0.1.tar.xz"; locale = "hy-AM"; arch = "linux-x86_64"; - sha256 = "1c701ee14dc09f3a4a803594a9ee052fea33cd7240338d327b1ec4a44440dd7d"; + sha256 = "2180e45bb8c6810772f7e5d7e7c14883ec19e3f8aca1340beb5eca5bdd76e013"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/ia/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/ia/firefox-145.0.1.tar.xz"; locale = "ia"; arch = "linux-x86_64"; - sha256 = "684428eea2b1483dc7fa9fcdfc944843cbc5e896860602a0a2325e1387fa8af0"; + sha256 = "cb7861e53ffc43c052a7b8211ed298091fcc47cd98a66a1cf528962efe8b8d6c"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/id/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/id/firefox-145.0.1.tar.xz"; locale = "id"; arch = "linux-x86_64"; - sha256 = "836b8b188bab7eb8eb14aeb3ca336b4023ee91f968e41ded2a974714313a5c2b"; + sha256 = "548de64c089902fea1810028452a08d1064e9c86324f5c2c5f4c18ec4173ee01"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/is/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/is/firefox-145.0.1.tar.xz"; locale = "is"; arch = "linux-x86_64"; - sha256 = "b8cab4bb7063cdc5be201e319bae96e357ab93ad46fafba68b4a59b6c4ceee26"; + sha256 = "3e9d0855fe2bb34842843d2a870507de46cdad31fc75e0a3a829f02f528dd905"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/it/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/it/firefox-145.0.1.tar.xz"; locale = "it"; arch = "linux-x86_64"; - sha256 = "f7cbf267e295f8544e987298f6c1b7ee77d10f1e5b3ec2b14143970c78babc4e"; + sha256 = "39d4b9f2c899ca95cf8fb9e533706b9a2c6fb20ba2cb4033d511f3e8cfaf7351"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/ja/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/ja/firefox-145.0.1.tar.xz"; locale = "ja"; arch = "linux-x86_64"; - sha256 = "69496b17d6409a7fe800f6666e298038b2222a50c86da79d6ef83959bb57326a"; + sha256 = "89b2101618ee3460336eaf4b093d3c076bf77d758a0ff60c035c79181b95d8d5"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/ka/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/ka/firefox-145.0.1.tar.xz"; locale = "ka"; arch = "linux-x86_64"; - sha256 = "9a1af04b34020bb36f59533feeb7fb411c451641c2b488b3ac918321a2774c3a"; + sha256 = "e67287e4ee1c03e975baaf38ca00d26bd1d78381f95f6c620849e50ccc7b04dd"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/kab/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/kab/firefox-145.0.1.tar.xz"; locale = "kab"; arch = "linux-x86_64"; - sha256 = "3c576319b1fbe68a295efe6d2fe4110735c906bd14a29fc56c6e35f584164cbf"; + sha256 = "04fb52b17a0297e4490d0ff651a2d024aeb390d71470bf0e8ef8d0673fc73da3"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/kk/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/kk/firefox-145.0.1.tar.xz"; locale = "kk"; arch = "linux-x86_64"; - sha256 = "c0776da07bddb90f9c835671c92524a2e3d2e376c12479b9430c9cbadc678ed7"; + sha256 = "335041bd32d8a16cb65e17643bfe66f26ef17082b7758659f344d64025dfbf66"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/km/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/km/firefox-145.0.1.tar.xz"; locale = "km"; arch = "linux-x86_64"; - sha256 = "308e7627038f1126499109491a765b37d8200f08d7850c78648ec4c3c4bac8e0"; + sha256 = "9ce0058c0626afd794b101ac82f77052c53a3fdb3506695a088b329aa5ea17eb"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/kn/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/kn/firefox-145.0.1.tar.xz"; locale = "kn"; arch = "linux-x86_64"; - sha256 = "766ec76c86c13dc006e4e3ed3e2af46b8688e182b2491829fc257ca5a972a75c"; + sha256 = "daffdf4b47a8384133b8d19bb6dcc38715eff77fcb9f770e4420815eaa650c2b"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/ko/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/ko/firefox-145.0.1.tar.xz"; locale = "ko"; arch = "linux-x86_64"; - sha256 = "64fab1af84d70a930c3e74cc474e2a874145f14764df60eecaed04921eedeb76"; + sha256 = "179218f44a34d511274e7f513260a45e29d5b38f4810cc750f3dbf75dfa37013"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/lij/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/lij/firefox-145.0.1.tar.xz"; locale = "lij"; arch = "linux-x86_64"; - sha256 = "65117c44ceea26106cdda87d6243b2a448f107c18b9621964f2ceceb4c27a560"; + sha256 = "4f1a41e55bcbd407b6fb5923a9a6f58e23b4feaba39b4ddf83a8116e893adb77"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/lt/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/lt/firefox-145.0.1.tar.xz"; locale = "lt"; arch = "linux-x86_64"; - sha256 = "a98870c48442a5c8cd6e1939d7a9de300663b26bb22793e6a3438f9106bef91d"; + sha256 = "0d3783f37092d62acd47f936569652e14d45836237d82a47d76ce9883c9e1ea7"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/lv/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/lv/firefox-145.0.1.tar.xz"; locale = "lv"; arch = "linux-x86_64"; - sha256 = "8571588cc2e91381ec6cb6afc4703e9b86d26b2209bc14b6ffb5b3a8ce59f283"; + sha256 = "8e321aa79a4c08a729368d2efa5a384d99951f50363c1e4236090c02594076a1"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/mk/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/mk/firefox-145.0.1.tar.xz"; locale = "mk"; arch = "linux-x86_64"; - sha256 = "200afed0f2478c74546c5bd4692edaa2c75bdb899a1c75f98a58035a7a42bf06"; + sha256 = "1e4a936e9d9563e63c44c3898ee4437278e127b86d80226f32cb75d22d1d26d5"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/mr/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/mr/firefox-145.0.1.tar.xz"; locale = "mr"; arch = "linux-x86_64"; - sha256 = "57a3e565ab195b6c800cfab0409e5090736c81682f4f54a89492c4854304a9d1"; + sha256 = "1f2e321636bc552cdcdfef531540a5fc116e1f0af143bb95c849db6ced458b66"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/ms/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/ms/firefox-145.0.1.tar.xz"; locale = "ms"; arch = "linux-x86_64"; - sha256 = "7bc9e23dd121f5671d4417f9034145c3eb7750256adb87441dcd812467d05139"; + sha256 = "94e56b490ad63601a391e6c72cdcfb057e1a665fac0bc02cfccab5f438263bda"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/my/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/my/firefox-145.0.1.tar.xz"; locale = "my"; arch = "linux-x86_64"; - sha256 = "c7fb98233d9bb27c9ace033322eab86716ee22917b32424cc4f978ca2ae6a4b2"; + sha256 = "caf5063bcae638bac92256b8145f9003361fc6fdfcaf3cf79df3a8799fc4fd55"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/nb-NO/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/nb-NO/firefox-145.0.1.tar.xz"; locale = "nb-NO"; arch = "linux-x86_64"; - sha256 = "b0f874cb90c258a0f007f5e278c15bfc61f69263f14fc0d2c7eb673031918542"; + sha256 = "ba58e353c266d976b1502d782f4707ac8aa6c9bdf07e254cdcb0fdba95ef9b33"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/ne-NP/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/ne-NP/firefox-145.0.1.tar.xz"; locale = "ne-NP"; arch = "linux-x86_64"; - sha256 = "d5475daf221264734c9a567a1bf3cee826699ab031529ca4353e40a1f70d3cf4"; + sha256 = "03c5b6fa76f528cdeb91d8489ce579a3db4ddefbc77eb52faf5e612f850388dc"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/nl/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/nl/firefox-145.0.1.tar.xz"; locale = "nl"; arch = "linux-x86_64"; - sha256 = "96c07699a1b8a1b632ddf12646809d594c906e3646781f91511721f43574a50f"; + sha256 = "65eac0244e6cb7d1179b818f790005936ee7fef412ddbbbc901474168e07b722"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/nn-NO/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/nn-NO/firefox-145.0.1.tar.xz"; locale = "nn-NO"; arch = "linux-x86_64"; - sha256 = "11afee09dfb383d43975701fc2a69f65898cfd7f162144557fd96b29e4fb49b2"; + sha256 = "26562ebed5ef2daf1b69f4e077c9b50eaef21ef963bb4a639ed817047d96252c"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/oc/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/oc/firefox-145.0.1.tar.xz"; locale = "oc"; arch = "linux-x86_64"; - sha256 = "170091be8454b3ee5e5748c9b035f1508131e75b8fd01b8abaca606ecfe2d0a3"; + sha256 = "6b2bce15f9c975e0558e589d8dddf268837cf01be727060d43242d2d053a0597"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/pa-IN/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/pa-IN/firefox-145.0.1.tar.xz"; locale = "pa-IN"; arch = "linux-x86_64"; - sha256 = "f0c6a4a4c22d29ec922debcfc0392cff18598d70a775c823b7f350205a57105a"; + sha256 = "2737734118cace6a17d269ce32a98122bcdf163cf307bf5317420a808ed22a8d"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/pl/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/pl/firefox-145.0.1.tar.xz"; locale = "pl"; arch = "linux-x86_64"; - sha256 = "d381efcfcfe3e674a1fdb5ab7ef55c962fa2aec44bd7e2628a6f09c60c443a72"; + sha256 = "ef34850a7345838ddbc4f1d8557c37b13c37045a3b1d2ef15c4ce2eaad264a63"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/pt-BR/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/pt-BR/firefox-145.0.1.tar.xz"; locale = "pt-BR"; arch = "linux-x86_64"; - sha256 = "bcd92a55af30b7d090281c5a387d5ea043ebb99ea981e23b537027e59bc5be97"; + sha256 = "c0ef732bdf55a2308e9e9534b6021160c928e83ef8f49ffd697b097f56134364"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/pt-PT/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/pt-PT/firefox-145.0.1.tar.xz"; locale = "pt-PT"; arch = "linux-x86_64"; - sha256 = "eeb9fa85ddfd22b22834392b7cd493f73476de6faef27668e63fc8913b2c6ee3"; + sha256 = "c875dd0158c53495d92fb97996d731839f52f5a87998b76ddd7ab8ea353a536c"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/rm/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/rm/firefox-145.0.1.tar.xz"; locale = "rm"; arch = "linux-x86_64"; - sha256 = "0076aab55046ecd58d385147674f6707ba92b9549f30e6b7316f2a310a5232c3"; + sha256 = "6f71d6fa0dd0a930675578c366f301fe2d2145f8568ea9cc07baf3335aa82d33"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/ro/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/ro/firefox-145.0.1.tar.xz"; locale = "ro"; arch = "linux-x86_64"; - sha256 = "ef52f9510cad8b1ac27ce61f7facb55a49893cec2e3e0e7113f327fe0aeb3afc"; + sha256 = "4386e360e81585bfa14d797e19a775bad2f8bd95b3097147f351285880dea3e1"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/ru/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/ru/firefox-145.0.1.tar.xz"; locale = "ru"; arch = "linux-x86_64"; - sha256 = "fa6377b2306928b1b53138348616aef8870f88f85c32f39406e5d56a8010d483"; + sha256 = "ccc2776ee29657ae5bc176f26eadfd2f8c69fff5bdabc6d4e61edf20736e9233"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/sat/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/sat/firefox-145.0.1.tar.xz"; locale = "sat"; arch = "linux-x86_64"; - sha256 = "836e0a84d7f3afd59fc3ccd9292751c474036205cde290c25ca63320c6b99e4d"; + sha256 = "78cfefcb131e6d4c0e610defe58617b09862846c552a450b721d50704d063990"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/sc/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/sc/firefox-145.0.1.tar.xz"; locale = "sc"; arch = "linux-x86_64"; - sha256 = "0a3706632caac321d77631c357b0e20e61260bbf33954670d67e534148ed599c"; + sha256 = "2b52f08ef396b69c5ad1903ae7450f1d2a00ec7995d60492f051da103c697f6d"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/sco/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/sco/firefox-145.0.1.tar.xz"; locale = "sco"; arch = "linux-x86_64"; - sha256 = "23aeb109afd785430efcbc4f6b4ad419053d6be3e88d158e427d11ea988aa829"; + sha256 = "d1664bcd24afe848a79ff267341fdcb0f37de9490523e9889a1e1275a2cc4caf"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/si/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/si/firefox-145.0.1.tar.xz"; locale = "si"; arch = "linux-x86_64"; - sha256 = "b008f731a647cc2280022cbd82c7197b26679238a1cfb8c19f813cdc24207e88"; + sha256 = "8fca3cca365f558e6de25cfce3e7b8598deed3fcce0c369205c88c214360e949"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/sk/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/sk/firefox-145.0.1.tar.xz"; locale = "sk"; arch = "linux-x86_64"; - sha256 = "7e082cd94fe59730968695699fd06ccfd68ed6c42209fd13dae47c6b2fbfef36"; + sha256 = "c33256d2e0203544829aae2bcd5b263abca3cd8bb345cd3c1170e8d336747d47"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/skr/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/skr/firefox-145.0.1.tar.xz"; locale = "skr"; arch = "linux-x86_64"; - sha256 = "545a79004372b54461259531a7d88802ad0d9813281d146abf44dffdfa2e3eec"; + sha256 = "1df06e320efb03d5078745067fab1d911de806c2e81f74820972c7ba54a2cac1"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/sl/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/sl/firefox-145.0.1.tar.xz"; locale = "sl"; arch = "linux-x86_64"; - sha256 = "a4125c14305a95e71dd5f8ab226de22385e3c3f5e8308314bf78ce34bea02eec"; + sha256 = "91eb3cbc4f23d0460680ff000dc79d3a6caa83f5181273d44bc87ed5d048cf25"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/son/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/son/firefox-145.0.1.tar.xz"; locale = "son"; arch = "linux-x86_64"; - sha256 = "ff020916c51669b35564b6326e1e1fa372695897c4282dd2a0c24699b9b71d6b"; + sha256 = "e5ab00a20c04bc89b1b47fc5bf8d584ca160c87442243c5f41f6263c2f53f64a"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/sq/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/sq/firefox-145.0.1.tar.xz"; locale = "sq"; arch = "linux-x86_64"; - sha256 = "3f103488773a02bda2f7ffb8089006a8004c633dac8e12d0e95162b724394808"; + sha256 = "ea3f7e6df6437064ab9e733d3ddfefd716c4442fe6d63482db33cb2e2354e14e"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/sr/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/sr/firefox-145.0.1.tar.xz"; locale = "sr"; arch = "linux-x86_64"; - sha256 = "7483d866801d674dbf319e6c03fe4fce00d23ef4d4f5670de56c0e81f6f9affe"; + sha256 = "e232029beef09b6d68f12c5e7dadc2a7f6409be017052fe28086a9ad41433add"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/sv-SE/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/sv-SE/firefox-145.0.1.tar.xz"; locale = "sv-SE"; arch = "linux-x86_64"; - sha256 = "b9c5aafad13ca9ef0c2e1e879b461b68f3a6d06d66cf455e034dfb3ab839d2c7"; + sha256 = "0191f0bc22ba8f33329253056c1d598b7fb47396a94b32c2981c359cbd23702a"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/szl/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/szl/firefox-145.0.1.tar.xz"; locale = "szl"; arch = "linux-x86_64"; - sha256 = "fc13f0123b7c6e4f84a5e5a8430471c72f2a7b45b5641eccb4bf494adfc94f4e"; + sha256 = "61546e133652a634dac89dd6fabfd04eff808bf777d23372663ec66cda987915"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/ta/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/ta/firefox-145.0.1.tar.xz"; locale = "ta"; arch = "linux-x86_64"; - sha256 = "2299f56aa81b78a9e8c6a9c448a4e173030a823de73acdbe6b9c84bb260b745c"; + sha256 = "650103ea1094e7db013f32f9421c87c67bed325897362bddae6553b16b0db8a0"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/te/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/te/firefox-145.0.1.tar.xz"; locale = "te"; arch = "linux-x86_64"; - sha256 = "1a066d9d01b476c975055c9727400b0c831975511f243389fb1898026fc5eeb5"; + sha256 = "70faa2375973d81dc901496abf3489d2584ec2fcd15c38d15045be4b5ed6e30f"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/tg/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/tg/firefox-145.0.1.tar.xz"; locale = "tg"; arch = "linux-x86_64"; - sha256 = "2ea149b32f7a179a6ed89b87f565872dff9a68134f6cba8cb65343360b3f132b"; + sha256 = "892c6533fddc0006511454a3edaddab090cb23c537d22faad0ac6bbf42506ab2"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/th/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/th/firefox-145.0.1.tar.xz"; locale = "th"; arch = "linux-x86_64"; - sha256 = "4ca150c8111273fb921238beb5aedb5c023af9860f57578055fbb03727153a8b"; + sha256 = "479db5bdc55c03435cd14dffaa9bc45530d3aa1835e1467e919da71b15299c72"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/tl/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/tl/firefox-145.0.1.tar.xz"; locale = "tl"; arch = "linux-x86_64"; - sha256 = "80a7464f6f8fa235af81c88e280996406b86c5ca5fbad774bc8c58f35401c6de"; + sha256 = "91a47ec3e3392845006cea0db0f3502837bead9530d5b456bb823b34a5bbee45"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/tr/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/tr/firefox-145.0.1.tar.xz"; locale = "tr"; arch = "linux-x86_64"; - sha256 = "ea8d0bde88e4dfa170a2fdb0cca2732782b5702008c72e6173e71785e40430ab"; + sha256 = "109e898249622b8da87aa3b4e85780025e8b1c24af1f42003f108fe9f40fb1a0"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/trs/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/trs/firefox-145.0.1.tar.xz"; locale = "trs"; arch = "linux-x86_64"; - sha256 = "4a2a6a67f667d7d23ca69eec54ed894e7625ff1cd65f5b0a54bc176ad6046a5f"; + sha256 = "8c72e039c992d224f6b48a48e78e0ca293e81d12b7951297ec33b1e6fd877f64"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/uk/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/uk/firefox-145.0.1.tar.xz"; locale = "uk"; arch = "linux-x86_64"; - sha256 = "abd16c1dc83547d26c4f0e2ee0740e357effa71b224d863427b3e20f32c4b4df"; + sha256 = "20d313e67fe7adc3b5e2737a488e9a3c6c1742783b0391719769102aadde5871"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/ur/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/ur/firefox-145.0.1.tar.xz"; locale = "ur"; arch = "linux-x86_64"; - sha256 = "65ac8df440d1c390dcd184c95b29cc582a6e6972da0fcb9e2c8ad98f9813918d"; + sha256 = "e7278bb22cfb40ac923a7bbb95299495b2c21d050d14f1e7901d8313e2f2ebbb"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/uz/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/uz/firefox-145.0.1.tar.xz"; locale = "uz"; arch = "linux-x86_64"; - sha256 = "9f4549d3689511db976b5cac62b2397ef10bab0101fd8314cb2bf61bcaf03c58"; + sha256 = "96ec513d679e9d5845ae05f034f8d173eb81a25a696a67e42b20db7af1674023"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/vi/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/vi/firefox-145.0.1.tar.xz"; locale = "vi"; arch = "linux-x86_64"; - sha256 = "d527cbc046cce8628bcd7a3e9777f3e6b2bbbb2c685a383c8661d2dc0ec02d23"; + sha256 = "8bd7f3bc267402e295622f9c16848beeffb282a0d3e7c6cb466d665c46f80907"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/xh/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/xh/firefox-145.0.1.tar.xz"; locale = "xh"; arch = "linux-x86_64"; - sha256 = "8060835564b86835846a15a476bf69afbed7998c392603b18502b9b92e5f2e4e"; + sha256 = "3b818c231a0f29dceef1cf3549dd148f27db009bce6a3ecf59092bbcdcef4d56"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/zh-CN/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/zh-CN/firefox-145.0.1.tar.xz"; locale = "zh-CN"; arch = "linux-x86_64"; - sha256 = "03f7cff02e6693fdc46cae338adb4db274be7af6aa29f2dad87308bddbe21b67"; + sha256 = "caad0bab25aaf961f1e33a539d14d0c380b3594132e0c671b7e5b8b798e5fd66"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-x86_64/zh-TW/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-x86_64/zh-TW/firefox-145.0.1.tar.xz"; locale = "zh-TW"; arch = "linux-x86_64"; - sha256 = "ff613fe08961f382d7f5ec66691fd24aeeb2ef3b86b03aa577a0cf3bdf97662d"; + sha256 = "1ecea7af29851fbab5dfcc6091c0e98e89b48fe06672bd59d793c552bd224261"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/ach/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/ach/firefox-145.0.1.tar.xz"; locale = "ach"; arch = "linux-aarch64"; - sha256 = "2c61cb2afdbf0ba08923ca909df95842a527c2fea914c7c2794bd8b7fdc81432"; + sha256 = "e768741b3e9f45ecd51b259302e82468c313ba710152c333854860ce3a5c51ac"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/af/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/af/firefox-145.0.1.tar.xz"; locale = "af"; arch = "linux-aarch64"; - sha256 = "d1047b9033b08339d9934ede5d656b1a25845b49d8a9315ff52443e1b7b1a8d1"; + sha256 = "1a7d1365ed854921f45cd7023ec7b064ebe3770e55ed22b449764911dbe442cd"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/an/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/an/firefox-145.0.1.tar.xz"; locale = "an"; arch = "linux-aarch64"; - sha256 = "02070d52497266dda84a3e96136c2cbf02f62997650770612a9016fdb39c1ae8"; + sha256 = "0141ffc4683ff74681db73057156e1c695cf0a965efeaefd236c69ec11adea73"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/ar/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/ar/firefox-145.0.1.tar.xz"; locale = "ar"; arch = "linux-aarch64"; - sha256 = "c98e8a6af772f4b87438687fee1d684093113a6a2f0a46d4d434b13e0582101c"; + sha256 = "38012a31620f476cbfe11f0136185700f956be06f19c82ff924004e819fe61ba"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/ast/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/ast/firefox-145.0.1.tar.xz"; locale = "ast"; arch = "linux-aarch64"; - sha256 = "7c5c336b1c7b57b18b299c85084e913db39854c6a587dfba3dc2d04fb5f9de2c"; + sha256 = "1e40f93ac70eec47f07a9869a9b182fec9a569e02c884a048d301df8efa23a07"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/az/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/az/firefox-145.0.1.tar.xz"; locale = "az"; arch = "linux-aarch64"; - sha256 = "d6ef2100b916dc2318adb7d25eace34f52e8ac94b36f2a619861ac09f4c44127"; + sha256 = "0ede4a382106055240bc27484ae92befbd24671f701efc44161129f5d661e231"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/be/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/be/firefox-145.0.1.tar.xz"; locale = "be"; arch = "linux-aarch64"; - sha256 = "870486811a3bc790eb60bb2f8317d063aeb8dde2bd3f9287c188542aca81b8c3"; + sha256 = "060c58a918cb3a9831a77a61006d5b1d2f01945bd5c9b9ef840a2ec549c5b951"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/bg/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/bg/firefox-145.0.1.tar.xz"; locale = "bg"; arch = "linux-aarch64"; - sha256 = "57654146a5b7a9e1c8d5eca8ab637969e415f3ad9d3b7a0627821044bcbf23b1"; + sha256 = "a58413ca3ffe00216ed4a9e8ab2795e37fce16a8b01793c028040820ae403eb8"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/bn/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/bn/firefox-145.0.1.tar.xz"; locale = "bn"; arch = "linux-aarch64"; - sha256 = "4712dc26d5f3f6fa2aff4a670925f09ae8a4775f402626837a1002a866effc35"; + sha256 = "b492d0f913cbca15966272f83d5f0768935b557fb1fb56b5ff52c2942bb279a5"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/br/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/br/firefox-145.0.1.tar.xz"; locale = "br"; arch = "linux-aarch64"; - sha256 = "b1f43a0344fa96e3be9746c946bca6966018ddf16d4ad9b19b1a581a4c5d4a2c"; + sha256 = "4a8a74f844a849cefbbf83f7da9e79d3913b0368bfcb67e0ac03a89a2213eb10"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/bs/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/bs/firefox-145.0.1.tar.xz"; locale = "bs"; arch = "linux-aarch64"; - sha256 = "4638bc53be65785e8a49b93a2cbe3297633d7bfa2a6c815835ec8331efb60887"; + sha256 = "18d91543c43ffd788456f26012ef056da243035221d5a6256b993c9760539689"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/ca-valencia/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/ca-valencia/firefox-145.0.1.tar.xz"; locale = "ca-valencia"; arch = "linux-aarch64"; - sha256 = "1a71ddf1a3af349e3be58d6eb227f1bdda1f67df737c59c82d429ad39d91597c"; + sha256 = "a34d74a216f513b73199d55f89ed5a8a77905c86d8943850b19a27851482503d"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/ca/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/ca/firefox-145.0.1.tar.xz"; locale = "ca"; arch = "linux-aarch64"; - sha256 = "08be23159e46150de4c29dee1b912d784d3250507d83a31e07e8da20f0576f01"; + sha256 = "b725ed0261b93578586dc5515f3d657868384986764d6742bd8b4c1213975211"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/cak/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/cak/firefox-145.0.1.tar.xz"; locale = "cak"; arch = "linux-aarch64"; - sha256 = "6a78cf59262ab2aa29ad7596460ac77439967fa136f3efce981284ca405987c3"; + sha256 = "3d0d3d22692af11348d2f5c02c3b6f25f8a19d2e7e7ec988dd72441f46b7dc84"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/cs/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/cs/firefox-145.0.1.tar.xz"; locale = "cs"; arch = "linux-aarch64"; - sha256 = "2f1f325c649c13bf10509ff6e48510b024ad9b51fbdc8906b4b73114f880c4cb"; + sha256 = "42d0fa7f0592ebcd3fae360ebf001739ca3934730bb5f0ba07e8791e05e9fe82"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/cy/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/cy/firefox-145.0.1.tar.xz"; locale = "cy"; arch = "linux-aarch64"; - sha256 = "b18b2103255d4ef2a26cb91207056e6d77d7c9cc6bd2f9595aa4b77cc21fce45"; + sha256 = "87a953d8b25e43045fc444dff7299728641a991cf319cf85006e90e961c7be81"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/da/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/da/firefox-145.0.1.tar.xz"; locale = "da"; arch = "linux-aarch64"; - sha256 = "68f65d222b3342c4f0697ffd99418f954704b0a0194d7983b0406a72f6cad60a"; + sha256 = "dfe882bd3c67a60dc906c729619a4d55ca47c3295f8234e15ce3a688f238f834"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/de/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/de/firefox-145.0.1.tar.xz"; locale = "de"; arch = "linux-aarch64"; - sha256 = "e61690d873af08d08c942b0857d69e25154993ae1cfdd6502cadb7a27348b5ef"; + sha256 = "22fd18bbf9e1736c3c015dd463305270f7363acbbea97841b4e046b705fb912c"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/dsb/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/dsb/firefox-145.0.1.tar.xz"; locale = "dsb"; arch = "linux-aarch64"; - sha256 = "18bfce4251c0f0f5a1633ca169ae7455fc08f0bbb8e68b53f0eb8825a4ed0262"; + sha256 = "aee7f5236f2a4d0edec1f6441f7e45d041146628877a466ab58dbfe3a1c14cb9"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/el/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/el/firefox-145.0.1.tar.xz"; locale = "el"; arch = "linux-aarch64"; - sha256 = "f30214f1f7b43e16354cb87bc825ec26e64ce854bd62e26d6aff321854a9df44"; + sha256 = "ca96bda16d0d03ef8447f5ecc299b0179678a020c78c9795724c293821a60fb0"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/en-CA/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/en-CA/firefox-145.0.1.tar.xz"; locale = "en-CA"; arch = "linux-aarch64"; - sha256 = "d5d9269979f0b21c1577d21b59acb4b5e9846b8069cdb8b202ce17c4529e7dec"; + sha256 = "6edb0b09a3caf51737b61ea31abc153822f93471249b5687151b781659b7dc69"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/en-GB/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/en-GB/firefox-145.0.1.tar.xz"; locale = "en-GB"; arch = "linux-aarch64"; - sha256 = "6cf92e78ec876dc79e987ffaed2226d5708b027e85065094435f66ffe98fa455"; + sha256 = "ce9e650cc3b1b2d44dd45f18cbc850497091fddd9893a2b25220832f4351f0ca"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/en-US/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/en-US/firefox-145.0.1.tar.xz"; locale = "en-US"; arch = "linux-aarch64"; - sha256 = "72ac5a3ea3c1bbedcfb95e9a4ed15b0e15ba3fa60845e46e4c9ea0b87eba3213"; + sha256 = "52e9a29adfa1dda1211c5fd822ca0e2fe62a017700f7a662b0e42283fafd9df8"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/eo/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/eo/firefox-145.0.1.tar.xz"; locale = "eo"; arch = "linux-aarch64"; - sha256 = "1b77f62f3086c28a6bb5249be12888e9b3b4dd773fa857f8f52c42f402673841"; + sha256 = "3197e2db82b11129dd0d10c9731c82261f56d9d8a864d3895bc15f992375a544"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/es-AR/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/es-AR/firefox-145.0.1.tar.xz"; locale = "es-AR"; arch = "linux-aarch64"; - sha256 = "808ce79df54971c5d3260b3cd230676fa4b9fb4299275391070a90287f5263b7"; + sha256 = "bf1d1011bdc8cbb4482da944a6c42d88c26a5528af8485b64589786e2f952080"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/es-CL/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/es-CL/firefox-145.0.1.tar.xz"; locale = "es-CL"; arch = "linux-aarch64"; - sha256 = "f4693a19c1f9009ad3a065a9572446596b35f0a2bc0f72d78643ff0437979ee4"; + sha256 = "f0c137ccefb7fec36756380262a4d110ade8b466928e94eeb76f4dc342b9c011"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/es-ES/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/es-ES/firefox-145.0.1.tar.xz"; locale = "es-ES"; arch = "linux-aarch64"; - sha256 = "ac592bc65ed1cd4cd5d613d462e62f2543e13e52fbc0bfc43ecd63c8fffda3b0"; + sha256 = "7201a4f1464e47fb51bc5e28fc01df2d009e657cf1a0eaac218e912b260ca1c6"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/es-MX/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/es-MX/firefox-145.0.1.tar.xz"; locale = "es-MX"; arch = "linux-aarch64"; - sha256 = "4314cb1213d06ddadc44fb4c17efd55abc9ea9abdbdf1b4e1ee6316e45d8e678"; + sha256 = "4f17a3e548c2b66f0ac8a094e5ad04cf6a350f86fa92dbe1fd2c9ff2c4f1093c"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/et/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/et/firefox-145.0.1.tar.xz"; locale = "et"; arch = "linux-aarch64"; - sha256 = "e05130531229ae15a222674fb64cf6ea3a69f9f5e6e937b694f6a72082ccaddf"; + sha256 = "4287ba9e818eca18e9ae6a7f69ac5c62519ab98f568cd5fd026c89cf80d6a74d"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/eu/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/eu/firefox-145.0.1.tar.xz"; locale = "eu"; arch = "linux-aarch64"; - sha256 = "3470e390415cd1c98c017acfe190ce0d8e8075a96d654a3d277105bc28042d0d"; + sha256 = "51056ac8bd127d8d20069b5c096e6847f9e5370695040524d41c0f3f0a7ebbe4"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/fa/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/fa/firefox-145.0.1.tar.xz"; locale = "fa"; arch = "linux-aarch64"; - sha256 = "baa3eeeee38c3d6c03c4a016e25ac1dbd2b7716314ab4b9483f43a147335c342"; + sha256 = "584f6bd0e773920de7ab773a8d7aa50dde656c13dc228cf0289f991d0271a576"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/ff/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/ff/firefox-145.0.1.tar.xz"; locale = "ff"; arch = "linux-aarch64"; - sha256 = "916356e99e8ab2ab71a8d7013c7fbfc043e5916d39777d64d05f534ea8fbaf52"; + sha256 = "55c2dde90d8b5f356381f5d94b96adbd01360cdb5c27ecdcad494aa44f3846fe"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/fi/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/fi/firefox-145.0.1.tar.xz"; locale = "fi"; arch = "linux-aarch64"; - sha256 = "d797ef88471e272bf93016723db0f398dbf87f3afd010d90c77925df1d8011e4"; + sha256 = "376fbddf97fd78764327420096cbb6d5f91f25b0a8d001031c432e8a71298f31"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/fr/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/fr/firefox-145.0.1.tar.xz"; locale = "fr"; arch = "linux-aarch64"; - sha256 = "5b8d18aa74697fb0cb7749594a3346e73bcdcd7fedb4c4665a060945bbe77172"; + sha256 = "ee03183fe7a1d664c96d15d4c820abc8d32c8fa7cd7497fc7eae15ce0210b331"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/fur/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/fur/firefox-145.0.1.tar.xz"; locale = "fur"; arch = "linux-aarch64"; - sha256 = "2980979fec072f72cd19b295709e7e8e738a05f52a403450cd6f76b9c77ed3bc"; + sha256 = "ebebfe63c07aa4ce309454b38a9a40f5118928681ed3c9ebb2955cbece81727f"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/fy-NL/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/fy-NL/firefox-145.0.1.tar.xz"; locale = "fy-NL"; arch = "linux-aarch64"; - sha256 = "51ab39efcc5e810d3065e420c59f35292f62b760fcfd3ac91e26d94e30e58f4c"; + sha256 = "1d3881de9e7820a15b0cba90f10f0204f9fd68a665bad593a52c3e687d11f44d"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/ga-IE/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/ga-IE/firefox-145.0.1.tar.xz"; locale = "ga-IE"; arch = "linux-aarch64"; - sha256 = "275d2b6d45922e12500f0d35ad549b4e4b3e24440564ce4e5c0d37eda3d2a263"; + sha256 = "ae49c14d15fed74ea3a717f5e612b542dd7fa1d9ccb381679848559f65a4c6e2"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/gd/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/gd/firefox-145.0.1.tar.xz"; locale = "gd"; arch = "linux-aarch64"; - sha256 = "dc89c09e9f63757063353103ef28927ac6069e1c4893a47708966d1967a3518e"; + sha256 = "beae980b0d7cfbd959e38f0f56106f89e4022719431665220b379902586c0518"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/gl/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/gl/firefox-145.0.1.tar.xz"; locale = "gl"; arch = "linux-aarch64"; - sha256 = "e593c94fdbc6ab2b1f6ec3824205abbd75201461175e534eaaa40755240f8af6"; + sha256 = "b9f9764daf580c7a86f2450d73ca6c2961c515d5b0c419c62c0acabf89cf1a0d"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/gn/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/gn/firefox-145.0.1.tar.xz"; locale = "gn"; arch = "linux-aarch64"; - sha256 = "268f8e39a11d3db68ff09b98adee51208b4ed59390ed756a7dc6dc0a028fde96"; + sha256 = "ee37872f0a8cf59ecaa41c03b54c0c45af261cd56a53a7ce8cd2c81fa5dffd04"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/gu-IN/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/gu-IN/firefox-145.0.1.tar.xz"; locale = "gu-IN"; arch = "linux-aarch64"; - sha256 = "b7d63cc7242cfb224bed29e7b6b371792a93e0500986343f5c4afbc6bc3a497a"; + sha256 = "7246734b4bf5b1f87bc7b823a75dd8aaf9c90f7c1a6db27007307c609e71cfbd"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/he/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/he/firefox-145.0.1.tar.xz"; locale = "he"; arch = "linux-aarch64"; - sha256 = "531a15c05d39e6d16e0b9d06a2fdf76e6ad6ad9a063b83c71d3e7dcfea15868a"; + sha256 = "e96d35ce04fc2afd448f59a8c3f0eeadcb6e3ced6c6a07f666731de5702ccf27"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/hi-IN/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/hi-IN/firefox-145.0.1.tar.xz"; locale = "hi-IN"; arch = "linux-aarch64"; - sha256 = "e2617d43981dbf24db51727f38d2a19e63b103541c7a1dc4cfa18d4fb894708c"; + sha256 = "3f04334d0fbee67bf3f66a81977b94bd0dd4578ce7323f4652c580c86233fd3b"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/hr/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/hr/firefox-145.0.1.tar.xz"; locale = "hr"; arch = "linux-aarch64"; - sha256 = "7431c404f64986bd9ca1604e4e6aba4c16638c8098b62014ed7816aa2ae6964c"; + sha256 = "c24192dcc25f033b01363f05eadda41d054ca9ccc87aac1f7fdff7a0dd88a843"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/hsb/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/hsb/firefox-145.0.1.tar.xz"; locale = "hsb"; arch = "linux-aarch64"; - sha256 = "acbd132d9d1077d75dbcc1a15a9c29191eb0b13b2349b9a514b861cfc9e7d601"; + sha256 = "d591212d6fad365ec412b08c3e646bab7f51c0ea8ac9c71cc04e6fccf3ea4bd7"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/hu/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/hu/firefox-145.0.1.tar.xz"; locale = "hu"; arch = "linux-aarch64"; - sha256 = "421f3f1ac1ab3d33c4b4d2ac3a565003a232f97e49b0fc4152416b4d539bb200"; + sha256 = "72414252fbb748f6bdc5cc3762e83d649302998217527b51a46e20fccacd1b32"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/hy-AM/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/hy-AM/firefox-145.0.1.tar.xz"; locale = "hy-AM"; arch = "linux-aarch64"; - sha256 = "19a8ab4982d89c83de6ad712565e194b3ac84e3b7f80071f46d1285bfb03d670"; + sha256 = "39442ed44656cb85425c9a6d5dd33cab32991b5f044516800b3f49bac2d416a4"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/ia/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/ia/firefox-145.0.1.tar.xz"; locale = "ia"; arch = "linux-aarch64"; - sha256 = "a230ecf1e251409178658d37b86b42b07c79a9c44e12edae27c752e352cfcd50"; + sha256 = "d2c207300c38c0b375686bc769099671f96eccbdd21f09f28fbdaa5f0c24c453"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/id/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/id/firefox-145.0.1.tar.xz"; locale = "id"; arch = "linux-aarch64"; - sha256 = "feddb46bb123281792b194907845661f8adaa97539d1ecaec085a4f2e6547c3f"; + sha256 = "5b528a898e1bc838914ef1c90cfaae5f8b26164436e6ad536bf6c7535337a391"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/is/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/is/firefox-145.0.1.tar.xz"; locale = "is"; arch = "linux-aarch64"; - sha256 = "1986c979f40e008fab123e7c6b7b208c3e75055840a534ac39963c715ed730aa"; + sha256 = "fadb9b6723fcaaa2d92d7ed0b5f496b073e5974d7a78ee0d6ca33402f973ddb2"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/it/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/it/firefox-145.0.1.tar.xz"; locale = "it"; arch = "linux-aarch64"; - sha256 = "a0e2fbe33bc16c18b3dc6d9a3ba1be28476b6da4a85ddefae93f1b88fe2e80ab"; + sha256 = "8d09918f971f4521f8ad96df629b18357876c715c32be4719270618d45600a1e"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/ja/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/ja/firefox-145.0.1.tar.xz"; locale = "ja"; arch = "linux-aarch64"; - sha256 = "b9d0af0ee8c53c84a825b64582dc56d5dfbeafe214c5f2aa21a7a3e52d2f6e42"; + sha256 = "46d6e8d1ba99058581113daece7aee9216a12a6950a64a68f98c0fa0ec62b310"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/ka/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/ka/firefox-145.0.1.tar.xz"; locale = "ka"; arch = "linux-aarch64"; - sha256 = "ad439d8c5f9d784a0cf188b82a8613046789341ed59d67c506f0633b6ce520cc"; + sha256 = "80b874f0dd801e9b2c4d94cc851850ddb54c0a6b84d545d254792532e95bf339"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/kab/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/kab/firefox-145.0.1.tar.xz"; locale = "kab"; arch = "linux-aarch64"; - sha256 = "bf2de7581a09fa981494787b8e8ea61ee1afa4d46b63b815b696cbc9185abab5"; + sha256 = "6ff7d358ae955e84612ea888d51a73ac5165725bd225933740703ad4c9de1d30"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/kk/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/kk/firefox-145.0.1.tar.xz"; locale = "kk"; arch = "linux-aarch64"; - sha256 = "520453e007ef4b571e91607889963f45943fec52fb2f64ab7505def94ce9a060"; + sha256 = "6474a5af55e50d630ad7dcfdfe81b7cc8a660beaaeb30709e92d33f9f9a2c9a9"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/km/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/km/firefox-145.0.1.tar.xz"; locale = "km"; arch = "linux-aarch64"; - sha256 = "d8ff53acd6435da4aa8ab7238398983ea57c195927d41b6332fa12162a237a28"; + sha256 = "485f84d66da5a9bc524d3433cd9e66e85da59677e727c1404983905e8dd7d725"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/kn/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/kn/firefox-145.0.1.tar.xz"; locale = "kn"; arch = "linux-aarch64"; - sha256 = "05827d15fa2610eeb34ad8756da1aa39774f77184aaf910b7d2e75cdeedd1540"; + sha256 = "6aaa3fb765cc767f34197c23fbebf3a2389418381e0fed53ec28392abee2565c"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/ko/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/ko/firefox-145.0.1.tar.xz"; locale = "ko"; arch = "linux-aarch64"; - sha256 = "18d609192a02777e936443180803f726ba64f8c850ce73cc4d3f2033671b3068"; + sha256 = "cec9342330aecf91ea31c9f3ca2587abcbec2efb293fbf31d7d7b538eb3f38f5"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/lij/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/lij/firefox-145.0.1.tar.xz"; locale = "lij"; arch = "linux-aarch64"; - sha256 = "112fb7f3e2daf925db7d8fe5781472f22ce0ffed634de5cc44fe47694ad6771d"; + sha256 = "b63b94664b22561320d2005381251b49b4da7aa434847ae2a8e5161d291fef6d"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/lt/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/lt/firefox-145.0.1.tar.xz"; locale = "lt"; arch = "linux-aarch64"; - sha256 = "2b195d9df798b6c1e7d7b0ea6217802f2264874a3f710085a6d94622ff20181c"; + sha256 = "90987761cfef48a4652af25ccee684d9f85d807807ebd1e2c28ec2a6be858c67"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/lv/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/lv/firefox-145.0.1.tar.xz"; locale = "lv"; arch = "linux-aarch64"; - sha256 = "cc78e8747f0d50e9da6b838fdf16f1cb34ac33e7e8f534b808a3fd71f6a5420f"; + sha256 = "2dd6bf3f9066cf12aa8ff5286b8c68236f32d02b01197db3793bd9b32cf7c578"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/mk/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/mk/firefox-145.0.1.tar.xz"; locale = "mk"; arch = "linux-aarch64"; - sha256 = "82eb791a1ff0e52bdc170ed9e7f3125fcecd8985966c6d5f57a74981dbc5eaba"; + sha256 = "d9069192acf355007cb7aecdcc5df8e3795ca0df1f9d57f32039cc84ed2fb67b"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/mr/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/mr/firefox-145.0.1.tar.xz"; locale = "mr"; arch = "linux-aarch64"; - sha256 = "193dda2f3ed336aeff26c49fc1f15bef307120ea7c7d40b4cbf2f1c6e3deda7e"; + sha256 = "6be56e172e0d33e4d0dfa12f6f03034a9ec8b2cd26e474da159f6d5dc69766fd"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/ms/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/ms/firefox-145.0.1.tar.xz"; locale = "ms"; arch = "linux-aarch64"; - sha256 = "c3bad4b566dce4b934017e01521e81fb1d2432114b01b5bf4b479d2ff9f4f3ec"; + sha256 = "a99cfdbe4f5a36d87f4b366e25e95626977d50b44c2c3b3892a655b7c178c738"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/my/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/my/firefox-145.0.1.tar.xz"; locale = "my"; arch = "linux-aarch64"; - sha256 = "54efb4cef10bce6b64da8f69c2927b35f96cc6a7ed269d5f0c3495deeafdcf59"; + sha256 = "82a082342ca3af706505c59b6a05b52a76aa477207e2f4ee3064b0d5639378cc"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/nb-NO/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/nb-NO/firefox-145.0.1.tar.xz"; locale = "nb-NO"; arch = "linux-aarch64"; - sha256 = "b929654dc9ead0883fc8ad10664380767da436d91ac7913fc21ae55b8d3a0dc7"; + sha256 = "fb619e8e33a04f09fd214b1385e2b591b2af8c7343954fb6718e980f6d7646bf"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/ne-NP/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/ne-NP/firefox-145.0.1.tar.xz"; locale = "ne-NP"; arch = "linux-aarch64"; - sha256 = "b7d763f3c509c401dd2a9b3342318b0dd25177b4ab3408ea386b5dc44dc3288a"; + sha256 = "9c5b5713a91eeb85992bb282ebdc98027423de7013e0dc90793f71657a025f12"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/nl/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/nl/firefox-145.0.1.tar.xz"; locale = "nl"; arch = "linux-aarch64"; - sha256 = "dbf81c949227a96788baf94542b6edc5fabd2c9d8dcb5837926133335cc170a8"; + sha256 = "d620749ec425e16fb760332431ed27cbb9cdf37fe54812c9f97870ef87a1e4ef"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/nn-NO/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/nn-NO/firefox-145.0.1.tar.xz"; locale = "nn-NO"; arch = "linux-aarch64"; - sha256 = "54bad38c51ed69909dcf8bc0a5795f49e0a07ab592104acbf0d11035a60b7bec"; + sha256 = "7aa09e059a6172831a3620b4c0145db5045433125c7e1622f3c7332aa6b50378"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/oc/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/oc/firefox-145.0.1.tar.xz"; locale = "oc"; arch = "linux-aarch64"; - sha256 = "382faafa1fa379d6e11cae155bb2832958e4e7674a632a9727f62c051ba424da"; + sha256 = "67e1d33c08197d92d4474577cbd17d8dc19b38f5c01f12f8407f900b0ae4daeb"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/pa-IN/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/pa-IN/firefox-145.0.1.tar.xz"; locale = "pa-IN"; arch = "linux-aarch64"; - sha256 = "67bec995a3e985c991ed612f43a7cd52ce459a24ad3f0b9af621431a7143a719"; + sha256 = "a58f618794ba202d49c26a87ddb87bc427f4a967b63e0b7673da0d2ac18cc765"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/pl/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/pl/firefox-145.0.1.tar.xz"; locale = "pl"; arch = "linux-aarch64"; - sha256 = "3b9e0faf25eddf8d396b082ad3022c1791afeb26f5045f95d6a984d1bc66cd6b"; + sha256 = "816acc531179b43e7410d371b50995a99bb7312cbf46032f13c304c32884dc09"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/pt-BR/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/pt-BR/firefox-145.0.1.tar.xz"; locale = "pt-BR"; arch = "linux-aarch64"; - sha256 = "d7b350f31eb8c7597f4b99e5a26f875c722fb0756cd3278f4e7a1bef09b44b8d"; + sha256 = "2abd940d57867f93328be096ac0afc772dd2ef280095d254ad925abbc792bf60"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/pt-PT/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/pt-PT/firefox-145.0.1.tar.xz"; locale = "pt-PT"; arch = "linux-aarch64"; - sha256 = "e7c0b4898f55c675f42209fa5ef9d238f7edaf999a09e5f80cd204c60191dbfa"; + sha256 = "d95efe700480d96bc735f6d32305b3e6e88786c271783a498a584be4e700b0b1"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/rm/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/rm/firefox-145.0.1.tar.xz"; locale = "rm"; arch = "linux-aarch64"; - sha256 = "79e26ab913589aadb4c8c262b0ac94c1348ffcbef172f3a0069952964435f0d3"; + sha256 = "d722e2da84b0e16c12c4db0b23c9533d909d965bea0a31d381d191d72301b88f"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/ro/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/ro/firefox-145.0.1.tar.xz"; locale = "ro"; arch = "linux-aarch64"; - sha256 = "d98d3cf2905e23645b12bc61aad8dc92587d392fb07ee69e29ad8df05839b453"; + sha256 = "d1fbef0baa785bc087f35f02058c84a62bafe0c59b20c4ef945d0b3d8334fcfe"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/ru/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/ru/firefox-145.0.1.tar.xz"; locale = "ru"; arch = "linux-aarch64"; - sha256 = "f1ac1764f5507db9eae841593d5cac761d6be45f6a8437d04edc0e3067d5b660"; + sha256 = "223a4488bf79c85c6b20e0f9ba4394ba5b8b936c7dde0e3715d9b1384a3f8fa1"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/sat/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/sat/firefox-145.0.1.tar.xz"; locale = "sat"; arch = "linux-aarch64"; - sha256 = "f5c6dd1c99ed4210b37ccda798458ee0ea2fc4aea01940672cf391bbda6058e8"; + sha256 = "1d81a3a6a46b9e1f77ef04ddd30a0f0f243c9f723b9c9bf8945d7c9e5bda1327"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/sc/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/sc/firefox-145.0.1.tar.xz"; locale = "sc"; arch = "linux-aarch64"; - sha256 = "1c59cb5deac124925962ce24025aac70f998ecda32c7ed37bb7d92ed279a09b9"; + sha256 = "d2865817e0d79106ffebd0ae22db755495221beb8f5a5a36b455eb53adaf2091"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/sco/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/sco/firefox-145.0.1.tar.xz"; locale = "sco"; arch = "linux-aarch64"; - sha256 = "a1e42ba9a58cf569a044829d4ca941277fab29091c1aa04d97fc5e17ae3782ae"; + sha256 = "79549eee6baa7410a07a47a5c1a215549a95eea02c7b432439ae9f6a223d18eb"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/si/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/si/firefox-145.0.1.tar.xz"; locale = "si"; arch = "linux-aarch64"; - sha256 = "75bf350f65b78784e12031cda1db4dfbdeff84d2492f446869f01033dbad6727"; + sha256 = "25e74047ff6e74aa588f7316676ced00c5be29437a9751fded938501cf2f3e33"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/sk/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/sk/firefox-145.0.1.tar.xz"; locale = "sk"; arch = "linux-aarch64"; - sha256 = "6563f8f1f3f1b3466f579c07d845d89ce10bd8f605de589217470f9aa978bb75"; + sha256 = "946f6a85cb0db1991b440579c0b50bc7952570ffb07441562fc3bfba13b1d662"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/skr/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/skr/firefox-145.0.1.tar.xz"; locale = "skr"; arch = "linux-aarch64"; - sha256 = "0b1c4c9c2980c361ee9c9f876bd4829039337f87ccf41befd77e8bbbba1ed07b"; + sha256 = "dbafdc3b794fdb70b45f17833121a4a214c84d2d5dff6fb472539ebd4388779d"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/sl/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/sl/firefox-145.0.1.tar.xz"; locale = "sl"; arch = "linux-aarch64"; - sha256 = "ac09acbefa20010b0c6072277e5039b4d0c404c82845b5b33be9b0fa2bf4445f"; + sha256 = "de2d0060e6bc2d455efb8c707f6c145fe55261922fa418b5f3a56e8a9a85f493"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/son/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/son/firefox-145.0.1.tar.xz"; locale = "son"; arch = "linux-aarch64"; - sha256 = "50a765862c27be212d7e13a12688562c2e0a825567f642af6066a21a9c7a0bef"; + sha256 = "c3aac00d85047e9f36743e6b8bf08cc24ff56748ab18d53802ec75c2f9ba4b57"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/sq/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/sq/firefox-145.0.1.tar.xz"; locale = "sq"; arch = "linux-aarch64"; - sha256 = "040fa7544304c44ccd37831caa203bafdcf00f6ccb3c889485a3eb8e55157029"; + sha256 = "54ab119e031603dd3b1d473111711a20d5699947423f7706b6ce8ab090bbba9c"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/sr/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/sr/firefox-145.0.1.tar.xz"; locale = "sr"; arch = "linux-aarch64"; - sha256 = "f47c1b342dbaf2947c6915a9d14bddbf7c375ca044e4a7a796fd62ce45ce2871"; + sha256 = "ee8db68d9f228bc7e1b1bf2e7aee22c70733f5aba417e98358d5296fb9fca79e"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/sv-SE/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/sv-SE/firefox-145.0.1.tar.xz"; locale = "sv-SE"; arch = "linux-aarch64"; - sha256 = "208f16a055aec374940b5ed71c4676a7c1f6391f962c52fbb26ccfae17037634"; + sha256 = "ccd3a9fc54e74cb7a7e5164c8a6d53f2fc9bab88fd6cdecbff9ac64b05f5e6b9"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/szl/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/szl/firefox-145.0.1.tar.xz"; locale = "szl"; arch = "linux-aarch64"; - sha256 = "208577012cc7a410f1dd0a0cce1a9f2a12d004eb0a4102cd31548bf8d3f6cc37"; + sha256 = "872da7a3bf0fdf540ccce98ef1212c38cc4d55ce2f34e8f2fb94e44da38ea199"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/ta/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/ta/firefox-145.0.1.tar.xz"; locale = "ta"; arch = "linux-aarch64"; - sha256 = "1359d0d0f0c7c6c4641d976b5239598b94563f2faba1818c25bd20262d50e1f1"; + sha256 = "95c9943dd112806550ced16b1de30e0b22585c84f852970d2c17986cb8a712a9"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/te/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/te/firefox-145.0.1.tar.xz"; locale = "te"; arch = "linux-aarch64"; - sha256 = "6b104e1e9927b376cd8ba2ad76c718a639dca9d86f9b3f6cab16b7e168de16d8"; + sha256 = "e4b30a67d1934ec0042558f753f578e6e0a799d7a286bda3bc223fd5bc9dbb28"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/tg/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/tg/firefox-145.0.1.tar.xz"; locale = "tg"; arch = "linux-aarch64"; - sha256 = "4febb767fcb1a51c5ae3ff84c4709c34feeb94b7a66c59f99d9b98da4373c6bc"; + sha256 = "4335732745fe61cdcc2142a252be5346c528b31ead333241a27ab7685bcc3ba2"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/th/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/th/firefox-145.0.1.tar.xz"; locale = "th"; arch = "linux-aarch64"; - sha256 = "e37d542254eb00ea1ad081ca64185484e6b432c8abfe65388ba98817059e988c"; + sha256 = "79d799adc3aafd7e35b5f131c987ef02c7907004fb05cda42a3d6e1c3b21d371"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/tl/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/tl/firefox-145.0.1.tar.xz"; locale = "tl"; arch = "linux-aarch64"; - sha256 = "b7196774b215b645592d724cab7762080131a3905885f3c822fc0efa83bd46c0"; + sha256 = "81da68713a985e9048146fe9fed60c5e9b8c74705b0f1108556d5c903030ff31"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/tr/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/tr/firefox-145.0.1.tar.xz"; locale = "tr"; arch = "linux-aarch64"; - sha256 = "e83f442cd3cfd713c02bc63abd1b6c6c485414bddecbe53ee248fe56d57ef267"; + sha256 = "5f2c8bbbbfe330fc2aef18489ae5284a1226674544b41af9aa09b29be9c5e008"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/trs/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/trs/firefox-145.0.1.tar.xz"; locale = "trs"; arch = "linux-aarch64"; - sha256 = "e44f5e9d6b77f3f6d7f5a3371dabfcf232e9139be8f8adc6203fd4fad2241f87"; + sha256 = "44ca690a29e27423ddb7aacc4bc517074acd0f16a816b436979a2f3c16f925fb"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/uk/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/uk/firefox-145.0.1.tar.xz"; locale = "uk"; arch = "linux-aarch64"; - sha256 = "8c3fc8b8468afc65a0505c4d960cd35620b30c5e809c38f84184ba397126abaa"; + sha256 = "93794594019c6aa0540fde03d33f6e43ea2f71096d91992a8c7d408749526306"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/ur/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/ur/firefox-145.0.1.tar.xz"; locale = "ur"; arch = "linux-aarch64"; - sha256 = "4f9c1a3913f14ac67f3a9c098bbcc56cc0d332e0c1053d9b54df85fe5520609c"; + sha256 = "6d85eddaf540039d598de907cd48b20ce7e9b332d8f2e8dcbaa87918da1d328b"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/uz/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/uz/firefox-145.0.1.tar.xz"; locale = "uz"; arch = "linux-aarch64"; - sha256 = "06b13357ac28ef1c85874da24b42ae5b3721eae2b37f70f1f595c0ece58ba45f"; + sha256 = "42a91764969b6c300ba12697682fbcbb6f30eaa9784176cdc431518439cd5448"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/vi/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/vi/firefox-145.0.1.tar.xz"; locale = "vi"; arch = "linux-aarch64"; - sha256 = "3b565c780fdf7a5445c79e9b1a2f2d84c44669354a3660b9fe9bd612a1e41fa3"; + sha256 = "0162f13bfa30247543a1f3e049288e080e1ba358fe64a3c4069123696588fb69"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/xh/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/xh/firefox-145.0.1.tar.xz"; locale = "xh"; arch = "linux-aarch64"; - sha256 = "73a2ad9eefb184fa5b2f1e2d522491415e5fb50a4c1e1509f32e2a6382c96582"; + sha256 = "af76987682491c4ff82f96e75784da14eb870a7003d7b615b88f6480afc618d4"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/zh-CN/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/zh-CN/firefox-145.0.1.tar.xz"; locale = "zh-CN"; arch = "linux-aarch64"; - sha256 = "40d01268ee6903b2127350259e3192b4ff72a2ed1113d6c1e2e78f044704e0de"; + sha256 = "99aa116f9542c71529baa42f1f469849cc77386ede0d00cb48907eefbf5eeb6e"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/linux-aarch64/zh-TW/firefox-145.0.tar.xz"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/linux-aarch64/zh-TW/firefox-145.0.1.tar.xz"; locale = "zh-TW"; arch = "linux-aarch64"; - sha256 = "4d38ce2d5912cb00731d41176611ebcacdfc7fb1319ae6355525a9f308ae384a"; + sha256 = "7d845e29403a1bc4a439463b04c2ef64972d50b8fbcdf752e9688dd962f76127"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/ach/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/ach/Firefox%20145.0.1.dmg"; locale = "ach"; arch = "mac"; - sha256 = "a037261014e6f200af193ca34dc84fcce94777e9bd2cf9c8f2c92315cf1e8ba6"; + sha256 = "fe3c369f9986ab615e895a725e712206b08db5453e47eb15e0decd831834d384"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/af/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/af/Firefox%20145.0.1.dmg"; locale = "af"; arch = "mac"; - sha256 = "30450656ceee66ad1c0f51a8fbe54da937630b0ad20dbaa106f16e7db7f7d4ff"; + sha256 = "156e8b2c1f6852ed1108367c05cede14f386fe993d1b0f0477b31470d89173fa"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/an/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/an/Firefox%20145.0.1.dmg"; locale = "an"; arch = "mac"; - sha256 = "2b4b936f0443bfaa44cb2547234cd54ce7884de8175b85d2debc99706026919f"; + sha256 = "a9b1c2c25518c4dba9e3ad98a04a3e6559aa42de59b73afaad0add3d22e12a2f"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/ar/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/ar/Firefox%20145.0.1.dmg"; locale = "ar"; arch = "mac"; - sha256 = "76d4f6f62108c880786690e3a9e094fb97306a9a9b1611bc70f39373815e7acd"; + sha256 = "b6b7f84e935ad160d99f53e1cd9671e2d3af7d7995c3ef0c4173aeeddfa6ad25"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/ast/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/ast/Firefox%20145.0.1.dmg"; locale = "ast"; arch = "mac"; - sha256 = "b85bc43341c4023b54b9e63fde94cb51ce627537180e0e43cc470f9bde8fa447"; + sha256 = "f21f74c2a23e52a2028e427945c915f335228943b7e493c01df879c10c828bba"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/az/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/az/Firefox%20145.0.1.dmg"; locale = "az"; arch = "mac"; - sha256 = "995fdca5366ece1c2c507e10c9832ed7b60afa0717ea17935bc885f5dce4db13"; + sha256 = "34133a5bfd5495b75fcf665c5fee8322f1494bd09b1654d75498568992c4810e"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/be/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/be/Firefox%20145.0.1.dmg"; locale = "be"; arch = "mac"; - sha256 = "351ff104ca8a6cc8859bab176b403f6ecd0998b5928f866ebddee3e0f2699c46"; + sha256 = "1d413ef7b79cf3038872be10b49213ecf9dfcc7a816e92623d0f07de25734fcd"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/bg/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/bg/Firefox%20145.0.1.dmg"; locale = "bg"; arch = "mac"; - sha256 = "ffe6aac37fae4d6a2b39b638150e52bf9873b929514bd09e3eb34932e923c50a"; + sha256 = "d179c1a92a7686452366bc8947f6f792fc26679b92cd70e97530a610a3b3acad"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/bn/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/bn/Firefox%20145.0.1.dmg"; locale = "bn"; arch = "mac"; - sha256 = "7b25df343dabeacb34ff18d3c38b3e12b7e2db06a733903a8ff9aea9e1f98ed4"; + sha256 = "e7e539887a9e85f289af791132f76a39b91965065ccd4872af3814edf580097d"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/br/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/br/Firefox%20145.0.1.dmg"; locale = "br"; arch = "mac"; - sha256 = "f88fc36dde4122172716790dd639bf3f405475476c2a12e2ae79ac05caf7d37b"; + sha256 = "1d5208a5f6661a692e4325466903e8107333eb0e6e334e64864a02df55ddb069"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/bs/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/bs/Firefox%20145.0.1.dmg"; locale = "bs"; arch = "mac"; - sha256 = "b192c00a3ab7db7ae8fc7a7dc431ce8f8fcdaf39ef3f45ae66077980c124ced0"; + sha256 = "3492e0d9577016f592f2c3aa86e18fa51bd07b9dafb92078dd4640ccc4e70da8"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/ca-valencia/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/ca-valencia/Firefox%20145.0.1.dmg"; locale = "ca-valencia"; arch = "mac"; - sha256 = "eba46fd6fd74b92d8dbb01f197c96f304164128540e66bd1c7dc2858369a120c"; + sha256 = "819fb48987c1e390facffcaf3ef3153c88535da1a079b478596ff72878103c41"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/ca/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/ca/Firefox%20145.0.1.dmg"; locale = "ca"; arch = "mac"; - sha256 = "68dc4f776815cf316317db2003c39983509fd8d81d496d5e57bd8dba5ce946d2"; + sha256 = "a16daac6adff457198859e97be75f6aa32222f2406edc58c19dc8535cd9c5600"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/cak/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/cak/Firefox%20145.0.1.dmg"; locale = "cak"; arch = "mac"; - sha256 = "89d30114091ab34b20afe63df2eecdf87f9ee523d7cf98f79b534dfbc0f0754c"; + sha256 = "f0a3b8b2a047178c7d8a57e85dec2ad86d77005604de46a86f9474cd11543d09"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/cs/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/cs/Firefox%20145.0.1.dmg"; locale = "cs"; arch = "mac"; - sha256 = "e7834280ee5978c4dc33f6de5f3b8a6035d435a1385fdc5cf7b6487eb0bd329b"; + sha256 = "d8c86d8bf74df9bf1fb475fec2ab02654f8241064117a6636a351573db200fc3"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/cy/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/cy/Firefox%20145.0.1.dmg"; locale = "cy"; arch = "mac"; - sha256 = "484158a0f2d166a97f93763f7b68454b2e74fbfa98489d4c8361e9f4e3616ec2"; + sha256 = "cd3eec1175e3aa56f60fdf0387d7e349c834e8966ddca67aea99892592c5b429"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/da/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/da/Firefox%20145.0.1.dmg"; locale = "da"; arch = "mac"; - sha256 = "8dba280b19d7a01a78f851c5ed9e29931425f3867d1fe8c13c98a747353f0a41"; + sha256 = "64cea678dad939e8a953d57bb56f555d919763710767abee3415e539f630a5b5"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/de/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/de/Firefox%20145.0.1.dmg"; locale = "de"; arch = "mac"; - sha256 = "211b40700fc1e6edffa1c4d19659494a4588075d07ac93534c273522a9455577"; + sha256 = "1247da123f140b3b6c7607c0d82b34dea009d7f70f1faacb8107fe93989edf08"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/dsb/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/dsb/Firefox%20145.0.1.dmg"; locale = "dsb"; arch = "mac"; - sha256 = "aa571e579eaa69ce99855e5f97f15d83ae68fc0f25af7e374864483b809fb1c5"; + sha256 = "9a6c38f1bee7936112afc52e04488f7b55f6ddced3390d8fc0d58f1c6ed346b3"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/el/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/el/Firefox%20145.0.1.dmg"; locale = "el"; arch = "mac"; - sha256 = "89e8534a6530695858b2dea2fd0bbcbe297173d365d529f250c04ee9e2d9bee1"; + sha256 = "43db4b75db3ac345060929909a76fbebf7273c4f8bfe6c04a48042dd5116be70"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/en-CA/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/en-CA/Firefox%20145.0.1.dmg"; locale = "en-CA"; arch = "mac"; - sha256 = "557e79da8246bf17e5075fb6e09119f3820f008a3dd6bb13f2ac09b0e2d0f23a"; + sha256 = "5f158ead18d43486b5e40f19060498d70320b38cf9670c5a9ba85180226cdcb8"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/en-GB/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/en-GB/Firefox%20145.0.1.dmg"; locale = "en-GB"; arch = "mac"; - sha256 = "8caec01e5a6bc81146ca48e9b41973caf85400b1f029c4ee08ee67220e8eae74"; + sha256 = "b2e6f5cb40ab9c61736dad066c3f31eedeabf40940637a371bd302c47983bd03"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/en-US/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/en-US/Firefox%20145.0.1.dmg"; locale = "en-US"; arch = "mac"; - sha256 = "1c4556480deac8424049f3081a6de1e2c6de619bab3e8ce53e5a497b8d6d919e"; + sha256 = "828ccfc48534ac976dbb71113b79045cbfeab401c81298ea5b75a8dd62232484"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/eo/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/eo/Firefox%20145.0.1.dmg"; locale = "eo"; arch = "mac"; - sha256 = "6b5b9aa81668d7fcdf6b4de8945e8cdddd7ba2f8a3d65ee3a92556890d62b3cb"; + sha256 = "459b868cc0f88557702bc25ae4efeff015a55dcb1e6afe029d5fddccc99b7351"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/es-AR/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/es-AR/Firefox%20145.0.1.dmg"; locale = "es-AR"; arch = "mac"; - sha256 = "c0e84566b711d43d1162baa35cdd2096e677a6100d2aa7ab11ab5f48d3a254c1"; + sha256 = "db0972bc9b33c658c381fc863bd28420355cebb5312cd869782493a0a37a857f"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/es-CL/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/es-CL/Firefox%20145.0.1.dmg"; locale = "es-CL"; arch = "mac"; - sha256 = "26a92be96822322415bf85ddb0f31642535972aead3bba867db2c8ae14488279"; + sha256 = "17c3213a19f5c90cb8d0489e04602b24b117a706de81ece793b7e783610baac4"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/es-ES/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/es-ES/Firefox%20145.0.1.dmg"; locale = "es-ES"; arch = "mac"; - sha256 = "d9743bb75228f87e92339dee6cf0e6134411615b13828a7cf64a8dc32104366b"; + sha256 = "ff713f2752f90d9fdc15dfbd4a07784c029060e8f9a4063cd58bcdbeb4e01dfe"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/es-MX/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/es-MX/Firefox%20145.0.1.dmg"; locale = "es-MX"; arch = "mac"; - sha256 = "8ff3ca6ec75b512180088f673f9872cb42c1eec82f7b67618b7157ebdb90d135"; + sha256 = "6fad110854c05b3ddb771bfc1b770ded06086a0811da4c3d94b84791f96e3765"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/et/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/et/Firefox%20145.0.1.dmg"; locale = "et"; arch = "mac"; - sha256 = "4925267eedf13df1e90f5ad56059c6dd079709654f5aca887b0c43b8bc94fb2e"; + sha256 = "bbd89da2b1de9065ae9254dd47a200640acccdea1ae7658cd1b6457cf8b41c60"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/eu/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/eu/Firefox%20145.0.1.dmg"; locale = "eu"; arch = "mac"; - sha256 = "9f9331c0e3a669cbc76bb9f9a6179ff2342271cf22e7af8af63e7ea7d02d662c"; + sha256 = "931392476cbafab68a689d676b41b18e97d6fc69b48b799052989bb3c67cf9e3"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/fa/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/fa/Firefox%20145.0.1.dmg"; locale = "fa"; arch = "mac"; - sha256 = "6fe0c1d00eb6a6110b6b0cbb4124fb01f49e35c945b1cd95681b4283652d61a0"; + sha256 = "e010978420d7feb37a102a26053da31829550d79eb22dbe45d5dd20006e3fce2"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/ff/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/ff/Firefox%20145.0.1.dmg"; locale = "ff"; arch = "mac"; - sha256 = "3684349721e034f9c2263cd07c910b555f34452469f5bb1a3346608dcf36f7f9"; + sha256 = "f4f449481e870ea68c85cecd63ac1187d563a9296bdf75121a40acae4348864c"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/fi/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/fi/Firefox%20145.0.1.dmg"; locale = "fi"; arch = "mac"; - sha256 = "851e56995cbe32e8b1e475eef641de9a20fa03fa836311572c6e94133c6a58f5"; + sha256 = "370e9324f828a0e2192684f810275c462fcfc054a1824e5f80272e061eef1ce0"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/fr/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/fr/Firefox%20145.0.1.dmg"; locale = "fr"; arch = "mac"; - sha256 = "79f5cf5b075330bbf7f6bcb48c16e2db239fdbe8742144ac88ad6823b4ab8238"; + sha256 = "e64e860765062691a7767624ad090832c1a536047800d91d1edadb04b464bd98"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/fur/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/fur/Firefox%20145.0.1.dmg"; locale = "fur"; arch = "mac"; - sha256 = "268b18142e081d95614b08d6afd7bf8d732d966241c8708b1b62d1e063545753"; + sha256 = "9cdcdc4fc5db8833c58fbcd6952c8478737ca550615366eae9cadd965f05036d"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/fy-NL/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/fy-NL/Firefox%20145.0.1.dmg"; locale = "fy-NL"; arch = "mac"; - sha256 = "0ec0eb87542144ea3b73c3fc40bc8a797504e1c9a1bcc2902e5682805f50dc32"; + sha256 = "d10e3ec4a00e45543cc0cbfd41a6d6e5b4b472b54f14fc0e50a93fc1352b92e3"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/ga-IE/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/ga-IE/Firefox%20145.0.1.dmg"; locale = "ga-IE"; arch = "mac"; - sha256 = "a7e963ae983116d84d9e8d1ef2facf81f2ef95bfd9608dd71eace4e4dfbdd86f"; + sha256 = "4db7246bf8460430392406736e98518cfd22933c89538b04876213d5f5b7a813"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/gd/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/gd/Firefox%20145.0.1.dmg"; locale = "gd"; arch = "mac"; - sha256 = "3616a9ba1ae8670ba4acfa419dcf03cfa4db040dc71d76c0c50abb8c2cbfea92"; + sha256 = "89245ac362f3cc71d272ab6358d98f736ee9f24021138275c7e4ee33f8c4c3c1"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/gl/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/gl/Firefox%20145.0.1.dmg"; locale = "gl"; arch = "mac"; - sha256 = "03d5c9141b468d83c8099abfc00822171602d51b329458c98c6a55c6ab0db4d7"; + sha256 = "a4a984dd0e27d78d7445948fe55bfec459be680f3705e9b9e436645c34f24311"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/gn/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/gn/Firefox%20145.0.1.dmg"; locale = "gn"; arch = "mac"; - sha256 = "690953bd7d00ced6d20f5d8e5f6ccb3270425b8813a0632a9ba9122baa571a4d"; + sha256 = "cbc93e10ae5834406c308be93226c517f9b1ed7b6b7fbf03d8556807f0d5e047"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/gu-IN/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/gu-IN/Firefox%20145.0.1.dmg"; locale = "gu-IN"; arch = "mac"; - sha256 = "9acce4cd7c581c54441d53d3df519272b3deb84f1e0880286fbd41880e8ed162"; + sha256 = "df5fdc22b0b76c733137f75c67383a46cc52c719c5d4068b1ade91c7f2ab3a6d"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/he/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/he/Firefox%20145.0.1.dmg"; locale = "he"; arch = "mac"; - sha256 = "94e9f5af32a609a1db9e67680443940022a59c437f6b346e2460735ff41d5b8f"; + sha256 = "3cc9ac3a7b19ac6486b6b500648dde38afbe3781cbc224421c72055e604908cb"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/hi-IN/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/hi-IN/Firefox%20145.0.1.dmg"; locale = "hi-IN"; arch = "mac"; - sha256 = "732e935908197644ba4bdbf4620b2ac4ab40ca9c3e4ad2746600f4916515500b"; + sha256 = "3e278c6e60a1f079978d864b3f2627618dcf04d0c3c15c6e89fd97c74176e271"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/hr/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/hr/Firefox%20145.0.1.dmg"; locale = "hr"; arch = "mac"; - sha256 = "a16ad330fc0160ea8737cb56328cc83b94f2d0f0d3be1d2b0f4e3cc374ce7142"; + sha256 = "48c444dcb6741226c82a5f62ef577d882439a747a79607962d2436c5f1a45a57"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/hsb/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/hsb/Firefox%20145.0.1.dmg"; locale = "hsb"; arch = "mac"; - sha256 = "7024684b6ff98f13da7e23c99ab6705a099a603746d3a0196d20ebed9cc98dec"; + sha256 = "7078c759c89ea21ae64af50b045a62bcb33b80a76ed0ec3cbedd4b014e935429"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/hu/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/hu/Firefox%20145.0.1.dmg"; locale = "hu"; arch = "mac"; - sha256 = "373a6f6d9ea86ff0bfc0e0d7f462c2e0a1d4a29cc26d4bce4ef5ee7695f3e0be"; + sha256 = "a73a3c17f9549d6c1e6143819adbcb60375e27d8587c4b4330eea7deee4ce816"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/hy-AM/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/hy-AM/Firefox%20145.0.1.dmg"; locale = "hy-AM"; arch = "mac"; - sha256 = "a7f5e3b690e4fa3980850004874a5807dcdfb7ce74c54991daba2ea8d593993f"; + sha256 = "ab960128d421097f1d7cfcf8451e2dae316efe0c4a349c269948a8c0f325482f"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/ia/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/ia/Firefox%20145.0.1.dmg"; locale = "ia"; arch = "mac"; - sha256 = "49119e07a471ecdfac8b1679ef7304b47253ff2e8b57399ed3140cc72b75a5e6"; + sha256 = "c3961e0a9ed271c80cac2300e49f9702c56d1c1a1326d43214d66b5d6d89002a"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/id/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/id/Firefox%20145.0.1.dmg"; locale = "id"; arch = "mac"; - sha256 = "470eebdbb406c8ef73b8b6dda8f8ffa00d640366d488916dcb3060363fca68fd"; + sha256 = "2dfbd7f2f7240bdadb7e2070badd600c73753a8bd65018b3eaa3d6400d178c39"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/is/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/is/Firefox%20145.0.1.dmg"; locale = "is"; arch = "mac"; - sha256 = "c1f7fa897a44cf234a92e6dee85ab90c5c863883358a598b888b11193feebea0"; + sha256 = "7a55cec54f6bf26b9328b71d6c0d17dda5b14365a0fa4c641e9327df04675968"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/it/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/it/Firefox%20145.0.1.dmg"; locale = "it"; arch = "mac"; - sha256 = "0c2c7efbee5815b519777e41be3fecbb84e21f0b4fb8f18362de9ead96d8b4ea"; + sha256 = "743ceb126dc622c896142355c68e12184137449739ea01a1c7de17dc2783ca1c"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/ja-JP-mac/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/ja-JP-mac/Firefox%20145.0.1.dmg"; locale = "ja-JP-mac"; arch = "mac"; - sha256 = "8a6850b32423d9817fb106dc17290e757464a448a780467bc42798af0da8e6c9"; + sha256 = "e64d3000c34d2af26aee9a88e061fb33887dda64ebf77548c6a784a418063714"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/ka/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/ka/Firefox%20145.0.1.dmg"; locale = "ka"; arch = "mac"; - sha256 = "32a78aaa0058c185773a8a967d1501ad5fbb646d83964fc159307a7fbd4a3c0e"; + sha256 = "49bc38d67f098b7a871c342364c19045f8abfdbea1e2364ecf2ecb19e619ca92"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/kab/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/kab/Firefox%20145.0.1.dmg"; locale = "kab"; arch = "mac"; - sha256 = "758956a86146941f6f3cdbf9800a84b57cd160d69842a6d87592b25c1cb1f459"; + sha256 = "7d1b92d92252779e932d162ccb3ea11bb021d8d56b871f4e582968b50366fc42"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/kk/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/kk/Firefox%20145.0.1.dmg"; locale = "kk"; arch = "mac"; - sha256 = "bb67860cf60443f4f822185ed47220553a3bf757a4d46e8e5a01abdd43307755"; + sha256 = "f859cd22ad43a4734843ff9fefc5b4db99cd10b989c55db15a174051c7da09dd"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/km/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/km/Firefox%20145.0.1.dmg"; locale = "km"; arch = "mac"; - sha256 = "a090dc32dd234f3f3384412b48039eb4110422c995d06c2037284c14815fed25"; + sha256 = "7e4df1f57aa31e5c6e34cfc259f69361e28ba22e41ca88ede3478ee197a47564"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/kn/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/kn/Firefox%20145.0.1.dmg"; locale = "kn"; arch = "mac"; - sha256 = "db63fa80bb27f1a8e591533c8581cb4487ccbfc5c44c66a613e1897cb2f53247"; + sha256 = "d111836b43786815ab6bcae3a6c0bc20f18fd7398f68331d7fc22613f6f47525"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/ko/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/ko/Firefox%20145.0.1.dmg"; locale = "ko"; arch = "mac"; - sha256 = "8fbfa6009737f101fdd384c979cbd92085df743c459879dbd017e49abbcce1e0"; + sha256 = "4a5f62b1d39609e7326ec8827ef21efedab82187b2c5ab0ff370cf771792f4f2"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/lij/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/lij/Firefox%20145.0.1.dmg"; locale = "lij"; arch = "mac"; - sha256 = "12848fa6858be853a539c77943ed5f91939713d747fb34a91a61ecbda7abb317"; + sha256 = "2130a0b5541c5fd5ecf40092131f5a343de58c5e4dc1b6794c8fedd30363e274"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/lt/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/lt/Firefox%20145.0.1.dmg"; locale = "lt"; arch = "mac"; - sha256 = "79ad64edb2f67cf052453871fdedda0b50dda0038421ff891f3581c3307b3a3e"; + sha256 = "1878f9c4d98a0b61415dcc0c1609ce31b41e11c1e28519031ccea60e65f7c5d5"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/lv/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/lv/Firefox%20145.0.1.dmg"; locale = "lv"; arch = "mac"; - sha256 = "874c69101cf8c5d29058959f4a12ed55910d55cbb26bb436f281f9056924aa10"; + sha256 = "ef7d2727c5d8da6d74cee9cfed618e55dee378a2b23173239216e1727c45b80c"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/mk/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/mk/Firefox%20145.0.1.dmg"; locale = "mk"; arch = "mac"; - sha256 = "c060d497fe61c226771d654a290196d3b294a38d899781b9b6d2fcd1d963cedd"; + sha256 = "99074bffa5f9b1d7cc9cc62633838a1dc1e39eda13c178219d1211cfd75c3a7f"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/mr/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/mr/Firefox%20145.0.1.dmg"; locale = "mr"; arch = "mac"; - sha256 = "32e1194814e9ac2369689523dbe4c49a67c96b22325c4bbdff278e0ffd523537"; + sha256 = "798db48b43f8fe8510e82aa736cb7814f3c8f3d48b0dd8aa762f8bfd2e3e5725"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/ms/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/ms/Firefox%20145.0.1.dmg"; locale = "ms"; arch = "mac"; - sha256 = "bed7508f438f1eaed5df3ddec448f6e7f9683aa988eea207b7be4e735a4c2ce3"; + sha256 = "aed5a268564a919af073e71ddf36a434e2e07822aa20462187487469e18c5fd8"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/my/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/my/Firefox%20145.0.1.dmg"; locale = "my"; arch = "mac"; - sha256 = "07e37716831512cb03b3ba4108aa8fe2ab8640dde05ac9f4b93665a3e8c6a8ef"; + sha256 = "74f7f1bd7c24f8f4e5327bc132572f1e172f585226cc7572e95e9091e25a7fb3"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/nb-NO/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/nb-NO/Firefox%20145.0.1.dmg"; locale = "nb-NO"; arch = "mac"; - sha256 = "73989f5098ea1551346ba5e52977e2369f91726e631a98a36d8f508460a572fe"; + sha256 = "2bacd5c23eb7e41fdaaecf27587284d7d1ab64e32e3f5778805bb683dc9913bc"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/ne-NP/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/ne-NP/Firefox%20145.0.1.dmg"; locale = "ne-NP"; arch = "mac"; - sha256 = "e3056b27c0be1967095b2aa82117952ee5f083699bcda0b8add9ac215078e5d2"; + sha256 = "6b6a42679253b7b5d62f61fe86b43b56d14b1d716b2d862acb4706b69c72f897"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/nl/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/nl/Firefox%20145.0.1.dmg"; locale = "nl"; arch = "mac"; - sha256 = "08934c4458ad1b6d514cd0bfbd6aea991a028dba6a7e20d3629158e5d68368bd"; + sha256 = "a742290386948a032d1d43e8645a84d96830549528bb878d6ffcaef3805495d6"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/nn-NO/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/nn-NO/Firefox%20145.0.1.dmg"; locale = "nn-NO"; arch = "mac"; - sha256 = "52005e712a502c3eb1d2bc57aec1697459f3ae795377ba4aa2021d40c6fc21c2"; + sha256 = "0b59e4255a2f7dcbfda2ecd5826de60b827a93663841564d70835a08bea94979"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/oc/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/oc/Firefox%20145.0.1.dmg"; locale = "oc"; arch = "mac"; - sha256 = "24ab3149e184e89e1e4495d49fd9006bc9d564dc7ce175241dddcce2dbc6a6f9"; + sha256 = "3adbcfe8ca5e64cddbdabe13f2f2664f12403941abc574a1f910a1c9727cb595"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/pa-IN/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/pa-IN/Firefox%20145.0.1.dmg"; locale = "pa-IN"; arch = "mac"; - sha256 = "af69687470172862b9e42946c27ed7f46987f98c9cc9f300b10da656cd7ac850"; + sha256 = "5052cf09847e9c20afe762a8c33f4ef694c8d2fb30bfe1a321c835ca86429081"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/pl/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/pl/Firefox%20145.0.1.dmg"; locale = "pl"; arch = "mac"; - sha256 = "657148164791b98422d1302be9aba0887514d578addc652b2135030cd2f83b33"; + sha256 = "9aac2d159e87aa63210cd730d1d0fc927c2fd2282e379f0d4839872b22a451ae"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/pt-BR/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/pt-BR/Firefox%20145.0.1.dmg"; locale = "pt-BR"; arch = "mac"; - sha256 = "299113c50ba9e5d8d85f39c52b28722ae6fa074e8df2c0ee93d6633f57566981"; + sha256 = "b1c09fd4932aa881ac499ec2257028b859270248ca47b3cd8c23b866db74cf2a"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/pt-PT/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/pt-PT/Firefox%20145.0.1.dmg"; locale = "pt-PT"; arch = "mac"; - sha256 = "362ff05e22317ba4c459c77366b03fe551f49e64c7fe68dce8794c2ce389d341"; + sha256 = "c2d2446aa0e5c8beaed4ccbad4ae149c8f8dd0e7679005da8d8c9b6815ccd51d"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/rm/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/rm/Firefox%20145.0.1.dmg"; locale = "rm"; arch = "mac"; - sha256 = "ca0330d3193fd62e1c9cb4d0e3c39c74572def986e0bb19712ce805ece891ade"; + sha256 = "3e7b5e846029364332b8fe3dbd85e72030c03bdddd1c4b01446d57c420daa2d8"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/ro/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/ro/Firefox%20145.0.1.dmg"; locale = "ro"; arch = "mac"; - sha256 = "2853943db242efec2d4a1b2dac01857615026c693844a401caa4599dfa6bb495"; + sha256 = "2bef2894eeee5058f7ada32bce6ac4a6b6621a7e5a3447ab1d8be294b2295807"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/ru/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/ru/Firefox%20145.0.1.dmg"; locale = "ru"; arch = "mac"; - sha256 = "66c048e9031c1f8eec573dda31694c9dceabd08aa81f8493914ed0bcac8e95f5"; + sha256 = "c7237fde65b0b41e05af2364910e161818d93f73a467214705c3fa5310bda083"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/sat/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/sat/Firefox%20145.0.1.dmg"; locale = "sat"; arch = "mac"; - sha256 = "f49e3af977484970ae14ccb9eef1a6ffe9faa82ee25028198d45224c1b6a1da0"; + sha256 = "fa14f203ffa94737eb993b1354050d7ef901d4158141e3c09bcc7c59901d3faf"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/sc/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/sc/Firefox%20145.0.1.dmg"; locale = "sc"; arch = "mac"; - sha256 = "cc67beca2459eae72770d3857db872a6631de50a972ee0b5b6e66bc0d85694c8"; + sha256 = "775ef8159b8c869c36cec464b73cf79490dd5df9a1d890f41ff67ea5cba0cac4"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/sco/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/sco/Firefox%20145.0.1.dmg"; locale = "sco"; arch = "mac"; - sha256 = "0489ab38b74a1874ccc2e4bf23bbda3e2bec74cbc2cdb66f4be266abc44e0cbb"; + sha256 = "f2e4ea640f0b392376d5a65d21b9ac5705119e007c6afefeb44b108a541f718a"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/si/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/si/Firefox%20145.0.1.dmg"; locale = "si"; arch = "mac"; - sha256 = "18d3e5aa16c4640325030f7c88078fb75680511f10a476641103e5de797b3f7d"; + sha256 = "abdb27de268811cde16511adbe5f0e1c43bfd5c1e0aa8f7569f84e0eae01a393"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/sk/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/sk/Firefox%20145.0.1.dmg"; locale = "sk"; arch = "mac"; - sha256 = "f3dd41e5f37fa0074090b4b6b6bc2bf81ca85fbecf9f2086b6d222af87f02dc3"; + sha256 = "4ee8ea743ad344be793118e97f7ae32c6c110e731391a743f08ddb28f537ea2b"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/skr/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/skr/Firefox%20145.0.1.dmg"; locale = "skr"; arch = "mac"; - sha256 = "21c182cfd3fb9eb39f89a8ed240e552cde6b1657b8d35574514f48db3561d3be"; + sha256 = "820aa08298fddf3cd9deeef37fb08f80dbe0ec30538f8da6d46980e9fb2d26e0"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/sl/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/sl/Firefox%20145.0.1.dmg"; locale = "sl"; arch = "mac"; - sha256 = "30407d12ad3cec42c572d53e5adf6b0447fc0da55aa61a59c27d1b9cb635ef33"; + sha256 = "3c51e19233b04408541681cf5c208694b2b13c76be6446cc360c68ffc96b05bc"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/son/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/son/Firefox%20145.0.1.dmg"; locale = "son"; arch = "mac"; - sha256 = "e0b6cc9cd8ff89ca4f840ae23f0b9b590f0422c83d1575c5746bbb6040d08a25"; + sha256 = "50e532ead89765f47b2c0b5bfd2933fb0e21e48c2505a9cc0d4c5479ed68c838"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/sq/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/sq/Firefox%20145.0.1.dmg"; locale = "sq"; arch = "mac"; - sha256 = "fba7270eb1112ba849e1c61bd8219b3bf3fb7c70bb3e828dd8cedae6eec46fdd"; + sha256 = "eeb81f297c73e8ccf292718dc759338a34dc1021867699a4a50a5994dacc1f69"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/sr/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/sr/Firefox%20145.0.1.dmg"; locale = "sr"; arch = "mac"; - sha256 = "97d335cfe6b5e792785a282b2f61855610dd9b774e332408d6ef70be82d8cc95"; + sha256 = "bd98a86e120045edfb3090221c4e2d21a87f6f08a27740eb8c0074ed8d73b8e6"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/sv-SE/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/sv-SE/Firefox%20145.0.1.dmg"; locale = "sv-SE"; arch = "mac"; - sha256 = "c19a066116312494f39ff2ace7b395b2f18caf382f81ce239740e40c4126b2cb"; + sha256 = "68e965d10428b18b2917b5d8a3a6176cf7fde8ee9ec0bd8870b732b1a2b24966"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/szl/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/szl/Firefox%20145.0.1.dmg"; locale = "szl"; arch = "mac"; - sha256 = "8c86046bab9633c3d042befe19737223d4366efafa0d318d48622fc64f26b914"; + sha256 = "7a17b36fa730f67325d8799ea46c0d68b7f1f8b4a98f58e5e72b9f0516de22a3"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/ta/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/ta/Firefox%20145.0.1.dmg"; locale = "ta"; arch = "mac"; - sha256 = "eda094b8eaa0d4f909e664640299c2d281869c20af34f17f1238d205e67f23a8"; + sha256 = "0011ca3eadadf7d4a5c6d6aad8906689b9ca1921710e29e65cba298024179cc7"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/te/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/te/Firefox%20145.0.1.dmg"; locale = "te"; arch = "mac"; - sha256 = "629366f724d61909371ff2f5975e3e1d01c26e22ff0463a1ddb2c54fc72f74ba"; + sha256 = "fad7abb738d7fe2ae9786ad561f9faafdb0e06aed25d154d53df979361f3723e"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/tg/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/tg/Firefox%20145.0.1.dmg"; locale = "tg"; arch = "mac"; - sha256 = "e91d4d639d266f340047cb21480aa6589a278b7d5a52e4839fbc877cb356faa1"; + sha256 = "122b19e3217572626f569d3f53884ea0a0793ac96886979a594ac5e3f96f1f73"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/th/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/th/Firefox%20145.0.1.dmg"; locale = "th"; arch = "mac"; - sha256 = "e507c783a5bc9bd9535c8a44f4d2773ed4bb4007a6c629b0c7709e95ab7b8e6f"; + sha256 = "71cc68fffeb744cb1bde24c8ed36a164a7abb4d4edbddcb9e781198b618cf967"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/tl/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/tl/Firefox%20145.0.1.dmg"; locale = "tl"; arch = "mac"; - sha256 = "bc0146055dab2acc2a74d75cf9441ff0a4c5e6153badf2c3037afbc04be07ef4"; + sha256 = "bac8d054569a056e2500dde17a445384608ce295e8914d23bbfee86166ac5327"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/tr/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/tr/Firefox%20145.0.1.dmg"; locale = "tr"; arch = "mac"; - sha256 = "9a16252638c62ea427c9bcf5878f4b9bd2bdbf1d3515c8f03a38f2746c03152b"; + sha256 = "fc544877110ad107b4621c44db4cb3f33d862b2bc1dc2aa548af87b0fa286aab"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/trs/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/trs/Firefox%20145.0.1.dmg"; locale = "trs"; arch = "mac"; - sha256 = "4d6a75b366617ddb8fa21d5af55f2c17ed8a305120631cf47f926985b2e1871c"; + sha256 = "8ddb7a5c582d4ebbafd8a17c43f108cc37cd2490903f35c4337b8046f8ae851b"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/uk/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/uk/Firefox%20145.0.1.dmg"; locale = "uk"; arch = "mac"; - sha256 = "7136f8a028e57508f00086508a37b7c071288f1cadcdf36a4163eaeffebcdfc9"; + sha256 = "7db822511c233169c21eecb4583ea329c1c9ce3ec5b289436ee43fe85ae8a7b4"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/ur/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/ur/Firefox%20145.0.1.dmg"; locale = "ur"; arch = "mac"; - sha256 = "03b3f378c38ad59a722382ac969594450999767d657bb6aef141e78069aebb4b"; + sha256 = "ad89ada02fca73f968cacd207fa5c822364576d30ffe2abdd29286750b9cbcc4"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/uz/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/uz/Firefox%20145.0.1.dmg"; locale = "uz"; arch = "mac"; - sha256 = "dc107021af47b3c9d9de785e057be7122f2872468c28ae74a4034ccf0e29752d"; + sha256 = "d2f8fe6c887b66da99a1a98ec5f5792efbec9b570996d016098b972bbee38286"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/vi/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/vi/Firefox%20145.0.1.dmg"; locale = "vi"; arch = "mac"; - sha256 = "2b3d24aae1d2ba15e494c40786931bcc90ffb5ecb82881962d9144858beac788"; + sha256 = "187e7e8ad9a8056ab6b7a95e32e7f46dbd1c92cd01b98c7574452443308fcdfd"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/xh/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/xh/Firefox%20145.0.1.dmg"; locale = "xh"; arch = "mac"; - sha256 = "598a260b6151068af794909f4f200b4faf170c701ef5407636802613d0410d1b"; + sha256 = "cc9d9e35737eae89633eebd0dab682af0df6a407ca32e9db7b76318e657d4b0e"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/zh-CN/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/zh-CN/Firefox%20145.0.1.dmg"; locale = "zh-CN"; arch = "mac"; - sha256 = "753f2e330c7abb20144134547199f818d402c7d404279c17eb500e4e6872f9c3"; + sha256 = "8dc403dba7c8b56e3709163773eda4a4b4a45c60c590fc68f059a1185742b64d"; } { - url = "https://archive.mozilla.org/pub/firefox/releases/145.0/mac/zh-TW/Firefox%20145.0.dmg"; + url = "https://archive.mozilla.org/pub/firefox/releases/145.0.1/mac/zh-TW/Firefox%20145.0.1.dmg"; locale = "zh-TW"; arch = "mac"; - sha256 = "32cfb586d8cfb47533890ed24b3deef7aab59449dff4f5931f85e5b00999c18f"; + sha256 = "573462bb2a868ed7034021390557c5fd72a5d7c9fe2ccf14009b8e538abda5c7"; } ]; } diff --git a/pkgs/applications/networking/browsers/firefox/packages/firefox.nix b/pkgs/applications/networking/browsers/firefox/packages/firefox.nix index 9456a6e03256..899525352bb8 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 = "145.0"; + version = "145.0.1"; src = fetchurl { url = "mirror://mozilla/firefox/releases/${version}/source/firefox-${version}.source.tar.xz"; - sha512 = "7ba40d7de95d7b93278f1823ce460b45c6bfac01eda52bc5c28f23a6bc858bdcbf8b4b4dc359b853372fffbcff4e7f0b276fefe22c2d4a0fa303e8ce1d2629be"; + sha512 = "6e052fee46c31b2696ba5403f905e0b94b08ce354588cd6315d54ee1dcff9b82835d64ea5a57596dfb1866dd1518a29966fdaabdb4c3838103344bd2dc18c72d"; }; meta = { diff --git a/pkgs/applications/networking/cluster/terraform-providers/providers.json b/pkgs/applications/networking/cluster/terraform-providers/providers.json index 99361f6bcba5..dc0e4971be21 100644 --- a/pkgs/applications/networking/cluster/terraform-providers/providers.json +++ b/pkgs/applications/networking/cluster/terraform-providers/providers.json @@ -886,13 +886,13 @@ "vendorHash": "sha256-I8yMdS+yOk5doWGU9VPdl5ITGNrPhs5tGwluwXSrnI0=" }, "metio_migadu": { - "hash": "sha256-Itfy/EZiBI6j4GU9I3pQGpsMkykN8FVZ4FPhcUre8a0=", + "hash": "sha256-ZTaibLqcmbKYFbk497Z/fwYhx7LKH2LHkmQYvY+Lkm0=", "homepage": "https://registry.terraform.io/providers/metio/migadu", "owner": "metio", "repo": "terraform-provider-migadu", - "rev": "2025.10.30", + "rev": "2025.11.13", "spdx": "0BSD", - "vendorHash": "sha256-LMCFXZYZ9qwuu0/hA8mRNktCwwC4DRaqveW2dAJWQTQ=" + "vendorHash": "sha256-chCFJXf0M2w9oxan9Jj/gwphnN3T/5v7PZKv5H0bcLI=" }, "mongey_kafka": { "hash": "sha256-rTa6c7jAMH027V7h/yUGVGz6TS0PDdObilxU0Vpr6FI=", @@ -1003,13 +1003,13 @@ "vendorHash": "sha256-0UM4I/oxIsWIP1G93KJsJxYofXrO4Yy86PEk0FnB1DE=" }, "okta_okta": { - "hash": "sha256-7vjNorBNdfF3cTu1ANx+5Uh5chAL54lWZ7R9cMI/gpA=", + "hash": "sha256-CZSh4NEFC3cT9/WoOrIFHx3RAt3q70Fmd0/bEU1aJTU=", "homepage": "https://registry.terraform.io/providers/okta/okta", "owner": "okta", "repo": "terraform-provider-okta", - "rev": "v6.4.0", + "rev": "v6.5.0", "spdx": "MPL-2.0", - "vendorHash": "sha256-gLFMFVw44jJcuVzY6OcUHJ74rRCIQuon4p9RNoQPLPs=" + "vendorHash": "sha256-YFxDfmWjB8QWBqX0KHlsr6DyzAEhkSFm/VaEmH1+VYg=" }, "oktadeveloper_oktaasa": { "hash": "sha256-2LhxgowqKvDDDOwdznusL52p2DKP+UiXALHcs9ZQd0U=", @@ -1129,11 +1129,11 @@ "vendorHash": "sha256-M2lJKmIR66lQKFkInjizn68ax2Gq4sim5Y3vZKyDhZ8=" }, "rootlyhq_rootly": { - "hash": "sha256-8UlBt9gmQflO5sB++U4Ih40+6p+U6N8PE1npQYg9D8U=", + "hash": "sha256-RlEQd09iCT3XAuDKCvDAe7iVgx8cDkEqogK/xpVCPrA=", "homepage": "https://registry.terraform.io/providers/rootlyhq/rootly", "owner": "rootlyhq", "repo": "terraform-provider-rootly", - "rev": "v4.3.7", + "rev": "v4.3.8", "spdx": "MPL-2.0", "vendorHash": "sha256-IpWN8hCZlXm9hbPr2VcjzU7wtqivUk2h+LOaaz4KyP4=" }, @@ -1354,13 +1354,13 @@ "vendorHash": "sha256-CcbNooB1AjLbyMkTNmAklqNm6o6FVCBEBiEnD/U5yGU=" }, "terraform-routeros_routeros": { - "hash": "sha256-Cg91s+EfooVymFNI4bTXqIAYHYjFVSMwMHagCa8VoJ0=", + "hash": "sha256-e9PJPjNyb9K5CpOsySnxIm209mnnL6bwzANQPClZLaE=", "homepage": "https://registry.terraform.io/providers/terraform-routeros/routeros", "owner": "terraform-routeros", "repo": "terraform-provider-routeros", - "rev": "v1.91.0", + "rev": "v1.92.1", "spdx": "MPL-2.0", - "vendorHash": "sha256-AHl0rUuAASk+3qH0C1bRl8IgKWKY+g5rMhzf5/IHQIA=" + "vendorHash": "sha256-3I8nOAJTrcP7nN36Emw1ztWHBOdHHfxgo2c63o45hQ8=" }, "timohirt_hetznerdns": { "hash": "sha256-wmXZ6+5Ex3G2JUdw2is2VIo/X1X0V1Auw5KmYpGllug=", diff --git a/pkgs/applications/networking/cluster/terraform/default.nix b/pkgs/applications/networking/cluster/terraform/default.nix index a1e73f5b8030..15cbf82cbe7e 100644 --- a/pkgs/applications/networking/cluster/terraform/default.nix +++ b/pkgs/applications/networking/cluster/terraform/default.nix @@ -194,9 +194,9 @@ rec { mkTerraform = attrs: pluggable (generic attrs); terraform_1 = mkTerraform { - version = "1.13.5"; - hash = "sha256-F8fpTI6kPrjOM+4N67uBCpsxMLQUR6sXzTr1SYFI9Ww="; - vendorHash = "sha256-3skDvOcDlTOv8okiGmaB0bvkoMrQjutGdvpxcradqUk="; + version = "1.14.0"; + hash = "sha256-G9GyrwELOuzQqTMimC+z2GJUjq+c5YJDoE313JSsX5w="; + vendorHash = "sha256-T6baxFk5lrmhyeJgcn7s5cF+utaogSQOD9S5omEKTZg="; patches = [ ./provider-path-0_15.patch ]; passthru = { inherit plugins; diff --git a/pkgs/applications/networking/cluster/terraform/provider-path-0_15.patch b/pkgs/applications/networking/cluster/terraform/provider-path-0_15.patch index 9e46eebd1b4b..c98cb8c2d56f 100644 --- a/pkgs/applications/networking/cluster/terraform/provider-path-0_15.patch +++ b/pkgs/applications/networking/cluster/terraform/provider-path-0_15.patch @@ -1,18 +1,19 @@ -diff -Naur terraform.old/internal/command/init.go terraform.new/internal/command/init.go ---- terraform.old/internal/command/init.go -+++ terraform.new/internal/command/init.go -@@ -7,6 +7,7 @@ - "context" +diff -Naur terraform.old/internal/command/init_run.go terraform.new/internal/command/init_run.go +--- terraform.old/internal/command/init_run.go ++++ terraform.new/internal/command/init_run.go +@@ -6,6 +6,7 @@ + import ( "errors" "fmt" + "os" - "log" - "reflect" - "sort" -@@ -79,6 +80,11 @@ + "strings" + + "github.com/hashicorp/hcl/v2" +@@ -76,6 +77,11 @@ + if c.forceInitCopy { c.migrateState = true } - + + val, ok := os.LookupEnv("NIX_TERRAFORM_PLUGIN_DIR") + if ok { + initArgs.PluginPath = append(initArgs.PluginPath, val) diff --git a/pkgs/applications/networking/instant-messengers/telegram/telegram-desktop/unwrapped.nix b/pkgs/applications/networking/instant-messengers/telegram/telegram-desktop/unwrapped.nix index 18e15acba8d2..3726855f1578 100644 --- a/pkgs/applications/networking/instant-messengers/telegram/telegram-desktop/unwrapped.nix +++ b/pkgs/applications/networking/instant-messengers/telegram/telegram-desktop/unwrapped.nix @@ -42,14 +42,14 @@ stdenv.mkDerivation (finalAttrs: { pname = "telegram-desktop-unwrapped"; - version = "6.3.0"; + version = "6.3.1"; src = fetchFromGitHub { owner = "telegramdesktop"; repo = "tdesktop"; rev = "v${finalAttrs.version}"; fetchSubmodules = true; - hash = "sha256-YExl9mn2aEL1WOqT2fuX/KxKAV28q0WKVG1AMvPANwA="; + hash = "sha256-kIiOHXFOjHCE3GaizNvpu8rUCuJKBN5Oi7p0NvHYy04="; }; nativeBuildInputs = [ diff --git a/pkgs/applications/networking/mailreaders/evolution/evolution/default.nix b/pkgs/applications/networking/mailreaders/evolution/evolution/default.nix index ad0b17c1d5df..d6d684302151 100644 --- a/pkgs/applications/networking/mailreaders/evolution/evolution/default.nix +++ b/pkgs/applications/networking/mailreaders/evolution/evolution/default.nix @@ -48,6 +48,11 @@ stdenv.mkDerivation rec { pname = "evolution"; version = "3.58.1"; + outputs = [ + "out" + "man" + ]; + src = fetchurl { url = "mirror://gnome/sources/evolution/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; hash = "sha256-A9jQzM0QKqGnPDHZ4vN0yz24Os3fwRJskYavY9psvsw="; diff --git a/pkgs/applications/networking/mailreaders/thunderbird-bin/release_esr_sources.nix b/pkgs/applications/networking/mailreaders/thunderbird-bin/release_esr_sources.nix index e93ffbfa246e..e51b5247f05d 100644 --- a/pkgs/applications/networking/mailreaders/thunderbird-bin/release_esr_sources.nix +++ b/pkgs/applications/networking/mailreaders/thunderbird-bin/release_esr_sources.nix @@ -1,1193 +1,1193 @@ { - version = "140.4.0esr"; + version = "140.5.0esr"; sources = [ { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-x86_64/af/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-x86_64/af/thunderbird-140.5.0esr.tar.xz"; locale = "af"; arch = "linux-x86_64"; - sha256 = "9e7479434b4c228b3305b9f199aa986f454b7dc3c016a8290779d897d2bf2ca4"; + sha256 = "9913892cb56c9ce1232275d0a30349f2b7ea1dfd85aad6631d5dbb77a410d787"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-x86_64/ar/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-x86_64/ar/thunderbird-140.5.0esr.tar.xz"; locale = "ar"; arch = "linux-x86_64"; - sha256 = "9b1bfa25f5e30974332e21541b4d481b53440a08b885f04e77a1e63c822553b0"; + sha256 = "682861ee6efae0d88d57449ecdcf34e0f3bea7774fea7dccbb6c0cd979c61e9e"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-x86_64/ast/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-x86_64/ast/thunderbird-140.5.0esr.tar.xz"; locale = "ast"; arch = "linux-x86_64"; - sha256 = "b73fca0ffbeef0cab7fe709f7ac36ff885e04cac141a03f574a37660f31061fd"; + sha256 = "9d24f617c06b1ee6f36c9e46453b537387dfc412260bba960a296ce34dfd17a6"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-x86_64/be/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-x86_64/be/thunderbird-140.5.0esr.tar.xz"; locale = "be"; arch = "linux-x86_64"; - sha256 = "5c8cf71aeed0930901b777e3af2be05f8539d4b5572272b96d064ca6c5cfbb43"; + sha256 = "1027d2e1fdc0904d5e9c17826037ef49652e64ea55f20896f563fc2d41211c2c"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-x86_64/bg/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-x86_64/bg/thunderbird-140.5.0esr.tar.xz"; locale = "bg"; arch = "linux-x86_64"; - sha256 = "0fdd856a077c9bd05f9d0db1b51e9cbcbb63cc18aeca91eace69f2bb2e6962f3"; + sha256 = "dbc90d671ee74e69e52515b8a1f90e91a6a68d22efd54227770d21b25ff51163"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-x86_64/br/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-x86_64/br/thunderbird-140.5.0esr.tar.xz"; locale = "br"; arch = "linux-x86_64"; - sha256 = "c99f08fb9ef698bee4776c49e596a9eb1087df0a898b4171a7e694c97ffff7b4"; + sha256 = "f90105c39fc8a5646304dd7a2e718509778b7fa12ae9fb2f4b3b4fa237ecaa2f"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-x86_64/ca/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-x86_64/ca/thunderbird-140.5.0esr.tar.xz"; locale = "ca"; arch = "linux-x86_64"; - sha256 = "d330bd3366c25b8e4fe25c1b09a666bed678df72a53c7932dc091f65e9f8a728"; + sha256 = "d326c15bac5160fd830cb743b201667f609dd14b0466c03a68b5187df331eb8a"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-x86_64/cak/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-x86_64/cak/thunderbird-140.5.0esr.tar.xz"; locale = "cak"; arch = "linux-x86_64"; - sha256 = "e57ec80db6d5c8237d888d51a3b064bb395c3409be2fbf553f51025782c199aa"; + sha256 = "aa34f7d3c6858e27d92eb542085f8f21d9f1f8437fcc5b3bf03583d198ffd568"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-x86_64/cs/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-x86_64/cs/thunderbird-140.5.0esr.tar.xz"; locale = "cs"; arch = "linux-x86_64"; - sha256 = "1d2067204a024a99cfe8b7684860caf6f74d64dbe63c6535026aebd8bd4c85a7"; + sha256 = "60ea99cee3a5c5fed2ee3ad3a38ed75cec227b093bcb2ef49c0e4322e440b265"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-x86_64/cy/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-x86_64/cy/thunderbird-140.5.0esr.tar.xz"; locale = "cy"; arch = "linux-x86_64"; - sha256 = "34831a0cffd3bb229edb880ac5790437cd0f6e7797936b90f7d744f8e37fd88e"; + sha256 = "63a6925c5abaf9278099b770d0e41231302066695869854f398f23e3d6d90807"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-x86_64/da/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-x86_64/da/thunderbird-140.5.0esr.tar.xz"; locale = "da"; arch = "linux-x86_64"; - sha256 = "73e4e88d6780b1c833895ac95b9cbba958dd94f9c2ecac47019bbf3ab7975fc7"; + sha256 = "c2debc8a4ac7754783a2008d25850a41ff246d8d4b251aa44c5eca47c31af1c3"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-x86_64/de/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-x86_64/de/thunderbird-140.5.0esr.tar.xz"; locale = "de"; arch = "linux-x86_64"; - sha256 = "f490462e072b9ed530c1d40c0ad897dca0edac3d470d9c113d936bb0c4d80ae7"; + sha256 = "a250a19380ec2f6f5eb35b3cea4eec589a30510ea67c1342de623ce473bbe455"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-x86_64/dsb/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-x86_64/dsb/thunderbird-140.5.0esr.tar.xz"; locale = "dsb"; arch = "linux-x86_64"; - sha256 = "ab3816f52bf003c0423359b558ef1d3716e151937cfcee860bab294bc2abf9f5"; + sha256 = "c732bfe5b6cc43173b012f6d1f8b78a8c041937f39bf539537807606a58a2a30"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-x86_64/el/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-x86_64/el/thunderbird-140.5.0esr.tar.xz"; locale = "el"; arch = "linux-x86_64"; - sha256 = "ef27570d7c9598df0b05c178cd976b48b68ab97973cca97ff5fba485b94b5023"; + sha256 = "bdb4d3cdbe69ee9b3323f4e0a4628c540e2d7ea1980f8131ee13df23e5e1e501"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-x86_64/en-CA/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-x86_64/en-CA/thunderbird-140.5.0esr.tar.xz"; locale = "en-CA"; arch = "linux-x86_64"; - sha256 = "7144e845b5322773b1bc83374b65a5949b977ab1514584902360e8bf48d3b9cf"; + sha256 = "6a790f6a0b0827f6ef8a5ee36a2de3ea718e5680a34f6c5c26f8391043a6d708"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-x86_64/en-GB/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-x86_64/en-GB/thunderbird-140.5.0esr.tar.xz"; locale = "en-GB"; arch = "linux-x86_64"; - sha256 = "82da909b7beff292511a5cf5dfa1d1abd48736c32b320853771c6bec8b45954e"; + sha256 = "246bfea8781eb76c5b192e08254734a828941a0413affea696c19c1fee98da74"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-x86_64/en-US/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-x86_64/en-US/thunderbird-140.5.0esr.tar.xz"; locale = "en-US"; arch = "linux-x86_64"; - sha256 = "86b461f0f53969e0da2e097ae7b353e90728c7064bddf1740d3548ca36f8d679"; + sha256 = "9adbc09b2c3bfb562ff03634a219b62589a5d19df9251af76a17a7e7a588894b"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-x86_64/es-AR/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-x86_64/es-AR/thunderbird-140.5.0esr.tar.xz"; locale = "es-AR"; arch = "linux-x86_64"; - sha256 = "f26300b57e09dc77dddb528c3567fd3e3e3862308b64548f0e8ef764ad8e00ad"; + sha256 = "a65adf5c9786090c574f221c4b5f1641c0a77f07151864a0857f26bb599ecb3c"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-x86_64/es-ES/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-x86_64/es-ES/thunderbird-140.5.0esr.tar.xz"; locale = "es-ES"; arch = "linux-x86_64"; - sha256 = "784091614b011ee33cc77e447724605982b1a51ad9742e9fa42b379c65feccdc"; + sha256 = "b9169039eec8e56abc3462f62416b1079488eadde1e924e04e43ac56fe63c704"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-x86_64/es-MX/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-x86_64/es-MX/thunderbird-140.5.0esr.tar.xz"; locale = "es-MX"; arch = "linux-x86_64"; - sha256 = "a6f84d6d512a4fa29966d6f4e834e63239bd2cb19915aebef3a04b09a0fc6ade"; + sha256 = "17a2c3bbdcade063e931386617583a348e5375bc000b18274902ec5caabb32a7"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-x86_64/et/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-x86_64/et/thunderbird-140.5.0esr.tar.xz"; locale = "et"; arch = "linux-x86_64"; - sha256 = "2022fb0653d798484ca7facdcbe51cdd0f1246a57ee4586e3a15e3347295a822"; + sha256 = "6464886b61bae5d623ea243f03e3b7a198de478e5da276c79acfabd695b7f9b7"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-x86_64/eu/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-x86_64/eu/thunderbird-140.5.0esr.tar.xz"; locale = "eu"; arch = "linux-x86_64"; - sha256 = "8246129b0f728f910c7213893251e4b9ae3a82a6044e586a9899ed642cb53c4e"; + sha256 = "22c552feee99586e6258da72e123e498969c72fc49681b7f318f33756fddc2c6"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-x86_64/fi/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-x86_64/fi/thunderbird-140.5.0esr.tar.xz"; locale = "fi"; arch = "linux-x86_64"; - sha256 = "76daa6d966fbc65e7e88fd85c9cd6d04e9a7391baa9c260f2d2f28dbac2af242"; + sha256 = "20d510fd45dd4a40896aea3f0e99f46129cb42c8f18a0ab89d60cbefa8f2fd2b"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-x86_64/fr/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-x86_64/fr/thunderbird-140.5.0esr.tar.xz"; locale = "fr"; arch = "linux-x86_64"; - sha256 = "77ce1cb334889472a9d2a8c1c5e448d0a3e3bf68767bc4e21b9e1b1f4e276427"; + sha256 = "e7e2e6b36ca5c57af0bf976cd9cdb8ec147c28b42774980e4f95bf1e7e0c462d"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-x86_64/fy-NL/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-x86_64/fy-NL/thunderbird-140.5.0esr.tar.xz"; locale = "fy-NL"; arch = "linux-x86_64"; - sha256 = "703c98a57f0bcc603c0cfdee4af06a9fcfd37f0770f93fd2036b78d98736fe98"; + sha256 = "12c3575bbdac8bb51b321a0714dadffb19985875b27805c4d03b031ca015cc75"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-x86_64/ga-IE/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-x86_64/ga-IE/thunderbird-140.5.0esr.tar.xz"; locale = "ga-IE"; arch = "linux-x86_64"; - sha256 = "d2b0141eaa64ed130f9098edc5671d02cf1abc16f6636a49b9a72ce334a7639c"; + sha256 = "86b4fee2c2d88570e468358fe1ed04e4202430752b34237492e6695a696c1614"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-x86_64/gd/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-x86_64/gd/thunderbird-140.5.0esr.tar.xz"; locale = "gd"; arch = "linux-x86_64"; - sha256 = "23bc5c1f4aa6125c80b7a09ca20dd2d572004b7627d9c7cf08eb4053a1d45dd0"; + sha256 = "399feace68dd6bb847abaed249caad1e7baaab7fe15399fc025525c84afb95db"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-x86_64/gl/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-x86_64/gl/thunderbird-140.5.0esr.tar.xz"; locale = "gl"; arch = "linux-x86_64"; - sha256 = "185ba84a675a4556209e3ac4d59c5bc29c9aca27f27a72df21ca772eb4f12d0b"; + sha256 = "24046d426d4d413c31b5e7206a63099e87dd4c8301ddfef6fe2124ec908c632c"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-x86_64/he/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-x86_64/he/thunderbird-140.5.0esr.tar.xz"; locale = "he"; arch = "linux-x86_64"; - sha256 = "565c4cbbca17a804021d8bebd27d4a5359456dabdaed546b7511c3436f72f6a7"; + sha256 = "f05632211490d858da088d7c450dd61389ffc7e689563b09129960ae83552f53"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-x86_64/hr/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-x86_64/hr/thunderbird-140.5.0esr.tar.xz"; locale = "hr"; arch = "linux-x86_64"; - sha256 = "de2c998771fe24a62d3b9ebc7d731e4953a2cbd9b6c2cfa5e704af1ebc14276f"; + sha256 = "5becd636bfc044705a080cfc755476b0485f905edc1bec0c3f3a510fef5c9078"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-x86_64/hsb/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-x86_64/hsb/thunderbird-140.5.0esr.tar.xz"; locale = "hsb"; arch = "linux-x86_64"; - sha256 = "012bdb4197d09e61b2c439cef50d3bf63b87efd4dc515d78b0740c51bd0e998b"; + sha256 = "511846b488aa4360e16ecaf4c8184fc12b1ae0f1553cf39a2d356a195581935f"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-x86_64/hu/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-x86_64/hu/thunderbird-140.5.0esr.tar.xz"; locale = "hu"; arch = "linux-x86_64"; - sha256 = "d7ac0038cc7ecf98450af9d84b029b80501e6c380d2d93f3c75f7fe66c04050a"; + sha256 = "00633e9500e4d672d40735a6df00036514e074f14df76ff9f9c7089aeaa02239"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-x86_64/hy-AM/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-x86_64/hy-AM/thunderbird-140.5.0esr.tar.xz"; locale = "hy-AM"; arch = "linux-x86_64"; - sha256 = "b987dfa97aabc384aeac5ee2c9863742bc50c284298a915713b15ded16b061ae"; + sha256 = "beb9c7b0533bd3af66a5285a4ff15b95606a23bde2fb188b6e6978abb7821021"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-x86_64/id/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-x86_64/id/thunderbird-140.5.0esr.tar.xz"; locale = "id"; arch = "linux-x86_64"; - sha256 = "99f372091e98e94c6694eb68e0524d7df574b3c46a642ee48cfa3a08dffb1f99"; + sha256 = "8005a55f0a0dd1213ef503d797ae9184b0e1a1c2d4aed2042c7ae4ae70645fba"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-x86_64/is/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-x86_64/is/thunderbird-140.5.0esr.tar.xz"; locale = "is"; arch = "linux-x86_64"; - sha256 = "b4d093d0c594dfffde08d61ad00903d1823d0f017e438c214d1dec6d371aa55c"; + sha256 = "4dea4f62308065ac95d9d29e261136b86d7414ff768f612b1c057c4437d8de5f"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-x86_64/it/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-x86_64/it/thunderbird-140.5.0esr.tar.xz"; locale = "it"; arch = "linux-x86_64"; - sha256 = "34777daa70b34d0f1bccb960c5f533013ab6a21f573035b7de272ad037b6896d"; + sha256 = "765889eafd392691bcaea8a707064cb6bea948301427377291132826ca9dac13"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-x86_64/ja/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-x86_64/ja/thunderbird-140.5.0esr.tar.xz"; locale = "ja"; arch = "linux-x86_64"; - sha256 = "80c9e021d4becaef8445b4c07d3d4ab5a24801399be682424b6c9008b53e8b1d"; + sha256 = "244c309a3477ef76d471ceb64552347366307aa83240fa0d531532668bf74409"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-x86_64/ka/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-x86_64/ka/thunderbird-140.5.0esr.tar.xz"; locale = "ka"; arch = "linux-x86_64"; - sha256 = "6860257e57a462300a7c12a6e38da9486cb7aaf2d98fd8f1ed784297d0b8ae75"; + sha256 = "9de1b95715e5b18ac2d45d7866c15440ade1df5c415e77d30724474553ae5c7f"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-x86_64/kab/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-x86_64/kab/thunderbird-140.5.0esr.tar.xz"; locale = "kab"; arch = "linux-x86_64"; - sha256 = "f5c7736d8d5241a639cfb0d07745851e41abb06b63ced06f43a89625e1070da7"; + sha256 = "ee901dc0e38d0c513bed53ac534df13f1664e316ea5179a7a6e3ac6518ead1bb"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-x86_64/kk/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-x86_64/kk/thunderbird-140.5.0esr.tar.xz"; locale = "kk"; arch = "linux-x86_64"; - sha256 = "e706c43bab79837b9fcc86db23280be1deab36c64bfa63ea8bdd39165967799b"; + sha256 = "fe9c47879f1cad64ccfa43987c7723046a1802f24ee633816c7564b3f33fe97d"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-x86_64/ko/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-x86_64/ko/thunderbird-140.5.0esr.tar.xz"; locale = "ko"; arch = "linux-x86_64"; - sha256 = "951515b4b0ea6c1d08762bfbfca898e0a03a679dad307ffbe7fa38de1339dd2e"; + sha256 = "b4cd2950cd127366a4e7ae844cf6ef773cd65901c4f6c5fda98889db08c00ca6"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-x86_64/lt/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-x86_64/lt/thunderbird-140.5.0esr.tar.xz"; locale = "lt"; arch = "linux-x86_64"; - sha256 = "6f3d25bac59daaf3d32f4a067eedc0a8ea62f425eba8647eca68bb88b6e4b75a"; + sha256 = "7ae9dcedac28995379d30a1e633df4036ee8da3c1d49b62132cbc22e84a0fb47"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-x86_64/lv/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-x86_64/lv/thunderbird-140.5.0esr.tar.xz"; locale = "lv"; arch = "linux-x86_64"; - sha256 = "83cec3a24afbec3f8f800b4f1598ca541541129a553275c9315473b2461c2679"; + sha256 = "0eb95d76b96320523c007fa022b390052ec3683dfe9c1df893f689425f7a5377"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-x86_64/ms/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-x86_64/ms/thunderbird-140.5.0esr.tar.xz"; locale = "ms"; arch = "linux-x86_64"; - sha256 = "6ea0e003d0303f627d8adfc698ef654e03e678d982bd90b643b6c242c00872c1"; + sha256 = "544e99cdc37156f4f3c9b72e89644b957d6aefc8fed738c11caa57664ada126c"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-x86_64/nb-NO/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-x86_64/nb-NO/thunderbird-140.5.0esr.tar.xz"; locale = "nb-NO"; arch = "linux-x86_64"; - sha256 = "9b2079b576b66ceea88b3d973fa2e6bf7568c208eaab6e2f6a8a1d6f842300ff"; + sha256 = "b79316a4a71721933228e5597cdf48659aefc3db5e02c960237fb749258d76f6"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-x86_64/nl/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-x86_64/nl/thunderbird-140.5.0esr.tar.xz"; locale = "nl"; arch = "linux-x86_64"; - sha256 = "9d81daccda08998bc4a50f66b9b5be13a9c2e9a68f424d15e51284095df74726"; + sha256 = "90c00a0017259582ea7890186d77180194b18a8ffd2a626a8f81e0f7832600d7"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-x86_64/nn-NO/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-x86_64/nn-NO/thunderbird-140.5.0esr.tar.xz"; locale = "nn-NO"; arch = "linux-x86_64"; - sha256 = "24c5a0c63e00014d880d4a6127f27da8205f5b78f1788bee61babef7c0e2028e"; + sha256 = "d5726b89762a7200df6fd739b082b993aa4904a1a1eb2b73975db8ef62a3dfde"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-x86_64/pa-IN/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-x86_64/pa-IN/thunderbird-140.5.0esr.tar.xz"; locale = "pa-IN"; arch = "linux-x86_64"; - sha256 = "65117032aaf4733dde8b9aa4666d59b67c2edd67a9966d37020d0f710fbd62e6"; + sha256 = "6fffd10f846f723bf457edd42476a4721069b38ec27dd2a89cf3501b9dac824f"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-x86_64/pl/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-x86_64/pl/thunderbird-140.5.0esr.tar.xz"; locale = "pl"; arch = "linux-x86_64"; - sha256 = "3937967a1e9af3626b201f55c755a9191ecef2db4ab787dca680e972cda4da8c"; + sha256 = "16a205203bed40cae7d58a9a02269912a3841c0a12577104c46c88142bc16453"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-x86_64/pt-BR/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-x86_64/pt-BR/thunderbird-140.5.0esr.tar.xz"; locale = "pt-BR"; arch = "linux-x86_64"; - sha256 = "5fa0ca3c8791b422990e6313504d7f2ca770df87509a3ede2eac24f3b33cceda"; + sha256 = "c44ff4ae5ead454924eaaecd9c3eef7d3ba0b60961a1a95b54d02d7b1880ca45"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-x86_64/pt-PT/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-x86_64/pt-PT/thunderbird-140.5.0esr.tar.xz"; locale = "pt-PT"; arch = "linux-x86_64"; - sha256 = "b2e8c123afad95ce3c6b874329ac8331273dc94d68636b77c975f17af9585527"; + sha256 = "55f0fe20dfbcacdc1ba35e592eea2e67cd6dd5879d468277f9e20f7b66073bcf"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-x86_64/rm/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-x86_64/rm/thunderbird-140.5.0esr.tar.xz"; locale = "rm"; arch = "linux-x86_64"; - sha256 = "3188d7d85179f4a967ddd8d5ea07bbfe0332ed29a55dea8e7d06326b91333e09"; + sha256 = "3a4eba6b7d1600ef4a995639f910c3e49fa0996e94405e362f9d4366408bac6a"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-x86_64/ro/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-x86_64/ro/thunderbird-140.5.0esr.tar.xz"; locale = "ro"; arch = "linux-x86_64"; - sha256 = "72945101d3ec5c4e5c5f15a3cb15ea701299bf435f42ca524262e8c8df1032f3"; + sha256 = "5a0c711b1d0462de983b904ad62de0a208f072174e7c73c0493fdbacdb5af61b"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-x86_64/ru/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-x86_64/ru/thunderbird-140.5.0esr.tar.xz"; locale = "ru"; arch = "linux-x86_64"; - sha256 = "2bffef84ce47c2c11c90b02bbb2513ad7b350dcc4de46f44feef953341311104"; + sha256 = "17ad06a389859173e90bcf70c616d0ffd51d1c1dbb7967cbf7a1e06203957001"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-x86_64/sk/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-x86_64/sk/thunderbird-140.5.0esr.tar.xz"; locale = "sk"; arch = "linux-x86_64"; - sha256 = "6effb978b4531ce8f895921442ec297643a9764ced9499f0ff145e67af0778e9"; + sha256 = "c957519f576ff2265f2cad6f6327bf57aec2efbd4f7531b3983d2d593f158022"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-x86_64/sl/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-x86_64/sl/thunderbird-140.5.0esr.tar.xz"; locale = "sl"; arch = "linux-x86_64"; - sha256 = "ed6b0be98a5c2ae8da73d461ff1bc1c99870720a6ab700208a5923fec10d0c6c"; + sha256 = "8336dfda1d4a8e566d0f3b1f1e373211fa6d5446da272d56217c45c34f37ad4c"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-x86_64/sq/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-x86_64/sq/thunderbird-140.5.0esr.tar.xz"; locale = "sq"; arch = "linux-x86_64"; - sha256 = "49d04626241932d1b34528bde9e906a080c1472cd9f4d577e3fd603cb2539377"; + sha256 = "5ea8dadb474be3c60ef09d233255279c7d81b00ee29132f892d94ba45e11bbba"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-x86_64/sr/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-x86_64/sr/thunderbird-140.5.0esr.tar.xz"; locale = "sr"; arch = "linux-x86_64"; - sha256 = "d73974341c4a43f858671860b77e1db26068755f664e51f8338b21a229ffa4a3"; + sha256 = "7411146d6cdd34abbc95f2cb5db5265c7488561c3c1034f6c97c97f598872524"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-x86_64/sv-SE/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-x86_64/sv-SE/thunderbird-140.5.0esr.tar.xz"; locale = "sv-SE"; arch = "linux-x86_64"; - sha256 = "6c56554d7d649a45f126e841637f7c3582e01b764856c17735b8f64c8643012c"; + sha256 = "a04ad7b6b70f9c36ae8b022c6fe66e10faa9aee3c0325ee0a31fff0a1aa086d2"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-x86_64/th/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-x86_64/th/thunderbird-140.5.0esr.tar.xz"; locale = "th"; arch = "linux-x86_64"; - sha256 = "81c03a0e3e17bec6141515532782e5cb5cd7e109bb6c612b28bb68e4b659ed45"; + sha256 = "4898ea3228950da658bde42c3d93ee20ecb48c1922e3d4e46cf756d08dd9c110"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-x86_64/tr/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-x86_64/tr/thunderbird-140.5.0esr.tar.xz"; locale = "tr"; arch = "linux-x86_64"; - sha256 = "28dc594425f84da8494b612dca6cae0dbee934b41a741a1f95e0163cf0e9c9a7"; + sha256 = "f0a25432ac88e5e1bf8beda7b7542f5fa3b1e863b966db9d6c056609bda24ca7"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-x86_64/uk/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-x86_64/uk/thunderbird-140.5.0esr.tar.xz"; locale = "uk"; arch = "linux-x86_64"; - sha256 = "a892ff9e2adad8118f3cb88ec4775d36d30b96472069e9db43f29a094d590c40"; + sha256 = "a1527f8515dba38e68ac21c6844403e82d04689b3311aa8b1d6689da9f2e831b"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-x86_64/uz/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-x86_64/uz/thunderbird-140.5.0esr.tar.xz"; locale = "uz"; arch = "linux-x86_64"; - sha256 = "5427a8bdaedcd7c25a84c1ec516185930ceb2c20cb5be812a302d9681702f2f9"; + sha256 = "339f9945c42c23d5818f7c52f3d383eef712da64c04312c02c19d49b00691c59"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-x86_64/vi/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-x86_64/vi/thunderbird-140.5.0esr.tar.xz"; locale = "vi"; arch = "linux-x86_64"; - sha256 = "64bca02a6d78136c71048701eaf62f7211f2765c0f5de2a810f8662097388ec6"; + sha256 = "cd626f876ca7df2f7585dcf355b664019225f9aa45cb7465146c638c26c8f1f4"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-x86_64/zh-CN/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-x86_64/zh-CN/thunderbird-140.5.0esr.tar.xz"; locale = "zh-CN"; arch = "linux-x86_64"; - sha256 = "bca2b193a249b7915457fd0a39020ba7edf559ec5d48339b890824c072b6c275"; + sha256 = "bcb489663012c70739e00a1ff6aac7b64d6a28620415eb89d42397370aa4f5f3"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-x86_64/zh-TW/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-x86_64/zh-TW/thunderbird-140.5.0esr.tar.xz"; locale = "zh-TW"; arch = "linux-x86_64"; - sha256 = "135a64f9dca152b1553990824d04acf1240f60f8b2039fdd1095ae3402c7143e"; + sha256 = "43b290cb37002467bc4d7030f48e9cb19bf5be248451b4705ea980aed51bd8cc"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-i686/af/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-i686/af/thunderbird-140.5.0esr.tar.xz"; locale = "af"; arch = "linux-i686"; - sha256 = "653a06ca6cee5dec110a4a091230655f5d94b04d78841c27b6c4049da824da9a"; + sha256 = "5629f70d7b673d599de3b094bb917731cea910fe17b697b665633be360a925db"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-i686/ar/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-i686/ar/thunderbird-140.5.0esr.tar.xz"; locale = "ar"; arch = "linux-i686"; - sha256 = "62a7e19b6574354979510de8f953da0a0dbf25f17a4a89ff3192afe04e0e8123"; + sha256 = "029cc21a06867a316af091a4a378c4751d39eefe959df2db28322b317d55b823"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-i686/ast/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-i686/ast/thunderbird-140.5.0esr.tar.xz"; locale = "ast"; arch = "linux-i686"; - sha256 = "35ecadc31d5edb35749265ab6169be8f6733d17d9b6d03cde182c046a12bad53"; + sha256 = "751b7312ce82619e1efc2e0440056f059815b7281ff9778a1330b583fdc3b69b"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-i686/be/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-i686/be/thunderbird-140.5.0esr.tar.xz"; locale = "be"; arch = "linux-i686"; - sha256 = "c6abcf864f94c02af2417aeee4858edaf886baa1911a90aed80aa63f9d2c8059"; + sha256 = "6ecd3b140e346d8b341bf4a4b8466534ea90bbd5f493d61b63cf272457dc5367"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-i686/bg/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-i686/bg/thunderbird-140.5.0esr.tar.xz"; locale = "bg"; arch = "linux-i686"; - sha256 = "7d827acbc34d41dd0385c5b1a2d8ffeb744f67dadbf8f66dc5b00bb2c2b4d151"; + sha256 = "cba649a4f7e8ab7a3558e4a3e35c8e649fa8be2c3b278dccf00c195cacdfb82f"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-i686/br/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-i686/br/thunderbird-140.5.0esr.tar.xz"; locale = "br"; arch = "linux-i686"; - sha256 = "02d56833bb8d8d8f008c0bafcd712c78239781254c1233a08f99a12b8c65c3f0"; + sha256 = "a36d7107949fcd894f067e84368919794eb3f81c71ea4d2b7bd2833e42cc4eb2"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-i686/ca/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-i686/ca/thunderbird-140.5.0esr.tar.xz"; locale = "ca"; arch = "linux-i686"; - sha256 = "b55449b13271a1ca31fe33dd185eb96edcef8ac633b0abd9d1b9d5b7e060765f"; + sha256 = "36d4ef36d9b92d00529a9dbe6683af2f7de72b3e422d95f408135af89373b6f9"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-i686/cak/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-i686/cak/thunderbird-140.5.0esr.tar.xz"; locale = "cak"; arch = "linux-i686"; - sha256 = "374afe03f3bdf66a4d97aff966186f481353e166176df7336a656a4f27b0f76c"; + sha256 = "df8f0aea6341ba8732bb9ebc8c677896e6f75f35478877cff04285486c4af03a"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-i686/cs/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-i686/cs/thunderbird-140.5.0esr.tar.xz"; locale = "cs"; arch = "linux-i686"; - sha256 = "b044018ee411e306f050b1f04decc11497b8002b302684452c2dce295f5ae004"; + sha256 = "6d7ee3de6d61065644b633d47e282b28e01191f3a88874ce2c4ea0618edde16a"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-i686/cy/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-i686/cy/thunderbird-140.5.0esr.tar.xz"; locale = "cy"; arch = "linux-i686"; - sha256 = "142a974d535c452f37c05b3f7a114341985c570372d336c37562c61cfc28d3c4"; + sha256 = "95df2628bba2628ea82f5edba93605f6e063f69d9b95cb25eca2887065db3291"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-i686/da/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-i686/da/thunderbird-140.5.0esr.tar.xz"; locale = "da"; arch = "linux-i686"; - sha256 = "8561acea814f0e538dcaef45b41b97d00db11bc9bd4770c029c9ea0b57e87cca"; + sha256 = "2487452830c860ab20c4e9cab54d0add0ba75e85f4b0e3a2a28cd897a51bfd98"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-i686/de/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-i686/de/thunderbird-140.5.0esr.tar.xz"; locale = "de"; arch = "linux-i686"; - sha256 = "c756bfe660c3a55b48f5dfc5718a54e2715052319c0ea080bf46d66f724429d7"; + sha256 = "57e8939a25d616ac8104995a31119b94928d258a69140d14424833606aef24e5"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-i686/dsb/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-i686/dsb/thunderbird-140.5.0esr.tar.xz"; locale = "dsb"; arch = "linux-i686"; - sha256 = "b45b5d8ccab07292e81e402c957f0a33b81dfe4b3c79f5d9fa338dd8e4aa8447"; + sha256 = "19153c7ef5f975123520786c432302db8eaec3b1c8d2799a1b55136d395f77f9"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-i686/el/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-i686/el/thunderbird-140.5.0esr.tar.xz"; locale = "el"; arch = "linux-i686"; - sha256 = "085798ab3239a5bf6cfc2c3305f2aabb5f9257635b18ac00daf702dfa053c4da"; + sha256 = "6e56f98b23127d3d47c80d056e2864e0e20ae00b2ea14281d046693620bbe7e7"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-i686/en-CA/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-i686/en-CA/thunderbird-140.5.0esr.tar.xz"; locale = "en-CA"; arch = "linux-i686"; - sha256 = "8b85baac387d996b715a17640ebba501ac604f153821d8d545360b6fcaaf25aa"; + sha256 = "133ce81f927401ca55b16ee9d1bcc130530e2b21e8176cf4c5e7afcab0823eaf"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-i686/en-GB/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-i686/en-GB/thunderbird-140.5.0esr.tar.xz"; locale = "en-GB"; arch = "linux-i686"; - sha256 = "0d38e70b450c8b22f9105351992f3a6c445f814d7a3ecd75a66284d128ed9896"; + sha256 = "a2ecb081068cbffb8493b777d86608c78c2208167fec5c5f74636957c61ede6f"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-i686/en-US/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-i686/en-US/thunderbird-140.5.0esr.tar.xz"; locale = "en-US"; arch = "linux-i686"; - sha256 = "3ba3abc8e65bc421a35708aeb5daa8a8d8d8940c51808eeaf64abf120b62f7aa"; + sha256 = "73ef4b23bec490f999d9fd90be63e951806057c3a99a8c27e6f774adc377e7e0"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-i686/es-AR/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-i686/es-AR/thunderbird-140.5.0esr.tar.xz"; locale = "es-AR"; arch = "linux-i686"; - sha256 = "eb4e6fb7219056961a9d6d8c3ab085fccf6c54c13ff401c9c72dd2f1155aedb5"; + sha256 = "655945a543f427374cb5002cd63439aa6e763749f0ee764af33ba345f4ca2204"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-i686/es-ES/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-i686/es-ES/thunderbird-140.5.0esr.tar.xz"; locale = "es-ES"; arch = "linux-i686"; - sha256 = "31b1e812bc548265acde111fb0130b7000e03d9569f0270d417979684ddc5f99"; + sha256 = "0b79900ae1e08803595b694d9ea4058444b9bf3cc672650dd37ec18034267c9d"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-i686/es-MX/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-i686/es-MX/thunderbird-140.5.0esr.tar.xz"; locale = "es-MX"; arch = "linux-i686"; - sha256 = "a80db313e50fed30f82e372390e74a742fc2a1697ba85f7a268bf482459c340a"; + sha256 = "12e03d9a24011fcbea506decc88090f1cbf7e3efec37f43a4c1a84802b696626"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-i686/et/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-i686/et/thunderbird-140.5.0esr.tar.xz"; locale = "et"; arch = "linux-i686"; - sha256 = "043b7ff50a97880cf5206462456188028ab752b745b3a320ad8b06d8576a7a32"; + sha256 = "5ca57d44a4afcb370b02338a91dfab6465b5791ba63c17939876de31a28ac440"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-i686/eu/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-i686/eu/thunderbird-140.5.0esr.tar.xz"; locale = "eu"; arch = "linux-i686"; - sha256 = "62d37c6a5f0f3d059156b8a0c74a4714a1c03ed333ecb49896662ceca30095d9"; + sha256 = "7d7dd41ea68beaa165d5624756b305f28a9b45ea6d7beb87af123f4508675da8"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-i686/fi/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-i686/fi/thunderbird-140.5.0esr.tar.xz"; locale = "fi"; arch = "linux-i686"; - sha256 = "29ed3c3e8f268dcbac74f2d2b5bb678ca820ce23719c50da783774d172deb484"; + sha256 = "f3fdd0130ec6aa6bb43b758b14ec98b32fbf3d8bd64214d730253348a9bc71c1"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-i686/fr/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-i686/fr/thunderbird-140.5.0esr.tar.xz"; locale = "fr"; arch = "linux-i686"; - sha256 = "befe452b31cb658e8aba6c0daa57c7dfcd1eaf8ce55763527351e3954ad6863b"; + sha256 = "ec92e05664084681b873aa5d264568f5ff8869ce964f21743114af187ef65c9f"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-i686/fy-NL/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-i686/fy-NL/thunderbird-140.5.0esr.tar.xz"; locale = "fy-NL"; arch = "linux-i686"; - sha256 = "9acd83439e772bf06dd4db587e55c5489a172206a68683466d33f528004bebf1"; + sha256 = "9d1cb948e5992fce05da8478e9dc492e5b7a474a1387dedaa2a9bbd0e52c2f6e"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-i686/ga-IE/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-i686/ga-IE/thunderbird-140.5.0esr.tar.xz"; locale = "ga-IE"; arch = "linux-i686"; - sha256 = "7d7535c2ab59093c16277c0fc890288d08475b9004f738422eccb059a24acc32"; + sha256 = "fbac1dc2359aabcbc70b2850818bdf349e3f1b872b69494ad20ff2cdef02660d"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-i686/gd/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-i686/gd/thunderbird-140.5.0esr.tar.xz"; locale = "gd"; arch = "linux-i686"; - sha256 = "3a8880b124ee76086376e0467244397e4fe89c6761da929a11b54067d9f117cc"; + sha256 = "93c43c2512404f44360423c0ec9f58a7343d56e8b68248b04e0f7f7992a9a709"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-i686/gl/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-i686/gl/thunderbird-140.5.0esr.tar.xz"; locale = "gl"; arch = "linux-i686"; - sha256 = "d26d3a80c189f4c96b25ce921b5b818b71976d4d9aa15aff65a860ad7f6969f5"; + sha256 = "3f57debdaa274a2c70267b8f5e02cdac21fbbea529ff1814b4021b48da473e81"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-i686/he/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-i686/he/thunderbird-140.5.0esr.tar.xz"; locale = "he"; arch = "linux-i686"; - sha256 = "91a8eb69c96c29c8e285444bacfa433e53203745de0d0515fa37a42d76d52e6f"; + sha256 = "f8cdacb56cceed1d11ef25aa4efde5364ce836904b4aa435c615dd17c2636fe2"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-i686/hr/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-i686/hr/thunderbird-140.5.0esr.tar.xz"; locale = "hr"; arch = "linux-i686"; - sha256 = "017e8f5acdc15ca9c54b3563797584a45bf35597b40f081764576e1c163cc3c1"; + sha256 = "5612682bdf766ea0c080ca6dfd97dbb1d2784a5c2b09b5bda140811bb4ecbc80"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-i686/hsb/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-i686/hsb/thunderbird-140.5.0esr.tar.xz"; locale = "hsb"; arch = "linux-i686"; - sha256 = "77ef3bf47873f02ba8dc4f71da5b2dc6688aa8fbeafaeb14e5e1cd2c24ce9cb3"; + sha256 = "6594f3519f2ca6577b50793b14e538f23849e9b6d32c1701a24a6107a3c98095"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-i686/hu/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-i686/hu/thunderbird-140.5.0esr.tar.xz"; locale = "hu"; arch = "linux-i686"; - sha256 = "5a3e5da48dbd8e70487466eafc47af1dacfe1d87927c78d95c9c3cb472c9793e"; + sha256 = "79acd8a4eda33448a375669b3f9707e5a58cab31cb583e237bbf1e3f6354b330"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-i686/hy-AM/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-i686/hy-AM/thunderbird-140.5.0esr.tar.xz"; locale = "hy-AM"; arch = "linux-i686"; - sha256 = "0fdd8e334e60b37cfd16b6809bf0c44c593092f2ba4b4bbdb02a6f9b1d00b513"; + sha256 = "0670e5d0b0e9bf1104277502606e3ead55d03763c4c20c0bae286d0bfd7cc32c"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-i686/id/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-i686/id/thunderbird-140.5.0esr.tar.xz"; locale = "id"; arch = "linux-i686"; - sha256 = "b96547d1a2f5ccf89a993c716304da0956d0b4661bd09fb2e3cc829fb22d9642"; + sha256 = "df1a7b7e12129df479622514c292d59a9c8e170f5d07cc543be05d7469b6c5ea"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-i686/is/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-i686/is/thunderbird-140.5.0esr.tar.xz"; locale = "is"; arch = "linux-i686"; - sha256 = "2cb684532b4e2d90a521a6313878b0c0a492c3570ff60ebf7a865c11f54bca57"; + sha256 = "7a8bb093c162f7c1a85745bf5f2b593c57943ddb9eb877f99e48a11970cffdaf"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-i686/it/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-i686/it/thunderbird-140.5.0esr.tar.xz"; locale = "it"; arch = "linux-i686"; - sha256 = "2956dc8fa8608e7aa39bb7af0c818a30d87ed3ca7d17827511c0802173f71d2a"; + sha256 = "1517f516522d1718e5712abe193956d6951426131fb5569f2df66617d0401bcb"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-i686/ja/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-i686/ja/thunderbird-140.5.0esr.tar.xz"; locale = "ja"; arch = "linux-i686"; - sha256 = "577c6c2050e266937ecf63844ae2c82809593ceb0a78673a4590a18703258a92"; + sha256 = "b5653718e310110380e760481a84244eec3ac235f1f901787609e7b30f669d11"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-i686/ka/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-i686/ka/thunderbird-140.5.0esr.tar.xz"; locale = "ka"; arch = "linux-i686"; - sha256 = "87087c07a1fa4f1dbc0b7cd13f1a601e001f159091d00532acaea0a1a561a88b"; + sha256 = "e8a4eb4930b77806aec9c6b6e95cf44ea448621e4377a34a436d11e4126aa41b"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-i686/kab/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-i686/kab/thunderbird-140.5.0esr.tar.xz"; locale = "kab"; arch = "linux-i686"; - sha256 = "1f92f15bbddc682785023f47c1ae9d53c7a67eb28ec2ad976d44e94a127455c3"; + sha256 = "546a90a054f95a19cdaf3d892462c5c148d94f67cf4d711181c940586579073b"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-i686/kk/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-i686/kk/thunderbird-140.5.0esr.tar.xz"; locale = "kk"; arch = "linux-i686"; - sha256 = "d53cb8293321e123e89da7515d255673d141f93c476890eec91fd677fa221994"; + sha256 = "87e338dd3ff95d9d9e4102c3e7ec45ddb54b5cfb2c0f84fe14eb3a1ab603f10f"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-i686/ko/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-i686/ko/thunderbird-140.5.0esr.tar.xz"; locale = "ko"; arch = "linux-i686"; - sha256 = "830b77adc70c000ab9646d737323134b94da7537643ee552a9dd802628b0b0cb"; + sha256 = "af20ae1fdd16460ff5213133d2d25d5da377ca01e5d390339c699503befbd3e8"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-i686/lt/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-i686/lt/thunderbird-140.5.0esr.tar.xz"; locale = "lt"; arch = "linux-i686"; - sha256 = "64a00d688166d6ee20be52c863bc401da8170de84dc72e9860eab430b36eca99"; + sha256 = "4e74dcff91bc03471b4eab252d8b03632f25cf1286267017dbc0fb9c504e4958"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-i686/lv/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-i686/lv/thunderbird-140.5.0esr.tar.xz"; locale = "lv"; arch = "linux-i686"; - sha256 = "77e843c6d3c54d770f110e8b00e930b035992403ee7577fc497419bb32ca1832"; + sha256 = "b55220e2d415b00a8ceb76cb8d3d99e84f24bc72af1ac274d9b1bf8ff19b353d"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-i686/ms/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-i686/ms/thunderbird-140.5.0esr.tar.xz"; locale = "ms"; arch = "linux-i686"; - sha256 = "96fc422bd79875357fe766fc7813505c358310d9a7c6c67a14e9a0468d7e56a8"; + sha256 = "c89909ed96ed8c34ed98c417b2b8148ae6daa6ad70117393ea391d8f1cd8c1ba"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-i686/nb-NO/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-i686/nb-NO/thunderbird-140.5.0esr.tar.xz"; locale = "nb-NO"; arch = "linux-i686"; - sha256 = "4c6d1624e3e0fd78b59ef4fad8ffa05347e071123ae285ca91c5cc1df7fb2f0a"; + sha256 = "82a308a7438e23fb8293dbebed0fa162b560f68da2d92eb6dfd5cad0e889e6fe"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-i686/nl/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-i686/nl/thunderbird-140.5.0esr.tar.xz"; locale = "nl"; arch = "linux-i686"; - sha256 = "3f8b5bbc97b22763509c9df58a350b79acbf06ab7b7547256d3e59b4a4207f98"; + sha256 = "49e72334179be9e91584a6e487efb25465bc691ff268051c848194ecd8dc1e46"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-i686/nn-NO/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-i686/nn-NO/thunderbird-140.5.0esr.tar.xz"; locale = "nn-NO"; arch = "linux-i686"; - sha256 = "71398757f66e9a302928a885e51e5992ef644717f0b187e78fd7d26186a8ee20"; + sha256 = "161c5a7b2abc53751ec036d05c3ac935ae130de5eefa1d7b8ae4d1a9d7f64c95"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-i686/pa-IN/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-i686/pa-IN/thunderbird-140.5.0esr.tar.xz"; locale = "pa-IN"; arch = "linux-i686"; - sha256 = "16d133a601befc0487e0b801ee2228859b332b97fd63ba53f3b309d94b9bf394"; + sha256 = "9a1ecbc8c386f01b37acf9ca2c344cb507d79e77c4b9dee8b043ccd0cabb2a9e"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-i686/pl/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-i686/pl/thunderbird-140.5.0esr.tar.xz"; locale = "pl"; arch = "linux-i686"; - sha256 = "b3de96dcfa150a834347d247a6aedcf8ebd4207ad1026db65471a0b27343c32f"; + sha256 = "85d05fd21d57f6de651690baa6a4b443749e348c2f3f403904c22ed0a6e94d2e"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-i686/pt-BR/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-i686/pt-BR/thunderbird-140.5.0esr.tar.xz"; locale = "pt-BR"; arch = "linux-i686"; - sha256 = "a3261296ac9c53cbf2a512dfb0a1c3f76a47dbfa1318ccfeec72c441fec11b78"; + sha256 = "7477ab5d7ba8726afa93b80fbf2630eee7f5a6a817bfc0951b34c718642e944c"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-i686/pt-PT/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-i686/pt-PT/thunderbird-140.5.0esr.tar.xz"; locale = "pt-PT"; arch = "linux-i686"; - sha256 = "3f04c4c9089a2879110a25494c367f8536938ac46dfb0da7773e9fba969b6484"; + sha256 = "d657932e7abd2f11bf2207c45ef6be693428563e535641b8d95697fa91f41566"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-i686/rm/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-i686/rm/thunderbird-140.5.0esr.tar.xz"; locale = "rm"; arch = "linux-i686"; - sha256 = "960901f039310fc784e40a18aa9df2c9a4c1aaa1dd1e2644fa73aaf38245f262"; + sha256 = "fc123de61eef35694bd4e096b94a80482331f24ed6a83a27bd88f951f610634e"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-i686/ro/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-i686/ro/thunderbird-140.5.0esr.tar.xz"; locale = "ro"; arch = "linux-i686"; - sha256 = "950bad41fa8870f96d96a6ca02978284485177247e0d001ed892b65d15043567"; + sha256 = "6d008d03ad0d3e18e4be8ac4bd2696169eac5d5958e0de5c578ef8aca605af0a"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-i686/ru/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-i686/ru/thunderbird-140.5.0esr.tar.xz"; locale = "ru"; arch = "linux-i686"; - sha256 = "5e91ee670f3b7f7c6583df05f32178340ce1661b7cd55133b55567c94507dd36"; + sha256 = "c9d923d00ae901547869f20761d194b8691656d6115cb0251755f04dba64118f"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-i686/sk/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-i686/sk/thunderbird-140.5.0esr.tar.xz"; locale = "sk"; arch = "linux-i686"; - sha256 = "8a542d2341ea2a6021f0e06e348a0863fd8b4740804c20993158fde498052db1"; + sha256 = "678d2ce321b4b520988e704eeb640ce40bfd477964e2ae56183f85990a4ecd68"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-i686/sl/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-i686/sl/thunderbird-140.5.0esr.tar.xz"; locale = "sl"; arch = "linux-i686"; - sha256 = "9bc0da52da2a2eca87ffbe7c88abded935d40050693b9f2197d9d804e4edca3b"; + sha256 = "074db2e4a4d8f269fdaaa0a9d6ecc50c85d5fde8a7597bbb6c614858a38990b6"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-i686/sq/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-i686/sq/thunderbird-140.5.0esr.tar.xz"; locale = "sq"; arch = "linux-i686"; - sha256 = "70bb5a66dff94c7c3a3466d6c56d099c0afdec01cc417799d2e84554dad16d25"; + sha256 = "c97027c313190cf3813c24df242beb824e8510068db7e07b9e7fbeff1851efe6"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-i686/sr/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-i686/sr/thunderbird-140.5.0esr.tar.xz"; locale = "sr"; arch = "linux-i686"; - sha256 = "f454f8a278f4b74d2488b0633d87a97c85afec2f92d4a5746f4b883609f2c921"; + sha256 = "911827a531352272da373711b290ddafd563646a3e8eec097ef18a744a51b623"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-i686/sv-SE/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-i686/sv-SE/thunderbird-140.5.0esr.tar.xz"; locale = "sv-SE"; arch = "linux-i686"; - sha256 = "2d82dce3eb19d242321cc1f0d693f26007f87e5150ca1326d3a470e317a1df02"; + sha256 = "6e82c73535555a93e706017aba53dd30c080b5ea424f1970ad6de8da2424b520"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-i686/th/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-i686/th/thunderbird-140.5.0esr.tar.xz"; locale = "th"; arch = "linux-i686"; - sha256 = "7993bd083a6ad9dd278197feecec87a8b912287b8e75d4ec4db1732b99f19a7d"; + sha256 = "0b0a6b16b6617875735d25e157924e6970d2d9dbcf039c398a636db807225040"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-i686/tr/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-i686/tr/thunderbird-140.5.0esr.tar.xz"; locale = "tr"; arch = "linux-i686"; - sha256 = "ba88ee6a56e2fec8ac64349ddcf94376c2c6f2bd20cec079d677fc6b1f92f3c9"; + sha256 = "ddf10fd4a03e56ed67479d0af6aa5dbff25e71da2e53fed5b6566b8265fbe4f4"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-i686/uk/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-i686/uk/thunderbird-140.5.0esr.tar.xz"; locale = "uk"; arch = "linux-i686"; - sha256 = "a178dcf466e3f68d3f4538939079e3ecf04b9d504eaa27d9c6722f272a511c12"; + sha256 = "f083c46e5f4aa48d72ee411a00be2fb4d68dee791a4a98ca7ca8ccba62f3df1a"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-i686/uz/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-i686/uz/thunderbird-140.5.0esr.tar.xz"; locale = "uz"; arch = "linux-i686"; - sha256 = "99ed1858ff772bd1ea99bbe56dd5d631317e1849d7bfee3b288345b6579d3742"; + sha256 = "1e59ad34bf2e24d5611bb7b271222844ead460c43de268cba4e2afa36d591248"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-i686/vi/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-i686/vi/thunderbird-140.5.0esr.tar.xz"; locale = "vi"; arch = "linux-i686"; - sha256 = "495f013bc162106a4cf15710c8c52fb22ab9c8983aa44e3371d9e99d1cc0c517"; + sha256 = "183ceb252be4cbf7c0f40bbef7dde48612d9522b50fb3e78c9499cf959e93a44"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-i686/zh-CN/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-i686/zh-CN/thunderbird-140.5.0esr.tar.xz"; locale = "zh-CN"; arch = "linux-i686"; - sha256 = "f744c06612923b08fff2de9a5bb978b8da1a0dc0512a84b14beca5d449779e94"; + sha256 = "6ca560e74db437ded2895fbc4827cdb8c7a7e83f10834f1275ac3066671c4dba"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/linux-i686/zh-TW/thunderbird-140.4.0esr.tar.xz"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/linux-i686/zh-TW/thunderbird-140.5.0esr.tar.xz"; locale = "zh-TW"; arch = "linux-i686"; - sha256 = "d7693ba6cfd087d370276ad062404a7cf62b6ed20cff20f48cfdac354945e4b4"; + sha256 = "57e463da947c38d912a7133b375f8d80a4a74698321dc8a19e396c20b133bf6a"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/mac/af/Thunderbird%20140.4.0esr.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/mac/af/Thunderbird%20140.5.0esr.dmg"; locale = "af"; arch = "mac"; - sha256 = "2b9f86934b94ab0341ac43f3ff668012f46e12630df25ead6597f150aafd25e5"; + sha256 = "afecb912c6e9fe26d3f0859ca2ff305a7bb0d44a02ff8186f6e77a6b50637b92"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/mac/ar/Thunderbird%20140.4.0esr.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/mac/ar/Thunderbird%20140.5.0esr.dmg"; locale = "ar"; arch = "mac"; - sha256 = "cfa4570ad1891a744cfd51415cdc3c0ec95523f73a9827623c3633cc80c05986"; + sha256 = "b357d0de331ad016bfc277f65642a37bb4b6d990e87c3811ffd1874e24858af2"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/mac/ast/Thunderbird%20140.4.0esr.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/mac/ast/Thunderbird%20140.5.0esr.dmg"; locale = "ast"; arch = "mac"; - sha256 = "d51481eaa3c4b2a055d666fdd7f345ffa6dea80400548ee63cec74eda1285547"; + sha256 = "2d82976cad8a8285ead1e3abe0b6b5a28f57d3f4fc002eb78c12ff9cdbf88bb3"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/mac/be/Thunderbird%20140.4.0esr.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/mac/be/Thunderbird%20140.5.0esr.dmg"; locale = "be"; arch = "mac"; - sha256 = "6be488c6788b722285db1fca3ae6ac470f08a3a6878303d836e789b516fbd203"; + sha256 = "eb80313f5c8bacde300fc0ddafcffcad836f05bff0e269e5b3137bd750c4ce68"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/mac/bg/Thunderbird%20140.4.0esr.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/mac/bg/Thunderbird%20140.5.0esr.dmg"; locale = "bg"; arch = "mac"; - sha256 = "93594488a516d5056589ba103394dde8b43fd70e9cbf8559ca5d91d3de56b321"; + sha256 = "c94fd625c8d30e450ecbb3a9f62f0b9a185030faf716ac2ac7f9397172c44bc0"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/mac/br/Thunderbird%20140.4.0esr.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/mac/br/Thunderbird%20140.5.0esr.dmg"; locale = "br"; arch = "mac"; - sha256 = "6ce35f02916b1ec15d7a386ac1426a2014cbc0750f4a6dfdf5f0c22278ec7be4"; + sha256 = "d66b0300843f11647a711a9828451c8487ed78dbfd0a282de2bfb4885d7d939c"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/mac/ca/Thunderbird%20140.4.0esr.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/mac/ca/Thunderbird%20140.5.0esr.dmg"; locale = "ca"; arch = "mac"; - sha256 = "0252b5b1415ae3e5fe6293ca43c250d7481b1bf0076686ca7bf64e21743b3a6f"; + sha256 = "42d2493bcc39f10bb820dfbb8a193552d707e9fe04b21d1238cf7f4416738991"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/mac/cak/Thunderbird%20140.4.0esr.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/mac/cak/Thunderbird%20140.5.0esr.dmg"; locale = "cak"; arch = "mac"; - sha256 = "6c49a96f648868f795fbe435f069a8efbef15c63a6d65b3e3dc2cf7bfbc79d1e"; + sha256 = "807ac14225360a39cf55554d673d1d97385069f87c08c0fad1ab7e9c37f33d60"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/mac/cs/Thunderbird%20140.4.0esr.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/mac/cs/Thunderbird%20140.5.0esr.dmg"; locale = "cs"; arch = "mac"; - sha256 = "ce445f8af666fc8cb34cd0df92e327a60138f63567803453b6ecc291e97959fb"; + sha256 = "f5ca98cbe4a2d5a6a3d8a1416a34910cfaa4fa00ba45fb36c8ac4b4a8f22335c"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/mac/cy/Thunderbird%20140.4.0esr.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/mac/cy/Thunderbird%20140.5.0esr.dmg"; locale = "cy"; arch = "mac"; - sha256 = "fb5f92217bd85a29ed1a75c799cf4b14bd980c3166c9aff829180c443bce6ab6"; + sha256 = "b3d890775b923b8500e5eb5b9a1d4218763be60f5fdf137bba70626bfda633dc"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/mac/da/Thunderbird%20140.4.0esr.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/mac/da/Thunderbird%20140.5.0esr.dmg"; locale = "da"; arch = "mac"; - sha256 = "cbda1405b9280bfc344a8ea9e225cdfe9e5c9c12bed22183a34d76a9fee6de59"; + sha256 = "5e624b70be43b77ec1fecc047a3bd52f4df45b35a8b562e9e10310f47049a412"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/mac/de/Thunderbird%20140.4.0esr.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/mac/de/Thunderbird%20140.5.0esr.dmg"; locale = "de"; arch = "mac"; - sha256 = "fb8b7f3c43f10ddab84719f5df783e412cbcdd4e3e524b4e617d331339243491"; + sha256 = "c18bc81a110e5ca4ebf1c6069c3a920776afea95fe69466f0ccf9068f704767c"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/mac/dsb/Thunderbird%20140.4.0esr.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/mac/dsb/Thunderbird%20140.5.0esr.dmg"; locale = "dsb"; arch = "mac"; - sha256 = "a095527bb12b1934118531e031afc98f1f4872381c9b5ff0f5c31d255484698a"; + sha256 = "8b148bbe9b540e9ad17d6936133b1f110cef0af54a9144426e252d4da419c02b"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/mac/el/Thunderbird%20140.4.0esr.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/mac/el/Thunderbird%20140.5.0esr.dmg"; locale = "el"; arch = "mac"; - sha256 = "7d8e522a227219a7eb911a5fe505f05d2c8796c6455cb84da46a149ef0299ffe"; + sha256 = "c84d4cefa5718406a92eac37c0419b74d48ee48477f5d6ce0397b933acbcc6a4"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/mac/en-CA/Thunderbird%20140.4.0esr.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/mac/en-CA/Thunderbird%20140.5.0esr.dmg"; locale = "en-CA"; arch = "mac"; - sha256 = "ece5a57536fa76d3aabcb4b762fd6d546d5e90c9a4deaf3449435b74786b26bb"; + sha256 = "326b3b5275772ba707b691fa1fa8ba1a47304b24e622e3ff548f56c03f1b1bea"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/mac/en-GB/Thunderbird%20140.4.0esr.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/mac/en-GB/Thunderbird%20140.5.0esr.dmg"; locale = "en-GB"; arch = "mac"; - sha256 = "e530d5a57bd3ba2425656c8f71682251533d099436d03da5ac5fdeff55033f82"; + sha256 = "71a51733330b1f378519dd02aac6ff447911d4c33478cf44ece7023c4350725b"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/mac/en-US/Thunderbird%20140.4.0esr.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/mac/en-US/Thunderbird%20140.5.0esr.dmg"; locale = "en-US"; arch = "mac"; - sha256 = "eb0a1bc6ddbeb9cfdafa51098608d3f5eb4ad5a4ac6d8000d10bc8d0c4f1f1de"; + sha256 = "95f0e0680a3f0ddbcffa7dffb1ebd0342e91245a048078a23b2b28bb303c48b3"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/mac/es-AR/Thunderbird%20140.4.0esr.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/mac/es-AR/Thunderbird%20140.5.0esr.dmg"; locale = "es-AR"; arch = "mac"; - sha256 = "375de958e67df4c3ea923e22cc8d3f6a927849c454c1172a032d00287a12b537"; + sha256 = "4431ebdea53a97750ca96ca3fb11114fb49886ed900f2d1a9aff969313d932fd"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/mac/es-ES/Thunderbird%20140.4.0esr.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/mac/es-ES/Thunderbird%20140.5.0esr.dmg"; locale = "es-ES"; arch = "mac"; - sha256 = "64eb6e25c5f67b0051778b461b5ec0f61cd4a3daf66daaa5dd718dfe47a6677f"; + sha256 = "1eda2c19378407b444611f63324291bd293820b95b55bfee57884596e8170a23"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/mac/es-MX/Thunderbird%20140.4.0esr.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/mac/es-MX/Thunderbird%20140.5.0esr.dmg"; locale = "es-MX"; arch = "mac"; - sha256 = "0c1ba25c421ac64c125c322c546388f1b73e0276460a0256ff140ee4cb8230fe"; + sha256 = "c30ba943e273f6ab8c83af3a8e896eb098ec5217f837889f644820ecc623c923"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/mac/et/Thunderbird%20140.4.0esr.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/mac/et/Thunderbird%20140.5.0esr.dmg"; locale = "et"; arch = "mac"; - sha256 = "ff8c80fdf745473cb4c1ca1b7751d03849138c32ba72eb94ad2919505497556f"; + sha256 = "abaaf9b10a51fae77edb5a5511049b495fd715d1e3e435cf246aa8d589702943"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/mac/eu/Thunderbird%20140.4.0esr.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/mac/eu/Thunderbird%20140.5.0esr.dmg"; locale = "eu"; arch = "mac"; - sha256 = "24dc4be9dfc2342c9b649d9fdb5ecd5dfd98b109c5f57aa2d7517269924e36df"; + sha256 = "8eb496862a54dffb3997d4c1b55a3b5d9a2b6eedee5375912ceba2b5d440d271"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/mac/fi/Thunderbird%20140.4.0esr.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/mac/fi/Thunderbird%20140.5.0esr.dmg"; locale = "fi"; arch = "mac"; - sha256 = "87343610642c8314d104f6bb97524660be3fdbfaa3b138fc247b1d4bcbdd5aa0"; + sha256 = "43ffcde02a795df46c3861b7abdf24e72b6129b7f706809c901b1637d14783af"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/mac/fr/Thunderbird%20140.4.0esr.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/mac/fr/Thunderbird%20140.5.0esr.dmg"; locale = "fr"; arch = "mac"; - sha256 = "5ae2035849c929f9b565ef69849b902d6e81dca34dd06f5d91ae491cd6bdda19"; + sha256 = "43d117f545f08802148b72432b738b3b740abb4e4e7743692ef389955f08e3db"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/mac/fy-NL/Thunderbird%20140.4.0esr.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/mac/fy-NL/Thunderbird%20140.5.0esr.dmg"; locale = "fy-NL"; arch = "mac"; - sha256 = "a20274e0ed2581ae4435266f24653ee8d00982133ad7f7eb7fc2c11b0e64cd9d"; + sha256 = "9e319356b6e8e8db988d8b3108793de8ad46e27f36da7865a8504f8e2edf7ae5"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/mac/ga-IE/Thunderbird%20140.4.0esr.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/mac/ga-IE/Thunderbird%20140.5.0esr.dmg"; locale = "ga-IE"; arch = "mac"; - sha256 = "f4b61cebd660abce11dbfa62291aa8b0067b4b64515c4dff54619dc33330bf3c"; + sha256 = "6864085bf1adc4826ee5753a69a75a0ed812ea300861899ebc96d003d8d36604"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/mac/gd/Thunderbird%20140.4.0esr.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/mac/gd/Thunderbird%20140.5.0esr.dmg"; locale = "gd"; arch = "mac"; - sha256 = "57e511186cff193c0872e45a2f3a5948351f2c1c01edf6b09b4ad3e63965da49"; + sha256 = "55dda91707ac7e5ec2c043b54e4a4dc81f54d74f1dd87dcb7fd8ec593a14cffc"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/mac/gl/Thunderbird%20140.4.0esr.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/mac/gl/Thunderbird%20140.5.0esr.dmg"; locale = "gl"; arch = "mac"; - sha256 = "893b8013605c2046e7e8cde74ce1c094b06163235ea25de5d0cd8716b9c58606"; + sha256 = "aa4d6f3fb52dfc78f851972d3054be3dc7e197e621f96bdaedf8cd56e2472c0f"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/mac/he/Thunderbird%20140.4.0esr.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/mac/he/Thunderbird%20140.5.0esr.dmg"; locale = "he"; arch = "mac"; - sha256 = "87087c308b4850153bf8dbd23282437973842595a5cc39c5cba975f2a5d8ed88"; + sha256 = "8eb23a752d01eb66901cd8bc7f925376b5f333fb06fd3539c747fc36a63820a0"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/mac/hr/Thunderbird%20140.4.0esr.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/mac/hr/Thunderbird%20140.5.0esr.dmg"; locale = "hr"; arch = "mac"; - sha256 = "5a0bed361a38af3bbce176f7f5c84a16eaa0d0077ef79ac10878da7173a8f4e0"; + sha256 = "c2d232d884337fa9e01e24b7b843a743eeea713c5868e3fe85df0d09c0fd76ca"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/mac/hsb/Thunderbird%20140.4.0esr.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/mac/hsb/Thunderbird%20140.5.0esr.dmg"; locale = "hsb"; arch = "mac"; - sha256 = "560e2af4758eea43cc3e91947d9bcac1d229df45c980bb5b3037b6b91cce799c"; + sha256 = "7c20af651299f2e6da956d19f5042f3e02412fb93e4ea19bd3c246b3f9dc4dfd"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/mac/hu/Thunderbird%20140.4.0esr.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/mac/hu/Thunderbird%20140.5.0esr.dmg"; locale = "hu"; arch = "mac"; - sha256 = "2cd75e419d4e5ed054e761cb908eb7376b01faccf2535447b11fcf8d50d79939"; + sha256 = "f5fe4a01ced3ef6a42463a09c73ed89a31625c8899324f29a6dc8f2e36b5c2ef"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/mac/hy-AM/Thunderbird%20140.4.0esr.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/mac/hy-AM/Thunderbird%20140.5.0esr.dmg"; locale = "hy-AM"; arch = "mac"; - sha256 = "4f39be919b15d2b36b22003bb4aed0fb9b48ee517d60a9cadcbe0cfcdc759903"; + sha256 = "b00dd571dbc2b5cb83cb2dd2bfc27b39fe1db83d7bf35791afa12d4700fe3c39"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/mac/id/Thunderbird%20140.4.0esr.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/mac/id/Thunderbird%20140.5.0esr.dmg"; locale = "id"; arch = "mac"; - sha256 = "5d8915b78bd539e87011a585c6e439ad27ccb40188f3999a30fff53e79d71263"; + sha256 = "49baf3e828d0e0b7730687e294ddb0114f05a007584e8a73b9ffba542d913215"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/mac/is/Thunderbird%20140.4.0esr.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/mac/is/Thunderbird%20140.5.0esr.dmg"; locale = "is"; arch = "mac"; - sha256 = "4cad9a68ea2e713a81376caaa85335b5dd8d3febfc06b9fec04f2f49861be88f"; + sha256 = "5d3e0cb85ecb60ea1c2490505e7b37b729a211f057ba8a51827e3c74599d34cb"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/mac/it/Thunderbird%20140.4.0esr.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/mac/it/Thunderbird%20140.5.0esr.dmg"; locale = "it"; arch = "mac"; - sha256 = "b5c8bb87de852fd8d45ec09c366de6a939cc020bf4c56bcbe74ae862c854cddc"; + sha256 = "65501fadba693b411cb14d5470e3b2b74547c9e9f464340c99b51cc703180207"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/mac/ja-JP-mac/Thunderbird%20140.4.0esr.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/mac/ja-JP-mac/Thunderbird%20140.5.0esr.dmg"; locale = "ja-JP-mac"; arch = "mac"; - sha256 = "76d516e46a3f2bd5fc0da7ee0d6c73f8ec14685fc1fce7cfd18ee408c6c0fa30"; + sha256 = "da78fdd146ab0a53f4bd06324b896e7cb7b584b0b918572d51b8672d2011eee0"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/mac/ka/Thunderbird%20140.4.0esr.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/mac/ka/Thunderbird%20140.5.0esr.dmg"; locale = "ka"; arch = "mac"; - sha256 = "ed617ed9ac2a7c68d116dffa9b7ecc0f359968d1d3663ab461367158e8d0a004"; + sha256 = "af6bc0f89d86e49563c8bfae621183fd9408b228964cbf516a5e7af8f8688af2"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/mac/kab/Thunderbird%20140.4.0esr.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/mac/kab/Thunderbird%20140.5.0esr.dmg"; locale = "kab"; arch = "mac"; - sha256 = "a79feaef4fb690c9a56d139921676475f3cf8ce259e9d1f201d005437ecedaec"; + sha256 = "1a2077b3dfe73b7c52ca8176331c521098fd8f93e3b3979f711c9eec14d04025"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/mac/kk/Thunderbird%20140.4.0esr.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/mac/kk/Thunderbird%20140.5.0esr.dmg"; locale = "kk"; arch = "mac"; - sha256 = "55872e2ab16ab4af4267b137a6f54029c34e34828109cacf8b21b45add5b123a"; + sha256 = "03b11a54491f1b0ccef8c41d38867a51a0c7d968accc3f3d1ff014680450702d"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/mac/ko/Thunderbird%20140.4.0esr.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/mac/ko/Thunderbird%20140.5.0esr.dmg"; locale = "ko"; arch = "mac"; - sha256 = "1ef3cb988025f9e638c7ecbe5e90d839ed1135c99db12432b5a4e955799287b3"; + sha256 = "d1696003692ed2883b3bffa8e558259440b02032584c50f1a6b068adbd7f50e6"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/mac/lt/Thunderbird%20140.4.0esr.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/mac/lt/Thunderbird%20140.5.0esr.dmg"; locale = "lt"; arch = "mac"; - sha256 = "f9d6057adb85028064b00cf7f10cd8338b2130ecf491b2195e65af3e797f0d41"; + sha256 = "61e31e9ca43e8e47c35325913bef4f93a8597a2f02e031da26e9edc763beaf47"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/mac/lv/Thunderbird%20140.4.0esr.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/mac/lv/Thunderbird%20140.5.0esr.dmg"; locale = "lv"; arch = "mac"; - sha256 = "8d544eaa938ea79d6268748bb283bd92b1448c059ca646fdaf36c4471c8acd00"; + sha256 = "af48fcab7ba2c54680a19c18c09c05a0b69097be10882c4d255eaf84e77fba8d"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/mac/ms/Thunderbird%20140.4.0esr.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/mac/ms/Thunderbird%20140.5.0esr.dmg"; locale = "ms"; arch = "mac"; - sha256 = "b1112f7b01008a9c968a7880842f1650b6d8b15b74ae196d481422ce46d8f775"; + sha256 = "effbeb03e03578716aa360e19b33029dd3afba50353f1b33e7987a101817b612"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/mac/nb-NO/Thunderbird%20140.4.0esr.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/mac/nb-NO/Thunderbird%20140.5.0esr.dmg"; locale = "nb-NO"; arch = "mac"; - sha256 = "daa01be94e6b2a830d606795563a24e68fe60990b9c9cb71231653cea29767b5"; + sha256 = "c071f1915176e6307923b7e39bdc262b274b57dee203b6a465ec374c204be22e"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/mac/nl/Thunderbird%20140.4.0esr.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/mac/nl/Thunderbird%20140.5.0esr.dmg"; locale = "nl"; arch = "mac"; - sha256 = "a7f000a5241c94142d6386f69a886a3736493a5702ad5ff647abec6a5fd90c6c"; + sha256 = "b5c36b8aba1940fdc370253367c1516b2c09605b6a26b8f01e6665e44540bd07"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/mac/nn-NO/Thunderbird%20140.4.0esr.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/mac/nn-NO/Thunderbird%20140.5.0esr.dmg"; locale = "nn-NO"; arch = "mac"; - sha256 = "6494f87cde0f105ae0b3d051ece6c92dfd3e878853410e29f25d6a70ee928f74"; + sha256 = "8e758a29d17dacee851c7f64d9a51c20619c04eb3a6cc12370b69956d6aed26a"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/mac/pa-IN/Thunderbird%20140.4.0esr.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/mac/pa-IN/Thunderbird%20140.5.0esr.dmg"; locale = "pa-IN"; arch = "mac"; - sha256 = "704d3065d7a47a9c7af2d45c0139811c2e168c4d8a501fc45a36ed06b170eb12"; + sha256 = "3c622f457717d4676ae3dd81df860767e43d4aec0d11c1dba693cde6fbc30db2"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/mac/pl/Thunderbird%20140.4.0esr.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/mac/pl/Thunderbird%20140.5.0esr.dmg"; locale = "pl"; arch = "mac"; - sha256 = "c305ee51b4e0d3ff187d729f7841586e3f17e28430918f9c93e15bea9e3121c6"; + sha256 = "ceab029e1ebae93568c98f77bd05983e3682fc14b2f250a6a0c2c51cd5b7192c"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/mac/pt-BR/Thunderbird%20140.4.0esr.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/mac/pt-BR/Thunderbird%20140.5.0esr.dmg"; locale = "pt-BR"; arch = "mac"; - sha256 = "014d2e9b86a455e7666ca53fc1f7ce3f65f97404d9c2a3232e0c688ca1cfe8ce"; + sha256 = "17973b1ac86c37b2075a717e7fa1f3b87e47a8c8be5fbba03f40345a63779cb8"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/mac/pt-PT/Thunderbird%20140.4.0esr.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/mac/pt-PT/Thunderbird%20140.5.0esr.dmg"; locale = "pt-PT"; arch = "mac"; - sha256 = "df1b3fc88b7fdd32a6d43dcd4bfa73bdf3ba7480f7318800eeac410c4d9e29b3"; + sha256 = "72d47debf3856dba067710dff3ae94363a263ed0739a963f35a141188c29cbe2"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/mac/rm/Thunderbird%20140.4.0esr.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/mac/rm/Thunderbird%20140.5.0esr.dmg"; locale = "rm"; arch = "mac"; - sha256 = "03387e02dc528c23603759a063e56aa4d1beef35124cb62bb0d826fdfe3a8135"; + sha256 = "5968700bffaaae64e6891a101cdc3c7ffb03f97dbe577c44d706baec4ce29008"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/mac/ro/Thunderbird%20140.4.0esr.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/mac/ro/Thunderbird%20140.5.0esr.dmg"; locale = "ro"; arch = "mac"; - sha256 = "0a65227549c1f1db305d96b8bd55670f6cb5d81c174f919f8dd255d190aa13e1"; + sha256 = "ed751b9717665f17d48055740e49f4358d41ede58d1d21f72802bceda96dd4d2"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/mac/ru/Thunderbird%20140.4.0esr.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/mac/ru/Thunderbird%20140.5.0esr.dmg"; locale = "ru"; arch = "mac"; - sha256 = "7e7c650538d825081b56dd77a1f8274e5df2583657a0b15fb44956b1c1b98f91"; + sha256 = "e828fc0114c3a78acd572d785d4d88c307ec5adbe58e8c8e28f2da4fc7fb4d1d"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/mac/sk/Thunderbird%20140.4.0esr.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/mac/sk/Thunderbird%20140.5.0esr.dmg"; locale = "sk"; arch = "mac"; - sha256 = "7af96995e67e314cd278623abf9af23778af25323cae3dcfa8fa9af7b8165c7e"; + sha256 = "883cb2a4a28b6de598620772693f5aad6738671a4d9b577cbbf74cfcc3bee462"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/mac/sl/Thunderbird%20140.4.0esr.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/mac/sl/Thunderbird%20140.5.0esr.dmg"; locale = "sl"; arch = "mac"; - sha256 = "7d659882c6a9270ebc6cacf396db2735bab463b0cd69b551946a6a95c08f53c9"; + sha256 = "d812522d3383531e3a633aa17287f157afcbc27a621dca23e43d988b94217c60"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/mac/sq/Thunderbird%20140.4.0esr.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/mac/sq/Thunderbird%20140.5.0esr.dmg"; locale = "sq"; arch = "mac"; - sha256 = "d50e1e2cffefb92e708bf6f32864d34fda53e03046a22015fa945a9dabbfca5f"; + sha256 = "58b31405027db66dc32c70460383d756c75c63c22f2f857463b1bab33c0bd5a1"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/mac/sr/Thunderbird%20140.4.0esr.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/mac/sr/Thunderbird%20140.5.0esr.dmg"; locale = "sr"; arch = "mac"; - sha256 = "ca5afcb5032e9072d94ebbb3542213785e8e3402384b6ef6298a948faa2841f6"; + sha256 = "8f8eeda20b7cfebac8190aa17c65b399a4a84e80ea6c90a0b7234a0dfa36e67b"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/mac/sv-SE/Thunderbird%20140.4.0esr.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/mac/sv-SE/Thunderbird%20140.5.0esr.dmg"; locale = "sv-SE"; arch = "mac"; - sha256 = "65e2775d6c2f3c95928889c3faae8a03412eba5f0f4cca0d9fa28ca6f853b879"; + sha256 = "0ec6f0984a1087d7b3a21ced52e40a2fec1cc8750d79928c38b8c429da36b5d3"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/mac/th/Thunderbird%20140.4.0esr.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/mac/th/Thunderbird%20140.5.0esr.dmg"; locale = "th"; arch = "mac"; - sha256 = "38f9ed2272ddf921886546d8be2db62a24e9e4c8fad4073806fb47fde589017b"; + sha256 = "7f3358033289b6bf4c48dfa079ee63db11957b96e03db1f531deab8e9b9420df"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/mac/tr/Thunderbird%20140.4.0esr.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/mac/tr/Thunderbird%20140.5.0esr.dmg"; locale = "tr"; arch = "mac"; - sha256 = "2e6ddd14745d0577c553166791323a8b83e571900b56eeccb65f4358abb5b2a0"; + sha256 = "9b1295695c7db8c01a34ecd6c44909c08d90dcfd54e64e6aae243edd05168540"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/mac/uk/Thunderbird%20140.4.0esr.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/mac/uk/Thunderbird%20140.5.0esr.dmg"; locale = "uk"; arch = "mac"; - sha256 = "9986d7cd69b8e6561ad72af8bd3096e7df0ae5710f0c0ea2a8d995730e881665"; + sha256 = "c03383c31a9f58f120870142c79d7705cb12ef4c0f3d79e969ccafec2bedcfb6"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/mac/uz/Thunderbird%20140.4.0esr.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/mac/uz/Thunderbird%20140.5.0esr.dmg"; locale = "uz"; arch = "mac"; - sha256 = "4b9ef669d6899b0353cddcfa0589285cd12bb45ede26604c2aaf176e8cc9fe55"; + sha256 = "4ef0d8efe36b95a610be6ea0e98ebf9ca07dc16a8976eb684947b74bd0be898a"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/mac/vi/Thunderbird%20140.4.0esr.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/mac/vi/Thunderbird%20140.5.0esr.dmg"; locale = "vi"; arch = "mac"; - sha256 = "f749a2f83d2ce179e485cb93ee2b71313924adfadda0786d6b0de77abee3a7c6"; + sha256 = "9ab60377f7ef4ec7b3211a6818cf1fe70d07a1cab6e754af124f7ae4a7882d77"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/mac/zh-CN/Thunderbird%20140.4.0esr.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/mac/zh-CN/Thunderbird%20140.5.0esr.dmg"; locale = "zh-CN"; arch = "mac"; - sha256 = "14cc428227819eff46e6d4a28c530a72afa7b795c897d194bbb1fb130ed734f8"; + sha256 = "8dc89a32ad3d64e6c52658fcb994a44e192ee2f0fad0b7a56ff1d9957a101438"; } { - url = "http://archive.mozilla.org/pub/thunderbird/releases/140.4.0esr/mac/zh-TW/Thunderbird%20140.4.0esr.dmg"; + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.5.0esr/mac/zh-TW/Thunderbird%20140.5.0esr.dmg"; locale = "zh-TW"; arch = "mac"; - sha256 = "d7eb52fe22b210177bd27f8a10da57f510bb37ab62d5c0deaff2a21ba5c0e734"; + sha256 = "60236dd6e77637fd0fc77c14e988dc8c28a296b14c47dac4da34e68977546169"; } ]; } diff --git a/pkgs/applications/window-managers/wayfire/default.nix b/pkgs/applications/window-managers/wayfire/default.nix index 49acba82cc61..8ddbb3e0510a 100644 --- a/pkgs/applications/window-managers/wayfire/default.nix +++ b/pkgs/applications/window-managers/wayfire/default.nix @@ -35,6 +35,11 @@ stdenv.mkDerivation (finalAttrs: { pname = "wayfire"; version = "0.10.0"; + outputs = [ + "out" + "man" + ]; + src = fetchFromGitHub { owner = "WayfireWM"; repo = "wayfire"; diff --git a/pkgs/applications/window-managers/wayfire/wf-shell.nix b/pkgs/applications/window-managers/wayfire/wf-shell.nix index 2405290947e5..0ad7e8efea7e 100644 --- a/pkgs/applications/window-managers/wayfire/wf-shell.nix +++ b/pkgs/applications/window-managers/wayfire/wf-shell.nix @@ -17,6 +17,10 @@ stdenv.mkDerivation (finalAttrs: { pname = "wf-shell"; version = "0.10.0"; + outputs = [ + "out" + "man" + ]; src = fetchFromGitHub { owner = "WayfireWM"; diff --git a/pkgs/by-name/ad/add-determinism/Cargo.lock b/pkgs/by-name/ad/add-determinism/Cargo.lock index 8d0f821d17cf..69d1eadb08a1 100644 --- a/pkgs/by-name/ad/add-determinism/Cargo.lock +++ b/pkgs/by-name/ad/add-determinism/Cargo.lock @@ -1,10 +1,10 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. -version = 3 +version = 4 [[package]] name = "add-determinism" -version = "0.7.0" +version = "0.7.2" dependencies = [ "anyhow", "chrono", @@ -14,12 +14,12 @@ dependencies = [ "indoc", "itertools", "log", - "nix", "num-bigint-dig", "num-integer", "num-traits", "regex", "rlimit", + "selinux", "tempfile", "thiserror", "time", @@ -35,9 +35,9 @@ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa" [[package]] name = "aho-corasick" -version = "1.1.3" +version = "1.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" +checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301" dependencies = [ "memchr", ] @@ -53,9 +53,9 @@ dependencies = [ [[package]] name = "anstream" -version = "0.6.20" +version = "0.6.21" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3ae563653d1938f79b1ab1b5e668c87c76a9930414574a6583a7b7e11a8e6192" +checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a" dependencies = [ "anstyle", "anstyle-parse", @@ -68,9 +68,9 @@ dependencies = [ [[package]] name = "anstyle" -version = "1.0.11" +version = "1.0.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "862ed96ca487e809f1c8e5a8447f6ee2cf102f846893800b20cebdf541fc6bbd" +checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78" [[package]] name = "anstyle-parse" @@ -83,29 +83,29 @@ dependencies = [ [[package]] name = "anstyle-query" -version = "1.1.4" +version = "1.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9e231f6134f61b71076a3eab506c379d4f36122f2af15a9ff04415ea4c3339e2" +checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc" dependencies = [ - "windows-sys 0.60.2", + "windows-sys", ] [[package]] name = "anstyle-wincon" -version = "3.0.10" +version = "3.0.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3e0633414522a32ffaac8ac6cc8f748e090c5717661fddeea04219e2344f5f2a" +checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d" dependencies = [ "anstyle", "once_cell_polyfill", - "windows-sys 0.60.2", + "windows-sys", ] [[package]] name = "anyhow" -version = "1.0.99" +version = "1.0.100" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b0674a1ddeecb70197781e945de4b3b8ffb61fa939a5597bcf48503737663100" +checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61" [[package]] name = "autocfg" @@ -114,10 +114,30 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" [[package]] -name = "bitflags" -version = "2.9.4" +name = "bindgen" +version = "0.72.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2261d10cca569e4643e526d8dc2e62e433cc8aba21ab764233731f8d369bf394" +checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895" +dependencies = [ + "bitflags", + "cexpr", + "clang-sys", + "itertools", + "log", + "prettyplease", + "proc-macro2", + "quote", + "regex", + "rustc-hash", + "shlex", + "syn", +] + +[[package]] +name = "bitflags" +version = "2.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3" [[package]] name = "bumpalo" @@ -133,25 +153,28 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" [[package]] name = "cc" -version = "1.2.36" +version = "1.2.46" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5252b3d2648e5eedbc1a6f501e3c795e07025c1e93bbf8bbdd6eef7f447a6d54" +checksum = "b97463e1064cb1b1c1384ad0a0b9c8abd0988e2a91f52606c80ef14aadb63e36" dependencies = [ "find-msvc-tools", "shlex", ] [[package]] -name = "cfg-if" -version = "1.0.3" +name = "cexpr" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2fd1289c04a9ea8cb22300a459a72a385d7c73d3259e2ed7dcb2af674838cfa9" +checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766" +dependencies = [ + "nom", +] [[package]] -name = "cfg_aliases" -version = "0.1.1" +name = "cfg-if" +version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e" +checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" [[package]] name = "chrono" @@ -163,14 +186,25 @@ dependencies = [ "js-sys", "num-traits", "wasm-bindgen", - "windows-link 0.2.0", + "windows-link", +] + +[[package]] +name = "clang-sys" +version = "1.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4" +dependencies = [ + "glob", + "libc", + "libloading", ] [[package]] name = "clap" -version = "4.5.47" +version = "4.5.52" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7eac00902d9d136acd712710d71823fb8ac8004ca445a89e73a41d45aa712931" +checksum = "aa8120877db0e5c011242f96806ce3c94e0737ab8108532a76a3300a01db2ab8" dependencies = [ "clap_builder", "clap_derive", @@ -178,9 +212,9 @@ dependencies = [ [[package]] name = "clap_builder" -version = "4.5.47" +version = "4.5.52" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2ad9bbf750e73b5884fb8a211a9424a1906c1e156724260fdae972f31d70e1d6" +checksum = "02576b399397b659c26064fbc92a75fede9d18ffd5f80ca1cd74ddab167016e1" dependencies = [ "anstream", "anstyle", @@ -190,9 +224,9 @@ dependencies = [ [[package]] name = "clap_derive" -version = "4.5.47" +version = "4.5.49" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bbfd7eae0b0f1a6e63d4b13c9c478de77c2eb546fba158ad50b4203dc24b9f9c" +checksum = "2a0b5487afeab2deb2ff4e03a807ad1a03ac532ff5a2cee5d86884440c7f7671" dependencies = [ "heck", "proc-macro2", @@ -202,9 +236,9 @@ dependencies = [ [[package]] name = "clap_lex" -version = "0.7.5" +version = "0.7.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b94f61472cee1439c0b966b47e3aca9ae07e45d070759512cd390ea2bebc6675" +checksum = "a1d728cc89cf3aee9ff92b05e62b19ee65a02b5702cff7d5a377e32c6ae29d8d" [[package]] name = "colorchoice" @@ -244,13 +278,19 @@ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" [[package]] name = "deranged" -version = "0.5.3" +version = "0.5.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d630bccd429a5bb5a64b5e94f693bfc48c9f8566418fda4c494cc94f911f87cc" +checksum = "ececcb659e7ba858fb4f10388c250a7252eb0a27373f1a72b8748afdd248e587" dependencies = [ "powerfmt", ] +[[package]] +name = "dunce" +version = "1.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813" + [[package]] name = "either" version = "1.15.0" @@ -264,7 +304,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" dependencies = [ "libc", - "windows-sys 0.61.0", + "windows-sys", ] [[package]] @@ -275,15 +315,15 @@ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" [[package]] name = "find-msvc-tools" -version = "0.1.1" +version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7fd99930f64d146689264c637b5af2f0233a933bef0d8570e2526bf9e083192d" +checksum = "3a3076410a55c90011c298b04d0cfa770b00fa04e1e3c97d3f6c9de105a03844" [[package]] name = "flate2" -version = "1.1.2" +version = "1.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4a3d7db9596fecd151c5f638c0ee5d5bd487b6e0ea232e5dc96d5250f6f94b1d" +checksum = "bfe33edd8e85a12a67454e37f8c75e730830d83e313556ab9ebf9ee7fbeb3bfb" dependencies = [ "crc32fast", "libz-sys", @@ -298,19 +338,19 @@ checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592" dependencies = [ "cfg-if", "libc", - "wasi 0.11.1+wasi-snapshot-preview1", + "wasi", ] [[package]] name = "getrandom" -version = "0.3.3" +version = "0.3.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4" +checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd" dependencies = [ "cfg-if", "libc", "r-efi", - "wasi 0.14.5+wasi-0.2.4", + "wasip2", ] [[package]] @@ -327,9 +367,9 @@ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" [[package]] name = "iana-time-zone" -version = "0.1.63" +version = "0.1.64" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b0c919e5debc312ad217002b8048a17b7d83f80703865bbfcfebb0458b0b27d8" +checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb" dependencies = [ "android_system_properties", "core-foundation-sys", @@ -351,15 +391,18 @@ dependencies = [ [[package]] name = "indoc" -version = "2.0.6" +version = "2.0.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd" +checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706" +dependencies = [ + "rustversion", +] [[package]] name = "is_terminal_polyfill" -version = "1.70.1" +version = "1.70.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf" +checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695" [[package]] name = "itertools" @@ -372,9 +415,9 @@ dependencies = [ [[package]] name = "js-sys" -version = "0.3.78" +version = "0.3.82" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0c0b063578492ceec17683ef2f8c5e89121fbd0b172cbc280635ab7567db2738" +checksum = "b011eec8cc36da2aab2d5cff675ec18454fad408585853910a202391cf9f8e65" dependencies = [ "once_cell", "wasm-bindgen", @@ -391,9 +434,19 @@ dependencies = [ [[package]] name = "libc" -version = "0.2.175" +version = "0.2.177" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6a82ae493e598baaea5209805c49bbf2ea7de956d50d7da0da1164f9c6d28543" +checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976" + +[[package]] +name = "libloading" +version = "0.8.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55" +dependencies = [ + "cfg-if", + "windows-link", +] [[package]] name = "libm" @@ -403,9 +456,9 @@ checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de" [[package]] name = "libz-sys" -version = "1.1.22" +version = "1.1.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8b70e7a7df205e92a1a4cd9aaae7898dac0aa555503cc0a649494d0d60e7651d" +checksum = "15d118bbf3771060e7311cc7bb0545b01d08a8b4a7de949198dec1fa0ca1c0f7" dependencies = [ "cc", "pkg-config", @@ -426,18 +479,15 @@ checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432" [[package]] name = "memchr" -version = "2.7.5" +version = "2.7.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0" +checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273" [[package]] -name = "memoffset" -version = "0.9.1" +name = "minimal-lexical" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a" -dependencies = [ - "autocfg", -] +checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" [[package]] name = "miniz_oxide" @@ -446,28 +496,25 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316" dependencies = [ "adler2", + "simd-adler32", ] [[package]] -name = "nix" -version = "0.28.0" +name = "nom" +version = "7.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ab2156c4fce2f8df6c499cc1c763e4394b7482525bf2a9701c9d79d215f519e4" +checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" dependencies = [ - "bitflags", - "cfg-if", - "cfg_aliases", - "libc", - "memoffset", + "memchr", + "minimal-lexical", ] [[package]] name = "num-bigint-dig" -version = "0.8.4" +version = "0.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dc84195820f291c7697304f3cbdadd1cb7199c0efc917ff5eafd71225c136151" +checksum = "e661dda6640fad38e827a6d4a310ff4763082116fe217f279885c97f511bb0b7" dependencies = [ - "byteorder", "lazy_static", "libm", "num-integer", @@ -521,9 +568,9 @@ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" [[package]] name = "once_cell_polyfill" -version = "1.70.1" +version = "1.70.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad" +checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe" [[package]] name = "pkg-config" @@ -547,19 +594,29 @@ dependencies = [ ] [[package]] -name = "proc-macro2" -version = "1.0.101" +name = "prettyplease" +version = "0.2.37" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "89ae43fd86e4158d6db51ad8e2b80f313af9cc74f5c0e03ccb87de09998732de" +checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b" +dependencies = [ + "proc-macro2", + "syn", +] + +[[package]] +name = "proc-macro2" +version = "1.0.103" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8" dependencies = [ "unicode-ident", ] [[package]] name = "quote" -version = "1.0.40" +version = "1.0.42" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d" +checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f" dependencies = [ "proc-macro2", ] @@ -601,10 +658,16 @@ dependencies = [ ] [[package]] -name = "regex" -version = "1.11.2" +name = "reference-counted-singleton" +version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "23d7fd106d8c02486a8d64e778353d1cffe08ce79ac2e82f540c86d0facf6912" +checksum = "5daffa8f5ca827e146485577fa9dba9bd9c6921e06e954ab8f6408c10f753086" + +[[package]] +name = "regex" +version = "1.12.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4" dependencies = [ "aho-corasick", "memchr", @@ -614,9 +677,9 @@ dependencies = [ [[package]] name = "regex-automata" -version = "0.4.10" +version = "0.4.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6b9458fa0bfeeac22b5ca447c63aaf45f28439a709ccd244698632f9aa6394d6" +checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c" dependencies = [ "aho-corasick", "memchr", @@ -625,9 +688,9 @@ dependencies = [ [[package]] name = "regex-syntax" -version = "0.8.6" +version = "0.8.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "caf4aa5b0f434c91fe5c7f1ecb6a5ece2130b02ad2a590589dda5146df959001" +checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58" [[package]] name = "rlimit" @@ -638,6 +701,12 @@ dependencies = [ "libc", ] +[[package]] +name = "rustc-hash" +version = "2.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d" + [[package]] name = "rustix" version = "1.1.2" @@ -648,7 +717,7 @@ dependencies = [ "errno", "libc", "linux-raw-sys", - "windows-sys 0.61.0", + "windows-sys", ] [[package]] @@ -667,19 +736,54 @@ dependencies = [ ] [[package]] -name = "serde" -version = "1.0.219" +name = "selinux" +version = "0.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6" +checksum = "0139b2436c81305eb6bda33af151851f75bd62783817b25f44daa371119c30b5" +dependencies = [ + "bitflags", + "libc", + "once_cell", + "reference-counted-singleton", + "selinux-sys", + "thiserror", +] + +[[package]] +name = "selinux-sys" +version = "0.6.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "debaba5832b4831ffe0ba9118b526c752c960f41c46c4ef197d9a15f5179d6fd" +dependencies = [ + "bindgen", + "cc", + "dunce", + "walkdir", +] + +[[package]] +name = "serde" +version = "1.0.228" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e" +dependencies = [ + "serde_core", +] + +[[package]] +name = "serde_core" +version = "1.0.228" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.219" +version = "1.0.228" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00" +checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" dependencies = [ "proc-macro2", "quote", @@ -692,6 +796,12 @@ version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" +[[package]] +name = "simd-adler32" +version = "0.3.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe" + [[package]] name = "smallvec" version = "1.15.1" @@ -712,9 +822,9 @@ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" [[package]] name = "syn" -version = "2.0.106" +version = "2.0.110" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ede7c438028d4436d71104916910f5bb611972c5cfd7f89b8300a8186e6fada6" +checksum = "a99801b5bd34ede4cf3fc688c5919368fea4e4814a4664359503e6015b280aea" dependencies = [ "proc-macro2", "quote", @@ -723,15 +833,15 @@ dependencies = [ [[package]] name = "tempfile" -version = "3.22.0" +version = "3.23.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "84fa4d11fadde498443cca10fd3ac23c951f0dc59e080e9f4b93d4df4e4eea53" +checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16" dependencies = [ "fastrand", - "getrandom 0.3.3", + "getrandom 0.3.4", "once_cell", "rustix", - "windows-sys 0.61.0", + "windows-sys", ] [[package]] @@ -756,9 +866,9 @@ dependencies = [ [[package]] name = "time" -version = "0.3.43" +version = "0.3.44" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "83bde6f1ec10e72d583d91623c939f623002284ef622b87de38cfd546cbf2031" +checksum = "91e7d9e3bb61134e77bde20dd4825b97c010155709965fedf0f49bb138e52a9d" dependencies = [ "deranged", "num-conv", @@ -775,9 +885,9 @@ checksum = "40868e7c1d2f0b8d73e4a8c7f0ff63af4f6d19be117e90bd73eb1d62cf831c6b" [[package]] name = "unicode-ident" -version = "1.0.18" +version = "1.0.22" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512" +checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5" [[package]] name = "utf8parse" @@ -807,29 +917,20 @@ version = "0.11.1+wasi-snapshot-preview1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" -[[package]] -name = "wasi" -version = "0.14.5+wasi-0.2.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4494f6290a82f5fe584817a676a34b9d6763e8d9d18204009fb31dceca98fd4" -dependencies = [ - "wasip2", -] - [[package]] name = "wasip2" -version = "1.0.0+wasi-0.2.4" +version = "1.0.1+wasi-0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "03fa2761397e5bd52002cd7e73110c71af2109aca4e521a9f40473fe685b0a24" +checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7" dependencies = [ "wit-bindgen", ] [[package]] name = "wasm-bindgen" -version = "0.2.101" +version = "0.2.105" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7e14915cadd45b529bb8d1f343c4ed0ac1de926144b746e2710f9cd05df6603b" +checksum = "da95793dfc411fbbd93f5be7715b0578ec61fe87cb1a42b12eb625caa5c5ea60" dependencies = [ "cfg-if", "once_cell", @@ -838,25 +939,11 @@ dependencies = [ "wasm-bindgen-shared", ] -[[package]] -name = "wasm-bindgen-backend" -version = "0.2.101" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e28d1ba982ca7923fd01448d5c30c6864d0a14109560296a162f80f305fb93bb" -dependencies = [ - "bumpalo", - "log", - "proc-macro2", - "quote", - "syn", - "wasm-bindgen-shared", -] - [[package]] name = "wasm-bindgen-macro" -version = "0.2.101" +version = "0.2.105" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7c3d463ae3eff775b0c45df9da45d68837702ac35af998361e2c84e7c5ec1b0d" +checksum = "04264334509e04a7bf8690f2384ef5265f05143a4bff3889ab7a3269adab59c2" dependencies = [ "quote", "wasm-bindgen-macro-support", @@ -864,22 +951,22 @@ dependencies = [ [[package]] name = "wasm-bindgen-macro-support" -version = "0.2.101" +version = "0.2.105" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7bb4ce89b08211f923caf51d527662b75bdc9c9c7aab40f86dcb9fb85ac552aa" +checksum = "420bc339d9f322e562942d52e115d57e950d12d88983a14c79b86859ee6c7ebc" dependencies = [ + "bumpalo", "proc-macro2", "quote", "syn", - "wasm-bindgen-backend", "wasm-bindgen-shared", ] [[package]] name = "wasm-bindgen-shared" -version = "0.2.101" +version = "0.2.105" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f143854a3b13752c6950862c906306adb27c7e839f7414cec8fea35beab624c1" +checksum = "76f218a38c84bcb33c25ec7059b07847d465ce0e0a76b995e134a45adcb6af76" dependencies = [ "unicode-ident", ] @@ -890,27 +977,27 @@ version = "0.1.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22" dependencies = [ - "windows-sys 0.61.0", + "windows-sys", ] [[package]] name = "windows-core" -version = "0.61.2" +version = "0.62.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3" +checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb" dependencies = [ "windows-implement", "windows-interface", - "windows-link 0.1.3", + "windows-link", "windows-result", "windows-strings", ] [[package]] name = "windows-implement" -version = "0.60.0" +version = "0.60.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836" +checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf" dependencies = [ "proc-macro2", "quote", @@ -919,9 +1006,9 @@ dependencies = [ [[package]] name = "windows-interface" -version = "0.59.1" +version = "0.59.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8" +checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358" dependencies = [ "proc-macro2", "quote", @@ -930,122 +1017,42 @@ dependencies = [ [[package]] name = "windows-link" -version = "0.1.3" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a" - -[[package]] -name = "windows-link" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "45e46c0661abb7180e7b9c281db115305d49ca1709ab8242adf09666d2173c65" +checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" [[package]] name = "windows-result" -version = "0.3.4" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6" +checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5" dependencies = [ - "windows-link 0.1.3", + "windows-link", ] [[package]] name = "windows-strings" -version = "0.4.2" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57" +checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091" dependencies = [ - "windows-link 0.1.3", + "windows-link", ] [[package]] name = "windows-sys" -version = "0.60.2" +version = "0.61.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb" +checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc" dependencies = [ - "windows-targets", + "windows-link", ] -[[package]] -name = "windows-sys" -version = "0.61.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e201184e40b2ede64bc2ea34968b28e33622acdbbf37104f0e4a33f7abe657aa" -dependencies = [ - "windows-link 0.2.0", -] - -[[package]] -name = "windows-targets" -version = "0.53.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d5fe6031c4041849d7c496a8ded650796e7b6ecc19df1a431c1a363342e5dc91" -dependencies = [ - "windows-link 0.1.3", - "windows_aarch64_gnullvm", - "windows_aarch64_msvc", - "windows_i686_gnu", - "windows_i686_gnullvm", - "windows_i686_msvc", - "windows_x86_64_gnu", - "windows_x86_64_gnullvm", - "windows_x86_64_msvc", -] - -[[package]] -name = "windows_aarch64_gnullvm" -version = "0.53.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764" - -[[package]] -name = "windows_aarch64_msvc" -version = "0.53.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c" - -[[package]] -name = "windows_i686_gnu" -version = "0.53.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3" - -[[package]] -name = "windows_i686_gnullvm" -version = "0.53.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11" - -[[package]] -name = "windows_i686_msvc" -version = "0.53.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d" - -[[package]] -name = "windows_x86_64_gnu" -version = "0.53.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba" - -[[package]] -name = "windows_x86_64_gnullvm" -version = "0.53.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57" - -[[package]] -name = "windows_x86_64_msvc" -version = "0.53.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486" - [[package]] name = "wit-bindgen" -version = "0.45.1" +version = "0.46.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5c573471f125075647d03df72e026074b7203790d41351cd6edc96f46bcccd36" +checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59" [[package]] name = "zerocopy" diff --git a/pkgs/by-name/ad/add-determinism/package.nix b/pkgs/by-name/ad/add-determinism/package.nix index 24caac1a74ba..f6ef8414d570 100644 --- a/pkgs/by-name/ad/add-determinism/package.nix +++ b/pkgs/by-name/ad/add-determinism/package.nix @@ -2,7 +2,6 @@ lib, rustPlatform, fetchFromGitHub, - fetchpatch, pkg-config, zlib, stdenv, @@ -10,13 +9,13 @@ rustPlatform.buildRustPackage rec { pname = "add-determinism"; - version = "0.7.0"; + version = "0.7.2"; src = fetchFromGitHub { owner = "keszybz"; repo = "add-determinism"; tag = "v${version}"; - hash = "sha256-jUBHIdqPuK95jNNMFeSgj0xd3WSneqRa0kcVDhFC3aw="; + hash = "sha256-wy0jle1Fhq4wpxMY1IeS3FGHOOaH0Bu8qhvmaIRAJyI="; }; # this project has no Cargo.lock now diff --git a/pkgs/by-name/ai/airshipper/package.nix b/pkgs/by-name/ai/airshipper/package.nix index 5026eab49fd5..4e75ecda36f9 100644 --- a/pkgs/by-name/ai/airshipper/package.nix +++ b/pkgs/by-name/ai/airshipper/package.nix @@ -112,8 +112,11 @@ rustPlatform.buildRustPackage { ]; in '' - patchelf --set-rpath "${libPath}" "$out/bin/airshipper" - wrapProgram "$out/bin/airshipper" --set VELOREN_PATCHER "${patch}" + # We set LD_LIBRARY_PATH instead of using patchelf in order to propagate the libs + # to both Airshipper itself as well as the binaries downloaded by Airshipper. + wrapProgram "$out/bin/airshipper" \ + --set VELOREN_PATCHER "${patch}" \ + --prefix LD_LIBRARY_PATH : "${libPath}" ''; doCheck = false; diff --git a/pkgs/by-name/al/all-the-package-names/package.nix b/pkgs/by-name/al/all-the-package-names/package.nix index e66e7dee30b1..c1391bbe3cc4 100644 --- a/pkgs/by-name/al/all-the-package-names/package.nix +++ b/pkgs/by-name/al/all-the-package-names/package.nix @@ -7,16 +7,16 @@ buildNpmPackage rec { pname = "all-the-package-names"; - version = "2.0.2263"; + version = "2.0.2270"; src = fetchFromGitHub { owner = "nice-registry"; repo = "all-the-package-names"; tag = "v${version}"; - hash = "sha256-LLNsUe5Dx2mhEjP5LGssPIDDouGGlHN+wl/tVEJySi8="; + hash = "sha256-r8FzTw86jB999wfBPWNbyBKqfFQxGpQqu/leeP517/k="; }; - npmDepsHash = "sha256-eLrghoMLPEKs3f0CCmtlO/KUHgpIHnNulIAmRNc4maw="; + npmDepsHash = "sha256-gL8gqEmobDAHQWxgAf7q+0VFpcGImXiAdZMSVhkZY4A="; passthru.updateScript = nix-update-script { }; diff --git a/pkgs/by-name/an/antigravity/package.nix b/pkgs/by-name/an/antigravity/package.nix new file mode 100644 index 000000000000..6326a37f26ab --- /dev/null +++ b/pkgs/by-name/an/antigravity/package.nix @@ -0,0 +1,62 @@ +{ + lib, + stdenv, + callPackage, + vscode-generic, + fetchurl, + commandLineArgs ? "", + useVSCodeRipgrep ? stdenv.hostPlatform.isDarwin, +}: + +let + inherit (stdenv) hostPlatform; + + sources = + (lib.importJSON ./sources.json)."${hostPlatform.system}" + or (throw "antigravity: unsupported system ${hostPlatform.system}"); + + version = "1.11.2-6251250307170304"; + vscodeVersion = "1.104.0"; +in +callPackage vscode-generic { + inherit + commandLineArgs + useVSCodeRipgrep + version + vscodeVersion + ; + + pname = "antigravity"; + + executableName = "antigravity"; + longName = "Google Antigravity"; + shortName = "Antigravity"; + libraryName = "antigravity"; + iconName = "antigravity"; + + src = fetchurl { + inherit (sources) url hash; + }; + + sourceRoot = if hostPlatform.isDarwin then "Antigravity.app" else "Antigravity"; + + tests = { }; + updateScript = ./update.sh; + + meta = { + mainProgram = "antigravity"; + description = "Agentic development platform, evolving the IDE into the agent-first era"; + homepage = "https://antigravity.google"; + downloadPage = "https://antigravity.google/download"; + changelog = "https://antigravity.google/changelog"; + license = lib.licenses.unfree; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + platforms = [ + "x86_64-linux" + "aarch64-linux" + "x86_64-darwin" + "aarch64-darwin" + ]; + maintainers = with lib.maintainers; [ Zaczero ]; + }; +} diff --git a/pkgs/by-name/an/antigravity/sources.json b/pkgs/by-name/an/antigravity/sources.json new file mode 100644 index 000000000000..8e6d19778941 --- /dev/null +++ b/pkgs/by-name/an/antigravity/sources.json @@ -0,0 +1,18 @@ +{ + "x86_64-linux": { + "url": "https://edgedl.me.gvt1.com/edgedl/release2/j0qc3/antigravity/stable/1.11.2-6251250307170304/linux-x64/Antigravity.tar.gz", + "hash": "sha256-0bERWudsJ1w3bqZg4eTS3CDrPnLWogawllBblEpfZLc=" + }, + "aarch64-linux": { + "url": "https://edgedl.me.gvt1.com/edgedl/release2/j0qc3/antigravity/stable/1.11.2-6251250307170304/linux-arm/Antigravity.tar.gz", + "hash": "sha256-UBVxx05mKcqdAy0Usc4heGCJ/UtK86+RSsQzgkngpx4=" + }, + "x86_64-darwin": { + "url": "https://edgedl.me.gvt1.com/edgedl/release2/j0qc3/antigravity/stable/1.11.2-6251250307170304/darwin-x64/Antigravity.zip", + "hash": "sha256-jrAUYtxPJqukW+SZK9oLFF0ewhDGOmJyV4ryflnyO+8=" + }, + "aarch64-darwin": { + "url": "https://edgedl.me.gvt1.com/edgedl/release2/j0qc3/antigravity/stable/1.11.2-6251250307170304/darwin-arm/Antigravity.zip", + "hash": "sha256-ZYlO1lZGQgTvbXgLTbEmh4A3HuCFgKTgWJfkMNyh4hw=" + } +} diff --git a/pkgs/by-name/an/antigravity/update.sh b/pkgs/by-name/an/antigravity/update.sh new file mode 100755 index 000000000000..c7cb5b886f38 --- /dev/null +++ b/pkgs/by-name/an/antigravity/update.sh @@ -0,0 +1,88 @@ +#!/usr/bin/env nix-shell +#!nix-shell -i bash -p curl gnugrep gnused gnutar jq +# shellcheck shell=bash + +set -euo pipefail + +SCRIPT_DIR="$(dirname "$(readlink -f "$0")")" +PACKAGE_NIX="${SCRIPT_DIR}/package.nix" +SOURCES_JSON="${SCRIPT_DIR}/sources.json" + +echo "Fetching latest release information..." +page=$(curl -fsSL --compressed "https://antigravity.google/download/linux") +script_name=$(printf '%s\n' "$page" | grep -o 'main-[a-zA-Z0-9]*\.js' | head -n1) +js_content=$(curl -fsSL --compressed "https://antigravity.google/$script_name") + +# Extract Linux x86_64 URL +linux_x86_64_url=$( + printf '%s\n' "$js_content" \ + | grep -o 'https://[^"]*/linux-x64/Antigravity.tar.gz' \ + | head -n1 +) + +# Extract version and check for update +version=$( + printf '%s\n' "$linux_x86_64_url" \ + | sed -n 's#.*/stable/\([^/]*\)/linux-x64/Antigravity.tar.gz#\1#p' +) +echo "Version: $version" + +current_version=$(grep -oP '^\s*version = "\K[^"]+' "$PACKAGE_NIX" | head -n1) +if [[ "$version" == "$current_version" ]]; then + echo "Antigravity is already up-to-date" + exit 0 +fi + +# Derive URLs +linux_aarch64_url="${linux_x86_64_url/linux-x64\/Antigravity.tar.gz/linux-arm\/Antigravity.tar.gz}" +darwin_x86_64_url="${linux_x86_64_url/linux-x64\/Antigravity.tar.gz/darwin-x64\/Antigravity.zip}" +darwin_aarch64_url="${linux_x86_64_url/linux-x64\/Antigravity.tar.gz/darwin-arm\/Antigravity.zip}" + +echo "Prefetching x86_64-linux from $linux_x86_64_url..." +prefetch_output=$(nix-prefetch-url --print-path "$linux_x86_64_url") +linux_x86_64_hash_base32=$(echo "$prefetch_output" | head -n1) +archive_path=$(echo "$prefetch_output" | tail -n1) +echo "path is '$archive_path'" >&2 +linux_x86_64_hash=$(nix-hash --type sha256 --to-sri "$linux_x86_64_hash_base32") + +echo "Prefetching aarch64-linux from $linux_aarch64_url..." +linux_aarch64_hash_base32=$(nix-prefetch-url "$linux_aarch64_url") +linux_aarch64_hash=$(nix-hash --type sha256 --to-sri "$linux_aarch64_hash_base32") + +echo "Prefetching x86_64-darwin from $darwin_x86_64_url..." +darwin_x86_64_hash_base32=$(nix-prefetch-url "$darwin_x86_64_url") +darwin_x86_64_hash=$(nix-hash --type sha256 --to-sri "$darwin_x86_64_hash_base32") + +echo "Prefetching aarch64-darwin from $darwin_aarch64_url..." +darwin_aarch64_hash_base32=$(nix-prefetch-url "$darwin_aarch64_url") +darwin_aarch64_hash=$(nix-hash --type sha256 --to-sri "$darwin_aarch64_hash_base32") + +# Extract VS Code version from metadata +vscodeVersion=$( + tar -Oxzf "$archive_path" "Antigravity/resources/app/product.json" \ + | jq -r '.version' +) +echo "VS Code version: $vscodeVersion" + +echo "Updating package.nix" +sed -i "s/version = \".*\"/version = \"$version\"/" "$PACKAGE_NIX" +sed -i "s/vscodeVersion = \".*\"/vscodeVersion = \"$vscodeVersion\"/" "$PACKAGE_NIX" + +echo "Updating sources.json" +jq -n \ + --arg linux_x86_64_url "$linux_x86_64_url" \ + --arg linux_x86_64_hash "$linux_x86_64_hash" \ + --arg linux_aarch64_url "$linux_aarch64_url" \ + --arg linux_aarch64_hash "$linux_aarch64_hash" \ + --arg darwin_x86_64_url "$darwin_x86_64_url" \ + --arg darwin_x86_64_hash "$darwin_x86_64_hash" \ + --arg darwin_aarch64_url "$darwin_aarch64_url" \ + --arg darwin_aarch64_hash "$darwin_aarch64_hash" \ + '{ + "x86_64-linux": { url: $linux_x86_64_url, hash: $linux_x86_64_hash }, + "aarch64-linux": { url: $linux_aarch64_url, hash: $linux_aarch64_hash }, + "x86_64-darwin": { url: $darwin_x86_64_url, hash: $darwin_x86_64_hash }, + "aarch64-darwin": { url: $darwin_aarch64_url, hash: $darwin_aarch64_hash } + }' > "$SOURCES_JSON" + +echo "Update complete" diff --git a/pkgs/by-name/ar/archi/package.nix b/pkgs/by-name/ar/archi/package.nix deleted file mode 100644 index fc055a1c11b7..000000000000 --- a/pkgs/by-name/ar/archi/package.nix +++ /dev/null @@ -1,126 +0,0 @@ -{ - lib, - stdenv, - fetchurl, - autoPatchelfHook, - makeWrapper, - jdk, - libsecret, - glib, - webkitgtk_4_1, - wrapGAppsHook3, - _7zz, - nixosTests, - copyDesktopItems, - makeDesktopItem, -}: - -stdenv.mkDerivation (finalAttrs: { - pname = "Archi"; - version = "5.7.0"; - - src = - { - "x86_64-linux" = fetchurl { - url = "https://github.com/archimatetool/archi.io/releases/download/57/Archi-Linux64-${finalAttrs.version}.tgz"; - hash = "sha256-MIUlWt3GP/1oQAeq4W2xnhG63a2zhGldgyoyZ9lNOiI="; - }; - "x86_64-darwin" = fetchurl { - url = "https://github.com/archimatetool/archi.io/releases/download/57/Archi-Mac-${finalAttrs.version}.dmg"; - hash = "sha256-wIlhJ6XmhL5rMb5zwHJYwamCwV13PK53wi9uEXIga5I="; - }; - "aarch64-darwin" = fetchurl { - url = "https://github.com/archimatetool/archi.io/releases/download/57/Archi-Mac-Silicon-${finalAttrs.version}.dmg"; - hash = "sha256-2/w4+aKfjfTGLjjl/nOouFtnv7/kjmfezkrmSa4ablc="; - }; - } - .${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}"); - - buildInputs = [ - libsecret - ]; - - nativeBuildInputs = [ - makeWrapper - wrapGAppsHook3 - ] - ++ lib.optionals stdenv.hostPlatform.isDarwin [ - _7zz - ] - ++ lib.optionals stdenv.hostPlatform.isLinux [ - autoPatchelfHook - copyDesktopItems - ]; - - sourceRoot = if stdenv.hostPlatform.isDarwin then "." else null; - - installPhase = - if stdenv.hostPlatform.system == "x86_64-linux" then - '' - runHook preInstall - - mkdir -p $out/bin $out/libexec - for f in configuration features p2 plugins Archi.ini; do - cp -r $f $out/libexec - done - - install -D -m755 Archi $out/libexec/Archi - makeWrapper $out/libexec/Archi $out/bin/Archi \ - --prefix LD_LIBRARY_PATH : ${ - lib.makeLibraryPath [ - glib - webkitgtk_4_1 - ] - } \ - --set WEBKIT_DISABLE_DMABUF_RENDERER 1 \ - --prefix PATH : ${jdk}/bin - - install -Dm444 icon.xpm $out/share/icons/hicolor/256x256/apps/archi.xpm - - runHook postInstall - '' - else - '' - runHook preInstall - - mkdir -p "$out/Applications" - mv Archi.app "$out/Applications/" - - runHook postInstall - ''; - - desktopItems = [ - (makeDesktopItem { - name = "archi"; - desktopName = "Archi"; - exec = "Archi"; - type = "Application"; - comment = finalAttrs.meta.description; - icon = "archi"; - categories = [ - "Development" - ]; - }) - ]; - - passthru.updateScript = ./update.sh; - - passthru.tests = { inherit (nixosTests) archi; }; - - meta = { - description = "ArchiMate modelling toolkit"; - longDescription = '' - Archi is an open source modelling toolkit to create ArchiMate - models and sketches. - ''; - homepage = "https://www.archimatetool.com/"; - sourceProvenance = [ lib.sourceTypes.binaryBytecode ]; - license = lib.licenses.mit; - platforms = lib.platforms.linux ++ lib.platforms.darwin; - maintainers = with lib.maintainers; [ - earldouglas - paumr - ]; - mainProgram = "Archi"; - }; -}) diff --git a/pkgs/by-name/ar/archi/update.sh b/pkgs/by-name/ar/archi/update.sh deleted file mode 100755 index d405a188d3d0..000000000000 --- a/pkgs/by-name/ar/archi/update.sh +++ /dev/null @@ -1,25 +0,0 @@ -#!/usr/bin/env nix-shell -#!nix-shell -i bash -p curl jq coreutils common-updater-scripts - -latestVersion=$(curl "https://api.github.com/repos/archimatetool/archi/tags" | jq -r '.[0].name' | tail -c +9) -currentVersion=$(nix-instantiate --eval -E "with import ./. {}; archi.version or (lib.getVersion archi)" | tr -d '"') - -echo "latest version: $latestVersion" -echo "current version: $currentVersion" - -if [[ "$latestVersion" == "$currentVersion" ]]; then - echo "package is up-to-date" - exit 0 -fi - -for i in \ - "aarch64-darwin Archi-Mac-Silicon-$latestVersion.dmg" \ - "x86_64-darwin Archi-Mac-$latestVersion.dmg" \ - "x86_64-linux Archi-Linux64-$latestVersion.tgz" -do - set -- $i - prefetch=$(nix-prefetch-url https://www.archimatetool.com/downloads/archi/$latestVersion/$2) - hash=$(nix-hash --type sha256 --to-sri $prefetch) - - update-source-version archi $latestVersion $hash --system=$1 --ignore-same-version -done diff --git a/pkgs/by-name/au/authentik/package.nix b/pkgs/by-name/au/authentik/package.nix index f03d6b67f963..1020b0073678 100644 --- a/pkgs/by-name/au/authentik/package.nix +++ b/pkgs/by-name/au/authentik/package.nix @@ -20,7 +20,7 @@ let src = fetchFromGitHub { owner = "goauthentik"; repo = "authentik"; - rev = "version/${version}"; + tag = "version/${version}"; hash = "sha256-HowB6DTGCqz770fKYbnE+rQ11XRV0WSNkLD+HSWZwz8="; }; diff --git a/pkgs/by-name/au/autobrr/package.nix b/pkgs/by-name/au/autobrr/package.nix index c407155b262e..b2561d8a2978 100644 --- a/pkgs/by-name/au/autobrr/package.nix +++ b/pkgs/by-name/au/autobrr/package.nix @@ -13,12 +13,12 @@ let pname = "autobrr"; - version = "1.68.0"; + version = "1.69.0"; src = fetchFromGitHub { owner = "autobrr"; repo = "autobrr"; tag = "v${version}"; - hash = "sha256-BURejp9ncaSfUw7dq80rFECjWwNSGcRxOTHRBXon67k="; + hash = "sha256-16C160Wg7pm3BoJyyC5tuHdp4H1BDO7GfnA5u0HJ8YM="; }; autobrr-web = stdenvNoCC.mkDerivation { @@ -41,7 +41,7 @@ let sourceRoot ; fetcherVersion = 1; - hash = "sha256-59CNJq0D5TJBL9zccBOjZif+xbNibWDiAQq51BqqQhg="; + hash = "sha256-LOY8fLGsX966MyH4w+pa9tm/5HS6LnGwd51cj8TG6Mk="; }; postBuild = '' @@ -61,7 +61,7 @@ buildGoModule rec { src ; - vendorHash = "sha256-6K//pt5xg1wEHAVe+vP7wicWQ8L/ty3f1PkZhBm8mCE="; + vendorHash = "sha256-7gmF3yQFRqN7Oro/f+jhmxCUU9CltobY6EAoskCZISQ="; preBuild = '' cp -r ${autobrr-web}/* web/dist diff --git a/pkgs/by-name/aw/aws-iam-authenticator/package.nix b/pkgs/by-name/aw/aws-iam-authenticator/package.nix index 5f9407169167..03954dad58e3 100644 --- a/pkgs/by-name/aw/aws-iam-authenticator/package.nix +++ b/pkgs/by-name/aw/aws-iam-authenticator/package.nix @@ -6,16 +6,16 @@ buildGoModule rec { pname = "aws-iam-authenticator"; - version = "0.7.8"; + version = "0.7.9"; src = fetchFromGitHub { owner = "kubernetes-sigs"; repo = "aws-iam-authenticator"; tag = "v${version}"; - hash = "sha256-ahqHn9Pi07rpq8h476rTABkB5nHbnWLIhtQUH89YJ5Q="; + hash = "sha256-+c9LjWXNK2XtvhpQK3hzuVQVHQxSEDgh994Iys69x9U="; }; - vendorHash = "sha256-mNTyT1uAPZskZIyLxePPjj4bsxYwu+nDreeWCrZyJF8="; + vendorHash = "sha256-gTNrHvilSYqKAO164VgbIzwVdZt2nS7Xmh6DOU7QEZc="; ldflags = let diff --git a/pkgs/by-name/aw/aws-vault/package.nix b/pkgs/by-name/aw/aws-vault/package.nix index a7851f66df81..fe4346a64ac5 100644 --- a/pkgs/by-name/aw/aws-vault/package.nix +++ b/pkgs/by-name/aw/aws-vault/package.nix @@ -10,17 +10,17 @@ }: buildGoModule rec { pname = "aws-vault"; - version = "7.7.9"; + version = "7.7.10"; src = fetchFromGitHub { owner = "ByteNess"; repo = "aws-vault"; rev = "v${version}"; - hash = "sha256-+3hd3nSEm11GrxI0d7ie7q3aaXi/omkQrbClHUdi3Ws="; + hash = "sha256-PB1mKed1OD6VXzPRTtLIrgsSgGl+OTqfll6FvT1k7rI="; }; proxyVendor = true; - vendorHash = "sha256-300nYa+aatG1p0AxaopbAGyzzmlpNVZmY3JPcYnMKRo="; + vendorHash = "sha256-Dp77XCq+D83sRN4l17X7aQRlNgAw4PXe45dj9dbozds="; nativeBuildInputs = [ installShellFiles diff --git a/pkgs/by-name/aw/aws-workspaces/package.nix b/pkgs/by-name/aw/aws-workspaces/package.nix index 3362e90367a0..dcffb80555a0 100644 --- a/pkgs/by-name/aw/aws-workspaces/package.nix +++ b/pkgs/by-name/aw/aws-workspaces/package.nix @@ -4,7 +4,7 @@ writeShellApplication, buildFHSEnv, webkitgtk_4_1, - ffmpeg, + ffmpeg-full, gtk3, pango, atk, @@ -49,7 +49,7 @@ buildFHSEnv { custom_lsb_release webkitgtk_4_1 gtk3 - ffmpeg + ffmpeg-full pango atk cairo diff --git a/pkgs/by-name/az/azure-cli/extensions-manual.nix b/pkgs/by-name/az/azure-cli/extensions-manual.nix index ebfb1c49a26e..d4c26f40253a 100644 --- a/pkgs/by-name/az/azure-cli/extensions-manual.nix +++ b/pkgs/by-name/az/azure-cli/extensions-manual.nix @@ -14,6 +14,59 @@ }: { + acrcssc = mkAzExtension { + pname = "acrcssc"; + version = "1.0.0b5"; + url = "https://azcliprod.blob.core.windows.net/cli-extensions/acrcssc-1.0.0b5-py3-none-any.whl"; + hash = "sha256-Z3wi+/3UK+TUKHE7MCSP/Es8ViGVTrlcafojw2YFRBs="; + description = "Microsoft Azure Container Registry Container Secure Supply Chain (CSSC) Extension"; + propagatedBuildInputs = with python3Packages; [ + croniter + oras + ]; + meta.maintainers = with lib.maintainers; [ techknowlogick ]; + }; + + aksarc = mkAzExtension { + pname = "aksarc"; + version = "1.5.62"; + url = "https://hybridaksstorage.z13.web.core.windows.net/HybridAKS/CLI/aksarc-1.5.62-py3-none-any.whl"; + hash = "sha256-PCy4SUbB4Vlj+fIwhufGwMJrrRehQr/W+QxAphTPnEk="; + description = "Microsoft Azure Command-Line Tools HybridContainerService Extension"; + propagatedBuildInputs = with python3Packages; [ + kubernetes + paramiko + ]; + meta.maintainers = with lib.maintainers; [ techknowlogick ]; + }; + + alias = mkAzExtension rec { + pname = "alias"; + version = "0.5.2"; + url = "https://azcliprod.blob.core.windows.net/cli-extensions/alias-${version}-py2.py3-none-any.whl"; + hash = "sha256-BfgtdQJueA0nvTShvlf07A9CVQDYq07n6S/uB7lE2jM="; + description = "Support for command aliases"; + propagatedBuildInputs = with python3Packages; [ + jinja2 + ]; + meta.maintainers = with lib.maintainers; [ techknowlogick ]; + }; + + aosm = mkAzExtension rec { + pname = "aosm"; + version = "2.0.0b2"; + url = "https://azcliprod.blob.core.windows.net/cli-extensions/aosm-${version}-py2.py3-none-any.whl"; + hash = "sha256-nK752/alBu0JYax8B+sp6oByPISqYGIgL6KFX5AIJmk="; + description = "Microsoft Azure Command-Line Tools Aosm Extension"; + propagatedBuildInputs = with python3Packages; [ + genson + jinja2 + oras + ruamel-yaml + ]; + meta.maintainers = with lib.maintainers; [ techknowlogick ]; + }; + application-insights = mkAzExtension rec { pname = "application-insights"; version = "2.0.0b1"; @@ -24,6 +77,51 @@ meta.maintainers = with lib.maintainers; [ andreasvoss ]; }; + arcappliance = mkAzExtension { + pname = "arcappliance"; + version = "1.6.0"; + url = "https://arcplatformcliextprod.z13.web.core.windows.net/arcappliance-1.6.0-py2.py3-none-any.whl"; + hash = "sha256-1VTKp4R6ohI4C9QsZgAabJJMnkTycEQF7DDshw/7Qkw="; + description = "Microsoft Azure Command-Line Tools Arcappliance Extension"; + propagatedBuildInputs = with python3Packages; [ + jsonschema + kubernetes + ]; + meta.maintainers = with lib.maintainers; [ techknowlogick ]; + }; + + arcdata = mkAzExtension { + pname = "arcdata"; + version = "1.5.25"; + url = "https://azurearcdatacli.z13.web.core.windows.net/arcdata-1.5.25-py2.py3-none-any.whl"; + hash = "sha256-/ejgjd/O37GtS6/+gzsscImoLllaDYCl2LS8m+pulTw="; + description = "Tools for managing ArcData"; + propagatedBuildInputs = with python3Packages; [ + jinja2 + jsonpatch + jsonpath-ng + jsonschema + kubernetes + ndjson + pem + pydash + regex + ]; + meta.maintainers = with lib.maintainers; [ techknowlogick ]; + }; + + attestation = mkAzExtension { + pname = "attestation"; + version = "1.0.0"; + url = "https://azcliprod.blob.core.windows.net/cli-extensions/attestation-1.0.0-py3-none-any.whl"; + hash = "sha256-5YJ3wpIhTjsKHmbeXFI0De3yX1x8NWRgsgJZ1frO70Y="; + description = "Microsoft Azure Command-Line Tools AttestationManagementClient Extension"; + propagatedBuildInputs = with python3Packages; [ + pyjwt + ]; + meta.maintainers = with lib.maintainers; [ techknowlogick ]; + }; + azure-devops = mkAzExtension rec { pname = "azure-devops"; version = "1.0.2"; @@ -61,6 +159,18 @@ meta.maintainers = with lib.maintainers; [ mikut ]; }; + cloud-service = mkAzExtension { + pname = "cloud-service"; + version = "1.0.1"; + url = "https://azcliprod.blob.core.windows.net/cli-extensions/cloud_service-1.0.1-py3-none-any.whl"; + hash = "sha256-9rLYCn6rO6vTGFdBtGfgHQwceKbtf/t48DG4dQBzc+Q="; + description = "Microsoft Azure Command-Line Tools ComputeManagementClient Extension"; + propagatedBuildInputs = with python3Packages; [ + azure-mgmt-compute + ]; + meta.maintainers = with lib.maintainers; [ techknowlogick ]; + }; + confcom = mkAzExtension rec { pname = "confcom"; version = "1.2.6"; @@ -78,7 +188,26 @@ postInstall = '' chmod +x $out/${python3.sitePackages}/azext_confcom/bin/genpolicy-linux ''; - meta.maintainers = with lib.maintainers; [ miampf ]; + meta = { + maintainers = with lib.maintainers; [ miampf ]; + platforms = lib.platforms.linux; # confcom is linux only + }; + }; + + connectedk8s = mkAzExtension rec { + pname = "connectedk8s"; + version = "1.9.3"; + url = "https://azcliprod.blob.core.windows.net/cli-extensions/connectedk8s-${version}-py2.py3-none-any.whl"; + hash = "sha256-4OuN92PXzIWgOWhWu/S4ofQ4AbITH6XSG1soUOljY+8="; + description = "Microsoft Azure Command-Line Tools Connectedk8s Extension"; + propagatedBuildInputs = with python3Packages; [ + azure-graphrbac + azure-mgmt-hybridcompute + kubernetes + pycryptodome + pyyaml + ]; + meta.maintainers = with lib.maintainers; [ techknowlogick ]; }; containerapp = mkAzExtension rec { @@ -108,6 +237,31 @@ meta.maintainers = [ ]; }; + interactive = mkAzExtension { + pname = "interactive"; + version = "1.0.0b1"; + url = "https://azcliprod.blob.core.windows.net/cli-extensions/interactive-1.0.0b1-py2.py3-none-any.whl"; + hash = "sha256-COvHDhvsigEEMYlMQ2hHFKzjX7WwdkwfT9id6z+Sj7w="; + description = "Microsoft Azure Command-Line Interactive Shell"; + propagatedBuildInputs = with python3Packages; [ + prompt-toolkit + ]; + meta.maintainers = with lib.maintainers; [ techknowlogick ]; + }; + + k8s-configuration = mkAzExtension rec { + pname = "k8s-configuration"; + version = "2.2.0"; + url = "https://azcliprod.blob.core.windows.net/cli-extensions/k8s_configuration-${version}-py3-none-any.whl"; + hash = "sha256-aRdNy3aH+xfLNK7asYqok9aw6RedEcAQqOUKxtIwRwg="; + description = "Microsoft Azure Command-Line Tools K8s-configuration Extension"; + propagatedBuildInputs = with python3Packages; [ + pycryptodome + pyyaml + ]; + meta.maintainers = with lib.maintainers; [ techknowlogick ]; + }; + rdbms-connect = mkAzExtension rec { pname = "rdbms-connect"; version = "1.0.7"; @@ -125,6 +279,18 @@ meta.maintainers = with lib.maintainers; [ obreitwi ]; }; + serial-console = mkAzExtension { + pname = "serial-console"; + version = "1.0.0b2"; + url = "https://azcliprod.blob.core.windows.net/cli-extensions/serial_console-1.0.0b2-py3-none-any.whl"; + hash = "sha256-Weu4BEdq/0dvi07682UfYL8FzAd3cKZUGVJLTzJ27JM="; + description = "Microsoft Azure Command-Line Tools for Serial Console Extension"; + propagatedBuildInputs = with python3Packages; [ + websocket-client + ]; + meta.maintainers = with lib.maintainers; [ techknowlogick ]; + }; + ssh = mkAzExtension rec { pname = "ssh"; version = "2.0.6"; @@ -160,6 +326,18 @@ propagatedBuildInputs = with python3Packages; [ opencensus ]; meta.maintainers = [ ]; }; + + webpubsub = mkAzExtension { + pname = "webpubsub"; + version = "1.7.2"; + url = "https://azcliprod.blob.core.windows.net/cli-extensions/webpubsub-1.7.2-py3-none-any.whl"; + hash = "sha256-axtA9vXM1WmzXTj7rbA6Tlrx7kpx2Z6c3NYtwUiv2UI="; + description = "Microsoft Azure Command-Line Tools Webpubsub Extension"; + propagatedBuildInputs = with python3Packages; [ + websockets + ]; + meta.maintainers = with lib.maintainers; [ techknowlogick ]; + }; } // lib.optionalAttrs config.allowAliases { # Removed extensions diff --git a/pkgs/by-name/be/beszel/package.nix b/pkgs/by-name/be/beszel/package.nix index 0f032cd94d83..b22585cf571f 100644 --- a/pkgs/by-name/be/beszel/package.nix +++ b/pkgs/by-name/be/beszel/package.nix @@ -8,13 +8,13 @@ }: buildGoModule rec { pname = "beszel"; - version = "0.14.1"; + version = "0.15.4"; src = fetchFromGitHub { owner = "henrygd"; repo = "beszel"; tag = "v${version}"; - hash = "sha256-IQ39OtYG2VDyHIPFRR0VNK56czGlJly66Bwb/NYIBxY="; + hash = "sha256-sIABMb8geSaVYdpaWmtlDgfEVPtX9wb5gZOK6+apGAU="; }; webui = buildNpmPackage { @@ -48,10 +48,10 @@ buildGoModule rec { sourceRoot = "${src.name}/internal/site"; - npmDepsHash = "sha256-Wtq/pesnovOyAnFta/wI+j8rml8XWORvOLz/Q82sy8g="; + npmDepsHash = "sha256-87Kf0i1idmg4jK31SZBoz/p4/oxqB0aGhEvYzA9GRnQ="; }; - vendorHash = "sha256-IfwgL4Ms5Uho1l0yGCyumbr1N/SN+j5HaFl4hACkTsQ="; + vendorHash = "sha256-MP06kn8iFpz9AOv3LQqSGGSe4c7JvP/Kp4Nmsuga99o="; preBuild = '' mkdir -p internal/site/dist diff --git a/pkgs/by-name/bi/biome/package.nix b/pkgs/by-name/bi/biome/package.nix index fcd39e293769..e3b318975f89 100644 --- a/pkgs/by-name/bi/biome/package.nix +++ b/pkgs/by-name/bi/biome/package.nix @@ -10,16 +10,16 @@ }: rustPlatform.buildRustPackage (finalAttrs: { pname = "biome"; - version = "2.3.5"; + version = "2.3.6"; src = fetchFromGitHub { owner = "biomejs"; repo = "biome"; rev = "@biomejs/biome@${finalAttrs.version}"; - hash = "sha256-5zOWYDhabTlhYn+hwFFH1JCMpcFbIFwBMMpnjDT6nls="; + hash = "sha256-wi0dkD9AlMYyGS/y96FMCOJKjRuo0b4pHpva+R1W3Yg="; }; - cargoHash = "sha256-TXqV3gcQ294VGpJl61qeEzqCOwqwiRHL9VdwjM+Sreo="; + cargoHash = "sha256-GCwJdO43Q5cRw3w1omuIpSxvINN51dJez7Jq4/FQF+A="; nativeBuildInputs = [ pkg-config ]; diff --git a/pkgs/by-name/br/brave/package.nix b/pkgs/by-name/br/brave/package.nix index 6729d18efb7b..4774de09fa63 100644 --- a/pkgs/by-name/br/brave/package.nix +++ b/pkgs/by-name/br/brave/package.nix @@ -3,24 +3,24 @@ let pname = "brave"; - version = "1.84.139"; + version = "1.84.141"; allArchives = { aarch64-linux = { url = "https://github.com/brave/brave-browser/releases/download/v${version}/brave-browser_${version}_arm64.deb"; - hash = "sha256-/RChQFWZu3K43IIUfxtBVGy+bap+CCpUzHx7wuO+ae4="; + hash = "sha256-hB+sy+jeI+c2EE6nty2awmKmNRCldQ98JtjNh9eXVxQ="; }; x86_64-linux = { url = "https://github.com/brave/brave-browser/releases/download/v${version}/brave-browser_${version}_amd64.deb"; - hash = "sha256-1DwoQ+ttN0Yd65cqVb0xdSQ2Qx/RS788xaB7RWBM7PY="; + hash = "sha256-Pp/jZmu6vTMJctVYGUeRZYhzWc2LS9jC4Niz9cPvkoE="; }; aarch64-darwin = { url = "https://github.com/brave/brave-browser/releases/download/v${version}/brave-v${version}-darwin-arm64.zip"; - hash = "sha256-Ygf7SnK0sFAOZ6KruV0JPJ+62PbYHWB/E7g1f5+wd1I="; + hash = "sha256-Y/r8rFog2lyqBSBgqI1dIOsHZHTF2W8YckCJPFJ5mzc="; }; x86_64-darwin = { url = "https://github.com/brave/brave-browser/releases/download/v${version}/brave-v${version}-darwin-x64.zip"; - hash = "sha256-t94eOizpltZAjLdHaushZzNIWRqyO58ne1qXr3p2wes="; + hash = "sha256-GDr1U40jT5nJscmqotluA/Wln/v9UnPVJoy2ViWAy+A="; }; }; diff --git a/pkgs/by-name/bu/buildbox/package.nix b/pkgs/by-name/bu/buildbox/package.nix index e848f28b9170..ceb8090edc37 100644 --- a/pkgs/by-name/bu/buildbox/package.nix +++ b/pkgs/by-name/bu/buildbox/package.nix @@ -18,6 +18,7 @@ libuuid, tomlplusplus, fuse3, + nix-update-script, }: stdenv.mkDerivation (finalAttrs: { pname = "buildbox"; @@ -56,6 +57,8 @@ stdenv.mkDerivation (finalAttrs: { wrapProgram $out/bin/buildbox-run --prefix PATH : ${lib.makeBinPath [ bubblewrap ]} ''; + passthru.updateScript = nix-update-script { }; + meta = { description = "Set of tools for remote worker build execution"; homepage = "https://gitlab.com/BuildGrid/buildbox/"; diff --git a/pkgs/by-name/bu/burpsuite/package.nix b/pkgs/by-name/bu/burpsuite/package.nix index f193aeca2925..66909bb23fcc 100644 --- a/pkgs/by-name/bu/burpsuite/package.nix +++ b/pkgs/by-name/bu/burpsuite/package.nix @@ -9,20 +9,20 @@ }: let - version = "2025.11"; + version = "2025.11.1"; product = if proEdition then { productName = "pro"; productDesktop = "Burp Suite Professional Edition"; - hash = "sha256-/LudYYETnUT7Ynqw3HO822hdMUoz3mrTPae7ZO8SMyE="; + hash = "sha256-vtei5zzfbsfO3W6IIs15y4Ef+mLK9BlaNl+4wT8wEmw="; } else { productName = "community"; productDesktop = "Burp Suite Community Edition"; - hash = "sha256-x4q5QkBIBFqG8Bjx5NuschNB4dX/8t2vCHNVRDa0kQQ="; + hash = "sha256-WzURPRMr8EgBMqxp9w10gHDEyqAVcejUif0TKdxDZr4="; }; src = fetchurl { diff --git a/pkgs/by-name/ca/cargo-cyclonedx/package.nix b/pkgs/by-name/ca/cargo-cyclonedx/package.nix index d33e3b8bb700..34f8ff041331 100644 --- a/pkgs/by-name/ca/cargo-cyclonedx/package.nix +++ b/pkgs/by-name/ca/cargo-cyclonedx/package.nix @@ -21,6 +21,10 @@ rustPlatform.buildRustPackage rec { cargoHash = "sha256-deczbMPeJsnmXbVB60stKhJJZRIIwjY5vExS3x3b6aU="; + # Test suite is broken since rustc 1.90, see: + # https://github.com/CycloneDX/cyclonedx-rust-cargo/issues/807 + doCheck = false; + nativeBuildInputs = [ pkg-config ]; diff --git a/pkgs/by-name/ca/catppuccin-kvantum/package.nix b/pkgs/by-name/ca/catppuccin-kvantum/package.nix index 05c7e844a55e..4d4c53c99833 100644 --- a/pkgs/by-name/ca/catppuccin-kvantum/package.nix +++ b/pkgs/by-name/ca/catppuccin-kvantum/package.nix @@ -33,13 +33,13 @@ lib.checkListOfEnum "${pname}: theme accent" stdenvNoCC.mkDerivation { inherit pname; - version = "0-unstable-2025-08-18"; + version = "0-unstable-2025-11-15"; src = fetchFromGitHub { owner = "catppuccin"; repo = "Kvantum"; - rev = "c7cb144b041395e83e4f510a62526b7adfb79911"; - hash = "sha256-YNUkri+no+rNLTJHf6cPdy4AmQLzPiRK1Jbp2o8e1LE="; + rev = "1156e5437435282b47ac6856acd9d0feef1ed929"; + hash = "sha256-V5Upqkil9Q2MeEPtEAemirbJxnEyYcM3Z8jiyz//ccw="; }; installPhase = '' diff --git a/pkgs/by-name/ce/celluloid/package.nix b/pkgs/by-name/ce/celluloid/package.nix index 057e6ceb2c57..6d2cfc7b4274 100644 --- a/pkgs/by-name/ce/celluloid/package.nix +++ b/pkgs/by-name/ce/celluloid/package.nix @@ -10,7 +10,7 @@ libepoxy, libadwaita, meson, - mpv, + mpv-unwrapped, ninja, nix-update-script, pkg-config, @@ -47,7 +47,7 @@ stdenv.mkDerivation (finalAttrs: { libGL libadwaita libepoxy - mpv + mpv-unwrapped ]; postPatch = '' diff --git a/pkgs/by-name/ch/checkov/package.nix b/pkgs/by-name/ch/checkov/package.nix index 61197bf7fe21..aac2bec7744a 100644 --- a/pkgs/by-name/ch/checkov/package.nix +++ b/pkgs/by-name/ch/checkov/package.nix @@ -37,14 +37,14 @@ with py.pkgs; python3.pkgs.buildPythonApplication rec { pname = "checkov"; - version = "3.2.493"; + version = "3.2.494"; pyproject = true; src = fetchFromGitHub { owner = "bridgecrewio"; repo = "checkov"; tag = version; - hash = "sha256-T32VQp6aEWyqAzA4RelHQg1Su/05gAtMZfaidvLNqos="; + hash = "sha256-CkEEWufVZpIrPYoxnc6fI1W2K7aOfOWjfnHDz/1X/Mk="; }; pythonRelaxDeps = [ diff --git a/pkgs/by-name/cl/claude-code/package-lock.json b/pkgs/by-name/cl/claude-code/package-lock.json index c31275ddbf64..e27bf39f6eb1 100644 --- a/pkgs/by-name/cl/claude-code/package-lock.json +++ b/pkgs/by-name/cl/claude-code/package-lock.json @@ -1,12 +1,12 @@ { "name": "@anthropic-ai/claude-code", - "version": "2.0.44", + "version": "2.0.46", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@anthropic-ai/claude-code", - "version": "2.0.44", + "version": "2.0.46", "license": "SEE LICENSE IN README.md", "bin": { "claude": "cli.js" diff --git a/pkgs/by-name/cl/claude-code/package.nix b/pkgs/by-name/cl/claude-code/package.nix index e22f3cc4791e..971a3c8e9d0a 100644 --- a/pkgs/by-name/cl/claude-code/package.nix +++ b/pkgs/by-name/cl/claude-code/package.nix @@ -7,14 +7,14 @@ }: buildNpmPackage (finalAttrs: { pname = "claude-code"; - version = "2.0.44"; + version = "2.0.46"; src = fetchzip { url = "https://registry.npmjs.org/@anthropic-ai/claude-code/-/claude-code-${finalAttrs.version}.tgz"; - hash = "sha256-4MRaH/Dbm9z0xvnfRMdi8u39eeHaTMh6y7h5AtLYNXs="; + hash = "sha256-VwnR+bGSjuACdb+lTWbPnfG7HBagbWJ0Fe0pjPaQ/cM="; }; - npmDepsHash = "sha256-nI5xv1VJKcssGHO5IrFBHELREePiYFWAuE/mebIgp0Q="; + npmDepsHash = "sha256-VT6dta8IrsqrvKWlOcNamxuZaBj+TSJpzlSqw8S81iA="; postPatch = '' cp ${./package-lock.json} package-lock.json diff --git a/pkgs/by-name/cl/clight-gui/package.nix b/pkgs/by-name/cl/clight-gui/package.nix new file mode 100644 index 000000000000..981e6a796028 --- /dev/null +++ b/pkgs/by-name/cl/clight-gui/package.nix @@ -0,0 +1,45 @@ +{ + lib, + stdenv, + fetchFromGitHub, + cmake, + libsForQt5, +}: + +stdenv.mkDerivation (finalAttrs: { + pname = "clight-gui"; + version = "0-unstable-2023-02-21"; + + src = fetchFromGitHub { + owner = "nullobsi"; + repo = "clight-gui"; + rev = "29e7216bfcc68135350a695ce446134bcb0463a6"; + hash = "sha256-U4vaMwnVDZnYLc+K3/yD81Q1vyBL8uSrrhOHbjbox5U="; + }; + + postPatch = '' + substituteInPlace CMakeLists.txt \ + --replace-fail "cmake_minimum_required(VERSION 3.0)" \ + "cmake_minimum_required(VERSION 3.10)" + ''; + + buildInputs = with libsForQt5; [ + qtbase + qtcharts + ]; + nativeBuildInputs = [ + cmake + libsForQt5.wrapQtAppsHook + ]; + + sourceRoot = "${finalAttrs.src.name}/src"; + + meta = { + description = "Qt GUI for clight"; + homepage = "https://github.com/nullobsi/clight-gui"; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ nickhu ]; + mainProgram = "clight-gui"; + platforms = lib.platforms.linux; + }; +}) diff --git a/pkgs/applications/misc/clight/default.nix b/pkgs/by-name/cl/clight/package.nix similarity index 80% rename from pkgs/applications/misc/clight/default.nix rename to pkgs/by-name/cl/clight/package.nix index 9211941c5ebf..12c3f814fd80 100644 --- a/pkgs/applications/misc/clight/default.nix +++ b/pkgs/by-name/cl/clight/package.nix @@ -18,15 +18,15 @@ upower, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "clight"; version = "4.11"; src = fetchFromGitHub { owner = "FedeDP"; repo = "Clight"; - rev = version; - sha256 = "sha256-Fu38HRP83Yn2jsq9xnCWOXNlV/0hJKD1/cOOp3EV45Q="; + tag = finalAttrs.version; + hash = "sha256-Fu38HRP83Yn2jsq9xnCWOXNlV/0hJKD1/cOOp3EV45Q="; }; nativeBuildInputs = [ @@ -55,14 +55,14 @@ stdenv.mkDerivation rec { "-DZSH_COMPLETIONS_DIR=${placeholder "out"}/share/zsh/site-functions" ]; - meta = with lib; { + meta = { description = "C daemon that turns your webcam into a light sensor"; homepage = "https://github.com/FedeDP/Clight"; - platforms = platforms.linux; - license = licenses.gpl3; - maintainers = with maintainers; [ + platforms = lib.platforms.linux; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ eadwu ]; mainProgram = "clight"; }; -} +}) diff --git a/pkgs/applications/misc/clight/clightd.nix b/pkgs/by-name/cl/clightd/package.nix similarity index 92% rename from pkgs/applications/misc/clight/clightd.nix rename to pkgs/by-name/cl/clightd/package.nix index 53678a29813e..0d4881e449f0 100644 --- a/pkgs/applications/misc/clight/clightd.nix +++ b/pkgs/by-name/cl/clightd/package.nix @@ -28,14 +28,14 @@ enableYoctolight ? true, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation (finalAttrs: { pname = "clightd"; version = "5.9"; src = fetchFromGitHub { owner = "FedeDP"; repo = "Clightd"; - rev = version; + tag = finalAttrs.version; hash = "sha256-LOhBBd7QL5kH4TzMFgrh70C37WsFdsiKArP+tIEiPWo="; }; @@ -98,14 +98,14 @@ stdenv.mkDerivation rec { ln -svT $out/libexec/clightd $out/bin/clightd ''; - meta = with lib; { + meta = { description = "Linux bus interface that changes screen brightness/temperature"; mainProgram = "clightd"; homepage = "https://github.com/FedeDP/Clightd"; - platforms = platforms.linux; - license = licenses.gpl3; - maintainers = with maintainers; [ + platforms = lib.platforms.linux; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ eadwu ]; }; -} +}) diff --git a/pkgs/by-name/co/cockpit/package.nix b/pkgs/by-name/co/cockpit/package.nix index 4744288b360e..54dc46b58035 100644 --- a/pkgs/by-name/co/cockpit/package.nix +++ b/pkgs/by-name/co/cockpit/package.nix @@ -44,13 +44,13 @@ stdenv.mkDerivation (finalAttrs: { pname = "cockpit"; - version = "350"; + version = "351"; src = fetchFromGitHub { owner = "cockpit-project"; repo = "cockpit"; tag = finalAttrs.version; - hash = "sha256-DOMX3msM5Ko7TDMRS+GcAf+gmyogjSExNEM9sjK0cCY="; + hash = "sha256-8f/mm53eE0L5fxNwgBkKeNvlBV2gPPvLI+U8c7QkKAI="; fetchSubmodules = true; }; diff --git a/pkgs/by-name/co/codebook/package.nix b/pkgs/by-name/co/codebook/package.nix index e3820349d782..455de0a48643 100644 --- a/pkgs/by-name/co/codebook/package.nix +++ b/pkgs/by-name/co/codebook/package.nix @@ -3,6 +3,7 @@ fetchFromGitHub, nix-update-script, rustPlatform, + versionCheckHook, }: rustPlatform.buildRustPackage (finalAttrs: { @@ -19,11 +20,20 @@ rustPlatform.buildRustPackage (finalAttrs: { buildAndTestSubdir = "crates/codebook-lsp"; cargoHash = "sha256-HAJglGtOy+OMZoB50Uz5vrf8IXqBKMMO/Hr9Lcry2+Q="; + CARGO_PROFILE_RELEASE_LTO = "fat"; + CARGO_PROFILE_RELEASE_CODEGEN_UNITS = "1"; + # Integration tests require internet access for dictionaries doCheck = false; passthru.updateScript = nix-update-script { }; + nativeInstallCheckInputs = [ + versionCheckHook + ]; + doInstallCheck = true; + versionCheckProgramArg = "--version"; + meta = { description = "Unholy spellchecker for code"; homepage = "https://github.com/blopker/codebook"; diff --git a/pkgs/by-name/co/conventional-changelog-cli/package.nix b/pkgs/by-name/co/conventional-changelog-cli/package.nix index f4620912cbb5..e00c38f09ca1 100644 --- a/pkgs/by-name/co/conventional-changelog-cli/package.nix +++ b/pkgs/by-name/co/conventional-changelog-cli/package.nix @@ -4,6 +4,8 @@ fetchFromGitHub, nodejs, pnpm, + makeBinaryWrapper, + versionCheckHook, nix-update-script, }: @@ -27,6 +29,7 @@ stdenv.mkDerivation (finalAttrs: { nativeBuildInputs = [ nodejs pnpm.configHook + makeBinaryWrapper ]; buildPhase = '' @@ -43,9 +46,10 @@ stdenv.mkDerivation (finalAttrs: { mkdir -p $out/lib/node_modules/conventional-changelog/ mkdir $out/bin mv * $out/lib/node_modules/conventional-changelog/ - chmod +x $out/lib/node_modules/conventional-changelog/packages/conventional-changelog/dist/cli/index.js - ln -s $out/lib/node_modules/conventional-changelog/packages/conventional-changelog/dist/cli/index.js $out/bin/conventional-changelog - patchShebangs $out/bin/conventional-changelog + + makeBinaryWrapper ${lib.getExe nodejs} $out/bin/conventional-changelog \ + --add-flags "$out/lib/node_modules/conventional-changelog/packages/conventional-changelog/dist/cli/index.js" \ + --set NODE_PATH "$out/lib/node_modules/conventional-changelog/node_modules" runHook postInstall ''; @@ -55,6 +59,12 @@ stdenv.mkDerivation (finalAttrs: { --replace-warn '"exports": "./src/index.ts"' '"exports": "./dist/index.js"' ''; + nativeInstallCheckInputs = [ + versionCheckHook + ]; + versionCheckProgramArg = "--version"; + doInstallCheck = true; + passthru.updateScript = nix-update-script { extraArgs = [ "--use-github-releases" @@ -64,7 +74,7 @@ stdenv.mkDerivation (finalAttrs: { }; meta = { - changelog = "https://github.com/conventional-changelog/conventional-changelog/releases/tag/conventional-changelog-v${finalAttrs.version}"; + changelog = "https://github.com/conventional-changelog/conventional-changelog/releases/tag/${finalAttrs.src.tag}"; description = "Generate a CHANGELOG from git metadata"; homepage = "https://github.com/conventional-changelog/conventional-changelog"; license = lib.licenses.isc; diff --git a/pkgs/by-name/co/copilot-language-server/package.nix b/pkgs/by-name/co/copilot-language-server/package.nix index cfb62740f51b..fb3c53cf8084 100644 --- a/pkgs/by-name/co/copilot-language-server/package.nix +++ b/pkgs/by-name/co/copilot-language-server/package.nix @@ -10,11 +10,11 @@ }: stdenvNoCC.mkDerivation (finalAttrs: { pname = "copilot-language-server"; - version = "1.394.0"; + version = "1.397.0"; src = fetchzip { url = "https://github.com/github/copilot-language-server-release/releases/download/${finalAttrs.version}/copilot-language-server-js-${finalAttrs.version}.zip"; - hash = "sha256-HHm+J+XFmOkDJOffzpRhyPREGBusjgtcUt/E29roSNE="; + hash = "sha256-LeQP2Ula7gPqis7DeaQGDAN2wtQT9ryZhIDYUBEPreo="; stripRoot = false; }; diff --git a/pkgs/by-name/co/cowsay/package.nix b/pkgs/by-name/co/cowsay/package.nix index aad6eefb68e8..be3db6982fe5 100644 --- a/pkgs/by-name/co/cowsay/package.nix +++ b/pkgs/by-name/co/cowsay/package.nix @@ -33,6 +33,17 @@ stdenv.mkDerivation (finalAttrs: { postInstall = '' wrapProgram $out/bin/cowsay \ --suffix COWPATH : $out/share/cowsay/cows + + # Replace the cowthink symlink with a Perl wrapper that sets $0 correctly + # This is necessary because exec -a doesn't work for Perl scripts + rm $out/bin/cowthink + cat > $out/bin/cowthink << EOF + #!/usr/bin/env perl + \$0 = "cowthink"; + \$ENV{COWPATH} = "\$ENV{COWPATH}" . (\$ENV{COWPATH} ? ":" : "") . "$out/share/cowsay/cows"; + do "$out/bin/.cowsay-wrapped"; + EOF + chmod +x $out/bin/cowthink ''; passthru = { diff --git a/pkgs/by-name/cr/crush/package.nix b/pkgs/by-name/cr/crush/package.nix index 61bf85bc841f..e2e9daddb5e9 100644 --- a/pkgs/by-name/cr/crush/package.nix +++ b/pkgs/by-name/cr/crush/package.nix @@ -9,16 +9,16 @@ buildGoModule (finalAttrs: { pname = "crush"; - version = "0.13.5"; + version = "0.18.3"; src = fetchFromGitHub { owner = "charmbracelet"; repo = "crush"; tag = "v${finalAttrs.version}"; - hash = "sha256-MKX26HptDwlwWvmP+9FDlFJzly5xKA0mNVsbeHi1zhg="; + hash = "sha256-BTD+03LG+Y7pMw9P2nB52qtLK0QSQEurbTr+2vT0QmM="; }; - vendorHash = "sha256-OiNmZKg+NN7Aoeao8L72Dvgz0moeaZGQ7KVJdvuWagY="; + vendorHash = "sha256-6/DvpfhW1Lk3SP7umOxeWBJhUtX1ay7pkG5Ys8M9xM4="; ldflags = [ "-s" diff --git a/pkgs/by-name/da/databricks-cli/package.nix b/pkgs/by-name/da/databricks-cli/package.nix index 7973ac33c3b3..38813b474450 100644 --- a/pkgs/by-name/da/databricks-cli/package.nix +++ b/pkgs/by-name/da/databricks-cli/package.nix @@ -10,13 +10,13 @@ buildGoModule (finalAttrs: { pname = "databricks-cli"; - version = "0.276.0"; + version = "0.278.0"; src = fetchFromGitHub { owner = "databricks"; repo = "cli"; rev = "v${finalAttrs.version}"; - hash = "sha256-iD8fB/sMHBGSL6pCEN3TPxlgcBd7+ckPXd7Gq3CLPEM="; + hash = "sha256-b7aO0fgSjbQLDt2YeXnZy0xq/2T6CGmsiXxE5CgnvfI="; }; # Otherwise these tests fail asserting that the version is 0.0.0-dev @@ -25,7 +25,7 @@ buildGoModule (finalAttrs: { --replace-fail "cli/0.0.0-dev" "cli/${finalAttrs.version}" ''; - vendorHash = "sha256-mFM5i1ec+eB4IhxoZipMgXK3IZm9KcSmifE2kJRV9BY="; + vendorHash = "sha256-qLIJP2YYCckxzCAYNiBcXNpfKVFQQTwy9ysKrsYKGvI="; excludedPackages = [ "bundle/internal" diff --git a/pkgs/by-name/db/dbeaver-bin/package.nix b/pkgs/by-name/db/dbeaver-bin/package.nix index 7d4a5137d335..b1c62bd24c49 100644 --- a/pkgs/by-name/db/dbeaver-bin/package.nix +++ b/pkgs/by-name/db/dbeaver-bin/package.nix @@ -18,7 +18,7 @@ stdenvNoCC.mkDerivation (finalAttrs: { pname = "dbeaver-bin"; - version = "25.2.4"; + version = "25.2.5"; src = let @@ -31,10 +31,10 @@ stdenvNoCC.mkDerivation (finalAttrs: { aarch64-darwin = "macos-aarch64.dmg"; }; hash = selectSystem { - x86_64-linux = "sha256-5mBk3HO5BqcydxDhancQ8YzfNjZ0bMAuNM9lf8fm4ks="; - aarch64-linux = "sha256-i9hQJ01G+Jy18bkYD9e6wAhufH87r/9qwxzzVd0K8LU="; - x86_64-darwin = "sha256-zSLLNOP+miG71/LCjNHanDbeRr986wwdb7x5q3gDUZs="; - aarch64-darwin = "sha256-njKjBXxv5tpaStiLHfL3Cs4FwtKBsLOCA4ASPggVhnY="; + x86_64-linux = "sha256-ADF7uFUZjzKaTQFAtqG0O81Yk8SvBh86SsyIOiSp1fY="; + aarch64-linux = "sha256-VNip5eplQ2vxi+eKHKGaBbMZ5QPS7GaoGdcZWr+abDM="; + x86_64-darwin = "sha256-Wu5rFiQBDR2AcJyj8ySWXR9P3GaClWzkqGRc3ZfOgIU="; + aarch64-darwin = "sha256-YhV70euhBuzpwPyb1CEtDsaAZqBDN1J/rw5oTOW4+ss="; }; in fetchurl { diff --git a/pkgs/by-name/dd/ddcutil/package.nix b/pkgs/by-name/dd/ddcutil/package.nix index 4a7dd9b47f33..0b67ce5e17f7 100644 --- a/pkgs/by-name/dd/ddcutil/package.nix +++ b/pkgs/by-name/dd/ddcutil/package.nix @@ -15,11 +15,11 @@ stdenv.mkDerivation rec { pname = "ddcutil"; - version = "2.2.2"; + version = "2.2.3"; src = fetchurl { url = "https://www.ddcutil.com/tarballs/ddcutil-${version}.tar.gz"; - hash = "sha256-KTChTw80jARrghtbJAcksC5H0ElOTrkICBkexVW+K3M="; + hash = "sha256-4XvAUqYvnqhS2eOLpPHtfnNmVnoOGdvhpDnuca2+BqA="; }; nativeBuildInputs = [ diff --git a/pkgs/by-name/di/distrobox/package.nix b/pkgs/by-name/di/distrobox/package.nix index 8946a7355b9c..dfa17aef48a3 100644 --- a/pkgs/by-name/di/distrobox/package.nix +++ b/pkgs/by-name/di/distrobox/package.nix @@ -4,6 +4,9 @@ fetchFromGitHub, makeWrapper, wget, + gnugrep, + nix-update-script, + testers, }: stdenvNoCC.mkDerivation (finalAttrs: { @@ -13,7 +16,7 @@ stdenvNoCC.mkDerivation (finalAttrs: { src = fetchFromGitHub { owner = "89luca89"; repo = "distrobox"; - rev = finalAttrs.version; + tag = finalAttrs.version; hash = "sha256-uwJD7HsWoQ/LxYL0mSSxMni676qqEnMHndpL01M5ySE="; }; @@ -40,11 +43,21 @@ stdenvNoCC.mkDerivation (finalAttrs: { wrapProgram "$out/bin/distrobox-generate-entry" \ --prefix PATH ":" ${lib.makeBinPath [ wget ]} + wrapProgram "$out/bin/${finalAttrs.meta.mainProgram}" \ + --prefix PATH ":" ${lib.makeBinPath [ gnugrep ]} + mkdir -p $out/share/distrobox echo 'container_additional_volumes="/nix:/nix"' > $out/share/distrobox/distrobox.conf ''; - meta = with lib; { + passthru = { + updateScript = nix-update-script { }; + tests.version = testers.testVersion { + package = finalAttrs.finalPackage; + }; + }; + + meta = { description = "Wrapper around podman or docker to create and start containers"; longDescription = '' Use any linux distribution inside your terminal. Enable both backward and @@ -52,8 +65,9 @@ stdenvNoCC.mkDerivation (finalAttrs: { you’re more comfortable with ''; homepage = "https://distrobox.it/"; - license = licenses.gpl3Only; - platforms = platforms.linux; - maintainers = with maintainers; [ atila ]; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ atila ]; + mainProgram = "distrobox"; }; }) diff --git a/pkgs/by-name/dr/drawy/package.nix b/pkgs/by-name/dr/drawy/package.nix new file mode 100644 index 000000000000..dffa47955ffe --- /dev/null +++ b/pkgs/by-name/dr/drawy/package.nix @@ -0,0 +1,62 @@ +{ + lib, + stdenv, + fetchFromGitHub, + cmake, + qt6, + nix-update-script, +}: + +stdenv.mkDerivation { + pname = "drawy"; + version = "1.0.0-alpha-unstable-2025-11-17"; + + src = fetchFromGitHub { + owner = "Prayag2"; + repo = "drawy"; + rev = "ca02b66a9615c45c78f2e29839a40c1e5bf8f71c"; + hash = "sha256-PzIeyhF/1wKD6JyybNRzruuxzSKJZvIq+L7X0rrcQUY="; + }; + + strictDeps = true; + + nativeBuildInputs = [ + cmake + qt6.wrapQtAppsHook + ]; + + buildInputs = with qt6; [ + qtbase + qttools + ]; + + postInstall = '' + for size in 16 32 256 512; do + install -D --mode=644 \ + "$src"/assets/logo-$size.png \ + "$out/share/icons/hicolor/''${size}x''${size}/apps/drawy.png" + done + + install -D --mode=644 \ + "$src"/assets/logo.svg \ + "$out"/share/icons/hicolor/scalable/apps/drawy.svg + + install -D --mode=644 \ + "$src"/deploy/appimage/AppDir/usr/share/applications/drawy.desktop \ + --target-directory="$out"/share/applications + ''; + + passthru.updateScript = nix-update-script { }; + + meta = { + description = "Handy and infinite brainstorming tool"; + homepage = "https://github.com/Prayag2/drawy"; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ + yiyu + quarterstar + ]; + mainProgram = "drawy"; + platforms = lib.platforms.all; + }; +} diff --git a/pkgs/by-name/du/duckstation/sources.json b/pkgs/by-name/du/duckstation/sources.json index 2e258e9e0068..efa22b6f81bf 100644 --- a/pkgs/by-name/du/duckstation/sources.json +++ b/pkgs/by-name/du/duckstation/sources.json @@ -1,20 +1,20 @@ { "duckstation": { - "version": "0.1-9903", - "hash_linux": "sha256-CzHWdY0RaGBB6CY3PzHHHbq3/Mbf6WtUm6Dizr0IW6I=", - "hash_darwin": "sha256-7gVpINajfRRDLYBQMQBQtBELosvROiQzTEa2zZbtK44=" + "version": "0.1-10091", + "hash_linux": "sha256-mgrln6Z0kshFy/8QberfeXHWoSxxojvn53B/WYkobpQ=", + "hash_darwin": "sha256-6bp3ksI3a3FYuGhP6y77AxTR1XOXyjmBuQNnWwU9Zoo=" }, "discord_rpc": { "rev": "cc59d26d1d628fbd6527aac0ac1d6301f4978b92", "hash": "sha256-8xXcx5w36eiJqtWm6qQfhEHgchVJbhP/jR94eMNNjHU=" }, "shaderc": { - "rev": "4daf9d466ad00897f755163dd26f528d14e1db44", - "hash": "sha256-/o3LPYvMTlKhuvLQITnADmz8BTGXVaVR0aciOWVyFS8=" + "rev": "85cd26cc38e3e8b5e3c649f4551900ee330d6552", + "hash": "sha256-7PVrpS69pI5mi4aM1eNTAzZCMq6vuVl3mhTrc4U942w=" }, "chtdb": { - "date": "2025-10-16", - "rev": "aff6149c29beae9c52aa35ea5cb53986c8916546", - "hash": "sha256-gpJ6Wlo7PGMPraK8Bppb+3qDWZ6Oxd4kvLJEFtGF50U=" + "date": "2025-11-16", + "rev": "0d672a05a4c7d778204a95f702dbb7dbeff2f95c", + "hash": "sha256-eRBy8snaL6MB82TUbXDUdSbV54kCw467U9lxSFbU/nQ=" } } diff --git a/pkgs/by-name/ei/eigenwallet/package.nix b/pkgs/by-name/ei/eigenwallet/package.nix index 75b897afdc2f..9bdb28b925dc 100644 --- a/pkgs/by-name/ei/eigenwallet/package.nix +++ b/pkgs/by-name/ei/eigenwallet/package.nix @@ -12,11 +12,11 @@ stdenv.mkDerivation (finalAttrs: { name = "eigenwallet"; - version = "3.1.3"; + version = "3.3.6"; src = fetchurl { url = "https://github.com/eigenwallet/core/releases/download/${finalAttrs.version}/eigenwallet_${finalAttrs.version}_amd64.deb"; - hash = "sha256-HQqkoyzKqy4eaCfEwwkRUjgex834kkt2OR3Ib16bE0Y="; + hash = "sha256-4Z7tfhpX6E7i1dov8j0czG+aDDrhUN1EtxOq2SOqILQ="; }; nativeBuildInputs = [ diff --git a/pkgs/by-name/ge/gemini-cli/package.nix b/pkgs/by-name/ge/gemini-cli/package.nix index 6388808ff04e..d5a132cc16e1 100644 --- a/pkgs/by-name/ge/gemini-cli/package.nix +++ b/pkgs/by-name/ge/gemini-cli/package.nix @@ -13,16 +13,16 @@ buildNpmPackage (finalAttrs: { pname = "gemini-cli"; - version = "0.15.3"; + version = "0.16.0"; src = fetchFromGitHub { owner = "google-gemini"; repo = "gemini-cli"; tag = "v${finalAttrs.version}"; - hash = "sha256-a3zigpALuuqD42n2X+5G+ol1XdSbHwLalS3ArA/cQH8="; + hash = "sha256-EOiG7Ov+tY6UPci4A67kKcCItkTrrENOm1mSaWxKE94="; }; - npmDepsHash = "sha256-KkMnxZ0G8PzIdksChVZoH5jMz8qeyGirN7URq08sz48="; + npmDepsHash = "sha256-JvzrbyiJHbKNRHoGll7eSH4dD6Hj5qnrh4F/upHPntI="; nativeBuildInputs = [ jq diff --git a/pkgs/by-name/gi/github-backup/package.nix b/pkgs/by-name/gi/github-backup/package.nix index b4cb7b3ef4c8..18898ccb21c6 100644 --- a/pkgs/by-name/gi/github-backup/package.nix +++ b/pkgs/by-name/gi/github-backup/package.nix @@ -10,14 +10,14 @@ python3Packages.buildPythonApplication rec { pname = "github-backup"; - version = "0.51.0"; + version = "0.51.3"; pyproject = true; src = fetchFromGitHub { owner = "josegonzalez"; repo = "python-github-backup"; tag = version; - hash = "sha256-XqQw2Qu5b5Gdna8krwvkYsTPbM5p1gUBV2P7JLypqVU="; + hash = "sha256-iaonBBOHu/12vzVhFnGznTKhMUy9JJc/+dTJhsSjvMo="; }; build-system = with python3Packages; [ diff --git a/pkgs/by-name/go/go-sendxmpp/package.nix b/pkgs/by-name/go/go-sendxmpp/package.nix index 90aeea6276e4..449b57cd5175 100644 --- a/pkgs/by-name/go/go-sendxmpp/package.nix +++ b/pkgs/by-name/go/go-sendxmpp/package.nix @@ -3,7 +3,7 @@ fetchFromGitLab, lib, nix-update-script, - testers, + versionCheckHook, }: buildGoModule (finalAttrs: { @@ -21,15 +21,19 @@ buildGoModule (finalAttrs: { vendorHash = "sha256-fnaOgc8RPDQnxTWOLQx1kw0+qj1iaff+UkjnoJYdEG4="; passthru = { - tests.version = testers.testVersion { - package = finalAttrs.finalPackage; - }; updateScript = nix-update-script { }; }; + nativeInstallCheckInputs = [ + versionCheckHook + ]; + doInstallCheck = true; + versionCheckProgramArg = "--version"; + meta = { description = "Tool to send messages or files to an XMPP contact or MUC"; homepage = "https://salsa.debian.org/mdosch/go-sendxmpp"; + changelog = "https://salsa.debian.org/mdosch/go-sendxmpp/-/releases/v${finalAttrs.version}"; license = lib.licenses.bsd2; maintainers = with lib.maintainers; [ jpds diff --git a/pkgs/by-name/go/gopher64/allow-unused-type.patch b/pkgs/by-name/go/gopher64/allow-unused-type.patch new file mode 100644 index 000000000000..655f6411e282 --- /dev/null +++ b/pkgs/by-name/go/gopher64/allow-unused-type.patch @@ -0,0 +1,12 @@ +diff --git a/src/device/cart.rs b/src/device/cart.rs +index 97bf09f..4406fec 100644 +--- a/src/device/cart.rs ++++ b/src/device/cart.rs +@@ -21,6 +21,7 @@ const JDT_EEPROM_16K: u16 = 0xc000; /* 16k EEPROM */ + const EEPROM_BLOCK_SIZE: usize = 8; + pub const EEPROM_MAX_SIZE: usize = 0x800; + ++#[allow(warnings)] + #[derive(serde::Serialize, serde::Deserialize)] + pub enum CicType { + CicNus6101, diff --git a/pkgs/by-name/go/gopher64/package.nix b/pkgs/by-name/go/gopher64/package.nix index 807002a700f9..ae604f8b3169 100644 --- a/pkgs/by-name/go/gopher64/package.nix +++ b/pkgs/by-name/go/gopher64/package.nix @@ -42,6 +42,9 @@ rustPlatform.buildRustPackage (finalAttrs: { # make the build script use the @GIT_REV@ string that will be substituted in the logic below ./set-git-rev.patch + + # enum CicType is not used, but dead code is treated as an error + ./allow-unused-type.patch ]; postPatch = '' diff --git a/pkgs/by-name/go/gosmee/package.nix b/pkgs/by-name/go/gosmee/package.nix index b6b784832660..8fdd50c9c5e6 100644 --- a/pkgs/by-name/go/gosmee/package.nix +++ b/pkgs/by-name/go/gosmee/package.nix @@ -8,13 +8,13 @@ buildGoModule rec { pname = "gosmee"; - version = "0.28.1"; + version = "0.28.2"; src = fetchFromGitHub { owner = "chmouel"; repo = "gosmee"; rev = "v${version}"; - hash = "sha256-zP4ES+ZUQ2IyxvnsSBTZsrpqHDnJiYUJ3hDfKUdqQsY="; + hash = "sha256-xkdJCmgBJh5oDELvm7qP/pC0FxqmVsXPGBhN7twp3Ug="; }; vendorHash = null; diff --git a/pkgs/by-name/gp/gpu-screen-recorder/package.nix b/pkgs/by-name/gp/gpu-screen-recorder/package.nix index b329ec7ef61d..f194d9efcc40 100644 --- a/pkgs/by-name/gp/gpu-screen-recorder/package.nix +++ b/pkgs/by-name/gp/gpu-screen-recorder/package.nix @@ -28,12 +28,12 @@ stdenv.mkDerivation rec { pname = "gpu-screen-recorder"; - version = "5.8.1"; + version = "5.9.0"; src = fetchgit { url = "https://repo.dec05eba.com/${pname}"; tag = version; - hash = "sha256-VAb7YAPZVe23qqoGgY8wPR+PwPHuWUmlcixoLOW/H5A="; + hash = "sha256-VftfK6emngCl64Gom/+nwu3gVL3ptzR/J0E0RjW9L9M="; }; nativeBuildInputs = [ diff --git a/pkgs/by-name/gq/gqlgen/package.nix b/pkgs/by-name/gq/gqlgen/package.nix index beb21909a9ca..0d920156628f 100644 --- a/pkgs/by-name/gq/gqlgen/package.nix +++ b/pkgs/by-name/gq/gqlgen/package.nix @@ -6,7 +6,7 @@ }: let - version = "0.17.81"; + version = "0.17.83"; in buildGoModule { pname = "gqlgen"; @@ -16,10 +16,10 @@ buildGoModule { owner = "99designs"; repo = "gqlgen"; tag = "v${version}"; - hash = "sha256-JYxI3f+IFWeNkltInV7Slf4AjYCw8gsC1PxsdZ9cukw="; + hash = "sha256-mQT0hfM1UypHIzNktc1muN4bsIAKYNCXZ5D6YPpY72w="; }; - vendorHash = "sha256-MFQwLWpjgsCkS1GFRbO/egDIWbh3HDAYuqekjGOC+ug="; + vendorHash = "sha256-zDV4CqS4UzVo6eHrO9l0144KzYFj6whflTF/oVkdVH4="; subPackages = [ "." ]; diff --git a/pkgs/by-name/ha/ha-mqtt-discoverable-cli/package.nix b/pkgs/by-name/ha/ha-mqtt-discoverable-cli/package.nix index 719168c0f3e0..69225c5ae63f 100644 --- a/pkgs/by-name/ha/ha-mqtt-discoverable-cli/package.nix +++ b/pkgs/by-name/ha/ha-mqtt-discoverable-cli/package.nix @@ -6,14 +6,14 @@ python3.pkgs.buildPythonApplication rec { pname = "ha-mqtt-discoverable-cli"; - version = "0.22.1"; + version = "0.23.0"; pyproject = true; src = fetchFromGitHub { owner = "unixorn"; repo = "ha-mqtt-discoverable-cli"; tag = "v${version}"; - hash = "sha256-AUY7tIGYVH0wDywzkndRxFLQQfle816DGwMXkcvC/cs="; + hash = "sha256-QxqhLtB3FC8zFUa67surP+P5RK9sb57OmdlnSWd9Kew="; }; pythonRelaxDeps = [ "ha-mqtt-discoverable" ]; diff --git a/pkgs/by-name/hi/hieroglyphic/package.nix b/pkgs/by-name/hi/hieroglyphic/package.nix index ab495ec1235d..cb7fa2660ce4 100644 --- a/pkgs/by-name/hi/hieroglyphic/package.nix +++ b/pkgs/by-name/hi/hieroglyphic/package.nix @@ -13,24 +13,26 @@ glib, gtk4, libadwaita, + openssl, appstream, + onnxruntime, nix-update-script, }: stdenv.mkDerivation (finalAttrs: { pname = "hieroglyphic"; - version = "2.1.0"; + version = "2.2.0"; src = fetchFromGitHub { owner = "FineFindus"; repo = "Hieroglyphic"; tag = "v${finalAttrs.version}"; - hash = "sha256-021qmXZDgeGLpsrhlqMlXiVONltuKFCra0/mTT/Bul0="; + hash = "sha256-mqoYdHpVnivDTblvoaACyCE7Y25cfLj1m0Q5D33zEfk="; }; cargoDeps = rustPlatform.fetchCargoVendor { inherit (finalAttrs) pname version src; - hash = "sha256-PMHDHRkCMlcv3LrCYH3eU3YgmWR4KFNsIRqiXq9oIcA="; + hash = "sha256-kArrsHW+cFZQQgIEL+7Os8ixKtuIZAByEr6D4XDmfRE="; }; nativeBuildInputs = [ @@ -49,8 +51,14 @@ stdenv.mkDerivation (finalAttrs: { glib gtk4 libadwaita + openssl ]; + env = { + ORT_STRATEGY = "system"; + ORT_LIB_LOCATION = "${lib.getLib onnxruntime}/lib"; + }; + passthru = { updateScript = nix-update-script { }; }; @@ -64,6 +72,7 @@ stdenv.mkDerivation (finalAttrs: { maintainers = with lib.maintainers; [ tomasajt ]; teams = [ lib.teams.gnome-circle ]; # Note: upstream currently has case-insensititvity issues on darwin + # https://github.com/FineFindus/Hieroglyphic/issues/40 platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/hy/hyprlauncher/package.nix b/pkgs/by-name/hy/hyprlauncher/package.nix index 3ca479b381a2..677da685b6a7 100644 --- a/pkgs/by-name/hy/hyprlauncher/package.nix +++ b/pkgs/by-name/hy/hyprlauncher/package.nix @@ -19,13 +19,13 @@ gcc15Stdenv.mkDerivation (finalAttrs: { pname = "hyprlauncher"; - version = "0.1.0"; + version = "0.1.3"; src = fetchFromGitHub { owner = "hyprwm"; repo = "hyprlauncher"; tag = "v${finalAttrs.version}"; - hash = "sha256-6JVor77g1LR/22lZYCArUm/geIXE0aGJZ4DHIlgSOj4="; + hash = "sha256-KMqHEAuRfO4ep40jxsGW6mnJSeWM41qv63KbWcLBfuw="; }; nativeBuildInputs = [ diff --git a/pkgs/by-name/hy/hyprpwcenter/package.nix b/pkgs/by-name/hy/hyprpwcenter/package.nix index 095cf994f61b..e39d07d5db04 100644 --- a/pkgs/by-name/hy/hyprpwcenter/package.nix +++ b/pkgs/by-name/hy/hyprpwcenter/package.nix @@ -16,13 +16,13 @@ gcc15Stdenv.mkDerivation (finalAttrs: { pname = "hyprpwcenter"; - version = "0.1.0"; + version = "0.1.1"; src = fetchFromGitHub { owner = "hyprwm"; repo = "hyprpwcenter"; tag = "v${finalAttrs.version}"; - hash = "sha256-/kE3VlkJjpFxjbgdKCFumg/Oxn4n7Z//5atAObpPiRY="; + hash = "sha256-Hxv5Xjlnv70Q/MGLZ4eTlhW8jYhx4gzhn3YL4oc4hN0="; }; nativeBuildInputs = [ diff --git a/pkgs/by-name/hy/hyprtoolkit/package.nix b/pkgs/by-name/hy/hyprtoolkit/package.nix index f59f1aa4bda3..62e3eb0a6068 100644 --- a/pkgs/by-name/hy/hyprtoolkit/package.nix +++ b/pkgs/by-name/hy/hyprtoolkit/package.nix @@ -8,6 +8,7 @@ wayland-scanner, aquamarine, cairo, + gtest, hyprgraphics, hyprlang, hyprutils, @@ -24,13 +25,13 @@ gcc15Stdenv.mkDerivation (finalAttrs: { pname = "hyprtoolkit"; - version = "0.1.1"; + version = "0.3.0"; src = fetchFromGitHub { owner = "hyprwm"; repo = "hyprtoolkit"; tag = "v${finalAttrs.version}"; - hash = "sha256-SjZAlFpZ/ZpYXj59toamF4qx5rC8RP0U/yEsPVniyI8="; + hash = "sha256-M+mlYKvzqW+TSoJ4MH9U+HcFoUmWc1etiXehyLEVB2M="; }; nativeBuildInputs = [ @@ -43,6 +44,7 @@ gcc15Stdenv.mkDerivation (finalAttrs: { buildInputs = [ aquamarine cairo + gtest hyprgraphics hyprlang hyprutils diff --git a/pkgs/by-name/hy/hyprwire/package.nix b/pkgs/by-name/hy/hyprwire/package.nix index 2cafdd96a1ec..6fb5c64d206a 100644 --- a/pkgs/by-name/hy/hyprwire/package.nix +++ b/pkgs/by-name/hy/hyprwire/package.nix @@ -11,13 +11,13 @@ gcc15Stdenv.mkDerivation (finalAttrs: { pname = "hyprwire"; - version = "0.1.0"; + version = "0.1.1"; src = fetchFromGitHub { owner = "hyprwm"; repo = "hyprwire"; tag = "v${finalAttrs.version}"; - hash = "sha256-84KqFPakU1Pv7axkwbSi1D5XssSHIW8B2xduOUq5Mw4="; + hash = "sha256-EoLyrxFJVr7igDhhVNRk2rRpEEOJllRWvYg5XZ3J5y0="; }; nativeBuildInputs = [ @@ -26,9 +26,9 @@ gcc15Stdenv.mkDerivation (finalAttrs: { ]; buildInputs = [ - pugixml hyprutils libffi + pugixml ]; meta = { diff --git a/pkgs/by-name/im/immich-go/package.nix b/pkgs/by-name/im/immich-go/package.nix index 3bf6a481767a..0199d602f707 100644 --- a/pkgs/by-name/im/immich-go/package.nix +++ b/pkgs/by-name/im/immich-go/package.nix @@ -9,13 +9,13 @@ }: buildGoModule rec { pname = "immich-go"; - version = "0.28.0"; + version = "0.30.0"; src = fetchFromGitHub { owner = "simulot"; repo = "immich-go"; tag = "v${version}"; - hash = "sha256-H/ch6W9PrVg7MnQ6/QcMhadihjWx5oHlC7z4oZmjyvQ="; + hash = "sha256-OqnTh1lZ0/L1DM1SUznDm/UZXUMZtGKIx+T96EboVyk="; # Inspired by: https://github.com/NixOS/nixpkgs/blob/f2d7a289c5a5ece8521dd082b81ac7e4a57c2c5c/pkgs/applications/graphics/pdfcpu/default.nix#L20-L32 # The intention here is to write the information into files in the `src`'s @@ -32,7 +32,7 @@ buildGoModule rec { ''; }; - vendorHash = "sha256-EAlslQsLuOp1yrSi0wsNoSqyHnGvLHrf8np4rKrn9yY="; + vendorHash = "sha256-sBS0U6izjrpNCo9toDoH9ceIaSlr9+Y+2l00CjMwcjc="; # options used by upstream: # https://github.com/simulot/immich-go/blob/v0.25.0/.goreleaser.yaml @@ -72,7 +72,10 @@ buildGoModule rec { homepage = "https://github.com/simulot/immich-go"; mainProgram = "immich-go"; license = lib.licenses.agpl3Only; - maintainers = with lib.maintainers; [ kai-tub ]; + maintainers = with lib.maintainers; [ + diogotcorreia + kai-tub + ]; changelog = "https://github.com/simulot/immich-go/releases/tag/${src.tag}"; }; } diff --git a/pkgs/by-name/jp/jp2a/package.nix b/pkgs/by-name/jp/jp2a/package.nix index 10ff29d72b96..22e5fadc3b62 100644 --- a/pkgs/by-name/jp/jp2a/package.nix +++ b/pkgs/by-name/jp/jp2a/package.nix @@ -45,7 +45,7 @@ stdenv.mkDerivation (finalAttrs: { meta = { broken = stdenv.hostPlatform.isDarwin; - homepage = "https://csl.name/jp2a/"; + homepage = "https://github.com/Talinx/jp2a"; description = "Small utility that converts JPG images to ASCII"; license = lib.licenses.gpl2Only; maintainers = [ lib.maintainers.FlorianFranzen ]; diff --git a/pkgs/by-name/jq/jq-lsp/package.nix b/pkgs/by-name/jq/jq-lsp/package.nix index aa9d88be95eb..44ebd3bb4dfd 100644 --- a/pkgs/by-name/jq/jq-lsp/package.nix +++ b/pkgs/by-name/jq/jq-lsp/package.nix @@ -6,16 +6,16 @@ buildGoModule rec { pname = "jq-lsp"; - version = "0.1.13"; + version = "0.1.14"; src = fetchFromGitHub { owner = "wader"; repo = "jq-lsp"; tag = "v${version}"; - hash = "sha256-Oa9MuE6nUaxAlKeFnx4qjPldDfmLrbBraFkUsp5K5gY="; + hash = "sha256-VWZZFa+mMFAbfHTrFqf5vEEqA20DiCz4VjX50mgTuzw="; }; - vendorHash = "sha256-8sZGnoP7l09ZzLJqq8TUCquTOPF0qiwZcFhojUnnEIY="; + vendorHash = "sha256-oiy80U6WmpG0lHl5yTF017gZbiB2cWuM+cQJB0bs+RU="; # based on https://github.com/wader/jq-lsp/blob/master/.goreleaser.yml env.CGO_ENABLED = 0; diff --git a/pkgs/by-name/ka/kaf/package.nix b/pkgs/by-name/ka/kaf/package.nix index 34a542b8ac3a..65fec0f2e434 100644 --- a/pkgs/by-name/ka/kaf/package.nix +++ b/pkgs/by-name/ka/kaf/package.nix @@ -2,6 +2,8 @@ lib, buildGoModule, fetchFromGitHub, + installShellFiles, + stdenv, }: buildGoModule rec { @@ -17,9 +19,18 @@ buildGoModule rec { vendorHash = "sha256-1QcQeeYQFsStK27NVdyCAb1Y40lyifBf0dlSgzocG3Y="; + nativeBuildInputs = [ installShellFiles ]; + # Many tests require a running Kafka instance doCheck = false; + postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) '' + installShellCompletion --cmd kaf \ + --bash <($out/bin/kaf completion bash) \ + --zsh <($out/bin/kaf completion zsh) \ + --fish <($out/bin/kaf completion fish) + ''; + meta = with lib; { description = "Modern CLI for Apache Kafka, written in Go"; mainProgram = "kaf"; diff --git a/pkgs/by-name/ka/kazumi/gitHashes.json b/pkgs/by-name/ka/kazumi/gitHashes.json index b608afe42195..c028319e7336 100644 --- a/pkgs/by-name/ka/kazumi/gitHashes.json +++ b/pkgs/by-name/ka/kazumi/gitHashes.json @@ -1,12 +1,12 @@ { "desktop_webview_window": "sha256-l5n57iKLgsH4TaBYRaTDEPznzljI0jfOGcvxyYcIW6M=", - "media_kit": "sha256-DW0dvyO6liA17ji3ZMJHhwWD3B6JDTHOMfx8iuBArVw=", - "media_kit_libs_android_video": "sha256-DW0dvyO6liA17ji3ZMJHhwWD3B6JDTHOMfx8iuBArVw=", - "media_kit_libs_ios_video": "sha256-DW0dvyO6liA17ji3ZMJHhwWD3B6JDTHOMfx8iuBArVw=", - "media_kit_libs_linux": "sha256-DW0dvyO6liA17ji3ZMJHhwWD3B6JDTHOMfx8iuBArVw=", - "media_kit_libs_macos_video": "sha256-DW0dvyO6liA17ji3ZMJHhwWD3B6JDTHOMfx8iuBArVw=", - "media_kit_libs_video": "sha256-DW0dvyO6liA17ji3ZMJHhwWD3B6JDTHOMfx8iuBArVw=", - "media_kit_libs_windows_video": "sha256-DW0dvyO6liA17ji3ZMJHhwWD3B6JDTHOMfx8iuBArVw=", - "media_kit_video": "sha256-DW0dvyO6liA17ji3ZMJHhwWD3B6JDTHOMfx8iuBArVw=", + "media_kit": "sha256-/7a9k6BF4dyeyIY4LGSl2xQ2HsP4IQ5m+oeFcvOP1G0=", + "media_kit_libs_android_video": "sha256-/7a9k6BF4dyeyIY4LGSl2xQ2HsP4IQ5m+oeFcvOP1G0=", + "media_kit_libs_ios_video": "sha256-/7a9k6BF4dyeyIY4LGSl2xQ2HsP4IQ5m+oeFcvOP1G0=", + "media_kit_libs_linux": "sha256-/7a9k6BF4dyeyIY4LGSl2xQ2HsP4IQ5m+oeFcvOP1G0=", + "media_kit_libs_macos_video": "sha256-/7a9k6BF4dyeyIY4LGSl2xQ2HsP4IQ5m+oeFcvOP1G0=", + "media_kit_libs_video": "sha256-/7a9k6BF4dyeyIY4LGSl2xQ2HsP4IQ5m+oeFcvOP1G0=", + "media_kit_libs_windows_video": "sha256-/7a9k6BF4dyeyIY4LGSl2xQ2HsP4IQ5m+oeFcvOP1G0=", + "media_kit_video": "sha256-/7a9k6BF4dyeyIY4LGSl2xQ2HsP4IQ5m+oeFcvOP1G0=", "webview_windows": "sha256-6Uk4H2SYhjrs1+/27FmlWopDyM09Mc7SqFJ4syg3dDU=" } diff --git a/pkgs/by-name/ka/kazumi/package.nix b/pkgs/by-name/ka/kazumi/package.nix index c045cecb9ecd..e07ac3fe0ef5 100644 --- a/pkgs/by-name/ka/kazumi/package.nix +++ b/pkgs/by-name/ka/kazumi/package.nix @@ -17,13 +17,13 @@ }: let - version = "1.8.8"; + version = "1.9.0"; src = fetchFromGitHub { owner = "Predidit"; repo = "Kazumi"; tag = version; - hash = "sha256-1Avocrqi5HkYQg+rusQJTiBhcfwnjt7uy+BSzGocc3s="; + hash = "sha256-KcZh8T6tf81/bAJj2ZMNynfHWGvzrwxwj0nXbXckJhY="; }; in flutter338.buildFlutterApplication { diff --git a/pkgs/by-name/ka/kazumi/pubspec.lock.json b/pkgs/by-name/ka/kazumi/pubspec.lock.json index dd3f55f4136e..cd43b1a16fad 100644 --- a/pkgs/by-name/ka/kazumi/pubspec.lock.json +++ b/pkgs/by-name/ka/kazumi/pubspec.lock.json @@ -214,11 +214,11 @@ "dependency": "direct main", "description": { "name": "canvas_danmaku", - "sha256": "98fd90f257ffe93bd6a0bd857d92f40172767fc77ffb48b2379ac692e62150eb", + "sha256": "59018315feefe497dd6b5a5c8059a1c40a4849b985f273704acc2faf20cd0d98", "url": "https://pub.dev" }, "source": "hosted", - "version": "0.2.7" + "version": "0.3.1" }, "card_settings_ui": { "dependency": "direct main", @@ -969,8 +969,8 @@ "dependency": "direct main", "description": { "path": "media_kit", - "ref": "263aae1413fc5afad9cc5198a0d3e172cc24e418", - "resolved-ref": "263aae1413fc5afad9cc5198a0d3e172cc24e418", + "ref": "13a209a0af921d117be7f1aac6f9066949e39db9", + "resolved-ref": "13a209a0af921d117be7f1aac6f9066949e39db9", "url": "https://github.com/Predidit/media-kit.git" }, "source": "git", @@ -980,8 +980,8 @@ "dependency": "direct overridden", "description": { "path": "libs/android/media_kit_libs_android_video", - "ref": "263aae1413fc5afad9cc5198a0d3e172cc24e418", - "resolved-ref": "263aae1413fc5afad9cc5198a0d3e172cc24e418", + "ref": "13a209a0af921d117be7f1aac6f9066949e39db9", + "resolved-ref": "13a209a0af921d117be7f1aac6f9066949e39db9", "url": "https://github.com/Predidit/media-kit.git" }, "source": "git", @@ -991,8 +991,8 @@ "dependency": "direct overridden", "description": { "path": "libs/ios/media_kit_libs_ios_video", - "ref": "263aae1413fc5afad9cc5198a0d3e172cc24e418", - "resolved-ref": "263aae1413fc5afad9cc5198a0d3e172cc24e418", + "ref": "13a209a0af921d117be7f1aac6f9066949e39db9", + "resolved-ref": "13a209a0af921d117be7f1aac6f9066949e39db9", "url": "https://github.com/Predidit/media-kit.git" }, "source": "git", @@ -1002,8 +1002,8 @@ "dependency": "direct overridden", "description": { "path": "libs/linux/media_kit_libs_linux", - "ref": "263aae1413fc5afad9cc5198a0d3e172cc24e418", - "resolved-ref": "263aae1413fc5afad9cc5198a0d3e172cc24e418", + "ref": "13a209a0af921d117be7f1aac6f9066949e39db9", + "resolved-ref": "13a209a0af921d117be7f1aac6f9066949e39db9", "url": "https://github.com/Predidit/media-kit.git" }, "source": "git", @@ -1013,8 +1013,8 @@ "dependency": "direct overridden", "description": { "path": "libs/macos/media_kit_libs_macos_video", - "ref": "263aae1413fc5afad9cc5198a0d3e172cc24e418", - "resolved-ref": "263aae1413fc5afad9cc5198a0d3e172cc24e418", + "ref": "13a209a0af921d117be7f1aac6f9066949e39db9", + "resolved-ref": "13a209a0af921d117be7f1aac6f9066949e39db9", "url": "https://github.com/Predidit/media-kit.git" }, "source": "git", @@ -1024,8 +1024,8 @@ "dependency": "direct main", "description": { "path": "libs/universal/media_kit_libs_video", - "ref": "263aae1413fc5afad9cc5198a0d3e172cc24e418", - "resolved-ref": "263aae1413fc5afad9cc5198a0d3e172cc24e418", + "ref": "13a209a0af921d117be7f1aac6f9066949e39db9", + "resolved-ref": "13a209a0af921d117be7f1aac6f9066949e39db9", "url": "https://github.com/Predidit/media-kit.git" }, "source": "git", @@ -1035,8 +1035,8 @@ "dependency": "direct overridden", "description": { "path": "libs/windows/media_kit_libs_windows_video", - "ref": "263aae1413fc5afad9cc5198a0d3e172cc24e418", - "resolved-ref": "263aae1413fc5afad9cc5198a0d3e172cc24e418", + "ref": "13a209a0af921d117be7f1aac6f9066949e39db9", + "resolved-ref": "13a209a0af921d117be7f1aac6f9066949e39db9", "url": "https://github.com/Predidit/media-kit.git" }, "source": "git", @@ -1046,8 +1046,8 @@ "dependency": "direct main", "description": { "path": "media_kit_video", - "ref": "263aae1413fc5afad9cc5198a0d3e172cc24e418", - "resolved-ref": "263aae1413fc5afad9cc5198a0d3e172cc24e418", + "ref": "13a209a0af921d117be7f1aac6f9066949e39db9", + "resolved-ref": "13a209a0af921d117be7f1aac6f9066949e39db9", "url": "https://github.com/Predidit/media-kit.git" }, "source": "git", @@ -1443,16 +1443,6 @@ "source": "hosted", "version": "2.1.0" }, - "screen_pixel": { - "dependency": "direct main", - "description": { - "name": "screen_pixel", - "sha256": "b7310d81d98289ba1d6fb381ec95094b30b43ee1e901fefb65a3cf4de7d77e6b", - "url": "https://pub.dev" - }, - "source": "hosted", - "version": "0.0.3" - }, "screen_retriever": { "dependency": "transitive", "description": { diff --git a/pkgs/by-name/ku/kubecm/package.nix b/pkgs/by-name/ku/kubecm/package.nix index 330bb7bbc00a..574ff81285da 100644 --- a/pkgs/by-name/ku/kubecm/package.nix +++ b/pkgs/by-name/ku/kubecm/package.nix @@ -8,13 +8,13 @@ buildGoModule rec { pname = "kubecm"; - version = "0.33.2"; + version = "0.33.3"; src = fetchFromGitHub { owner = "sunny0826"; repo = "kubecm"; rev = "v${version}"; - hash = "sha256-A5HEs2Kud/S7a/74Si/ayuiDIod9+WFBBvBRQgFwD0o="; + hash = "sha256-pezn1s2IvAfVbF8b5jJ4uoVNi5g/2OfUuE4YXrK0gZk="; }; vendorHash = "sha256-HKHUN3vOhNl46T06pMUZIjcZMxDw/gkeimbs7kdmtdI="; diff --git a/pkgs/by-name/la/lasuite-docs/package.nix b/pkgs/by-name/la/lasuite-docs/package.nix index 9268b4fc5969..5a4d3c3cc4c3 100644 --- a/pkgs/by-name/la/lasuite-docs/package.nix +++ b/pkgs/by-name/la/lasuite-docs/package.nix @@ -26,12 +26,12 @@ let }; }; - version = "3.6.0"; + version = "3.9.0"; src = fetchFromGitHub { owner = "suitenumerique"; repo = "docs"; tag = "v${version}"; - hash = "sha256-8bD+rBEN0GEQz3tiPEQYmf/mpijPefFmQchGhYkVBVY="; + hash = "sha256-qlnDv2NYs6XCZDos/8CflyO/0GmYKd45/efDDNGGsic="; }; mail-templates = stdenv.mkDerivation { @@ -44,7 +44,7 @@ let offlineCache = fetchYarnDeps { yarnLock = "${src}/src/mail/yarn.lock"; - hash = "sha256-oyLs7Df+KGzqCW8uF/7uzcL6ecMx8kHMzpuHSSywwfw="; + hash = "sha256-+kjU8eGk5CFh6/Z4G5G4XiaZ5OOBO5WB4d7lU7evXs0="; }; nativeBuildInputs = [ diff --git a/pkgs/by-name/li/libemf2svg/package.nix b/pkgs/by-name/li/libemf2svg/package.nix index fcddf49be644..7d2b29e41b20 100644 --- a/pkgs/by-name/li/libemf2svg/package.nix +++ b/pkgs/by-name/li/libemf2svg/package.nix @@ -26,6 +26,10 @@ stdenv.mkDerivation rec { libpng ]; + cmakeFlags = [ + "-DCMAKE_POLICY_VERSION_MINIMUM=3.5" + ]; + meta = with lib; { description = "Microsoft EMF to SVG conversion library"; mainProgram = "emf2svg-conv"; diff --git a/pkgs/by-name/li/libreelec-dvb-firmware/package.nix b/pkgs/by-name/li/libreelec-dvb-firmware/package.nix index 6841383511f2..409f61eca3cb 100644 --- a/pkgs/by-name/li/libreelec-dvb-firmware/package.nix +++ b/pkgs/by-name/li/libreelec-dvb-firmware/package.nix @@ -4,15 +4,15 @@ lib, }: -stdenvNoCC.mkDerivation rec { +stdenvNoCC.mkDerivation (finalAttrs: { pname = "libreelec-dvb-firmware"; version = "1.5.0"; src = fetchFromGitHub { - repo = "dvb-firmware"; owner = "LibreElec"; - rev = version; - sha256 = "sha256-uEobcv5kqGxIOfSVVKH+iT7DHPF13OFiRF7c1GIUqtU="; + repo = "dvb-firmware"; + tag = finalAttrs.version; + hash = "sha256-uEobcv5kqGxIOfSVVKH+iT7DHPF13OFiRF7c1GIUqtU="; }; installPhase = '' @@ -25,11 +25,12 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "DVB firmware from LibreELEC"; homepage = "https://github.com/LibreELEC/dvb-firmware"; - license = licenses.unfreeRedistributableFirmware; - maintainers = with maintainers; [ kittywitch ]; - platforms = platforms.linux; + license = lib.licenses.unfreeRedistributableFirmware; + maintainers = with lib.maintainers; [ kittywitch ]; + platforms = lib.platforms.linux; + sourceProvenance = with lib.sourceTypes; [ binaryFirmware ]; }; -} +}) diff --git a/pkgs/by-name/li/libvisio2svg/package.nix b/pkgs/by-name/li/libvisio2svg/package.nix index b82a14cc5319..fc67b501aebf 100644 --- a/pkgs/by-name/li/libvisio2svg/package.nix +++ b/pkgs/by-name/li/libvisio2svg/package.nix @@ -35,6 +35,7 @@ stdenv.mkDerivation rec { cmakeFlags = [ # file RPATH_CHANGE could not write new RPATH "-DCMAKE_SKIP_BUILD_RPATH=ON" + "-DCMAKE_POLICY_VERSION_MINIMUM=3.5" ]; meta = with lib; { diff --git a/pkgs/by-name/li/linux-firmware/package.nix b/pkgs/by-name/li/linux-firmware/package.nix index 9e1af78bf7aa..4cf1c3c4f536 100644 --- a/pkgs/by-name/li/linux-firmware/package.nix +++ b/pkgs/by-name/li/linux-firmware/package.nix @@ -51,12 +51,13 @@ stdenvNoCC.mkDerivation rec { # Firmware blobs do not need fixing and should not be modified dontFixup = true; - meta = with lib; { + meta = { description = "Binary firmware collection packaged by kernel.org"; homepage = "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git"; - license = licenses.unfreeRedistributableFirmware; - platforms = platforms.linux; - maintainers = with maintainers; [ fpletz ]; + license = lib.licenses.unfreeRedistributableFirmware; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ fpletz ]; priority = 6; # give precedence to kernel firmware + sourceProvenance = with lib.sourceTypes; [ binaryFirmware ]; }; } diff --git a/pkgs/by-name/ma/markdown-toc/no-dev-deps.patch b/pkgs/by-name/ma/markdown-toc/no-dev-deps.patch new file mode 100644 index 000000000000..68d48d1c6c83 --- /dev/null +++ b/pkgs/by-name/ma/markdown-toc/no-dev-deps.patch @@ -0,0 +1,15 @@ +diff --git a/package.json b/package.json +index 9280c8b..356f1af 100644 +--- a/package.json ++++ b/package.json +@@ -60,10 +60,6 @@ + "repeat-string": "^1.6.1", + "strip-color": "^0.1.0" + }, +- "devDependencies": { +- "gulp-format-md": "^0.1.11", +- "mocha": "^3.2.0" +- }, + "keywords": [ + "anchor", + "commonmark", diff --git a/pkgs/by-name/ma/markdown-toc/package-lock.json b/pkgs/by-name/ma/markdown-toc/package-lock.json new file mode 100644 index 000000000000..1618e80a2ab6 --- /dev/null +++ b/pkgs/by-name/ma/markdown-toc/package-lock.json @@ -0,0 +1,628 @@ +{ + "name": "markdown-toc", + "version": "1.2.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "markdown-toc", + "version": "1.2.0", + "license": "MIT", + "dependencies": { + "concat-stream": "^1.5.2", + "diacritics-map": "^0.1.0", + "gray-matter": "^2.1.0", + "lazy-cache": "^2.0.2", + "list-item": "^1.1.1", + "markdown-link": "^0.1.1", + "minimist": "^1.2.0", + "mixin-deep": "^1.1.3", + "object.pick": "^1.2.0", + "remarkable": "^1.7.1", + "repeat-string": "^1.6.1", + "strip-color": "^0.1.0" + }, + "bin": { + "markdown-toc": "cli.js" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ansi-red": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/ansi-red/-/ansi-red-0.1.1.tgz", + "integrity": "sha512-ewaIr5y+9CUTGFwZfpECUbFlGcC0GCw1oqR9RI6h1gQCd9Aj2GxSckCnPsVJnmfMZbwFYE+leZGASgkWl06Jow==", + "license": "MIT", + "dependencies": { + "ansi-wrap": "0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ansi-wrap": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/ansi-wrap/-/ansi-wrap-0.1.0.tgz", + "integrity": "sha512-ZyznvL8k/FZeQHr2T6LzcJ/+vBApDnMNZvfVFy3At0knswWd6rJ3/0Hhmpu8oqa6C92npmozs890sX9Dl6q+Qw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "license": "MIT", + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/autolinker": { + "version": "0.28.1", + "resolved": "https://registry.npmjs.org/autolinker/-/autolinker-0.28.1.tgz", + "integrity": "sha512-zQAFO1Dlsn69eXaO6+7YZc+v84aquQKbwpzCE3L0stj56ERn9hutFxPopViLjo9G+rWwjozRhgS5KJ25Xy19cQ==", + "license": "MIT", + "dependencies": { + "gulp-header": "^1.7.1" + } + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "license": "MIT" + }, + "node_modules/coffee-script": { + "version": "1.12.7", + "resolved": "https://registry.npmjs.org/coffee-script/-/coffee-script-1.12.7.tgz", + "integrity": "sha512-fLeEhqwymYat/MpTPUjSKHVYYl0ec2mOyALEMLmzr5i1isuG+6jfI2j2d5oBO3VIzgUXgBVIcOT9uH1TFxBckw==", + "deprecated": "CoffeeScript on NPM has moved to \"coffeescript\" (no hyphen)", + "license": "MIT", + "bin": { + "cake": "bin/cake", + "coffee": "bin/coffee" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/concat-stream": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", + "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "engines": [ + "node >= 0.8" + ], + "license": "MIT", + "dependencies": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" + } + }, + "node_modules/concat-with-sourcemaps": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/concat-with-sourcemaps/-/concat-with-sourcemaps-1.1.0.tgz", + "integrity": "sha512-4gEjHJFT9e+2W/77h/DS5SGUgwDaOwprX8L/gl5+3ixnzkVJJsZWDSelmN3Oilw3LNDZjZV0yqH1hLG3k6nghg==", + "license": "ISC", + "dependencies": { + "source-map": "^0.6.1" + } + }, + "node_modules/core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", + "license": "MIT" + }, + "node_modules/diacritics-map": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/diacritics-map/-/diacritics-map-0.1.0.tgz", + "integrity": "sha512-3omnDTYrGigU0i4cJjvaKwD52B8aoqyX/NEIkukFFkogBemsIbhSa1O414fpTp5nuszJG6lvQ5vBvDVNCbSsaQ==", + "license": "MIT", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "license": "BSD-2-Clause", + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/expand-range": { + "version": "1.8.2", + "resolved": "https://registry.npmjs.org/expand-range/-/expand-range-1.8.2.tgz", + "integrity": "sha512-AFASGfIlnIbkKPQwX1yHaDjFvh/1gyKJODme52V6IORh69uEYgZp0o9C+qsIGNVEiuuhQU0CSSl++Rlegg1qvA==", + "license": "MIT", + "dependencies": { + "fill-range": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "license": "MIT", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fill-range": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-2.2.4.tgz", + "integrity": "sha512-cnrcCbj01+j2gTG921VZPnHbjmdAf8oQV/iGeV2kZxGSyfYjjTyY79ErsK1WJWMpw6DaApEX72binqJE+/d+5Q==", + "license": "MIT", + "dependencies": { + "is-number": "^2.1.0", + "isobject": "^2.0.0", + "randomatic": "^3.0.0", + "repeat-element": "^1.1.2", + "repeat-string": "^1.5.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/for-in": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/gray-matter": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/gray-matter/-/gray-matter-2.1.1.tgz", + "integrity": "sha512-vbmvP1Fe/fxuT2QuLVcqb2BfK7upGhhbLIt9/owWEvPYrZZEkelLcq2HqzxosV+PQ67dUFLaAeNpH7C4hhICAA==", + "license": "MIT", + "dependencies": { + "ansi-red": "^0.1.1", + "coffee-script": "^1.12.4", + "extend-shallow": "^2.0.1", + "js-yaml": "^3.8.1", + "toml": "^2.3.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/gulp-header": { + "version": "1.8.12", + "resolved": "https://registry.npmjs.org/gulp-header/-/gulp-header-1.8.12.tgz", + "integrity": "sha512-lh9HLdb53sC7XIZOYzTXM4lFuXElv3EVkSDhsd7DoJBj7hm+Ni7D3qYbb+Rr8DuM8nRanBvkVO9d7askreXGnQ==", + "deprecated": "Removed event-stream from gulp-header", + "license": "MIT", + "dependencies": { + "concat-with-sourcemaps": "*", + "lodash.template": "^4.4.0", + "through2": "^2.0.0" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "license": "ISC" + }, + "node_modules/is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "license": "MIT" + }, + "node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-number": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz", + "integrity": "sha512-QUzH43Gfb9+5yckcrSA0VBDwEtDUchrk4F6tfJZQuNzDJbEDB9cZNzSfXGQ1jqmdDY/kl41lUOWM9syA8z8jlg==", + "license": "MIT", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "license": "MIT", + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-plain-object/node_modules/isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "license": "MIT" + }, + "node_modules/isobject": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==", + "license": "MIT", + "dependencies": { + "isarray": "1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "license": "MIT", + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "license": "MIT", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/lazy-cache": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-2.0.2.tgz", + "integrity": "sha512-7vp2Acd2+Kz4XkzxGxaB1FWOi8KjWIWsgdfD5MCb86DWvlLqhRPM+d6Pro3iNEL5VT9mstz5hKAlcd+QR6H3aA==", + "license": "MIT", + "dependencies": { + "set-getter": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/list-item": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/list-item/-/list-item-1.1.1.tgz", + "integrity": "sha512-S3D0WZ4J6hyM8o5SNKWaMYB1ALSacPZ2nHGEuCjmHZ+dc03gFeNZoNDcqfcnO4vDhTZmNrqrpYZCdXsRh22bzw==", + "license": "MIT", + "dependencies": { + "expand-range": "^1.8.1", + "extend-shallow": "^2.0.1", + "is-number": "^2.1.0", + "repeat-string": "^1.5.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/lodash._reinterpolate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz", + "integrity": "sha512-xYHt68QRoYGjeeM/XOE1uJtvXQAgvszfBhjV4yvsQH0u2i9I6cI6c6/eG4Hh3UAOVn0y/xAXwmTzEay49Q//HA==", + "license": "MIT" + }, + "node_modules/lodash.template": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-4.5.0.tgz", + "integrity": "sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==", + "deprecated": "This package is deprecated. Use https://socket.dev/npm/package/eta instead.", + "license": "MIT", + "dependencies": { + "lodash._reinterpolate": "^3.0.0", + "lodash.templatesettings": "^4.0.0" + } + }, + "node_modules/lodash.templatesettings": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz", + "integrity": "sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==", + "license": "MIT", + "dependencies": { + "lodash._reinterpolate": "^3.0.0" + } + }, + "node_modules/markdown-link": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/markdown-link/-/markdown-link-0.1.1.tgz", + "integrity": "sha512-TurLymbyLyo+kAUUAV9ggR9EPcDjP/ctlv9QAFiqUH7c+t6FlsbivPo9OKTU8xdOx9oNd2drW/Fi5RRElQbUqA==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/math-random": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/math-random/-/math-random-1.0.4.tgz", + "integrity": "sha512-rUxjysqif/BZQH2yhd5Aaq7vXMSx9NdEsQcyA07uEzIvxgI7zIr33gGsh+RU0/XjmQpCW7RsVof1vlkvQVCK5A==", + "license": "MIT" + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/mixin-deep": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", + "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", + "license": "MIT", + "dependencies": { + "for-in": "^1.0.2", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mixin-deep/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "license": "MIT", + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object.pick": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", + "integrity": "sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==", + "license": "MIT", + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object.pick/node_modules/isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "license": "MIT" + }, + "node_modules/randomatic": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/randomatic/-/randomatic-3.1.1.tgz", + "integrity": "sha512-TuDE5KxZ0J461RVjrJZCJc+J+zCkTb1MbH9AQUq68sMhOMcy9jLcb3BrZKgp9q9Ncltdg4QVqWrH02W2EFFVYw==", + "license": "MIT", + "dependencies": { + "is-number": "^4.0.0", + "kind-of": "^6.0.0", + "math-random": "^1.0.1" + }, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/randomatic/node_modules/is-number": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", + "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/randomatic/node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "license": "MIT", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/remarkable": { + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/remarkable/-/remarkable-1.7.4.tgz", + "integrity": "sha512-e6NKUXgX95whv7IgddywbeN/ItCkWbISmc2DiqHJb0wTrqZIexqdco5b8Z3XZoo/48IdNVKM9ZCvTPJ4F5uvhg==", + "license": "MIT", + "dependencies": { + "argparse": "^1.0.10", + "autolinker": "~0.28.0" + }, + "bin": { + "remarkable": "bin/remarkable.js" + }, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/repeat-element": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz", + "integrity": "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==", + "license": "MIT", + "engines": { + "node": ">=0.10" + } + }, + "node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "license": "MIT" + }, + "node_modules/set-getter": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/set-getter/-/set-getter-0.1.1.tgz", + "integrity": "sha512-9sVWOy+gthr+0G9DzqqLaYNA7+5OKkSmcqjL9cBpDEaZrr3ShQlyX2cZ/O/ozE41oxn/Tt0LGEM/w4Rub3A3gw==", + "license": "MIT", + "dependencies": { + "to-object-path": "^0.3.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", + "license": "BSD-3-Clause" + }, + "node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "license": "MIT", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/strip-color": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/strip-color/-/strip-color-0.1.0.tgz", + "integrity": "sha512-p9LsUieSjWNNAxVCXLeilaDlmuUOrDS5/dF9znM1nZc7EGX5+zEFC0bEevsNIaldjlks+2jns5Siz6F9iK6jwA==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/through2": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", + "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", + "license": "MIT", + "dependencies": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + } + }, + "node_modules/to-object-path": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", + "integrity": "sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==", + "license": "MIT", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/toml": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/toml/-/toml-2.3.6.tgz", + "integrity": "sha512-gVweAectJU3ebq//Ferr2JUY4WKSDe5N+z0FvjDncLGyHmIDoxgY/2Ie4qfEIDm4IS7OA6Rmdm7pdEEdMcV/xQ==", + "license": "MIT" + }, + "node_modules/typedarray": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", + "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==", + "license": "MIT" + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "license": "MIT" + }, + "node_modules/xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "license": "MIT", + "engines": { + "node": ">=0.4" + } + } + } +} diff --git a/pkgs/by-name/ma/markdown-toc/package.nix b/pkgs/by-name/ma/markdown-toc/package.nix new file mode 100644 index 000000000000..5bec31c050e1 --- /dev/null +++ b/pkgs/by-name/ma/markdown-toc/package.nix @@ -0,0 +1,38 @@ +{ + buildNpmPackage, + fetchFromGitHub, + lib, +}: + +buildNpmPackage (finalAttrs: { + pname = "markdown-toc"; + version = "1.2.0"; + + src = fetchFromGitHub { + owner = "jonschlinkert"; + repo = "markdown-toc"; + tag = finalAttrs.version; + hash = "sha256-CgyAxXcLrdk609qoXjyUgpA+NIlWrkBsE7lf5YnPagQ="; + }; + + # This package has no build script so the `devDependencies` are unnecessary. + patches = [ ./no-dev-deps.patch ]; + # Because we reduced the size of `package-lock.json` by omitting + # `devDependencies`, it no longer contains any package versions that were + # published after 2023, meaning it would likely not change if it were + # regenerated again in the future. + postPatch = '' + cp ${./package-lock.json} ./package-lock.json + ''; + npmDepsHash = "sha256-2WDlZ4OD/R+3ya0AE9rPRHXbCTVbmiyXtaRrgCS/jGo="; + + dontNpmBuild = true; + + meta = { + description = "API and CLI for generating a markdown TOC (table of contents)"; + homepage = "https://github.com/jonschlinkert/markdown-toc"; + license = lib.licenses.mit; + mainProgram = "markdown-toc"; + maintainers = with lib.maintainers; [ samestep ]; + }; +}) diff --git a/pkgs/by-name/ma/markdownlint-cli/package.nix b/pkgs/by-name/ma/markdownlint-cli/package.nix index 8077203db5c7..5479522dfb2f 100644 --- a/pkgs/by-name/ma/markdownlint-cli/package.nix +++ b/pkgs/by-name/ma/markdownlint-cli/package.nix @@ -6,16 +6,16 @@ buildNpmPackage rec { pname = "markdownlint-cli"; - version = "0.45.0"; + version = "0.46.0"; src = fetchFromGitHub { owner = "igorshubovych"; repo = "markdownlint-cli"; rev = "v${version}"; - hash = "sha256-H6vK0ZJarNK9h3T/304SO8HNiZUGdrAA72wA6XPZbPQ="; + hash = "sha256-8yzTdgwKM2xSNJvqpQM/WSFVDVUDdFgpcIxr13thIYQ="; }; - npmDepsHash = "sha256-puRm56VO711HC/CXCfUfODfy7ZVwEhucjwIikiHCf5E="; + npmDepsHash = "sha256-FQKjIAVvaAz4OsCZ1gKNLdHWhANdUKbFsD9HMksVu+U="; dontNpmBuild = true; diff --git a/pkgs/by-name/ma/matrix-tuwunel/dont-record-compilation-flags.patch b/pkgs/by-name/ma/matrix-tuwunel/dont-record-compilation-flags.patch new file mode 100644 index 000000000000..2f35204c8f00 --- /dev/null +++ b/pkgs/by-name/ma/matrix-tuwunel/dont-record-compilation-flags.patch @@ -0,0 +1,21 @@ +commit be2b9e1992f5a7048fe011f4d48591dfcec927a8 +Author: Guillaume Girol +Date: Mon Nov 17 12:00:00 2025 +0000 + + make the macro recording conpilation flags a noop + + it records references to rustc which increases the size of the closure of tuwunel by 1.5 GB. + +diff --git a/src/macros/mod.rs b/src/macros/mod.rs +index b5c5b67d..86f4755b 100644 +--- a/src/macros/mod.rs ++++ b/src/macros/mod.rs +@@ -39,7 +39,7 @@ pub fn recursion_depth(args: TokenStream, input: TokenStream) -> TokenStream { + } + + #[proc_macro] +-pub fn rustc_flags_capture(args: TokenStream) -> TokenStream { rustc::flags_capture(args) } ++pub fn rustc_flags_capture(_args: TokenStream) -> TokenStream { TokenStream::default() } + + #[proc_macro] + pub fn rustc_version(args: TokenStream) -> TokenStream { rustc::version(args) } diff --git a/pkgs/by-name/ma/matrix-tuwunel/package.nix b/pkgs/by-name/ma/matrix-tuwunel/package.nix index c7f7d29978ed..d2915a8502d6 100644 --- a/pkgs/by-name/ma/matrix-tuwunel/package.nix +++ b/pkgs/by-name/ma/matrix-tuwunel/package.nix @@ -19,6 +19,7 @@ liburing, nixosTests, writeTextFile, + rustc-unwrapped, }: let rust-jemalloc-sys' = rust-jemalloc-sys.override { @@ -103,6 +104,12 @@ rustPlatform.buildRustPackage (finalAttrs: { rustPlatform.bindgenHook ]; + patches = [ + # reduce closure size by not storing a reference to rustc-unwrapped + # alternative to https://github.com/NixOS/nixpkgs/pull/462394 + ./dont-record-compilation-flags.patch + ]; + buildInputs = [ bzip2 zstd @@ -172,6 +179,8 @@ rustPlatform.buildRustPackage (finalAttrs: { }; }; + disallowedReferences = [ rustc-unwrapped ]; + meta = { description = "Matrix homeserver written in Rust, official successor to conduwuit"; homepage = "https://github.com/matrix-construct/tuwunel"; diff --git a/pkgs/by-name/ma/mattermost/package.nix b/pkgs/by-name/ma/mattermost/package.nix index 57c35fb360fb..c493c10ce3c2 100644 --- a/pkgs/by-name/ma/mattermost/package.nix +++ b/pkgs/by-name/ma/mattermost/package.nix @@ -19,8 +19,8 @@ # # Ensure you also check ../mattermostLatest/package.nix. regex = "^v(10\\.11\\.[0-9]+)$"; - version = "10.11.6"; - srcHash = "sha256-JBZAFyjZOteDaCVktxXtdbimNrvCpUpgK45OuFCI5xQ="; + version = "10.11.7"; + srcHash = "sha256-3a2b/5CP+HEySpWx0k9hAODecaBLMDDZ/nija1eQibM="; vendorHash = "sha256-Lsw/cvl98JdVmzWr85lAv/JMcTmZZZ4ALLunFLNcrro="; npmDepsHash = "sha256-p9dq31qw0EZDQIl2ysKE38JgDyLA6XvSv+VtHuRh+8A="; lockfileOverlay = '' diff --git a/pkgs/by-name/mo/mongodb-compass/package.nix b/pkgs/by-name/mo/mongodb-compass/package.nix index bc99ca9b235b..b310b2711332 100644 --- a/pkgs/by-name/mo/mongodb-compass/package.nix +++ b/pkgs/by-name/mo/mongodb-compass/package.nix @@ -40,7 +40,7 @@ let pname = "mongodb-compass"; - version = "1.48.1"; + version = "1.48.2"; selectSystem = attrs: @@ -55,9 +55,9 @@ let } }"; hash = selectSystem { - x86_64-linux = "sha256-C+0IezU2kAQzju3Ev2xl82ybQeB8B8ViXDHoRXPHIus="; - x86_64-darwin = "sha256-LtiXq1chSRUj/hgVRvHwS1KvJKiQW838K8EVSdmNSQk="; - aarch64-darwin = "sha256-P0VfIRmBgF65BcxoRNIh6e6ccqztO/BG7qtYP528YDI="; + x86_64-linux = "sha256-6plLkjeFyXnYVTRY9hnnlKRRk0/pqIE7uQ/ftht6MB4="; + x86_64-darwin = "sha256-kVIYeo4YmEGUA+9jUMQ+tm3C504yCdFSTprUMZmXCxI="; + aarch64-darwin = "sha256-dJD7efN/sfLwxJz1myYneAKdnVdEcNzSth5CzcVoGsM="; }; }; diff --git a/pkgs/by-name/my/myks/package.nix b/pkgs/by-name/my/myks/package.nix index 1d14a6d1b691..25e5da899c68 100644 --- a/pkgs/by-name/my/myks/package.nix +++ b/pkgs/by-name/my/myks/package.nix @@ -10,16 +10,16 @@ buildGoModule rec { pname = "myks"; - version = "5.2.0"; + version = "5.3.0"; src = fetchFromGitHub { owner = "mykso"; repo = "myks"; tag = "v${version}"; - hash = "sha256-Uywbhz+dMX49fYOypybNLP8Jrvxo8gN/YAOcODcThM8="; + hash = "sha256-oPes5a7szsiYe4B7kYC8io2G7SBVmON+p2sDF21PNxM="; }; - vendorHash = "sha256-GZWXiL8VJTx0EcwWKy4jryr1jzoT44tWO2U7TCjhhfU="; + vendorHash = "sha256-EZnmEYIGvE3BN7S70TsiE1Dkup73bORFx1rYx0cB8Qk="; subPackages = "."; diff --git a/pkgs/by-name/n6/n64recomp/package.nix b/pkgs/by-name/n6/n64recomp/package.nix index 3b80aa278803..20b547aec10c 100644 --- a/pkgs/by-name/n6/n64recomp/package.nix +++ b/pkgs/by-name/n6/n64recomp/package.nix @@ -12,13 +12,13 @@ stdenv.mkDerivation (finalAttrs: { pname = "n64recomp"; - version = "0-unstable-2025-09-06"; + version = "0-unstable-2025-10-07"; src = fetchFromGitHub { owner = "N64Recomp"; repo = "N64Recomp"; - rev = "6888c1f1df03349906acdec1a7ed3b308c86020c"; - hash = "sha256-xIpbGtnGyK+UYBBk8/+33H/oFzZKstGCv8Q/OF04ukE="; + rev = "c39a9b6c7e7596bf8917778d9c15ba78e491b34d"; + hash = "sha256-SpPUXD0zZVcWPgmZnH+5gLDc5qYgGcIhYYtfXKiVAHY="; fetchSubmodules = true; }; diff --git a/pkgs/by-name/ne/nemo/package.nix b/pkgs/by-name/ne/nemo/package.nix index d8bec61fdbd6..a52469d63d11 100644 --- a/pkgs/by-name/ne/nemo/package.nix +++ b/pkgs/by-name/ne/nemo/package.nix @@ -53,6 +53,7 @@ stdenv.mkDerivation rec { outputs = [ "out" "dev" + "man" ]; buildInputs = [ diff --git a/pkgs/by-name/ne/nexusmods-app/deps.json b/pkgs/by-name/ne/nexusmods-app/deps.json index 07856e2cbb8f..86ebc252a870 100644 --- a/pkgs/by-name/ne/nexusmods-app/deps.json +++ b/pkgs/by-name/ne/nexusmods-app/deps.json @@ -4,6 +4,11 @@ "version": "0.31.0", "hash": "sha256-YCv5pEi5JJRJlyncpqO1eTzMi5jYeecWdj5YphUOgpY=" }, + { + "pname": "Argon", + "version": "0.32.0", + "hash": "sha256-V8qLTM0OwqBMd6Ok1Pv3+z8V4TP/rb6JtKCVcAtKWnE=" + }, { "pname": "AutoFixture", "version": "4.18.1", @@ -254,6 +259,11 @@ "version": "16.3.0", "hash": "sha256-JkkAUk7dwYYLz1TwO5T34aZf+VW+uTKuYF/hmRcxBuo=" }, + { + "pname": "DiffEngine", + "version": "16.8.0", + "hash": "sha256-rMlVrtTu9cSTQLEG5nOltf8SqqSAsuihN6IWbhJm2l0=" + }, { "pname": "DiffPlex", "version": "1.7.2", @@ -294,6 +304,11 @@ "version": "8.11.1", "hash": "sha256-1rmycQh9HW08BtLk+lu90MSNuy+O7JPrE+NbupPnZ2I=" }, + { + "pname": "EmptyFiles", + "version": "8.15.0", + "hash": "sha256-RUlzWyHtkiRdiiBjmUNeSR6CRc0G/F0TwqnYUcQeNUE=" + }, { "pname": "EnumerableAsyncProcessor", "version": "3.8.4", @@ -1084,6 +1099,11 @@ "version": "3.1.21", "hash": "sha256-Zk2nRqnBMWdn5FHexMOGxFiqX95sJkYdLVd3T8TMPT8=" }, + { + "pname": "Microsoft.DiaSymReader", + "version": "2.0.0", + "hash": "sha256-8hotZmh8Rb6Q6oD9Meb74SvAdbDo39Y/1m8h43HHjjw=" + }, { "pname": "Microsoft.DotNet.PlatformAbstractions", "version": "3.1.6", @@ -1299,6 +1319,11 @@ "version": "9.8.0", "hash": "sha256-hIoJx/VgT1K8tsQRWI90vjLsWI68T2kwc93od5z/xaw=" }, + { + "pname": "Microsoft.Extensions.DependencyModel", + "version": "6.0.2", + "hash": "sha256-WVM/gshGie1J9q5l3YWRzrPWYlVvX6ISI+SiVMoPp5o=" + }, { "pname": "Microsoft.Extensions.Diagnostics", "version": "8.0.0", @@ -1759,25 +1784,35 @@ "version": "8.0.0", "hash": "sha256-hNTkpKdCLY5kIuOmznD1mY+pRdJ0PKu2HypyXog9vb0=" }, + { + "pname": "Microsoft.Testing.Extensions.CodeCoverage", + "version": "18.1.0", + "hash": "sha256-sw6HGpoJ51ldPedpP516gpYxZS7Wi9/08LFYVvI5xgk=" + }, + { + "pname": "Microsoft.Testing.Extensions.TrxReport", + "version": "2.0.1", + "hash": "sha256-I4gtv5iVnqL9yMW1J75CBP3rXyXrmLkav4B+BkFhuGM=" + }, { "pname": "Microsoft.Testing.Extensions.TrxReport.Abstractions", - "version": "1.8.3", - "hash": "sha256-4lbrLFfNAqGP4Y1kdC7kxxCOVEL2dczLV0Jj0qt2RBc=" + "version": "2.0.1", + "hash": "sha256-iSrQLohQTpbNtXmag8b3N9/Dqfh25/f0zb7xO7xqVe0=" }, { "pname": "Microsoft.Testing.Platform", - "version": "1.4.3", - "hash": "sha256-KqB3+uBGl0edpaGl6Qykubb3OrVTs6IcPWc59UQ/Iww=" + "version": "2.0.0", + "hash": "sha256-YXhxULoi2mrpVHhrf/hu3lSOREU6hueFzDDb1YAlGs4=" }, { "pname": "Microsoft.Testing.Platform", - "version": "1.8.3", - "hash": "sha256-e/84lOkoTz90bux7D9mq6WSrRBPh4uFLUVuxLgHUddM=" + "version": "2.0.1", + "hash": "sha256-0acL8DGgQ5rtvJi/lGQah7xa6+IoeVb4HS+NaYsl90Q=" }, { "pname": "Microsoft.Testing.Platform.MSBuild", - "version": "1.4.3", - "hash": "sha256-289hhblU55kDvzbiSQAFSxOyht1MlXT4e+bEQyQqils=" + "version": "2.0.1", + "hash": "sha256-pft4O5U5WtPirj24xMdVcd6t0byGY7z/uJSUYkrCXKE=" }, { "pname": "Microsoft.TestPlatform.ObjectModel", @@ -2969,6 +3004,11 @@ "version": "4.5.3", "hash": "sha256-Cvl7RbRbRu9qKzeRBWjavUkseT2jhZBUWV1SPipUWFk=" }, + { + "pname": "System.Memory", + "version": "4.5.4", + "hash": "sha256-3sCEfzO4gj5CYGctl9ZXQRRhwAraMQfse7yzKoRe65E=" + }, { "pname": "System.Memory", "version": "4.5.5", @@ -3304,11 +3344,21 @@ "version": "4.3.0", "hash": "sha256-vufHXg8QAKxHlujPHHcrtGwAqFmsCD6HKjfDAiHyAYc=" }, + { + "pname": "System.Text.Encodings.Web", + "version": "6.0.1", + "hash": "sha256-l3oKwZStjew/ClSrDaVLyHDAExoP6Iwm6uqJSdI9YJo=" + }, { "pname": "System.Text.Encodings.Web", "version": "8.0.0", "hash": "sha256-IUQkQkV9po1LC0QsqrilqwNzPvnc+4eVvq+hCvq8fvE=" }, + { + "pname": "System.Text.Json", + "version": "6.0.11", + "hash": "sha256-KsgOU3RvSN/Kc+my45K0eua4owQPZar81LVF2Kzupf0=" + }, { "pname": "System.Text.Json", "version": "8.0.0", @@ -3339,11 +3389,6 @@ "version": "7.0.0", "hash": "sha256-Cu0gjQsLIR8Yvh0B4cOPJSYVq10a+3F9pVz/C43CNeM=" }, - { - "pname": "System.Threading.Channels", - "version": "9.0.0", - "hash": "sha256-depIorJqzjyWew0+aBRgbGh88KWivbp9RrtWZHFr+pI=" - }, { "pname": "System.Threading.RateLimiting", "version": "8.0.0", @@ -3384,6 +3429,11 @@ "version": "4.3.0", "hash": "sha256-pmhslmhQhP32TWbBzoITLZ4BoORBqYk25OWbru04p9s=" }, + { + "pname": "System.ValueTuple", + "version": "4.6.1", + "hash": "sha256-Hb87MPcNdHQRlREDzFEKU8ZqtKN26bjyAiimJmm6LWI=" + }, { "pname": "System.Windows.Extensions", "version": "6.0.0", @@ -3451,23 +3501,28 @@ }, { "pname": "TUnit", - "version": "0.57.24", - "hash": "sha256-19XQGB9UbhPqTeubaMo4Vq/MwNfhdEajmsqegQiJib0=" + "version": "0.86.5", + "hash": "sha256-XQ0ByaufvRy5Vwxj5HEeCDkm7oiwVyoURc7Nz924Pdk=" }, { "pname": "TUnit.Assertions", - "version": "0.57.24", - "hash": "sha256-yRSwh/BMUR4eOiNWVFK7IXZITKq5nYnsgVR6ws4ABfs=" + "version": "0.86.5", + "hash": "sha256-pnfw4mRwFwi999iWwd0zkw/S5zy0dxF4lnBTzTnZygM=" }, { "pname": "TUnit.Core", - "version": "0.57.24", - "hash": "sha256-dpTSlAhcZbMzUil9OOnQNgLWrtJMykUKCSHQclQzNjY=" + "version": "0.86.5", + "hash": "sha256-wmxyJjA7W6+jrvlOIHJGMinXCnE28dxY62NxENwinpw=" + }, + { + "pname": "TUnit.Core", + "version": "0.87.8", + "hash": "sha256-3g5K6et+5j4dZQ9+QLNZLEuxv+08XwOywtnHAy0mTjI=" }, { "pname": "TUnit.Engine", - "version": "0.57.24", - "hash": "sha256-jbtRa1lMhtQW99sYDM33F89e7dCmqaH72vQJBAc1jog=" + "version": "0.86.5", + "hash": "sha256-zVvBfu74t8qc0TySg2o56QckmpRWjWOYlAfcaxamycA=" }, { "pname": "Validation", @@ -3504,6 +3559,11 @@ "version": "30.7.3", "hash": "sha256-ET3tUBfryHi17VYavmA0n/U0vPWxO7Am1imPs6MYcYk=" }, + { + "pname": "Verify", + "version": "31.4.1", + "hash": "sha256-vUQvTnyKkcCBwUNMldQWIaD/2JntWpSvfn/4TWNHvLU=" + }, { "pname": "Verify.ImageMagick", "version": "3.7.3", @@ -3516,8 +3576,8 @@ }, { "pname": "Verify.TUnit", - "version": "30.11.0", - "hash": "sha256-xuP2oetSNIBhCzt7go3S2Icy8wy3pBseq4XcEMMrDV8=" + "version": "31.4.1", + "hash": "sha256-aZ0/tGsdRYiJLS45ghhEEWPx9bQfZGHdgddGqTlP9nM=" }, { "pname": "Verify.Xunit", diff --git a/pkgs/by-name/ne/nexusmods-app/package.nix b/pkgs/by-name/ne/nexusmods-app/package.nix index 5041b96063fa..58688dc64611 100644 --- a/pkgs/by-name/ne/nexusmods-app/package.nix +++ b/pkgs/by-name/ne/nexusmods-app/package.nix @@ -22,13 +22,13 @@ let in buildDotnetModule (finalAttrs: { inherit pname; - version = "0.20.2"; + version = "0.21.1"; src = fetchFromGitHub { owner = "Nexus-Mods"; repo = "NexusMods.App"; tag = "v${finalAttrs.version}"; - hash = "sha256-hpsrHHh0Bk+9Z4Qp5aTqH5i8KnqCLQdseYGrbr4sh1k="; + hash = "sha256-RTQ3EwfA7hRfnCJoRubWtaqFVHhRdbWfLTBORVc+kss="; fetchSubmodules = true; }; @@ -137,6 +137,9 @@ buildDotnetModule (finalAttrs: { "--environment=USER=nobody" "--property:Version=${finalAttrs.version}" "--property:DefineConstants=${lib.strings.concatStringsSep "%3B" constants}" + + # Disable native apphosts for tests; they fail in checkPhase as the wrapper env (DOTNET_ROOT, libs) isn't applied + "--property:UseAppHost=false" ]; testFilters = [ diff --git a/pkgs/by-name/ne/nexusmods-app/vendored/games.json b/pkgs/by-name/ne/nexusmods-app/vendored/games.json index 00e9d035c0dd..6d7b4767e012 100644 --- a/pkgs/by-name/ne/nexusmods-app/vendored/games.json +++ b/pkgs/by-name/ne/nexusmods-app/vendored/games.json @@ -6,12 +6,12 @@ "forum_url": "https://forums.nexusmods.com/games/19-stardew-valley/", "nexusmods_url": "https://www.nexusmods.com/stardewvalley", "genre": "Simulation", - "file_count": 144372, - "downloads": 635510946, + "file_count": 145440, + "downloads": 642501970, "domain_name": "stardewvalley", "approved_date": 1457432329, - "mods": 26187, - "collections": 1990 + "mods": 26417, + "collections": 1958 }, { "id": 1704, @@ -20,12 +20,12 @@ "forum_url": "https://forums.nexusmods.com/games/6-skyrim/", "nexusmods_url": "https://www.nexusmods.com/skyrimspecialedition", "genre": "RPG", - "file_count": 667120, - "downloads": 9346275237, + "file_count": 671705, + "downloads": 9497429062, "domain_name": "skyrimspecialedition", "approved_date": 1477480498, - "mods": 119859, - "collections": 4876 + "mods": 120722, + "collections": 4886 }, { "id": 3174, @@ -34,11 +34,11 @@ "forum_url": "https://forums.nexusmods.com/games/9-mount-blade-ii-bannerlord/", "nexusmods_url": "https://www.nexusmods.com/mountandblade2bannerlord", "genre": "Strategy", - "file_count": 50960, - "downloads": 117558949, + "file_count": 51310, + "downloads": 118459993, "domain_name": "mountandblade2bannerlord", "approved_date": 1582898627, - "mods": 6397, + "mods": 6455, "collections": 294 }, { @@ -48,12 +48,12 @@ "forum_url": "https://forums.nexusmods.com/games/1-cyberpunk-2077/", "nexusmods_url": "https://www.nexusmods.com/cyberpunk2077", "genre": "Action", - "file_count": 126752, - "downloads": 958960285, + "file_count": 127687, + "downloads": 981788054, "domain_name": "cyberpunk2077", "approved_date": 1607433331, - "mods": 18283, - "collections": 1597 + "mods": 18464, + "collections": 1613 }, { "id": 3474, @@ -62,11 +62,11 @@ "forum_url": "https://forums.nexusmods.com/games/2-baldurs-gate-3/", "nexusmods_url": "https://www.nexusmods.com/baldursgate3", "genre": "RPG", - "file_count": 106755, - "downloads": 359737700, + "file_count": 107598, + "downloads": 366648874, "domain_name": "baldursgate3", "approved_date": 1602863114, - "mods": 15196, - "collections": 1740 + "mods": 15345, + "collections": 1725 } ] diff --git a/pkgs/by-name/ni/nixos-rebuild-ng/src/nixos_rebuild/nix.py b/pkgs/by-name/ni/nixos-rebuild-ng/src/nixos_rebuild/nix.py index 9a7062c816eb..580172b3dac1 100644 --- a/pkgs/by-name/ni/nixos-rebuild-ng/src/nixos_rebuild/nix.py +++ b/pkgs/by-name/ni/nixos-rebuild-ng/src/nixos_rebuild/nix.py @@ -190,7 +190,7 @@ def copy_closure( sshopts = os.getenv("NIX_SSHOPTS", "") extra_env = { - "NIX_SSHOPTS": " ".join(filter(lambda x: x, [*SSH_DEFAULT_OPTS, sshopts])) + "NIX_SSHOPTS": " ".join(filter(lambda x: x, [sshopts, *SSH_DEFAULT_OPTS])) } def nix_copy_closure(host: Remote, to: bool) -> None: diff --git a/pkgs/by-name/ni/nixos-rebuild-ng/src/tests/test_nix.py b/pkgs/by-name/ni/nixos-rebuild-ng/src/tests/test_nix.py index 6cc525410fe4..20bba2e83818 100644 --- a/pkgs/by-name/ni/nixos-rebuild-ng/src/tests/test_nix.py +++ b/pkgs/by-name/ni/nixos-rebuild-ng/src/tests/test_nix.py @@ -134,7 +134,7 @@ def test_build_remote( Path("/path/to/file"), ], extra_env={ - "NIX_SSHOPTS": " ".join([*p.SSH_DEFAULT_OPTS, "--ssh opts"]) + "NIX_SSHOPTS": " ".join(["--ssh opts", *p.SSH_DEFAULT_OPTS]) }, ), call( @@ -208,7 +208,7 @@ def test_build_remote_flake( Path("/path/to/file"), ], extra_env={ - "NIX_SSHOPTS": " ".join([*p.SSH_DEFAULT_OPTS, "--ssh opts"]) + "NIX_SSHOPTS": " ".join(["--ssh opts", *p.SSH_DEFAULT_OPTS]) }, ), call( @@ -249,13 +249,13 @@ def test_copy_closure(monkeypatch: MonkeyPatch) -> None: mock_run.assert_called_with( ["nix-copy-closure", "--copy-flag", "--from", "user@build.host", closure], extra_env={ - "NIX_SSHOPTS": " ".join([*p.SSH_DEFAULT_OPTS, "--ssh build-opt"]) + "NIX_SSHOPTS": " ".join(["--ssh build-opt", *p.SSH_DEFAULT_OPTS]) }, ) monkeypatch.setenv("NIX_SSHOPTS", "--ssh build-target-opt") extra_env = { - "NIX_SSHOPTS": " ".join([*p.SSH_DEFAULT_OPTS, "--ssh build-target-opt"]) + "NIX_SSHOPTS": " ".join(["--ssh build-target-opt", *p.SSH_DEFAULT_OPTS]) } with patch(get_qualified_name(n.run_wrapper, n), autospec=True) as mock_run: n.copy_closure(closure, target_host, build_host, {"copy_flag": True}) diff --git a/pkgs/by-name/ok/okteto/package.nix b/pkgs/by-name/ok/okteto/package.nix index 3d870b674891..af878302a83f 100644 --- a/pkgs/by-name/ok/okteto/package.nix +++ b/pkgs/by-name/ok/okteto/package.nix @@ -9,16 +9,16 @@ buildGoModule (finalAttrs: { pname = "okteto"; - version = "3.13.1"; + version = "3.13.2"; src = fetchFromGitHub { owner = "okteto"; repo = "okteto"; tag = finalAttrs.version; - hash = "sha256-Z++IClBMuzhoI3rJZsBAqllsXbbqOK+JQLQJkLl67qg="; + hash = "sha256-UEnviH+DX9DxgVXsi/hutw97TOvEz2zr2cI9y47+9z8="; }; - vendorHash = "sha256-/gB/7NCzoZhaKUIkPaABGrKNoruHuAwTIcH75SBBAMg="; + vendorHash = "sha256-8pfrp7eOsgpCB44TQXn98G8+5WSn4EnuGKt6JUajAQ8="; postPatch = '' # Disable some tests that need file system & network access. diff --git a/pkgs/by-name/oo/ooniprobe-cli/package.nix b/pkgs/by-name/oo/ooniprobe-cli/package.nix index 3789fdc11a19..f19bc733b879 100644 --- a/pkgs/by-name/oo/ooniprobe-cli/package.nix +++ b/pkgs/by-name/oo/ooniprobe-cli/package.nix @@ -6,16 +6,16 @@ buildGoModule rec { pname = "ooniprobe-cli"; - version = "3.27.0"; + version = "3.28.0"; src = fetchFromGitHub { owner = "ooni"; repo = "probe-cli"; tag = "v${version}"; - hash = "sha256-dVYxq/ojE3nPxdkQEXocJJKNXeaaS+Sdq+CO8j5M5jM="; + hash = "sha256-94N5pOj73HERGqTt6o6MweW9W5bL2W7CBrUa7jQt7fM="; }; - vendorHash = "sha256-JnvP0PUOYNJLBpY9BWlC6cJ+Sor2gxDgSKJ8KnUctWc="; + vendorHash = "sha256-3cjohavZfK4hoOMPVLvzwp4ORQ00baqtFUhFyA7Z8OM="; subPackages = [ "cmd/ooniprobe" ]; diff --git a/pkgs/by-name/op/opencode/hashes.json b/pkgs/by-name/op/opencode/hashes.json index 77927f0f7894..24ab419ee9bc 100644 --- a/pkgs/by-name/op/opencode/hashes.json +++ b/pkgs/by-name/op/opencode/hashes.json @@ -1,8 +1,8 @@ { "node_modules": { - "aarch64-linux": "3yXOsptDRUoyL/FBQu8esD4ipudOA9jyLenNt1WChMU=", - "x86_64-linux": "sha256-ocgmxMx+V6uBMLZTrHfYAqO4l38WQVCrQ2AbUWagaoM=", - "aarch64-darwin": "sha256-xNU+ucIy84iqmyoWKwwLBIV34TTmH/OGmIbIiNOPM/w=", - "x86_64-darwin": "sha256-9kplc7tpWgYnB+4471EBkE2xYF3RkpgKqpg26M6bUPs=" + "aarch64-linux": "sha256-uqOotHS6p5mLBmh3f7lka9boXBz7trTKuGahGfOSTD4=", + "x86_64-linux": "sha256-qlVlP5ayYTuf/uZIW7lk8wKYxArB0jOHmw94yK9v9Bg=", + "aarch64-darwin": "sha256-dDKVLmE33P9epJFmsUluDjtyVL5jT87atpv8qbEFy7o=", + "x86_64-darwin": "sha256-eBsU9hSf1tRfp8ErZtmM731YVtVRZ8ovQ5nYmokaPD0=" } } diff --git a/pkgs/by-name/op/opencode/local-models-dev.patch b/pkgs/by-name/op/opencode/local-models-dev.patch deleted file mode 100644 index 21ecd38fb0c8..000000000000 --- a/pkgs/by-name/op/opencode/local-models-dev.patch +++ /dev/null @@ -1,20 +0,0 @@ -diff --git i/packages/opencode/src/provider/models-macro.ts w/packages/opencode/src/provider/models-macro.ts -index 91a0348..4f60069 100644 ---- i/packages/opencode/src/provider/models-macro.ts -+++ w/packages/opencode/src/provider/models-macro.ts -@@ -1,4 +1,15 @@ - export async function data() { -+ const localApiJsonPath = process.env.MODELS_DEV_API_JSON -+ -+ // Try to read from local file if path is provided -+ if (localApiJsonPath) { -+ const localFile = Bun.file(localApiJsonPath) -+ if (await localFile.exists()) { -+ return await localFile.text() -+ } -+ } -+ -+ // Fallback to fetching from remote URL - const json = await fetch("https://models.dev/api.json").then((x) => x.text()) - return json - } diff --git a/pkgs/by-name/op/opencode/package.nix b/pkgs/by-name/op/opencode/package.nix index ab7e65fab508..3f28f7940ca0 100644 --- a/pkgs/by-name/op/opencode/package.nix +++ b/pkgs/by-name/op/opencode/package.nix @@ -14,12 +14,12 @@ stdenvNoCC.mkDerivation (finalAttrs: { pname = "opencode"; - version = "1.0.45"; + version = "1.0.78"; src = fetchFromGitHub { owner = "sst"; repo = "opencode"; tag = "v${finalAttrs.version}"; - hash = "sha256-59nsauILNEvQ4Q8ATHKtgTViIWMaFnUyBf7CN6qrtdk="; + hash = "sha256-o+rNkij9niggHkA+TtexTbrXLK0I9Ol1Cp9NC/wEuAk="; }; node_modules = stdenvNoCC.mkDerivation { @@ -80,9 +80,6 @@ stdenvNoCC.mkDerivation (finalAttrs: { ]; patches = [ - # NOTE: Patch `packages/opencode/src/provider/models-macro.ts` to get contents of - # `_api.json` from the file bundled with `bun build`. - ./local-models-dev.patch # NOTE: Skip npm pack commands in build.ts since packages are already in node_modules ./skip-npm-pack.patch ]; @@ -168,5 +165,9 @@ stdenvNoCC.mkDerivation (finalAttrs: { license = lib.licenses.mit; platforms = lib.platforms.unix; mainProgram = "opencode"; + badPlatforms = [ + # Problems with bun >= 1.3.2, see https://github.com/oven-sh/bun/issues/24645 + lib.systems.inspect.patterns.isDarwin + ]; }; }) diff --git a/pkgs/by-name/op/opencode/skip-npm-pack.patch b/pkgs/by-name/op/opencode/skip-npm-pack.patch index 67825e14e99a..7b912be349ae 100644 --- a/pkgs/by-name/op/opencode/skip-npm-pack.patch +++ b/pkgs/by-name/op/opencode/skip-npm-pack.patch @@ -1,22 +1,27 @@ diff --git i/packages/opencode/script/build.ts w/packages/opencode/script/build.ts -index 29706c09..584b00d4 100755 +index 502baed..f854e99 100755 --- i/packages/opencode/script/build.ts +++ w/packages/opencode/script/build.ts -@@ -39,15 +39,9 @@ for (const [os, arch] of targets) { - const name = `${pkg.name}-${os}-${arch}` - await $`mkdir -p dist/${name}/bin` +@@ -77,14 +77,19 @@ const allTargets: { + ] -- const opentui = `@opentui/core-${os === "windows" ? "win32" : os}-${arch.replace("-baseline", "")}` -- await $`mkdir -p ../../node_modules/${opentui}` -- await $`npm pack ${opentui}@${pkg.dependencies["@opentui/core"]}`.cwd(path.join(dir, "../../node_modules")) -- await $`tar -xf ../../node_modules/${opentui.replace("@opentui/", "opentui-")}-*.tgz -C ../../node_modules/${opentui} --strip-components=1` -+ // Skip npm pack - packages already installed in node_modules by Nix + const targets = singleFlag +- ? allTargets.filter((item) => item.os === process.platform && item.arch === process.arch) ++ ? allTargets.filter((item) => ++ item.os === process.platform && ++ item.arch === process.arch && ++ item.avx2 !== false && ++ item.abi === undefined ++ ).slice(0, 1) + : allTargets -- const watcher = `@parcel/watcher-${os === "windows" ? "win32" : os}-${arch.replace("-baseline", "")}${os === "linux" ? "-glibc" : ""}` -- await $`mkdir -p ../../node_modules/${watcher}` -- await $`npm pack ${watcher}`.cwd(path.join(dir, "../../node_modules")).quiet() -- await $`tar -xf ../../node_modules/${watcher.replace("@parcel/", "parcel-")}-*.tgz -C ../../node_modules/${watcher} --strip-components=1` -+ // Skip npm pack - packages already installed in node_modules by Nix + await $`rm -rf dist` - const parserWorker = fs.realpathSync(path.resolve(dir, "./node_modules/@opentui/core/parser.worker.js")) - const workerPath = "./src/cli/cmd/tui/worker.ts" + const binaries: Record = {} +-await $`bun install --os="*" --cpu="*" @opentui/core@${pkg.dependencies["@opentui/core"]}` +-await $`bun install --os="*" --cpu="*" @parcel/watcher@${pkg.dependencies["@parcel/watcher"]}` ++// Skip bun install - packages already installed in node_modules by Nix ++// Skip bun install - packages already installed in node_modules by Nix + for (const item of targets) { + const name = [ + pkg.name, diff --git a/pkgs/by-name/ot/otree/package.nix b/pkgs/by-name/ot/otree/package.nix index 6b52157159f5..50731694d28a 100644 --- a/pkgs/by-name/ot/otree/package.nix +++ b/pkgs/by-name/ot/otree/package.nix @@ -6,16 +6,16 @@ rustPlatform.buildRustPackage rec { pname = "otree"; - version = "0.6.2"; + version = "0.6.3"; src = fetchFromGitHub { owner = "fioncat"; repo = "otree"; tag = "v${version}"; - hash = "sha256-A4UY3SRahpxl6xqJuamXlBenemJuvFS6KcHKOXEHDyw="; + hash = "sha256-l2hU1a2yfXo8u8wjSmvzL+nzniMQFKvdBhQ0eqqG3tg="; }; - cargoHash = "sha256-cePX4Uxu7BOsB1JIGAsDfiOLeVAgL+0Lnst4shtpEX4="; + cargoHash = "sha256-UyomqesHDaGDEBHVcQMwUI7kH8akOOuyXOL/r4gfiAo="; meta = { description = "Command line tool to view objects (JSON/YAML/TOML/XML) in TUI tree widget"; diff --git a/pkgs/by-name/pl/plutovg/package.nix b/pkgs/by-name/pl/plutovg/package.nix index 215deb6498d7..68fce8f15a4e 100644 --- a/pkgs/by-name/pl/plutovg/package.nix +++ b/pkgs/by-name/pl/plutovg/package.nix @@ -8,13 +8,13 @@ }: stdenv.mkDerivation (finalAttrs: { pname = "plutovg"; - version = "1.3.1"; + version = "1.3.2"; src = fetchFromGitHub { owner = "sammycage"; repo = "plutovg"; tag = "v${finalAttrs.version}"; - hash = "sha256-6UW+laVxTYvg+5qC12yA6U6gPKdFQeb7sdDunZ6gcd4="; + hash = "sha256-4TvbNsElDL7WX3yXLDM5nwHFCHQdUclk6HQ5MbPUEZE="; }; cmakeFlags = [ diff --git a/pkgs/by-name/po/pocketbase/package.nix b/pkgs/by-name/po/pocketbase/package.nix index 931857395bef..7872cb27092c 100644 --- a/pkgs/by-name/po/pocketbase/package.nix +++ b/pkgs/by-name/po/pocketbase/package.nix @@ -7,16 +7,16 @@ buildGoModule rec { pname = "pocketbase"; - version = "0.32.0"; + version = "0.33.0"; src = fetchFromGitHub { owner = "pocketbase"; repo = "pocketbase"; rev = "v${version}"; - hash = "sha256-c18HyzgeUeiVU80Dt7PlJbeLZj/gcbxQPk4mFqYI4n8="; + hash = "sha256-j7Df+pl1pzSUQAbglnrAB/kat4TMFdm2ch2ZNeJDi68="; }; - vendorHash = "sha256-J2HS/EGER+0h/y0EizTH4Lrf3kcSXJ5hg9ACZVMD4VY="; + vendorHash = "sha256-KhHW79vON4Kkw7TbNObKQtftBAlQepyFMpUjrRhUQh8="; # This is the released subpackage from upstream repo subPackages = [ "examples/base" ]; diff --git a/pkgs/by-name/po/postman/package.nix b/pkgs/by-name/po/postman/package.nix index 6670b6e563d8..88c07e019c94 100644 --- a/pkgs/by-name/po/postman/package.nix +++ b/pkgs/by-name/po/postman/package.nix @@ -43,9 +43,9 @@ let exit 0 fi update-source-version postman $latestVersion - systems=$(nix eval --json -f . postman.meta.platforms | jq --raw-output '.[]') + systems=$(nix --extra-experimental-features nix-command eval --json -f . postman.meta.platforms | jq --raw-output '.[]') for system in $systems; do - hash=$(nix --extra-experimental-features nix-command hash convert --to sri --hash-algo sha256 $(nix-prefetch-url $(nix eval --raw -f . postman.src.url --system "$system"))) + hash=$(nix --extra-experimental-features nix-command hash convert --to sri --hash-algo sha256 $(nix-prefetch-url $(nix --extra-experimental-features nix-command eval --raw -f . postman.src.url --system "$system"))) update-source-version postman $latestVersion $hash --system=$system --ignore-same-version --ignore-same-hash done ''; @@ -70,6 +70,7 @@ let "x86_64-linux" ]; sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + mainProgram = "postman"; }; in diff --git a/pkgs/by-name/pr/prek/package.nix b/pkgs/by-name/pr/prek/package.nix index 3b04daf72b4a..f3989a6fb121 100644 --- a/pkgs/by-name/pr/prek/package.nix +++ b/pkgs/by-name/pr/prek/package.nix @@ -9,16 +9,16 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "prek"; - version = "0.2.11"; + version = "0.2.17"; src = fetchFromGitHub { owner = "j178"; repo = "prek"; tag = "v${finalAttrs.version}"; - hash = "sha256-wzbvofNOAtqbjO5//ECu1FeZrS0FyDvFZPKxC0fOJnE="; + sha256 = "sha256-7GTp1UBAnxLVEQFTQbBxGiKSvZwEVVMA7oa3Iz5Ifzk="; }; - cargoHash = "sha256-KVGdAPyUlPCgcx1DpZbfNRNmALdJvzOcsv3WQy3Q7OI="; + cargoHash = "sha256-i09ZcG3xUt+qFZge/8MiZ5yKxIeBd3l0BYlY5OFf3l8="; preBuild = '' version312_str=$(${python312}/bin/python -c 'import sys; print(sys.version_info[:3])') @@ -66,6 +66,8 @@ rustPlatform.buildRustPackage (finalAttrs: { "script" "check_useless_excludes_remote" "run_worktree" + "try_repo_relative_path" + "languages::tests::test_native_tls" # "meta_hooks" "reuse_env" "docker::docker" @@ -86,6 +88,17 @@ rustPlatform.buildRustPackage (finalAttrs: { "python::can_not_download" "python::hook_stderr" "python::language_version" + "ruby::additional_gem_dependencies" + "ruby::environment_isolation" + "ruby::gemspec_workflow" + "ruby::language_version_default" + "ruby::local_hook_with_gemspec" + "ruby::native_gem_dependency" + "ruby::native_gem_dependency" + "ruby::process_files" + "ruby::specific_ruby_available" + "ruby::specific_ruby_unavailable" + "ruby::system_ruby" # can't checkout pre-commit-hooks "cjk_hook_name" "fail_fast" @@ -116,6 +129,8 @@ rustPlatform.buildRustPackage (finalAttrs: { "no_commit_to_branch_hook" "no_commit_to_branch_hook_with_custom_branches" "no_commit_to_branch_hook_with_patterns" + "check_executables_have_shebangs_various_cases" + "check_executables_have_shebangs_hook" # does not properly use TMP "hook_impl" # problems with environment diff --git a/pkgs/by-name/pr/protoc-gen-grpc-java/data.nix b/pkgs/by-name/pr/protoc-gen-grpc-java/data.nix index 6f371dabddc7..d76560c49121 100644 --- a/pkgs/by-name/pr/protoc-gen-grpc-java/data.nix +++ b/pkgs/by-name/pr/protoc-gen-grpc-java/data.nix @@ -1,14 +1,14 @@ { - version = "1.76.0"; + version = "1.77.0"; hashes = { - linux-aarch_64 = "sha256-Omkq1WIhrUuppemKB8qR5nZsk7BH1oZTxEaMTMyuihQ="; - linux-ppcle_64 = "sha256-QG6tupI8BuXIr6dBH/FuKfHmuvgDdXhT929HvK/hS3o="; - linux-s390_64 = "sha256-8WfqHgzSUFsDt5iql1AtWJlGKgZ3I+N/bsAeKS6N5vI="; - linux-x86_32 = "sha256-LIArnJ6aQEH/0Tg9LgwgD/JUxDrLExJEuiK9cQWk+V0="; - linux-x86_64 = "sha256-AZJthJEssAc6vZsxBGdUFtMPKxdXN2tSb6Dfu5QnIhg="; - osx-aarch_64 = "sha256-gQDGfR6lR/w03WONsgh2khNJ35nEJgj9/c8c7xXB1v8="; - osx-x86_64 = "sha256-gQDGfR6lR/w03WONsgh2khNJ35nEJgj9/c8c7xXB1v8="; - windows-x86_32 = "sha256-VtOwQ+PJxsEGEGAzjSFJTcu9W4FiPXmfRqpJQeOAgRU="; - windows-x86_64 = "sha256-RAIkIzJRMqK+MkYHsS0QIwt7mFtAevciyreogPRVdA4="; + linux-aarch_64 = "sha256-2sY1n35HOW4jwGk48GQOHDmh2bd9V9GFT/UylKBIel0="; + linux-ppcle_64 = "sha256-hYxdveN3RpUNLv4g3BMO4CAeYpV13hGmZEdS///yfE4="; + linux-s390_64 = "sha256-7cnA9dXZTiYEhR6PwsBmRZ0UDmKrxoeGZqVjHUHKxQQ="; + linux-x86_32 = "sha256-QVc2ANzOqoyLOAy1r+daY9OmbXrF1ebmB/oNS+gj70Q="; + linux-x86_64 = "sha256-b+H3Llnxl0Cb7/TNolyay/noKrexz7IMGFvC5hlWwo4="; + osx-aarch_64 = "sha256-5H2txiDsG21tpFB9meM7tKGw+IZzBC8IoBlPScxckhQ="; + osx-x86_64 = "sha256-5H2txiDsG21tpFB9meM7tKGw+IZzBC8IoBlPScxckhQ="; + windows-x86_32 = "sha256-YkUchHqd20lmICFIEdPv+pHpSx1D89im1BOTureQIco="; + windows-x86_64 = "sha256-35/e+ampAdMFI/xFh3dDD2cR0qzvNAsJBjn6ui1J2hE="; }; } diff --git a/pkgs/by-name/ps/pscale/package.nix b/pkgs/by-name/ps/pscale/package.nix index 2831ac8f24eb..5e06330b1d7d 100644 --- a/pkgs/by-name/ps/pscale/package.nix +++ b/pkgs/by-name/ps/pscale/package.nix @@ -10,16 +10,16 @@ buildGoModule rec { pname = "pscale"; - version = "0.260.0"; + version = "0.261.0"; src = fetchFromGitHub { owner = "planetscale"; repo = "cli"; rev = "v${version}"; - sha256 = "sha256-E35/bvTaqaW1+19nHpO+RoYGucR/fH+QxsCqHmGe5b0="; + sha256 = "sha256-R4H6+OmzT+++fHSTAFypeO+LvF6FdxZcUPUGfjoJq7w="; }; - vendorHash = "sha256-QW4CbnDEksNYjwU51KnNR2FXGCmMkQtfEBn8z5E+c/0="; + vendorHash = "sha256-J8idPGvFBK9E9DsOyehrSSCkHYTVy/rHp2RbsuzZ6zo="; ldflags = [ "-s" diff --git a/pkgs/by-name/py/pyenv/package.nix b/pkgs/by-name/py/pyenv/package.nix index 625cd52110dd..1ccacd3d7cf5 100644 --- a/pkgs/by-name/py/pyenv/package.nix +++ b/pkgs/by-name/py/pyenv/package.nix @@ -7,13 +7,13 @@ stdenv.mkDerivation rec { pname = "pyenv"; - version = "2.6.12"; + version = "2.6.13"; src = fetchFromGitHub { owner = "pyenv"; repo = "pyenv"; tag = "v${version}"; - hash = "sha256-oGhdODWjE1FFcFdKUMAznUQ7kdWZMJ2M/ssBOEd+Ce0="; + hash = "sha256-VsVVdIjM7sknimEUeeBO8rU8khS9tk3xoAfiwXK+qQo="; }; nativeBuildInputs = [ diff --git a/pkgs/by-name/ra/rattler-build/package.nix b/pkgs/by-name/ra/rattler-build/package.nix index f4728fef22db..ec847d4fce2f 100644 --- a/pkgs/by-name/ra/rattler-build/package.nix +++ b/pkgs/by-name/ra/rattler-build/package.nix @@ -14,16 +14,16 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "rattler-build"; - version = "0.49.0"; + version = "0.50.0"; src = fetchFromGitHub { owner = "prefix-dev"; repo = "rattler-build"; tag = "v${finalAttrs.version}"; - hash = "sha256-wh61wde8w6xrnCPiFCh9j+DBqe8kD9/AOe3PEiieefU="; + hash = "sha256-cLlSVl+1Ukne9L658eoSsYpxi3x5rQ0WASLf1gN+W44="; }; - cargoHash = "sha256-MH6DSGJ0xZw1+60lB4Yn0K/yiRQYE3KaxEpSih4145M="; + cargoHash = "sha256-q4MA/LvYNsTHSBnqVT/cHmf5A72XfEjemyjpaTDaho8="; doCheck = false; # test requires network access diff --git a/pkgs/by-name/re/readest/package.nix b/pkgs/by-name/re/readest/package.nix index 38861008971e..28e81c019666 100644 --- a/pkgs/by-name/re/readest/package.nix +++ b/pkgs/by-name/re/readest/package.nix @@ -20,13 +20,13 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "readest"; - version = "0.9.91"; + version = "0.9.92"; src = fetchFromGitHub { owner = "readest"; repo = "readest"; tag = "v${finalAttrs.version}"; - hash = "sha256-Xz+s+yv0L2bj7T6GA6IkMGTAk2oGyFuYR5zzyeLbTuc="; + hash = "sha256-cXUhDnYjYOD69ESIRii25PXaOTiA5uhoATQiuWLEsu0="; fetchSubmodules = true; }; @@ -40,7 +40,7 @@ rustPlatform.buildRustPackage (finalAttrs: { pnpmDeps = pnpm_9.fetchDeps { inherit (finalAttrs) pname version src; fetcherVersion = 1; - hash = "sha256-RsmI0avMnVWlLMzwGJJmPNSEJpNaq7IWimjpMJ+nR80="; + hash = "sha256-z7eOiaNXUb2wb014MOGAejZc2fgoMTavhJsNQaygFzc="; }; pnpmRoot = "../.."; diff --git a/pkgs/by-name/re/reindeer/package.nix b/pkgs/by-name/re/reindeer/package.nix index fa8676808981..da7d263159fe 100644 --- a/pkgs/by-name/re/reindeer/package.nix +++ b/pkgs/by-name/re/reindeer/package.nix @@ -9,16 +9,16 @@ rustPlatform.buildRustPackage rec { pname = "reindeer"; - version = "2025.11.10.00"; + version = "2025.11.17.00"; src = fetchFromGitHub { owner = "facebookincubator"; repo = "reindeer"; tag = "v${version}"; - hash = "sha256-9a8WmCus1WMb/vdvfVlCFRtVxpm9HDA5MxFwMm5VmX4="; + hash = "sha256-x3g9tPsYD1anN6RNgyGHlqMSxkJrnc4NSm6/VZAELcc="; }; - cargoHash = "sha256-MI4NDc5QDC6EUi8XoeUovaRYFva+5piHoccezrJHdnA="; + cargoHash = "sha256-9UsgXDKL9dKoEtjYf8f54CktMGrJMGcLym5sdDqdCv4="; nativeBuildInputs = [ pkg-config ]; diff --git a/pkgs/by-name/re/retool/package.nix b/pkgs/by-name/re/retool/package.nix index 590046496d13..126d02ceea82 100644 --- a/pkgs/by-name/re/retool/package.nix +++ b/pkgs/by-name/re/retool/package.nix @@ -8,7 +8,7 @@ python3.pkgs.buildPythonApplication rec { pname = "retool"; - version = "2.4.4"; + version = "2.4.5"; pyproject = true; disabled = python3.pkgs.pythonOlder "3.10"; @@ -17,7 +17,7 @@ python3.pkgs.buildPythonApplication rec { owner = "unexpectedpanda"; repo = "retool"; tag = "v${version}"; - hash = "sha256-hWCMxWcjjFF5xg7WrF4wjwGneoQCEUp+4oe+CieElcQ="; + hash = "sha256-q1v/VPcKIMGcAtnELKUpVgRGPyMmL8zJr5RdOClCwoc="; }; nativeBuildInputs = with python3.pkgs; [ diff --git a/pkgs/by-name/ri/rime-wanxiang/package.nix b/pkgs/by-name/ri/rime-wanxiang/package.nix index d7152a14ae8d..523deafe71d9 100644 --- a/pkgs/by-name/ri/rime-wanxiang/package.nix +++ b/pkgs/by-name/ri/rime-wanxiang/package.nix @@ -7,13 +7,13 @@ stdenvNoCC.mkDerivation (finalAttrs: { pname = "rime-wanxiang"; - version = "13.2.4"; + version = "13.3.13"; src = fetchFromGitHub { owner = "amzxyz"; repo = "rime_wanxiang"; tag = "v" + finalAttrs.version; - hash = "sha256-kr9Gr6GBWy/SJtjHqdATbcZAF4Gt3bbkI956NQCAwCc="; + hash = "sha256-XAhltyqzs+yLx7HWFQdb7veuD2LYFh4xb18V6N+e474="; }; installPhase = '' diff --git a/pkgs/by-name/s7/s7/package.nix b/pkgs/by-name/s7/s7/package.nix index e89a16e6b066..77c33f1bc18c 100644 --- a/pkgs/by-name/s7/s7/package.nix +++ b/pkgs/by-name/s7/s7/package.nix @@ -26,14 +26,14 @@ stdenv.mkDerivation (finalAttrs: { pname = "s7"; - version = "11.7-unstable-2025-11-12"; + version = "11.7-unstable-2025-11-18"; src = fetchFromGitLab { domain = "cm-gitlab.stanford.edu"; owner = "bil"; repo = "s7"; - rev = "5de700554e7aeeb538605874e0c292babe702736"; - hash = "sha256-PFdIdSKzWKyiLV1oo1t8JaCsyNOOXFqA62s7tZNSpdI="; + rev = "25525633c61f6dc9b71a15a2ffad01c860757cfb"; + hash = "sha256-SaMViWdYGG5wtIHqmZTPAaAl6p2e5qBR6Zz4eXS5O7Y="; }; buildInputs = diff --git a/pkgs/by-name/sa/saunafs/package.nix b/pkgs/by-name/sa/saunafs/package.nix index 6137211a8f8a..e4fbf89cdffe 100644 --- a/pkgs/by-name/sa/saunafs/package.nix +++ b/pkgs/by-name/sa/saunafs/package.nix @@ -18,17 +18,18 @@ judy, prometheus-cpp, libz, + gtest, }: stdenv.mkDerivation (finalAttrs: { pname = "saunafs"; - version = "5.1.2"; + version = "5.3.0"; src = fetchFromGitHub { owner = "leil-io"; repo = "saunafs"; rev = "v${finalAttrs.version}"; - hash = "sha256-56PlUeXHqNhKYokKWqLCeaP3FZBdefhQFQQoP8YytQQ="; + hash = "sha256-pT12m50q6unqx9IzRHRs8WE7ygVJW8bi0IKUHu8bGCs="; }; patches = [ @@ -59,6 +60,7 @@ stdenv.mkDerivation (finalAttrs: { judy prometheus-cpp libz + gtest ]; cmakeFlags = [ @@ -68,11 +70,13 @@ stdenv.mkDerivation (finalAttrs: { (lib.cmakeBool "ENABLE_JEMALLOC" true) ]; - postInstall = lib.optionalString (!stdenv.hostPlatform.isStatic) '' - rm $out/lib/*.a - - ln -s $out/bin/sfsmount $out/bin/mount.saunafs - ''; + postInstall = + lib.optionalString (!stdenv.hostPlatform.isStatic) '' + rm $out/lib/*.a + '' + + '' + ln -s $out/bin/sfsmount $out/bin/mount.saunafs + ''; passthru.tests = nixosTests.saunafs; diff --git a/pkgs/by-name/sc/scilla/package.nix b/pkgs/by-name/sc/scilla/package.nix index bc8845d062e2..170773ffe252 100644 --- a/pkgs/by-name/sc/scilla/package.nix +++ b/pkgs/by-name/sc/scilla/package.nix @@ -6,16 +6,16 @@ buildGoModule rec { pname = "scilla"; - version = "1.3.1"; + version = "1.3.2"; src = fetchFromGitHub { owner = "edoardottt"; repo = "scilla"; tag = "v${version}"; - hash = "sha256-V6QJqjuVLE6jpwv4XbsdPx8kpfTRjV4QH5O6lng9+h4="; + hash = "sha256-0aqcFtyi3cNiBelSTf8bwgxhErIDdXOI9c6FKT/Omlw="; }; - vendorHash = "sha256-yTsiEA6NI2atN1VrclwVe1xz7CEFfcuRt4yMuz2CFog="; + vendorHash = "sha256-0DDBvoJiHXka90gvcyxnldJJWvb8dfBFwRjHJO4pFGA="; ldflags = [ "-w" diff --git a/pkgs/by-name/sd/sdl_gamecontrollerdb/package.nix b/pkgs/by-name/sd/sdl_gamecontrollerdb/package.nix index a23c318ca5b3..03f459215b67 100644 --- a/pkgs/by-name/sd/sdl_gamecontrollerdb/package.nix +++ b/pkgs/by-name/sd/sdl_gamecontrollerdb/package.nix @@ -7,13 +7,13 @@ stdenvNoCC.mkDerivation (finalAttrs: { pname = "sdl_gamecontrollerdb"; - version = "0-unstable-2025-11-04"; + version = "0-unstable-2025-11-17"; src = fetchFromGitHub { owner = "mdqinc"; repo = "SDL_GameControllerDB"; - rev = "958e252520ece96cd1b03d5ff0d835db2f048991"; - hash = "sha256-xM/hdwLsNLisXKXLP2Np5enmL/q27xsV4OHSsM5vsuw="; + rev = "e1efb4bad8730b2c0c6316617cbd06b9def1192e"; + hash = "sha256-NeNWDVFEK54v5GoBybWeiNeJoe7u3e0Ci0yTB5n/57U="; }; dontBuild = true; diff --git a/pkgs/by-name/si/simdutf/package.nix b/pkgs/by-name/si/simdutf/package.nix index 41c7062327f2..10ac2ceef4de 100644 --- a/pkgs/by-name/si/simdutf/package.nix +++ b/pkgs/by-name/si/simdutf/package.nix @@ -8,13 +8,13 @@ stdenv.mkDerivation (finalAttrs: { pname = "simdutf"; - version = "7.5.0"; + version = "7.6.0"; src = fetchFromGitHub { owner = "simdutf"; repo = "simdutf"; rev = "v${finalAttrs.version}"; - hash = "sha256-qeUZ0LTTdQJrL/3HPssG4Zor+GqG1++PpF+CuGKUPmw="; + hash = "sha256-mhzyJCgFJC3K4o5vMy71hhIqsS/L7ts9+bSL5v0RMQI="; }; # Fix build on darwin diff --git a/pkgs/by-name/sl/slade-unstable/package.nix b/pkgs/by-name/sl/slade-unstable/package.nix index ac67e148b684..e81526c4b6dd 100644 --- a/pkgs/by-name/sl/slade-unstable/package.nix +++ b/pkgs/by-name/sl/slade-unstable/package.nix @@ -22,13 +22,13 @@ stdenv.mkDerivation { pname = "slade"; - version = "3.2.8-unstable-2025-11-10"; + version = "3.2.9-unstable-2025-11-19"; src = fetchFromGitHub { owner = "sirjuddington"; repo = "SLADE"; - rev = "ce9593a6c15656394249b52d2a6224a7a86c5a5a"; - hash = "sha256-1xp9BzCrUvifzb5ouU3Jdwe0SRDWo+A4p0YlcqT62Y0="; + rev = "47ffdea512d61ea7c628ba14759757975b87fd09"; + hash = "sha256-N6y5aqZ9V9+hxzFNzJCsGSWWzrCTIcppFy7Qb63Y/7I="; }; nativeBuildInputs = [ diff --git a/pkgs/by-name/so/solaar/package.nix b/pkgs/by-name/so/solaar/package.nix index 444b039d00ee..62f0dd26178b 100644 --- a/pkgs/by-name/so/solaar/package.nix +++ b/pkgs/by-name/so/solaar/package.nix @@ -8,6 +8,7 @@ gdk-pixbuf, libappindicator, librsvg, + upower, udevCheckHook, acl, }: @@ -17,14 +18,14 @@ # instead of adding this to `services.udev.packages` on NixOS, python3Packages.buildPythonApplication rec { pname = "solaar"; - version = "1.1.14"; + version = "1.1.16"; format = "setuptools"; src = fetchFromGitHub { owner = "pwr-Solaar"; repo = "Solaar"; tag = version; - hash = "sha256-cAM4h0OOXxItSf0Gb9PfHn385FXMKwvIUuYTrjgABwA="; + hash = "sha256-PhZoDRsckJXk2t2qR8O3ZGGeMUhmliqSpibfQDO7BeA="; }; outputs = [ @@ -42,6 +43,7 @@ python3Packages.buildPythonApplication rec { buildInputs = [ libappindicator librsvg + upower ]; propagatedBuildInputs = with python3Packages; [ diff --git a/pkgs/by-name/so/soundsource/package.nix b/pkgs/by-name/so/soundsource/package.nix index 36627734a3ec..216e75ef17cb 100644 --- a/pkgs/by-name/so/soundsource/package.nix +++ b/pkgs/by-name/so/soundsource/package.nix @@ -6,11 +6,11 @@ }: stdenvNoCC.mkDerivation (finalAttrs: { pname = "soundsource"; - version = "5.8.9"; + version = "5.8.10"; src = fetchurl { - url = "https://web.archive.org/web/20251025135445/https://cdn.rogueamoeba.com/soundsource/download/SoundSource.zip"; - hash = "sha256-qjX+po4wOS2VzHfxSsVTysrFiP+ngoliler4RSM4dk8="; + url = "https://web.archive.org/web/20251119083726/https://cdn.rogueamoeba.com/soundsource/download/SoundSource.zip"; + hash = "sha256-kIGpIxlX+qyiXeOWq9DjKLZL4fPZdgsro9P6SqrPQHo="; }; dontUnpack = true; diff --git a/pkgs/by-name/so/soupault/package.nix b/pkgs/by-name/so/soupault/package.nix index 565138201335..0a5d332bd0df 100644 --- a/pkgs/by-name/so/soupault/package.nix +++ b/pkgs/by-name/so/soupault/package.nix @@ -10,18 +10,18 @@ testers, }: -ocamlPackages.buildDunePackage rec { +ocamlPackages.buildDunePackage (finalAttrs: { pname = "soupault"; - version = "5.1.0"; + version = "5.2.0"; - minimalOCamlVersion = "4.13"; + minimalOCamlVersion = "5.3"; src = fetchzip { urls = [ - "https://github.com/PataphysicalSociety/soupault/archive/${version}.tar.gz" - "https://codeberg.org/PataphysicalSociety/soupault/archive/${version}.tar.gz" + "https://github.com/PataphysicalSociety/soupault/archive/${finalAttrs.version}.tar.gz" + "https://codeberg.org/PataphysicalSociety/soupault/archive/${finalAttrs.version}.tar.gz" ]; - hash = "sha256-yAkJgNwF763b2DFGA+4Ve+jafFxZbFDm3QxisDD6gYo="; + hash = "sha256-BuQ2yQzf6PpK6HUfuHDscgKkOBttCrs0zTh37hMUR6E="; }; nativeBuildInputs = [ @@ -71,4 +71,4 @@ ocamlPackages.buildDunePackage rec { maintainers = with lib.maintainers; [ toastal ]; mainProgram = "soupault"; }; -} +}) diff --git a/pkgs/by-name/sp/splayer/package.nix b/pkgs/by-name/sp/splayer/package.nix index b24019a92c40..ff2eeae10d2d 100644 --- a/pkgs/by-name/sp/splayer/package.nix +++ b/pkgs/by-name/sp/splayer/package.nix @@ -12,14 +12,14 @@ }: stdenv.mkDerivation (final: { pname = "splayer"; - version = "3.0.0-beta.4"; + version = "3.0.0-beta.5"; src = fetchFromGitHub { owner = "imsyy"; repo = "SPlayer"; tag = "v${final.version}"; fetchSubmodules = false; - hash = "sha256-q8Iy8jkLvxOs5ejjORL20cJ51QCYBS4cfX+6DZbIdEM="; + hash = "sha256-glYq0rHEV2xWoKznpMIU6klUxk1lXYOq4TBRuyTQgOM="; }; pnpm = pnpm_10; diff --git a/pkgs/by-name/st/steel/package.nix b/pkgs/by-name/st/steel/package.nix index 9d6f117cd414..b4f1f438e802 100644 --- a/pkgs/by-name/st/steel/package.nix +++ b/pkgs/by-name/st/steel/package.nix @@ -19,13 +19,13 @@ }: rustPlatform.buildRustPackage { pname = "steel"; - version = "0-unstable-2025-11-12"; + version = "0-unstable-2025-11-15"; src = fetchFromGitHub { owner = "mattwparas"; repo = "steel"; - rev = "8bc2c6aba8d8047415b33a1a3fe4244a74ede2b8"; - hash = "sha256-9P0cvQddgDMfZNp44l72YHu4PdsVULVCqJGR0zMawCU="; + rev = "90aa39eb0df033a6eeb579d553debc0fc48ef7ee"; + hash = "sha256-7N3LBnDm7qIDR8zBDS0FY6UVp88L/mh8umT/YTTh7HA="; }; cargoHash = "sha256-bXAgp83U48GsTAuki3tsoOK7X+UepKJIlS0bL5qMc8I="; diff --git a/pkgs/by-name/st/structorizer/package.nix b/pkgs/by-name/st/structorizer/package.nix index d09e4d8fb7f5..8f582d43bb14 100644 --- a/pkgs/by-name/st/structorizer/package.nix +++ b/pkgs/by-name/st/structorizer/package.nix @@ -12,13 +12,13 @@ stdenv.mkDerivation rec { pname = "structorizer"; - version = "3.32-33"; + version = "3.32-34"; src = fetchFromGitHub { owner = "fesch"; repo = "Structorizer.Desktop"; rev = version; - hash = "sha256-7cvh1h4IFYD/5UMs6g76LmjJoDpkLLdvX2ED5oLtD5o="; + hash = "sha256-oTh45xoJYrJL0BbV5hdPfvv7wz49gExpvN3G5AOk3R0="; }; patches = [ diff --git a/pkgs/by-name/su/subfinder/package.nix b/pkgs/by-name/su/subfinder/package.nix index 1d5e82653358..ad34dda0d644 100644 --- a/pkgs/by-name/su/subfinder/package.nix +++ b/pkgs/by-name/su/subfinder/package.nix @@ -6,16 +6,16 @@ buildGoModule rec { pname = "subfinder"; - version = "2.9.0"; + version = "2.10.0"; src = fetchFromGitHub { owner = "projectdiscovery"; repo = "subfinder"; tag = "v${version}"; - hash = "sha256-llyzTGy7nj5RFwt0KDPP9Ua1FkcrErW8GdvbSWg3mpk="; + hash = "sha256-bzDBxxTa90L0wbihdT7i06I7EdAi/UA+upwXVrC9K34="; }; - vendorHash = "sha256-z+CKoRxxskyKYmBfIEQjtf8nXuGfWH+4IG98+1eCCmk="; + vendorHash = "sha256-sqcSkqp5X3ItAXL6///MU5ghJDCnnZFuFh6Kqa/38sA="; patches = [ # Disable automatic version check diff --git a/pkgs/by-name/su/supabase-cli/package.nix b/pkgs/by-name/su/supabase-cli/package.nix index ed0cc4b739d5..7496335ffe1c 100644 --- a/pkgs/by-name/su/supabase-cli/package.nix +++ b/pkgs/by-name/su/supabase-cli/package.nix @@ -10,16 +10,16 @@ buildGoModule rec { pname = "supabase-cli"; - version = "2.58.8"; + version = "2.60.0"; src = fetchFromGitHub { owner = "supabase"; repo = "cli"; rev = "v${version}"; - hash = "sha256-NmqDOM5IQp/dsRWN1qTaGARADWa1M3pzUjiiv2UY4ow="; + hash = "sha256-GW5ikbbFIkFSZSHhpzI9tMfSqjdH9444n+3m3ZbOGF8="; }; - vendorHash = "sha256-RH5U85/NjzCbzgxAm8t/NEMiHUURZBtrM7Dejs9aQEI="; + vendorHash = "sha256-r1QBFcNDJQrz2oE8KA5b6uoNP3H7KoI63uNu5iAglFg="; ldflags = [ "-s" diff --git a/pkgs/by-name/sv/svg-text-to-path/package.nix b/pkgs/by-name/sv/svg-text-to-path/package.nix index bbccd111fc23..1eab9919b525 100644 --- a/pkgs/by-name/sv/svg-text-to-path/package.nix +++ b/pkgs/by-name/sv/svg-text-to-path/package.nix @@ -7,16 +7,16 @@ buildNpmPackage (finalAttrs: { pname = "svg-text-to-path"; - version = "2.0.5"; + version = "2.1.0"; src = fetchFromGitHub { owner = "paulzi"; repo = "svg-text-to-path"; tag = "v${finalAttrs.version}"; - hash = "sha256-ArAv/8JLQKdM3Lqdyx8XETPq3b6QcDwpwonpgoGlp9E="; + hash = "sha256-B6/8BbJ75jeFpTFIzL6BtMNCRL9181KxrUkaP9u9odA="; }; - npmDepsHash = "sha256-hY8YrhvMlvcnLCVolhnnZHHq81fsOHyDgHlhyWeTEL0="; + npmDepsHash = "sha256-x593WtqC9Y8AweL6LOr228p1eAc1rI4C+6Ev1K3pUJo="; npmPackFlags = [ "--ignore-scripts" ]; dontNpmBuild = true; diff --git a/pkgs/by-name/ta/tailscale/package.nix b/pkgs/by-name/ta/tailscale/package.nix index 590fdc997d6f..72e70f742112 100644 --- a/pkgs/by-name/ta/tailscale/package.nix +++ b/pkgs/by-name/ta/tailscale/package.nix @@ -24,7 +24,7 @@ buildGoModule (finalAttrs: { pname = "tailscale"; - version = "1.90.6"; + version = "1.90.7"; outputs = [ "out" @@ -35,7 +35,7 @@ buildGoModule (finalAttrs: { owner = "tailscale"; repo = "tailscale"; tag = "v${finalAttrs.version}"; - hash = "sha256-Uy5HDhZTO/lydVzT/dzp8OWgaZ8ZVQo0b7lvvzXyysI="; + hash = "sha256-nmVVWjPLLhYBKV755zsOdIQCBkKIOaZUWwrfZweqlCU="; }; vendorHash = "sha256-AUOjLomba75qfzb9Vxc0Sktyeces6hBSuOMgboWcDnE="; diff --git a/pkgs/by-name/te/tealdeer/package.nix b/pkgs/by-name/te/tealdeer/package.nix index 485e366796b4..38f7b49826ca 100644 --- a/pkgs/by-name/te/tealdeer/package.nix +++ b/pkgs/by-name/te/tealdeer/package.nix @@ -28,17 +28,9 @@ rustPlatform.buildRustPackage rec { ''; # Disable tests that require Internet access: - checkFlags = [ - "--skip test_autoupdate_cache" - "--skip test_create_cache_directory_path" - "--skip test_pager_flag_enable" - "--skip test_quiet_cache" - "--skip test_quiet_failures" - "--skip test_quiet_old_cache" - "--skip test_spaces_find_command" - "--skip test_update_cache" - "--skip test_update_language_arg" - ]; + checkFeatures = [ "ignore-online-tests" ]; + # tealdeer requires --test-threads=1 + dontUseCargoParallelTests = true; meta = with lib; { description = "Very fast implementation of tldr in Rust"; diff --git a/pkgs/by-name/te/teams-for-linux/package.nix b/pkgs/by-name/te/teams-for-linux/package.nix index f45f1ab39265..2f3e3e1843fe 100644 --- a/pkgs/by-name/te/teams-for-linux/package.nix +++ b/pkgs/by-name/te/teams-for-linux/package.nix @@ -16,16 +16,16 @@ buildNpmPackage rec { pname = "teams-for-linux"; - version = "2.6.11"; + version = "2.6.13"; src = fetchFromGitHub { owner = "IsmaelMartinez"; repo = "teams-for-linux"; tag = "v${version}"; - hash = "sha256-jx58Bg/jMGqf9M/Ss4cYIHtuUmtkej67ScrcttSxNhg="; + hash = "sha256-0dnhDQ6lx78XGpYKLikizvltmC1/MdUYAHw5HvWFhQU="; }; - npmDepsHash = "sha256-tgLO4EsD3j5mg3c9M+I8jkeytw2ZrgQsKs10aryaFhw="; + npmDepsHash = "sha256-pb17MmY+yuMf0pnvqfH3Pu74rPi+Nvkc/K+UEzaDbsQ="; nativeBuildInputs = [ makeWrapper diff --git a/pkgs/by-name/te/tektoncd-cli-pac/package.nix b/pkgs/by-name/te/tektoncd-cli-pac/package.nix index 22ace41e9b2f..2a0f7ce92d47 100644 --- a/pkgs/by-name/te/tektoncd-cli-pac/package.nix +++ b/pkgs/by-name/te/tektoncd-cli-pac/package.nix @@ -10,13 +10,13 @@ buildGoModule (finalAttrs: { pname = "tektoncd-cli-pac"; - version = "0.39.0"; + version = "0.39.2"; src = fetchFromGitHub { owner = "openshift-pipelines"; repo = "pipelines-as-code"; tag = "v${finalAttrs.version}"; - hash = "sha256-39jVFnLEUQHakVcSkrjrTRANp6D8FAoy+kIGi/QL5gk="; + hash = "sha256-iGa4aemterN59wLQCzg8RMl2z71obabQ5GTwz7I/mPs="; }; vendorHash = null; diff --git a/pkgs/by-name/ti/tika/package.nix b/pkgs/by-name/ti/tika/package.nix index 7de896b7f477..6e152c46bc06 100644 --- a/pkgs/by-name/ti/tika/package.nix +++ b/pkgs/by-name/ti/tika/package.nix @@ -17,10 +17,10 @@ let mvnDepsHashes = { - "x86_64-linux" = "sha256-OTd51n6SSlFziqvvHmfyMAyQRwIzsHxFGuJ62zlX1Ec="; - "aarch64-linux" = "sha256-tPaGLqm0jgEoz0BD/C6AG9xupovQvib/v0kB/jjqwB8="; - "x86_64-darwin" = "sha256-Rs7nTiGazUW8oJJr6fbJKelzFqd2n278sJYoMy2/0N4="; - "aarch64-darwin" = "sha256-gnP+G33LPRMQ6HRzeZ8cEV9oSohrlPcMwlBB4rvH7+E="; + "x86_64-linux" = "sha256-ZlGOxVXU63AKzfWeOLGPa2l8v+Rv8Bzr4H/Er62cxk8="; + "aarch64-linux" = "sha256-CrOYBEnp8cVpdF2PrpGQjmdYH8ZKupm9Jf1LVyNoObk="; + "x86_64-darwin" = "sha256-D1QkCTYep9RbNUaZPrnbgkR94cvQkX3xxxUxwyLIqx8="; + "aarch64-darwin" = "sha256-zvvko6wSJoc2cgMLl7XVmypq0vVTirrIpJiEdypPlrU="; }; knownMvnDepsHash = diff --git a/pkgs/by-name/to/tor-browser/package.nix b/pkgs/by-name/to/tor-browser/package.nix index ab2acfbc642d..d89ee04a9eba 100644 --- a/pkgs/by-name/to/tor-browser/package.nix +++ b/pkgs/by-name/to/tor-browser/package.nix @@ -102,7 +102,7 @@ let ++ lib.optionals mediaSupport [ ffmpeg ] ); - version = "15.0.1"; + version = "15.0.2"; sources = { x86_64-linux = fetchurl { @@ -112,7 +112,7 @@ let "https://tor.eff.org/dist/torbrowser/${version}/tor-browser-linux-x86_64-${version}.tar.xz" "https://tor.calyxinstitute.org/dist/torbrowser/${version}/tor-browser-linux-x86_64-${version}.tar.xz" ]; - hash = "sha256-A7pFcUnwhl+1T0hj+o7EV++EKuy9BwvCNH1Fi7lczqM="; + hash = "sha256-GtO7u9KhZgIbdTJqMTQ2ZabA6PKrwW0ogxYJvmkVfV8="; }; i686-linux = fetchurl { @@ -122,7 +122,7 @@ let "https://tor.eff.org/dist/torbrowser/${version}/tor-browser-linux-i686-${version}.tar.xz" "https://tor.calyxinstitute.org/dist/torbrowser/${version}/tor-browser-linux-i686-${version}.tar.xz" ]; - hash = "sha256-Iql4Ra6btTi96ejKea+2cRB+Z9auefkaLSvgkbw/3ks="; + hash = "sha256-SHJQvNqC4Ulyg81rcp6sTG0Wwv9fHqWYQPpPBsPgwss="; }; }; diff --git a/pkgs/by-name/tr/trickest-cli/package.nix b/pkgs/by-name/tr/trickest-cli/package.nix index ae6212a2a98c..0978864d7ea6 100644 --- a/pkgs/by-name/tr/trickest-cli/package.nix +++ b/pkgs/by-name/tr/trickest-cli/package.nix @@ -6,13 +6,13 @@ buildGoModule rec { pname = "trickest-cli"; - version = "2.1.6"; + version = "2.1.7"; src = fetchFromGitHub { owner = "trickest"; repo = "trickest-cli"; tag = "v${version}"; - hash = "sha256-oeFGpojxGCIPiVWNVOMO+/GIQn5qsAdJLZQun+/r3/M="; + hash = "sha256-LDroWDGTYUFtkZkooWCEL59f+iu8izUcSyqr3Jzch7o="; }; vendorHash = "sha256-Ae0fNzYOAeCMrNFVhw4VvG/BkOMcguIMiBvLGt7wxEo="; diff --git a/pkgs/by-name/tw/twingate/package.nix b/pkgs/by-name/tw/twingate/package.nix index 4ad686a44c4a..b3b507d7cc9b 100644 --- a/pkgs/by-name/tw/twingate/package.nix +++ b/pkgs/by-name/tw/twingate/package.nix @@ -14,11 +14,11 @@ stdenv.mkDerivation rec { pname = "twingate"; - version = "2025.175.154516"; + version = "2025.310.174671"; src = fetchurl { url = "https://binaries.twingate.com/client/linux/DEB/x86_64/${version}/twingate-amd64.deb"; - hash = "sha256-WqIG5AUfRxkJ1qzGs6cB/2fe/UUNOZiL5/v9QMXlmK8="; + hash = "sha256-ZzOsXpjLBR447Kvo2kwy9y8TRm8Yp3EMlVx6vQU72jQ="; }; buildInputs = [ diff --git a/pkgs/by-name/ty/ty/package.nix b/pkgs/by-name/ty/ty/package.nix index 69b9978c59d5..de44217f7b80 100644 --- a/pkgs/by-name/ty/ty/package.nix +++ b/pkgs/by-name/ty/ty/package.nix @@ -14,14 +14,14 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "ty"; - version = "0.0.1-alpha.26"; + version = "0.0.1-alpha.27"; src = fetchFromGitHub { owner = "astral-sh"; repo = "ty"; tag = finalAttrs.version; fetchSubmodules = true; - hash = "sha256-ykkOCFNtEqtEqzjiC/MnxM6X02VtToz5bSqtxCKa418="; + hash = "sha256-oyy6eeRr7sCCjZhjnx0zKSy9d2HwgZFKRDidmxP0juA="; }; # For Darwin platforms, remove the integration test for file notifications, @@ -35,7 +35,7 @@ rustPlatform.buildRustPackage (finalAttrs: { cargoBuildFlags = [ "--package=ty" ]; - cargoHash = "sha256-7bGmTQ5+tqju6aA5t81zbW5mhrBzMtdp+02y2I1eMBI="; + cargoHash = "sha256-fpff3fO1Udtldg68vvy+BQs1ynntGM0suzGnpnhOV5A="; nativeBuildInputs = [ installShellFiles ]; diff --git a/pkgs/by-name/ty/tygo/package.nix b/pkgs/by-name/ty/tygo/package.nix index c1e0773f2bfe..1765fcf616c6 100644 --- a/pkgs/by-name/ty/tygo/package.nix +++ b/pkgs/by-name/ty/tygo/package.nix @@ -6,16 +6,16 @@ buildGoModule rec { pname = "tygo"; - version = "0.2.19"; + version = "0.2.20"; src = fetchFromGitHub { owner = "gzuidhof"; repo = "tygo"; rev = "v${version}"; - hash = "sha256-Eyvvqk8D9q8rOODR72kJSg+g7cVjx3FJCPmSog6eP1E="; + hash = "sha256-scda2o+aLYC4NpruEN8fZAhJuTHI9SExZv7qvAteR0M="; }; - vendorHash = "sha256-E73yqGhPzZA/1xTYGvTBy0/b4SE9hzx+gdhjX3ClE/Y="; + vendorHash = "sha256-XQS+P+vPt2rH0SD0srFSnqjupIeu5XgFi3iVzq/ovmg="; env.CGO_ENABLED = 0; diff --git a/pkgs/by-name/up/upsun/versions.json b/pkgs/by-name/up/upsun/versions.json index 951898afac13..0d0a79c2bd3a 100644 --- a/pkgs/by-name/up/upsun/versions.json +++ b/pkgs/by-name/up/upsun/versions.json @@ -1,19 +1,19 @@ { - "version": "5.6.0", + "version": "5.7.2", "darwin-amd64": { - "hash": "sha256-y9DQkHLvD6bUz0tfptdyN1qcsR34RWr7YxYB7NWKH9s=", - "url": "https://github.com/platformsh/cli/releases/download/5.6.0/upsun_5.6.0_darwin_all.tar.gz" + "hash": "sha256-o0bvIc9oaxT4g6IB0FlSwnPvRRhhQbd/+THGiB1Qcxc=", + "url": "https://github.com/platformsh/cli/releases/download/5.7.2/upsun_5.7.2_darwin_all.tar.gz" }, "darwin-arm64": { - "hash": "sha256-y9DQkHLvD6bUz0tfptdyN1qcsR34RWr7YxYB7NWKH9s=", - "url": "https://github.com/platformsh/cli/releases/download/5.6.0/upsun_5.6.0_darwin_all.tar.gz" + "hash": "sha256-o0bvIc9oaxT4g6IB0FlSwnPvRRhhQbd/+THGiB1Qcxc=", + "url": "https://github.com/platformsh/cli/releases/download/5.7.2/upsun_5.7.2_darwin_all.tar.gz" }, "linux-amd64": { - "hash": "sha256-6cxwFnOULBVGIJJ1dQQn302NDooIytibay8OksfZT4g=", - "url": "https://github.com/platformsh/cli/releases/download/5.6.0/upsun_5.6.0_linux_amd64.tar.gz" + "hash": "sha256-0VrFZOqfCRvGwjPkQVbKakEELu82BI/InnA6aeJMwIg=", + "url": "https://github.com/platformsh/cli/releases/download/5.7.2/upsun_5.7.2_linux_amd64.tar.gz" }, "linux-arm64": { - "hash": "sha256-RhJmC7rCY5VZOXUcQKHm98TxbMC/uej5YN5KlwHsm08=", - "url": "https://github.com/platformsh/cli/releases/download/5.6.0/upsun_5.6.0_linux_arm64.tar.gz" + "hash": "sha256-0n1e+1ebJKFE7phtk0OWyVMgE4uz0K8RELOPmmRGUD0=", + "url": "https://github.com/platformsh/cli/releases/download/5.7.2/upsun_5.7.2_linux_arm64.tar.gz" } } diff --git a/pkgs/by-name/v2/v2ray-domain-list-community/package.nix b/pkgs/by-name/v2/v2ray-domain-list-community/package.nix index 72cd75b3dd1f..3cf41dc11cba 100644 --- a/pkgs/by-name/v2/v2ray-domain-list-community/package.nix +++ b/pkgs/by-name/v2/v2ray-domain-list-community/package.nix @@ -9,12 +9,12 @@ let generator = pkgsBuildBuild.buildGoModule rec { pname = "v2ray-domain-list-community"; - version = "20251112145348"; + version = "20251119044456"; src = fetchFromGitHub { owner = "v2fly"; repo = "domain-list-community"; rev = version; - hash = "sha256-z1j5HjaTfget63Eug3lE3crwjIZiNoZADeAcKX0K4W8="; + hash = "sha256-jkw14AYRE9E562j2lRRw5ID7Q5+E1nzqLVcIEAlHGCg="; }; vendorHash = "sha256-HmIXpF7P3J+lPXpmWWoFpSYAu5zbBQSDrj6S88LgWSU="; meta = with lib; { diff --git a/pkgs/by-name/va/vals/package.nix b/pkgs/by-name/va/vals/package.nix index e8191271ee92..99ec07413698 100644 --- a/pkgs/by-name/va/vals/package.nix +++ b/pkgs/by-name/va/vals/package.nix @@ -8,16 +8,16 @@ buildGoModule rec { pname = "vals"; - version = "0.42.4"; + version = "0.42.5"; src = fetchFromGitHub { rev = "v${version}"; owner = "helmfile"; repo = "vals"; - sha256 = "sha256-a81U6AOzgD4GwQ1vhfFD2CquvmWOyvIzVMDIFg4rXgE="; + sha256 = "sha256-rCy2fEg/qAnieW8ptK8Zw6S2V5PzxQ27NUXig+lDvuQ="; }; - vendorHash = "sha256-O2lW3hs16osGSTcj3rc4tmK4YjCZZkYzEtcJP2uxa/A="; + vendorHash = "sha256-PTw9l9/IZjkgyDd5m9DfN1L8PEFvqaBltyclX9BZ+98="; proxyVendor = true; diff --git a/pkgs/by-name/ve/vectorcode/package.nix b/pkgs/by-name/ve/vectorcode/package.nix index 7ff96bdaf906..f700a7de6c57 100644 --- a/pkgs/by-name/ve/vectorcode/package.nix +++ b/pkgs/by-name/ve/vectorcode/package.nix @@ -96,14 +96,14 @@ let in python.pkgs.buildPythonApplication rec { pname = "vectorcode"; - version = "0.7.18"; + version = "0.7.19"; pyproject = true; src = fetchFromGitHub { owner = "Davidyz"; repo = "VectorCode"; tag = version; - hash = "sha256-xtFSERuXivdqY5XT/JJ4lZ1HgGTAE+DGV7pxH1163ZQ="; + hash = "sha256-H2Umh4/vRDqaGXVoK/fZaj9guA4IaVSgOEDAVEPsD9A="; }; build-system = with python.pkgs; [ diff --git a/pkgs/by-name/vi/vicinae/package.nix b/pkgs/by-name/vi/vicinae/package.nix index 07657c03267c..21d9018b7275 100644 --- a/pkgs/by-name/vi/vicinae/package.nix +++ b/pkgs/by-name/vi/vicinae/package.nix @@ -20,18 +20,18 @@ }: stdenv.mkDerivation (finalAttrs: { pname = "vicinae"; - version = "0.16.5"; + version = "0.16.8"; src = fetchFromGitHub { owner = "vicinaehq"; repo = "vicinae"; tag = "v${finalAttrs.version}"; - hash = "sha256-smhbchRZmp7DwRLGA3QoI12kQuMVaxiNkhzfC+n19+4="; + hash = "sha256-TAKv3dmc8DSlVp0LXQeLgrgfLTbQ/saQelenFUp9sP0="; }; apiDeps = fetchNpmDeps { src = "${finalAttrs.src}/typescript/api"; - hash = "sha256-VrtxQG1wQGcRHbJWPPt6aS7x1hAHc4Z1+0l+cKv3YdI="; + hash = "sha256-4OgVCnw5th2TcXszVY5G9ENr3/Y/eR2Kd45DbUhQRNk="; }; extensionManagerDeps = fetchNpmDeps { diff --git a/pkgs/by-name/vi/victoriametrics/package.nix b/pkgs/by-name/vi/victoriametrics/package.nix index 2a8b1be99537..e54c996bb598 100644 --- a/pkgs/by-name/vi/victoriametrics/package.nix +++ b/pkgs/by-name/vi/victoriametrics/package.nix @@ -13,13 +13,13 @@ buildGoModule (finalAttrs: { pname = "VictoriaMetrics"; - version = "1.129.1"; + version = "1.130.0"; src = fetchFromGitHub { owner = "VictoriaMetrics"; repo = "VictoriaMetrics"; tag = "v${finalAttrs.version}"; - hash = "sha256-LLiiA+A3s3WcJcwyqRYKFn+VwaEbbufiawZsyG+ibGU="; + hash = "sha256-upviz4MDwEXzIs21mPwa5TgKywfXiRcsZfdF/d3w/Ao="; }; vendorHash = null; diff --git a/pkgs/by-name/wa/warp-plus/package.nix b/pkgs/by-name/wa/warp-plus/package.nix index 306d24e41939..92d1ec98ffec 100644 --- a/pkgs/by-name/wa/warp-plus/package.nix +++ b/pkgs/by-name/wa/warp-plus/package.nix @@ -11,16 +11,16 @@ # error tls.ConnectionState: struct field count mismatch: 17 vs 16 buildGo124Module (finalAttrs: { pname = "warp-plus"; - version = "1.2.6-unstable-2025-10-28"; + version = "1.2.6-unstable-2025-11-17"; src = fetchFromGitHub { owner = "bepass-org"; repo = "warp-plus"; - rev = "3653f7519d2a08a36222accff6899522bb8b03d0"; - hash = "sha256-T0YTxQ7iciv5i7lw+bU00B6iYquzBwzYkAlOGZiKeWc="; + rev = "f70ea7e4f193717c73f9a4357cbc98d6944b36bb"; + hash = "sha256-5H0iF+dc+3qQrFCPiaBxHMSoHsmciKvwX1SJX7TMjeE="; }; - vendorHash = "sha256-GmxiQk50iQoH2J/qUVvl9RBz6aIQp8RURqTzrl6NdCY="; + vendorHash = "sha256-FqyNjnCoeOCraVv9WhQIw+PxrJVfOu2dAnINi++nsW4="; ldflags = [ "-s" diff --git a/pkgs/by-name/wa/warp-terminal/versions.json b/pkgs/by-name/wa/warp-terminal/versions.json index 82adb5dab130..6cd48c53ea77 100644 --- a/pkgs/by-name/wa/warp-terminal/versions.json +++ b/pkgs/by-name/wa/warp-terminal/versions.json @@ -1,14 +1,14 @@ { "darwin": { - "hash": "sha256-H1ay2Xrp9ouUjICQKtKboWWPfXaOi3EU4UWWNhgtsqU=", - "version": "0.2025.11.05.08.12.stable_00" + "hash": "sha256-OwvsSd0NYXx8cNH4DZVWjpj0J/k37nSCmgh+F6JtZwA=", + "version": "0.2025.11.12.08.12.stable_02" }, "linux_x86_64": { - "hash": "sha256-yk/8tS5Pd0bHy4mTB+AyOufTrjZ4QmvOQLBmz3Bc1YM=", - "version": "0.2025.11.05.08.12.stable_00" + "hash": "sha256-4PlE9s0vo2fabqxn0bGnpu/x468Hlke8sM9FZRbdwuI=", + "version": "0.2025.11.12.08.12.stable_02" }, "linux_aarch64": { - "hash": "sha256-E+ZncXLnREVZ//2Q724Yuh9brO+biUglPkr/g2SfLIA=", - "version": "0.2025.11.05.08.12.stable_00" + "hash": "sha256-OQ4dSQ9IXbRwCiFHKe7SOUKL4DmwB91/5GVZSm2wc9o=", + "version": "0.2025.11.12.08.12.stable_02" } } diff --git a/pkgs/by-name/wa/waypaper/package.nix b/pkgs/by-name/wa/waypaper/package.nix index 1e8eb98a3d1c..0881776892d6 100644 --- a/pkgs/by-name/wa/waypaper/package.nix +++ b/pkgs/by-name/wa/waypaper/package.nix @@ -5,6 +5,7 @@ gobject-introspection, wrapGAppsHook3, killall, + socat, }: python3Packages.buildPythonApplication rec { @@ -35,7 +36,10 @@ python3Packages.buildPythonApplication rec { screeninfo ]; - propagatedBuildInputs = [ killall ]; + propagatedBuildInputs = [ + killall + socat + ]; # has no tests doCheck = false; diff --git a/pkgs/by-name/wp/wpsoffice-cn/sources.nix b/pkgs/by-name/wp/wpsoffice-cn/sources.nix index 2d882c757308..dbc2c4fa3c06 100644 --- a/pkgs/by-name/wp/wpsoffice-cn/sources.nix +++ b/pkgs/by-name/wp/wpsoffice-cn/sources.nix @@ -1,9 +1,9 @@ # Generated by ./update.sh - do not update manually! -# Last updated: 2025-10-27 +# Last updated: 2025-11-18 { - version = "12.1.2.22571"; + version = "12.1.2.23578"; x86_64 = { - url = "https://wps-linux-personal.wpscdn.cn/wps/download/ep/Linux2023/22571/wps-office_12.1.2.22571.AK.preread.sw_480057_amd64.deb"; - hash = "sha256-aB1EWP0Ev5WuAuzih3ybD23qaRRTUjlES1emas+sUDA="; + url = "https://wps-linux-personal.wpscdn.cn/wps/download/ep/Linux2023/23578/wps-office_12.1.2.23578.AK.preread.sw_542488_amd64.deb"; + hash = "sha256-IMklnH6rCPZFHElLFF6At5QdDg7Ut/lBZFw+oPwQYWc="; }; } diff --git a/pkgs/by-name/ya/yaookctl/package.nix b/pkgs/by-name/ya/yaookctl/package.nix index 95534294a23d..4d2b30e5deb0 100644 --- a/pkgs/by-name/ya/yaookctl/package.nix +++ b/pkgs/by-name/ya/yaookctl/package.nix @@ -6,13 +6,13 @@ }: python3.pkgs.buildPythonApplication { pname = "yaookctl"; - version = "0-unstable-2025-11-06"; + version = "0-unstable-2025-11-18"; src = fetchFromGitLab { owner = "yaook"; repo = "yaookctl"; - rev = "8a4bd469e9731cccd4dc3de37f28d37247c0355c"; - hash = "sha256-aOZ4iXGgZyTphYvS90mcqENSOMv7L5L1BkwtorR0648="; + rev = "cc339565b136ec9bad36f9eb3dc1b3da728cc0ec"; + hash = "sha256-9UCF1qo6OOfOBoWqsQMxlHZNJD7OQnSFONJ+cXT0LUs="; }; pyproject = true; diff --git a/pkgs/by-name/ze/zed-editor/package.nix b/pkgs/by-name/ze/zed-editor/package.nix index 923f6fe0b1b0..68a326af3afb 100644 --- a/pkgs/by-name/ze/zed-editor/package.nix +++ b/pkgs/by-name/ze/zed-editor/package.nix @@ -101,7 +101,7 @@ let in rustPlatform.buildRustPackage (finalAttrs: { pname = "zed-editor"; - version = "0.212.6"; + version = "0.213.3"; outputs = [ "out" @@ -114,7 +114,7 @@ rustPlatform.buildRustPackage (finalAttrs: { owner = "zed-industries"; repo = "zed"; tag = "v${finalAttrs.version}"; - hash = "sha256-c/xZrh45PjflSp9NEJ1bepxD2MyoLVF/wWRF6dVRa5Q="; + hash = "sha256-H4g21r2BO0ppv/zjacUfib6pc8r4D5aE0iBQGE5XU3w="; }; postPatch = '' @@ -134,7 +134,7 @@ rustPlatform.buildRustPackage (finalAttrs: { rm -r $out/git/*/candle-book/ ''; - cargoHash = "sha256-FM1z/mx3fsnRrNIU4L6pOWpCFT0cr+pezd90/cck4S0="; + cargoHash = "sha256-sr77w3r1MfGXPIFbQ8FohBbErJOE7mmZRLj6agzFeuU="; nativeBuildInputs = [ cmake diff --git a/pkgs/desktops/pantheon/apps/elementary-calendar/default.nix b/pkgs/desktops/pantheon/apps/elementary-calendar/default.nix index c537825a4c87..9c763e477993 100644 --- a/pkgs/desktops/pantheon/apps/elementary-calendar/default.nix +++ b/pkgs/desktops/pantheon/apps/elementary-calendar/default.nix @@ -24,13 +24,13 @@ stdenv.mkDerivation rec { pname = "elementary-calendar"; - version = "8.0.0"; + version = "8.0.1"; src = fetchFromGitHub { owner = "elementary"; repo = "calendar"; - rev = version; - sha256 = "sha256-gBQfrRSaw3TKcsSAQh/hcTpBoEQstGdLbppoZ1/Z1q8="; + tag = version; + hash = "sha256-kkdz82eCc9dKemUtCaz9OUObeICU5W1Ino4JNUvmhAw="; }; nativeBuildInputs = [ diff --git a/pkgs/desktops/pantheon/apps/elementary-feedback/default.nix b/pkgs/desktops/pantheon/apps/elementary-feedback/default.nix index 37868bf85613..7613602ec31c 100644 --- a/pkgs/desktops/pantheon/apps/elementary-feedback/default.nix +++ b/pkgs/desktops/pantheon/apps/elementary-feedback/default.nix @@ -18,13 +18,13 @@ stdenv.mkDerivation rec { pname = "elementary-feedback"; - version = "8.0.1"; + version = "8.1.0"; src = fetchFromGitHub { owner = "elementary"; repo = "feedback"; - rev = version; - sha256 = "sha256-D0x0jKYEB6Bo8ETgVCjgdOItc+VJYlrr8N9lI/Z3eXU="; + tag = version; + hash = "sha256-FvlSfcP/Qdo9zBFm2XiEqaxYGILe4BCNPyCELS43pew="; }; patches = [ diff --git a/pkgs/desktops/pantheon/apps/elementary-feedback/fix-metadata-path.patch b/pkgs/desktops/pantheon/apps/elementary-feedback/fix-metadata-path.patch index cc56b7e0d035..f4f00ba6bec5 100644 --- a/pkgs/desktops/pantheon/apps/elementary-feedback/fix-metadata-path.patch +++ b/pkgs/desktops/pantheon/apps/elementary-feedback/fix-metadata-path.patch @@ -1,20 +1,12 @@ diff --git a/src/MainWindow.vala b/src/MainWindow.vala -index 14b0701..13638a5 100644 +index 8f407bf..32db5fb 100644 --- a/src/MainWindow.vala +++ b/src/MainWindow.vala -@@ -82,6 +82,7 @@ public class Feedback.MainWindow : Gtk.ApplicationWindow { +@@ -124,6 +124,7 @@ public class Feedback.MainWindow : Gtk.ApplicationWindow { AppStream.PoolFlags.LOAD_FLATPAK | AppStream.PoolFlags.RESOLVE_ADDONS ); + appstream_pool.add_extra_data_location ("/run/current-system/sw/share/metainfo/", AppStream.FormatStyle.METAINFO); - #else - appstream_pool.clear_metadata_locations (); - // flatpak's appstream files exists only inside they sandbox -@@ -89,6 +90,7 @@ public class Feedback.MainWindow : Gtk.ApplicationWindow { - foreach (var app in app_entries) { - appstream_pool.add_metadata_location (appdata_dir.printf (app)); - } -+ appstream_pool.add_metadata_location ("/run/current-system/sw/share/metainfo/"); - #endif - try { + appstream_pool.load_async.begin (null, (obj, res) => { + try { diff --git a/pkgs/desktops/pantheon/apps/sideload/default.nix b/pkgs/desktops/pantheon/apps/sideload/default.nix index e45664e658d6..938dcd045a4b 100644 --- a/pkgs/desktops/pantheon/apps/sideload/default.nix +++ b/pkgs/desktops/pantheon/apps/sideload/default.nix @@ -19,13 +19,13 @@ stdenv.mkDerivation rec { pname = "sideload"; - version = "6.3.0"; + version = "6.3.1"; src = fetchFromGitHub { owner = "elementary"; repo = "sideload"; - rev = version; - sha256 = "sha256-2tYdcHx77XN2iu2PKXAKwOtb4TOFt3Igv17w2zIxqT4="; + tag = version; + hash = "sha256-mFaMKY4SdnSdRsHy5vIbJFdMx2FGxYCWmSAWkb99yUI="; }; nativeBuildInputs = [ diff --git a/pkgs/desktops/pantheon/apps/switchboard-plugs/about/default.nix b/pkgs/desktops/pantheon/apps/switchboard-plugs/about/default.nix index fe14c2553960..4e9c55aeed5d 100644 --- a/pkgs/desktops/pantheon/apps/switchboard-plugs/about/default.nix +++ b/pkgs/desktops/pantheon/apps/switchboard-plugs/about/default.nix @@ -27,13 +27,13 @@ stdenv.mkDerivation rec { pname = "switchboard-plug-about"; - version = "8.2.1"; + version = "8.2.2"; src = fetchFromGitHub { owner = "elementary"; - repo = "switchboard-plug-about"; - rev = version; - sha256 = "sha256-H4BDLP3yzQi+ougpvBvnv1R1TImzUjSOVDGbOqw9hvg="; + repo = "settings-system"; + tag = version; + hash = "sha256-SPFCBsk4tVR+5Q6uuDG/fTIn+4TXdeAobfQxkmxMiW0="; }; nativeBuildInputs = [ @@ -68,7 +68,7 @@ stdenv.mkDerivation rec { meta = with lib; { description = "Switchboard About Plug"; - homepage = "https://github.com/elementary/switchboard-plug-about"; + homepage = "https://github.com/elementary/settings-system"; license = licenses.gpl3Plus; platforms = platforms.linux; teams = [ teams.pantheon ]; diff --git a/pkgs/desktops/pantheon/apps/switchboard-plugs/mouse-touchpad/default.nix b/pkgs/desktops/pantheon/apps/switchboard-plugs/mouse-touchpad/default.nix index 9c8d0274dec2..3c7613cf34a0 100644 --- a/pkgs/desktops/pantheon/apps/switchboard-plugs/mouse-touchpad/default.nix +++ b/pkgs/desktops/pantheon/apps/switchboard-plugs/mouse-touchpad/default.nix @@ -22,13 +22,13 @@ stdenv.mkDerivation rec { pname = "switchboard-plug-mouse-touchpad"; - version = "8.0.2"; + version = "8.0.3"; src = fetchFromGitHub { owner = "elementary"; - repo = "switchboard-plug-mouse-touchpad"; - rev = version; - sha256 = "sha256-332y3D3T90G6bDVacRm3a1p4mLK3vsW8sBvre5lW/mk="; + repo = "settings-mouse-touchpad"; + tag = version; + hash = "sha256-Txm6iVwhuqfLrmAVgXeNB0p6PVEenvSSHurMrXoeHoY="; }; patches = [ @@ -63,7 +63,7 @@ stdenv.mkDerivation rec { meta = with lib; { description = "Switchboard Mouse & Touchpad Plug"; - homepage = "https://github.com/elementary/switchboard-plug-mouse-touchpad"; + homepage = "https://github.com/elementary/settings-mouse-touchpad"; license = licenses.gpl3Plus; platforms = platforms.linux; teams = [ teams.pantheon ]; diff --git a/pkgs/desktops/pantheon/apps/switchboard-plugs/notifications/default.nix b/pkgs/desktops/pantheon/apps/switchboard-plugs/notifications/default.nix index 47e52524b0f2..d7f776ba971e 100644 --- a/pkgs/desktops/pantheon/apps/switchboard-plugs/notifications/default.nix +++ b/pkgs/desktops/pantheon/apps/switchboard-plugs/notifications/default.nix @@ -19,13 +19,13 @@ stdenv.mkDerivation rec { pname = "switchboard-plug-notifications"; - version = "8.0.0"; + version = "8.0.1"; src = fetchFromGitHub { owner = "elementary"; - repo = "switchboard-plug-notifications"; - rev = version; - sha256 = "sha256-53rpnp1RWdPofY00XWKiz8WDPC7RNMaGQFHBDzjsIt4="; + repo = "settings-notifications"; + tag = version; + hash = "sha256-MYvSru/78jMhc1Rk8YuztajEdmRRssCFN7IMUHWzW78="; }; nativeBuildInputs = [ @@ -52,7 +52,7 @@ stdenv.mkDerivation rec { meta = with lib; { description = "Switchboard Notifications Plug"; - homepage = "https://github.com/elementary/switchboard-plug-notifications"; + homepage = "https://github.com/elementary/settings-notifications"; license = licenses.gpl2Plus; platforms = platforms.linux; teams = [ teams.pantheon ]; diff --git a/pkgs/desktops/pantheon/apps/switchboard-plugs/pantheon-shell/default.nix b/pkgs/desktops/pantheon/apps/switchboard-plugs/pantheon-shell/default.nix index 72b5668cdaee..40c853c35cfe 100644 --- a/pkgs/desktops/pantheon/apps/switchboard-plugs/pantheon-shell/default.nix +++ b/pkgs/desktops/pantheon/apps/switchboard-plugs/pantheon-shell/default.nix @@ -25,13 +25,13 @@ stdenv.mkDerivation rec { pname = "switchboard-plug-pantheon-shell"; - version = "8.2.0"; + version = "8.2.1"; src = fetchFromGitHub { owner = "elementary"; repo = "settings-desktop"; - rev = version; - sha256 = "sha256-TYwiL6+VjfSDiFAlMe482gB8a/OtCYHl5r8gh9Hcvfg="; + tag = version; + hash = "sha256-8NPMZfOQIZtMiGrsFXYPOwNbPU+d9CgPBsT36VJsvHw="; }; nativeBuildInputs = [ diff --git a/pkgs/desktops/pantheon/apps/switchboard-plugs/printers/default.nix b/pkgs/desktops/pantheon/apps/switchboard-plugs/printers/default.nix index 1b948098b82e..83b0ae0826d3 100644 --- a/pkgs/desktops/pantheon/apps/switchboard-plugs/printers/default.nix +++ b/pkgs/desktops/pantheon/apps/switchboard-plugs/printers/default.nix @@ -18,13 +18,13 @@ stdenv.mkDerivation rec { pname = "switchboard-plug-printers"; - version = "8.0.1"; + version = "8.0.2"; src = fetchFromGitHub { owner = "elementary"; - repo = "switchboard-plug-printers"; - rev = version; - sha256 = "sha256-1znz8B4CGQGDiJC4Mt61XAh9wWAV8J0+K3AIpFcffXQ="; + repo = "settings-printers"; + tag = version; + hash = "sha256-oqdmARZamTbMwpKKmyVZflYLCd0Qf5iE5lHSMfdPGA8="; }; nativeBuildInputs = [ @@ -50,7 +50,7 @@ stdenv.mkDerivation rec { meta = with lib; { description = "Switchboard Printers Plug"; - homepage = "https://github.com/elementary/switchboard-plug-printers"; + homepage = "https://github.com/elementary/settings-printers"; license = licenses.gpl3Plus; platforms = platforms.linux; teams = [ teams.pantheon ]; diff --git a/pkgs/desktops/pantheon/apps/switchboard-plugs/security-privacy/default.nix b/pkgs/desktops/pantheon/apps/switchboard-plugs/security-privacy/default.nix index a7a1dae6c70e..51d8af92db2d 100644 --- a/pkgs/desktops/pantheon/apps/switchboard-plugs/security-privacy/default.nix +++ b/pkgs/desktops/pantheon/apps/switchboard-plugs/security-privacy/default.nix @@ -22,13 +22,13 @@ stdenv.mkDerivation rec { pname = "switchboard-plug-security-privacy"; - version = "8.0.1"; + version = "8.0.2"; src = fetchFromGitHub { owner = "elementary"; - repo = "switchboard-plug-security-privacy"; - rev = version; - sha256 = "sha256-k6dSiiBqqbhH7rmhpBu83LX8at/qJ4gkrg4Xc+VbkIE="; + repo = "settings-security-privacy"; + tag = version; + hash = "sha256-OlLeeS0b4IMCvOMyHlIRaQl11ivn4Y2+vYdXOzIlvaw="; }; nativeBuildInputs = [ @@ -58,7 +58,7 @@ stdenv.mkDerivation rec { meta = with lib; { description = "Switchboard Security & Privacy Plug"; - homepage = "https://github.com/elementary/switchboard-plug-security-privacy"; + homepage = "https://github.com/elementary/settings-security-privacy"; license = licenses.gpl3Plus; platforms = platforms.linux; teams = [ teams.pantheon ]; diff --git a/pkgs/development/cuda-modules/packages/backendStdenv.nix b/pkgs/development/cuda-modules/backendStdenv/default.nix similarity index 100% rename from pkgs/development/cuda-modules/packages/backendStdenv.nix rename to pkgs/development/cuda-modules/backendStdenv/default.nix diff --git a/pkgs/development/cuda-modules/default.nix b/pkgs/development/cuda-modules/default.nix index 5190dcecdb4c..4e288ab8058a 100644 --- a/pkgs/development/cuda-modules/default.nix +++ b/pkgs/development/cuda-modules/default.nix @@ -24,8 +24,6 @@ let cudaMajorMinorVersion = majorMinor cudaMajorMinorPatchVersion; cudaMajorVersion = major cudaMajorMinorPatchVersion; - cudaPackagesMajorMinorVersionedName = mkVersionedName "cudaPackages" cudaMajorMinorVersion; - # We must use an instance of Nixpkgs where the CUDA package set we're building is the default; if we do not, members # of the versioned, non-default package sets may rely on (transitively) members of the default, unversioned CUDA # package set. @@ -34,18 +32,36 @@ let let cudaPackagesUnversionedName = "cudaPackages"; cudaPackagesMajorVersionedName = mkVersionedName cudaPackagesUnversionedName cudaMajorVersion; + cudaPackagesMajorMinorVersionedName = mkVersionedName cudaPackagesUnversionedName cudaMajorMinorVersion; in - pkgs.extend ( - final: _: { - recurseForDerivations = false; - # The CUDA package set will be available as cudaPackages_x_y, so we need only update the aliases for the - # minor-versioned and unversioned package sets. - # cudaPackages_x = cudaPackages_x_y - ${cudaPackagesMajorVersionedName} = final.${cudaPackagesMajorMinorVersionedName}; - # cudaPackages = cudaPackages_x - ${cudaPackagesUnversionedName} = final.${cudaPackagesMajorVersionedName}; - } - ); + if + # If the default CUDA package set is the same as the one we're constructing, pass through pkgs unchanged. + # This is a handy speedup for cases where we're using the default CUDA package set and don't need to pay for + # a re-instantiation of Nixpkgs. + pkgs.${cudaPackagesMajorMinorVersionedName}.manifests + == pkgs.${cudaPackagesMajorVersionedName}.manifests + && + pkgs.${cudaPackagesMajorMinorVersionedName}.manifests + == pkgs.${cudaPackagesUnversionedName}.manifests + then + pkgs + else + pkgs.extend ( + final: _: { + recurseForDerivations = false; + # The CUDA package set will be available as cudaPackages_x_y, so we need only update the aliases for the + # minor-versioned and unversioned package sets. + # However, if we do not replace the major-minor-versioned CUDA package set with our own, our use of splicing + # causes the package set to be re-evaluated for each build/host/target! + + # cudaPackages_x_y = + ${cudaPackagesMajorMinorVersionedName} = cudaPackages; + # cudaPackages_x = cudaPackages_x_y + ${cudaPackagesMajorVersionedName} = final.${cudaPackagesMajorMinorVersionedName}; + # cudaPackages = cudaPackages_x + ${cudaPackagesUnversionedName} = final.${cudaPackagesMajorVersionedName}; + } + ); cudaPackagesFixedPoint = finalCudaPackages: @@ -80,6 +96,24 @@ let # depend on them recursively as they are used to add top-level attributes. inherit manifests; + # Construct without relying on the fixed-point to allow the use of backendStdenv in creating CUDA package sets. + # For example, this allows selecting manifests by predicating on values like + # `backendStdenv.hasJetsonCudaCapability`, which would otherwise result in infinite recursion due to the reliance + # on `pkgs'`, which in turn depends on the manifests provided to this file (which can depend on `backendStdenv`). + backendStdenv = import ./backendStdenv { + inherit + _cuda + config + cudaMajorMinorVersion + lib + pkgs + ; + inherit (pkgs) + stdenv + stdenvAdapters + ; + }; + # Create backendStdenv variants for different host compilers, since users may want to build a CUDA project with # Clang or GCC specifically. # TODO(@connorbaker): Because of the way our setup hooks and patching of NVCC works, the user's choice of @@ -96,13 +130,15 @@ let # Must be constructed without `callPackage` to avoid replacing the `override` attribute with that of # `callPackage`'s. buildRedist = import ./buildRedist { - inherit (pkgs) + inherit _cuda + config + lib + ; + inherit (pkgs) autoAddDriverRunpath autoPatchelfHook - config fetchurl - lib srcOnly stdenv stdenvNoCC @@ -145,8 +181,18 @@ let ] ++ _cuda.extensions ); + + # Using lib.makeScopeWithSplicing' instead of the templated one from pkgs' allows us to defer calling pkgs.extend. + cudaPackages = + lib.makeScopeWithSplicing' + { + splicePackages = pkgs'.splicePackages; + newScope = pkgs'.newScope; + } + { + # In pkgs', the default CUDA package set is always the one we've constructed here. + otherSplices = pkgs'.generateSplicesForMkScope [ "cudaPackages" ]; + f = extends composedExtensions cudaPackagesFixedPoint; + }; in -pkgs'.makeScopeWithSplicing' { - otherSplices = pkgs'.generateSplicesForMkScope [ cudaPackagesMajorMinorVersionedName ]; - f = extends composedExtensions cudaPackagesFixedPoint; -} +cudaPackages diff --git a/pkgs/development/libraries/nss/latest.nix b/pkgs/development/libraries/nss/latest.nix index 57c8a625e711..c7a23afaa798 100644 --- a/pkgs/development/libraries/nss/latest.nix +++ b/pkgs/development/libraries/nss/latest.nix @@ -5,8 +5,8 @@ # Example: nix-shell ./maintainers/scripts/update.nix --argstr package cacert import ./generic.nix { - version = "3.117"; - hash = "sha256-sAs0TiV3TK/WtgHvEjl2KFAgebyWZYmcRcmxjpn2AME="; + version = "3.118.1"; + hash = "sha256-jpBJzXLljvobG8O8BB1JiJJmnp+Ma36SOHcl9LuimVw="; filename = "latest.nix"; versionRegex = "NSS_(\\d+)_(\\d+)(?:_(\\d+))?_RTM"; } diff --git a/pkgs/development/libraries/qodeassist-plugin/default.nix b/pkgs/development/libraries/qodeassist-plugin/default.nix index 3b4372f3b88f..c6d55e4b8b31 100644 --- a/pkgs/development/libraries/qodeassist-plugin/default.nix +++ b/pkgs/development/libraries/qodeassist-plugin/default.nix @@ -17,13 +17,13 @@ }: stdenv.mkDerivation (finalAttrs: { pname = "qodeassist-plugin"; - version = "0.8.1"; + version = "0.8.3"; src = fetchFromGitHub { owner = "Palm1r"; repo = "QodeAssist"; tag = "v${finalAttrs.version}"; - hash = "sha256-TofKw8zUkp7Er6Dn9PKvLpJxvq19+WDKb6rFuZm/sVw="; + hash = "sha256-xSa+d+tm++rXkn//i4s5ibKd9fcfje3lXSbhr4JMcDE="; }; dontWrapQtApps = true; diff --git a/pkgs/development/libraries/qt-5/modules/qtwebengine.nix b/pkgs/development/libraries/qt-5/modules/qtwebengine.nix index c47eda9636ee..674d245f0bb8 100644 --- a/pkgs/development/libraries/qt-5/modules/qtwebengine.nix +++ b/pkgs/development/libraries/qt-5/modules/qtwebengine.nix @@ -57,7 +57,7 @@ bootstrap_cmds, xcbuild, writeScriptBin, - ffmpeg ? null, + ffmpeg_7 ? null, lib, stdenv, version ? null, @@ -354,7 +354,7 @@ qtModule ( icu libevent - ffmpeg + ffmpeg_7 ] ++ lib.optionals (!stdenv.hostPlatform.isDarwin) [ dbus diff --git a/pkgs/development/ocaml-modules/ctypes/default.nix b/pkgs/development/ocaml-modules/ctypes/default.nix index 2db0438c7659..46629d405725 100644 --- a/pkgs/development/ocaml-modules/ctypes/default.nix +++ b/pkgs/development/ocaml-modules/ctypes/default.nix @@ -11,13 +11,13 @@ buildDunePackage rec { pname = "ctypes"; - version = "0.23.0"; + version = "0.24.0"; src = fetchFromGitHub { owner = "ocamllabs"; repo = "ocaml-ctypes"; rev = version; - hash = "sha256-fZfTsOMppHiI7BVvgICVt/9ofGFAfYjXzHSDA7L4vZk="; + hash = "sha256-Wlpk+/MSWmnIRsJfVQMTCYDRixuqLzDpdFNpkQyscA8="; }; buildInputs = [ dune-configurator ]; diff --git a/pkgs/development/python-modules/aesedb/default.nix b/pkgs/development/python-modules/aesedb/default.nix index c976a92b5df9..feae42027e51 100644 --- a/pkgs/development/python-modules/aesedb/default.nix +++ b/pkgs/development/python-modules/aesedb/default.nix @@ -13,7 +13,7 @@ buildPythonPackage rec { pname = "aesedb"; - version = "0.1.7"; + version = "0.1.8"; pyproject = true; disabled = pythonOlder "3.7"; @@ -22,7 +22,7 @@ buildPythonPackage rec { owner = "skelsec"; repo = "aesedb"; tag = version; - hash = "sha256-jT5Aru/BqvJf4HpD418+GrkZ0/g2XcTV3oWSOmo0Sbw="; + hash = "sha256-YoeqxYkohAR6RaQYDXt7T00LCQDSb/o/ddxYRDGP/2s="; }; nativeBuildInputs = [ setuptools ]; diff --git a/pkgs/development/python-modules/azure-mgmt-dashboard/default.nix b/pkgs/development/python-modules/azure-mgmt-dashboard/default.nix new file mode 100644 index 000000000000..0f80f253dcc1 --- /dev/null +++ b/pkgs/development/python-modules/azure-mgmt-dashboard/default.nix @@ -0,0 +1,48 @@ +{ + lib, + azure-common, + azure-mgmt-core, + buildPythonPackage, + fetchPypi, + isodate, + pythonOlder, + setuptools, + typing-extensions, +}: + +buildPythonPackage rec { + pname = "azure-mgmt-dashboard"; + version = "1.1.0"; + format = "wheel"; + + disabled = pythonOlder "3.8"; + + src = fetchPypi { + pname = "azure_mgmt_dashboard"; + inherit version; + format = "wheel"; + python = "py3"; + dist = "py3"; + hash = "sha256-WoZW5p30f0mrmMyhD68nxqlGrTtUU93V167B8wZitdA="; + }; + + propagatedBuildInputs = [ + azure-common + azure-mgmt-core + isodate + typing-extensions + ]; + + # Module has no tests + doCheck = false; + + pythonImportsCheck = [ "azure.mgmt.dashboard" ]; + + meta = with lib; { + description = "Microsoft Azure Dashboard Management Client Library for Python"; + homepage = "https://github.com/Azure/azure-sdk-for-python"; + changelog = "https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/dashboard/azure-mgmt-dashboard/CHANGELOG.md"; + license = licenses.mit; + maintainers = with maintainers; [ techknowlogick ]; + }; +} diff --git a/pkgs/development/python-modules/azure-mgmt-hybridcompute/default.nix b/pkgs/development/python-modules/azure-mgmt-hybridcompute/default.nix new file mode 100644 index 000000000000..6f8ffe084884 --- /dev/null +++ b/pkgs/development/python-modules/azure-mgmt-hybridcompute/default.nix @@ -0,0 +1,48 @@ +{ + lib, + azure-common, + azure-mgmt-core, + buildPythonPackage, + fetchPypi, + isodate, + pythonOlder, + setuptools, + typing-extensions, +}: + +buildPythonPackage rec { + pname = "azure-mgmt-hybridcompute"; + version = "9.1.0b2"; + format = "wheel"; + + disabled = pythonOlder "3.8"; + + src = fetchPypi { + pname = "azure_mgmt_hybridcompute"; + inherit version; + format = "wheel"; + python = "py3"; + dist = "py3"; + hash = "sha256-bKv4A6PjN6fMpyso0JqewADcKGOK1wXlULtkZpzrilY="; + }; + + propagatedBuildInputs = [ + azure-common + azure-mgmt-core + isodate + typing-extensions + ]; + + # Module has no tests + doCheck = false; + + pythonImportsCheck = [ "azure.mgmt.hybridcompute" ]; + + meta = with lib; { + description = "Microsoft Azure Hybrid Compute Management Client Library for Python"; + homepage = "https://github.com/Azure/azure-sdk-for-python"; + changelog = "https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/hybridcompute/azure-mgmt-hybridcompute/CHANGELOG.md"; + license = licenses.mit; + maintainers = with maintainers; [ techknowlogick ]; + }; +} diff --git a/pkgs/development/python-modules/blackjax/default.nix b/pkgs/development/python-modules/blackjax/default.nix index e10d406aed7f..ea1e0aa9fae1 100644 --- a/pkgs/development/python-modules/blackjax/default.nix +++ b/pkgs/development/python-modules/blackjax/default.nix @@ -17,24 +17,25 @@ # checks pytestCheckHook, pytest-xdist, - - stdenv, }: buildPythonPackage rec { pname = "blackjax"; - version = "1.2.5"; + version = "1.3"; pyproject = true; src = fetchFromGitHub { owner = "blackjax-devs"; repo = "blackjax"; tag = version; - hash = "sha256-2GTjKjLIWFaluTjdWdUF9Iim973y81xv715xspghRZI="; + hash = "sha256-ystvPfIsnMFYkC+LNtcRQsI19i/y/905SnPSApM8v4E="; }; build-system = [ setuptools-scm ]; + pythonRelaxDeps = [ + "jaxopt" + ]; dependencies = [ fastprogress jax @@ -75,13 +76,6 @@ buildPythonPackage rec { "test_nuts__without_device" "test_nuts__without_jit" "test_smc_waste_free__with_jit" - - # Numerical test (AssertionError) - # First report, when the failure was only happening on aarch64-linux: - # https://github.com/blackjax-devs/blackjax/issues/668 - # Second report, when the test started happening on x86_64-linux too after Jax was updated to 0.7.0 - # https://github.com/blackjax-devs/blackjax/issues/795 - "test_chees_adaptation" ]; pythonImportsCheck = [ "blackjax" ]; diff --git a/pkgs/development/python-modules/cgal/default.nix b/pkgs/development/python-modules/cgal/default.nix index 0cc475f09212..cc34575d0018 100644 --- a/pkgs/development/python-modules/cgal/default.nix +++ b/pkgs/development/python-modules/cgal/default.nix @@ -4,6 +4,7 @@ python, buildPythonPackage, fetchFromGitHub, + fetchurl, setuptools, boost, cgal, @@ -19,6 +20,16 @@ withLAS ? false, # unfree }: +let + # Use CGAL 6.0.1 for compatibility with cgal-swig-bindings + cgal_6_0_1 = cgal.overrideAttrs (oldAttrs: { + version = "6.0.1"; + src = fetchurl { + url = "https://github.com/CGAL/cgal/releases/download/v6.0.1/CGAL-6.0.1.tar.xz"; + hash = "sha256-Cs378xfFVmMN1SbzJTeA8ptuyXE+6SkD6Btck8D1m38="; + }; + }); +in buildPythonPackage rec { pname = "cgal"; version = "6.0.1.post202410241521"; @@ -40,7 +51,7 @@ buildPythonPackage rec { ]; buildInputs = [ - cgal + cgal_6_0_1 gmp mpfr boost diff --git a/pkgs/development/python-modules/deepl/default.nix b/pkgs/development/python-modules/deepl/default.nix index d9486df7d5ec..cc7009d1fefa 100644 --- a/pkgs/development/python-modules/deepl/default.nix +++ b/pkgs/development/python-modules/deepl/default.nix @@ -9,12 +9,12 @@ buildPythonPackage rec { pname = "deepl"; - version = "1.24.0"; + version = "1.25.0"; format = "pyproject"; src = fetchPypi { inherit pname version; - hash = "sha256-oPyCqgnSpqY5H1QrorkDS0FfqjhsCaKXwxclNor3ePs="; + hash = "sha256-nFvmNQVug6czSECorez9lixcuFV58hsVwQZD6dd8I4o="; }; nativeBuildInputs = [ poetry-core ]; diff --git a/pkgs/development/python-modules/diagrams/0001-Add-build-system-section.patch b/pkgs/development/python-modules/diagrams/0001-Add-build-system-section.patch new file mode 100644 index 000000000000..2f3f539e5864 --- /dev/null +++ b/pkgs/development/python-modules/diagrams/0001-Add-build-system-section.patch @@ -0,0 +1,21 @@ +From 59b84698b142f5a0998ee9e395df717a1b77e9b2 Mon Sep 17 00:00:00 2001 +From: Fabian Affolter +Date: Wed, 1 Jan 2025 21:57:06 +0100 +Subject: [PATCH] Add build-system section + +--- + pyproject.toml | 4 ++++ + 1 file changed, 4 insertions(+) + +diff --git a/pyproject.toml b/pyproject.toml +index bcb1e65e3..00dc374fe 100644 +--- a/pyproject.toml ++++ b/pyproject.toml +@@ -28,3 +28,7 @@ black = "^24.4" + + [tool.black] + line-length=120 ++ ++[build-system] ++requires = ["poetry_core>=1.0.0"] ++build-backend = "poetry.core.masonry.api" diff --git a/pkgs/development/python-modules/diagrams/0002-Fix-packaging-Ensure-resources-are-included.patch b/pkgs/development/python-modules/diagrams/0002-Fix-packaging-Ensure-resources-are-included.patch new file mode 100644 index 000000000000..564df2a01141 --- /dev/null +++ b/pkgs/development/python-modules/diagrams/0002-Fix-packaging-Ensure-resources-are-included.patch @@ -0,0 +1,28 @@ +From 4ecaacf3fa93720a13cc06732d427415ae66d48f Mon Sep 17 00:00:00 2001 +From: Nick Bathum +Date: Fri, 14 Mar 2025 20:36:49 -0400 +Subject: [PATCH] Fix packaging: Ensure resources are included in both sdist + and wheel + +Poetry's `include` directive defaults to only including files in the sdist. +See https://github.com/python-poetry/poetry-core/pull/773 +--- + pyproject.toml | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/pyproject.toml b/pyproject.toml +index 0262552..c7deb2d 100644 +--- a/pyproject.toml ++++ b/pyproject.toml +@@ -7,7 +7,7 @@ authors = ["mingrammer "] + readme = "README.md" + homepage = "https://diagrams.mingrammer.com" + repository = "https://github.com/mingrammer/diagrams" +-include = ["resources/**/*"] ++include = [{ path = "resources/**/*", format = ["sdist", "wheel"] }] + + [tool.poetry.scripts] + diagrams="diagrams.cli:main" +-- +2.47.2 + diff --git a/pkgs/development/python-modules/diagrams/default.nix b/pkgs/development/python-modules/diagrams/default.nix index 96fefb8ae8bb..8b026ccb8b38 100644 --- a/pkgs/development/python-modules/diagrams/default.nix +++ b/pkgs/development/python-modules/diagrams/default.nix @@ -29,11 +29,9 @@ buildPythonPackage rec { patches = [ # Add build-system, https://github.com/mingrammer/diagrams/pull/1089 - (fetchpatch { - name = "add-build-system.patch"; - url = "https://github.com/mingrammer/diagrams/commit/59b84698b142f5a0998ee9e395df717a1b77e9b2.patch"; - hash = "sha256-/zV5X4qgHJs+KO9gHyu6LqQ3hB8Zx+BzOFo7K1vQK78="; - }) + ./0001-Add-build-system-section.patch + # Fix poetry include, https://github.com/mingrammer/diagrams/pull/1128 + ./0002-Fix-packaging-Ensure-resources-are-included.patch ./remove-black-requirement.patch ]; diff --git a/pkgs/development/python-modules/django-lasuite/default.nix b/pkgs/development/python-modules/django-lasuite/default.nix index 02ffce1af045..753eceb4ce50 100644 --- a/pkgs/development/python-modules/django-lasuite/default.nix +++ b/pkgs/development/python-modules/django-lasuite/default.nix @@ -16,18 +16,19 @@ responses, celery, pytestCheckHook, + nixosTests, }: buildPythonPackage rec { pname = "django-lasuite"; - version = "0.0.14"; + version = "0.0.18"; pyproject = true; src = fetchFromGitHub { owner = "suitenumerique"; repo = "django-lasuite"; tag = "v${version}"; - hash = "sha256-v4VSiZf/gpCrD/YGcEQpj6mYJUaxatqktwI+NL+oF7A="; + hash = "sha256-kXRaoVOyabGPCnO8uyWHbpE0zOIYZkHcqmWNSz0BHZY="; }; build-system = [ hatchling ]; @@ -60,12 +61,18 @@ buildPythonPackage rec { pythonImportsCheck = [ "lasuite" ]; + passthru.tests = { + inherit (nixosTests) + lasuite-docs + lasuite-meet + ; + }; + meta = { description = "Common library for La Suite Django projects and Proconnected Django projects"; homepage = "https://github.com/suitenumerique/django-lasuite"; changelog = "https://github.com/suitenumerique/django-lasuite/blob/${src.tag}/CHANGELOG.md"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ soyouzpanda ]; - broken = lib.versionOlder django.version "5.2"; }; } diff --git a/pkgs/development/python-modules/ekey-bionyxpy/default.nix b/pkgs/development/python-modules/ekey-bionyxpy/default.nix new file mode 100644 index 000000000000..322d87b4b185 --- /dev/null +++ b/pkgs/development/python-modules/ekey-bionyxpy/default.nix @@ -0,0 +1,43 @@ +{ + lib, + aiohttp, + aioresponses, + buildPythonPackage, + fetchFromGitHub, + pytest-asyncio, + pytestCheckHook, + setuptools, +}: + +buildPythonPackage rec { + pname = "ekey-bionyxpy"; + version = "1.0.0"; + pyproject = true; + + src = fetchFromGitHub { + owner = "richardpolzer"; + repo = "ekey-bionyx-api"; + tag = version; + hash = "sha256-wKgIQp+E1fzOrp2Xx14RXvtxQMOb0rFkI55q2Rw+JNg="; + }; + + build-system = [ setuptools ]; + + dependencies = [ aiohttp ]; + + nativeCheckInputs = [ + aioresponses + pytest-asyncio + pytestCheckHook + ]; + + pythonImportsCheck = [ "ekey_bionyxpy" ]; + + meta = { + description = "Interact with the bionyx third party API of the ekey biometric systems"; + homepage = "https://github.com/richardpolzer/ekey-bionyx-api"; + changelog = "https://github.com/richardpolzer/ekey-bionyx-api/releases/tag/${version}"; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.jamiemagee ]; + }; +} diff --git a/pkgs/development/python-modules/fast-array-utils/default.nix b/pkgs/development/python-modules/fast-array-utils/default.nix index f230b7ba7e4a..422e8b1ac0ea 100644 --- a/pkgs/development/python-modules/fast-array-utils/default.nix +++ b/pkgs/development/python-modules/fast-array-utils/default.nix @@ -18,14 +18,14 @@ buildPythonPackage rec { pname = "fast-array-utils"; - version = "1.3"; + version = "1.3.1"; pyproject = true; src = fetchFromGitHub { owner = "scverse"; repo = "fast-array-utils"; tag = "v${version}"; - hash = "sha256-cU5kBOgjinsievGtnl52RQ39txHuXG5n7YeKGF/9O0Q="; + hash = "sha256-FUzCdDFDqP+izlSWruWzslfPayzRN7MFx1LOikyMDss="; }; # hatch-min-requirements tries to talk to PyPI by default. See https://github.com/tlambert03/hatch-min-requirements?tab=readme-ov-file#environment-variables. diff --git a/pkgs/development/python-modules/fastexcel/default.nix b/pkgs/development/python-modules/fastexcel/default.nix index b4db317f45ae..39adf752ffe5 100644 --- a/pkgs/development/python-modules/fastexcel/default.nix +++ b/pkgs/development/python-modules/fastexcel/default.nix @@ -20,19 +20,19 @@ buildPythonPackage rec { pname = "fastexcel"; - version = "0.16.0"; + version = "0.17.1"; pyproject = true; src = fetchFromGitHub { owner = "ToucanToco"; repo = "fastexcel"; tag = "v${version}"; - hash = "sha256-6pEE3l3qJ3Nir4oDFXdsGiX/2d1w3bqH0nrIOjBt9PM="; + hash = "sha256-FCI1pMCYN1f5hEg7PxF72uPPIJ5WiQPISF+YFj7+K60="; }; cargoDeps = rustPlatform.fetchCargoVendor { inherit pname version src; - hash = "sha256-ULRK7GjMEs0mN/H491XANDT7eipOdPfJyGFtPBM3SC8="; + hash = "sha256-9Xr4woj7TU03AZaebpdlo1U2s0q/ls2fPmSKccpoZq0="; }; nativeBuildInputs = [ diff --git a/pkgs/development/python-modules/iamdata/default.nix b/pkgs/development/python-modules/iamdata/default.nix index 0a90cbdfa1e0..033aa6ad1e92 100644 --- a/pkgs/development/python-modules/iamdata/default.nix +++ b/pkgs/development/python-modules/iamdata/default.nix @@ -8,14 +8,14 @@ buildPythonPackage rec { pname = "iamdata"; - version = "0.1.202511181"; + version = "0.1.202511191"; pyproject = true; src = fetchFromGitHub { owner = "cloud-copilot"; repo = "iam-data-python"; tag = "v${version}"; - hash = "sha256-zp/kTyQUJJKMdHdJuQQ3PPyWlEQjwNvYL7+SdLux0Xc="; + hash = "sha256-xEMElAH0jcPDKiaNOXlq8l632wWT99uDnUQzRp4ahIs="; }; __darwinAllowLocalNetworking = true; diff --git a/pkgs/development/python-modules/locust/default.nix b/pkgs/development/python-modules/locust/default.nix index d59ba37d5ac9..dcc74be52e0a 100644 --- a/pkgs/development/python-modules/locust/default.nix +++ b/pkgs/development/python-modules/locust/default.nix @@ -28,14 +28,14 @@ buildPythonPackage rec { pname = "locust"; - version = "2.42.1"; + version = "2.42.2"; pyproject = true; src = fetchFromGitHub { owner = "locustio"; repo = "locust"; tag = version; - hash = "sha256-yyG4HVti0BAcGWQHID799YfkCEIBmpTkUUm8QzXMivc="; + hash = "sha256-Myek56kHUX0rFNJcEhfMTSE7xwYhm4AmogxIcUNzrR0="; }; postPatch = '' diff --git a/pkgs/development/python-modules/moyopy/default.nix b/pkgs/development/python-modules/moyopy/default.nix index b27d6bb2066d..7ae45f470ff2 100644 --- a/pkgs/development/python-modules/moyopy/default.nix +++ b/pkgs/development/python-modules/moyopy/default.nix @@ -16,14 +16,14 @@ buildPythonPackage rec { pname = "moyopy"; - version = "0.7.1"; + version = "0.7.3"; pyproject = true; src = fetchFromGitHub { owner = "spglib"; repo = "moyo"; tag = "v${version}"; - hash = "sha256-XWOFYzDYCICVtaIpo9bH8P1YwV9QmR108DUb0GDMPM4="; + hash = "sha256-jocBC0jP0gx8RsmLuV5RjQm3+XDMAEhO+v55ao5GIqE="; }; sourceRoot = "${src.name}/moyopy"; @@ -46,7 +46,7 @@ buildPythonPackage rec { sourceRoot cargoRoot ; - hash = "sha256-LfC0ptYH+wMq9yaS+vkLAoQJiuLONo3Ol1v7eS7gLeI="; + hash = "sha256-mGePfCIg2xREmFmIs05oAJvzL22XbLr3yG5VyV46/nQ="; }; build-system = [ diff --git a/pkgs/development/python-modules/osmnx/default.nix b/pkgs/development/python-modules/osmnx/default.nix index da769d05c227..7e56308d4caa 100644 --- a/pkgs/development/python-modules/osmnx/default.nix +++ b/pkgs/development/python-modules/osmnx/default.nix @@ -5,7 +5,6 @@ folium, gdal, geopandas, - hatchling, matplotlib, networkx, numpy, @@ -17,11 +16,12 @@ scikit-learn, scipy, shapely, + uv-build, }: buildPythonPackage rec { pname = "osmnx"; - version = "2.0.0"; + version = "2.0.6"; pyproject = true; disabled = pythonOlder "3.9"; @@ -30,10 +30,10 @@ buildPythonPackage rec { owner = "gboeing"; repo = "osmnx"; tag = "v${version}"; - hash = "sha256-5IvohqEYYvFqAKOYreEsEKjzfJaqShYck2xCSQXXfyQ="; + hash = "sha256-y2gKToDzG1IIcLN+hK/WeS+/z6MNabiIr+8Em1Ct72Q="; }; - build-system = [ hatchling ]; + build-system = [ uv-build ]; dependencies = [ geopandas diff --git a/pkgs/development/python-modules/plopp/default.nix b/pkgs/development/python-modules/plopp/default.nix index 0b3b053f35fe..95eabf349b2e 100644 --- a/pkgs/development/python-modules/plopp/default.nix +++ b/pkgs/development/python-modules/plopp/default.nix @@ -35,14 +35,14 @@ buildPythonPackage rec { pname = "plopp"; - version = "25.10.0"; + version = "25.11.0"; pyproject = true; src = fetchFromGitHub { owner = "scipp"; repo = "plopp"; tag = version; - hash = "sha256-b9f08Wf6SGNb2rTnOqZhsSvRcfg1T+JXItZa67q2vtM="; + hash = "sha256-3vmHRPjv7iUd6ky7XzfdChpAI++ELh6vwmtELK7dwaE="; }; build-system = [ diff --git a/pkgs/development/python-modules/publicsuffixlist/default.nix b/pkgs/development/python-modules/publicsuffixlist/default.nix index c38d89b81cec..24a239b6ced5 100644 --- a/pkgs/development/python-modules/publicsuffixlist/default.nix +++ b/pkgs/development/python-modules/publicsuffixlist/default.nix @@ -10,12 +10,12 @@ buildPythonPackage rec { pname = "publicsuffixlist"; - version = "1.0.2.20251115"; + version = "1.0.2.20251119"; pyproject = true; src = fetchPypi { inherit pname version; - hash = "sha256-A9g5jpYdTZ3h4rXcw/OxxaXsraNcNdImQtEhJ54D0qc="; + hash = "sha256-oDVCjz8oIk6PetfQLSl10r1uCW8O995or5bmHdMKy/Q="; }; build-system = [ setuptools ]; diff --git a/pkgs/development/python-modules/pydo/default.nix b/pkgs/development/python-modules/pydo/default.nix index 8fb89339b885..62801f42b977 100644 --- a/pkgs/development/python-modules/pydo/default.nix +++ b/pkgs/development/python-modules/pydo/default.nix @@ -15,14 +15,14 @@ buildPythonPackage rec { pname = "pydo"; - version = "0.19.0"; + version = "0.21.0"; pyproject = true; src = fetchFromGitHub { owner = "digitalocean"; repo = "pydo"; tag = "v${version}"; - hash = "sha256-TF7fbOjmK1bGCftS0l54FX/Cunp4nWdBj5+IWlTg8dE="; + hash = "sha256-pCvJ8UY5hvmlUAQ3oMdnDVhK0x/5iFBpaw3/W9RV8Z0="; }; build-system = [ poetry-core ]; diff --git a/pkgs/development/python-modules/pymitsubishi/default.nix b/pkgs/development/python-modules/pymitsubishi/default.nix index 25e4253730c1..82ab38deb2ad 100644 --- a/pkgs/development/python-modules/pymitsubishi/default.nix +++ b/pkgs/development/python-modules/pymitsubishi/default.nix @@ -11,14 +11,14 @@ buildPythonPackage rec { pname = "pymitsubishi"; - version = "0.4.1"; + version = "0.4.2"; pyproject = true; src = fetchFromGitHub { owner = "pymitsubishi"; repo = "pymitsubishi"; tag = "v${version}"; - hash = "sha256-Uh3hlgXYgGDZDpEJInLX323fftVciwh9fLEKF2Kozq0="; + hash = "sha256-QjHMIzl2VV1S8tNWsFLgLDNX6/0wN9FeIJIo5KgkDVE="; }; build-system = [ setuptools ]; diff --git a/pkgs/development/python-modules/pysrdaligateway/default.nix b/pkgs/development/python-modules/pysrdaligateway/default.nix index addd6a2cb38f..8e13264c1218 100644 --- a/pkgs/development/python-modules/pysrdaligateway/default.nix +++ b/pkgs/development/python-modules/pysrdaligateway/default.nix @@ -14,14 +14,14 @@ buildPythonPackage rec { pname = "pysrdaligateway"; - version = "0.15.1"; + version = "0.16.2"; pyproject = true; src = fetchFromGitHub { owner = "maginawin"; repo = "PySrDaliGateway"; tag = "v${version}"; - hash = "sha256-qPZxcGDSToFkkXBJKxo9OkcTBr4TZ9cFrcQwBTwKfy8="; + hash = "sha256-V6yc2SGgF6ab9UOSwxGbUh43A/9x7SCTPQDbakoTbd0="; }; build-system = [ setuptools ]; diff --git a/pkgs/development/python-modules/python-lsp-server/default.nix b/pkgs/development/python-modules/python-lsp-server/default.nix index 6667e5e69cff..637e3d58cd88 100644 --- a/pkgs/development/python-modules/python-lsp-server/default.nix +++ b/pkgs/development/python-modules/python-lsp-server/default.nix @@ -42,14 +42,14 @@ buildPythonPackage rec { pname = "python-lsp-server"; - version = "1.13.1"; + version = "1.13.2"; pyproject = true; src = fetchFromGitHub { owner = "python-lsp"; repo = "python-lsp-server"; tag = "v${version}"; - hash = "sha256-wxouTbqkieH3fxnXY0PIKDtDV97AbGWujisS2JmjBkE="; + hash = "sha256-uW4q/uwEkKASZBPQ994s5+t5Urg7/nZIaIv4hqyIffM="; }; pythonRelaxDeps = [ @@ -114,7 +114,6 @@ buildPythonPackage rec { writableTmpDirAsHomeHook ] ++ optional-dependencies.all; - versionCheckProgram = "${placeholder "out"}/bin/pylsp"; versionCheckProgramArg = "--version"; disabledTests = [ diff --git a/pkgs/development/python-modules/python-roborock/default.nix b/pkgs/development/python-modules/python-roborock/default.nix index 075331cdd475..d936fa76f68a 100644 --- a/pkgs/development/python-modules/python-roborock/default.nix +++ b/pkgs/development/python-modules/python-roborock/default.nix @@ -23,14 +23,14 @@ buildPythonPackage rec { pname = "python-roborock"; - version = "3.7.0"; + version = "3.8.0"; pyproject = true; src = fetchFromGitHub { owner = "Python-roborock"; repo = "python-roborock"; tag = "v${version}"; - hash = "sha256-KgrpfcGaq84VWlcGvKMjJfz4bEkC9l1waj1ZucQa7DA="; + hash = "sha256-Ts1X07eTv4KXv344F3fGazHlDx6XXGQfdmxb+gd/0qc="; }; pythonRelaxDeps = [ "pycryptodome" ]; diff --git a/pkgs/development/python-modules/sipsimple/default.nix b/pkgs/development/python-modules/sipsimple/default.nix index 3ae4cee38c1a..abd560d70175 100644 --- a/pkgs/development/python-modules/sipsimple/default.nix +++ b/pkgs/development/python-modules/sipsimple/default.nix @@ -8,7 +8,7 @@ cython, setuptools, alsa-lib, - ffmpeg, + ffmpeg_7, libopus, libuuid, libv4l, @@ -102,7 +102,7 @@ buildPythonPackage rec { buildInputs = [ alsa-lib - ffmpeg + ffmpeg_7 libopus libuuid libv4l diff --git a/pkgs/development/python-modules/tencentcloud-sdk-python/default.nix b/pkgs/development/python-modules/tencentcloud-sdk-python/default.nix index df19be9bea47..6e5eed5ab83e 100644 --- a/pkgs/development/python-modules/tencentcloud-sdk-python/default.nix +++ b/pkgs/development/python-modules/tencentcloud-sdk-python/default.nix @@ -9,14 +9,14 @@ buildPythonPackage rec { pname = "tencentcloud-sdk-python"; - version = "3.0.1489"; + version = "3.0.1490"; pyproject = true; src = fetchFromGitHub { owner = "TencentCloud"; repo = "tencentcloud-sdk-python"; tag = version; - hash = "sha256-dBZTUooqP+7HfhknfFlPni0l5APFLyPE+oACUe0uEZI="; + hash = "sha256-T52nSw2XljtlcxFCDlvsnr9429Jwlbo2fQB0HibEIPY="; }; build-system = [ setuptools ]; diff --git a/pkgs/development/python-modules/trl/default.nix b/pkgs/development/python-modules/trl/default.nix index 649f0c261faa..63672d76bbab 100644 --- a/pkgs/development/python-modules/trl/default.nix +++ b/pkgs/development/python-modules/trl/default.nix @@ -16,14 +16,14 @@ buildPythonPackage rec { pname = "trl"; - version = "0.25.0"; + version = "0.25.1"; pyproject = true; src = fetchFromGitHub { owner = "huggingface"; repo = "trl"; tag = "v${version}"; - hash = "sha256-XEutF+uN1UCOYmaYsKXSOvX5QMhIeUfHGEwEnhOvimA="; + hash = "sha256-f7XCrARel9DEJPe+oiGFyoaKY7jSvHo9YtQS0OWQ76s="; }; build-system = [ diff --git a/pkgs/development/python-modules/unicrypto/default.nix b/pkgs/development/python-modules/unicrypto/default.nix index cfcc15be66cb..774a43c98b91 100644 --- a/pkgs/development/python-modules/unicrypto/default.nix +++ b/pkgs/development/python-modules/unicrypto/default.nix @@ -4,24 +4,24 @@ fetchFromGitHub, pycryptodome, pycryptodomex, - pythonOlder, + setuptools, }: buildPythonPackage rec { pname = "unicrypto"; - version = "0.0.11"; - format = "setuptools"; - - disabled = pythonOlder "3.7"; + version = "0.0.12"; + pyproject = true; src = fetchFromGitHub { owner = "skelsec"; repo = "unicrypto"; tag = version; - hash = "sha256-quMh4yQSqbwZwWTJYxW/4F0k2c2nh82FEiNCSeQzhvo="; + hash = "sha256-RYwovFMalBNDPDEVjQ/8/N7DkOMiyeEQ5ESdgCK8RW8="; }; - propagatedBuildInputs = [ + build-system = [ setuptools ]; + + dependencies = [ pycryptodome pycryptodomex ]; @@ -34,8 +34,8 @@ buildPythonPackage rec { meta = with lib; { description = "Unified interface for cryptographic libraries"; homepage = "https://github.com/skelsec/unicrypto"; - changelog = "https://github.com/skelsec/unicrypto/releases/tag/${version}"; - license = with licenses; [ mit ]; + changelog = "https://github.com/skelsec/unicrypto/releases/tag/${src.tag}"; + license = licenses.mit; maintainers = with maintainers; [ fab ]; }; } diff --git a/pkgs/development/python-modules/weasel/default.nix b/pkgs/development/python-modules/weasel/default.nix index 06a2db7b0795..aedf6e86ea44 100644 --- a/pkgs/development/python-modules/weasel/default.nix +++ b/pkgs/development/python-modules/weasel/default.nix @@ -14,7 +14,7 @@ requests, smart-open, srsly, - typer, + typer-slim, wasabi, # tests @@ -23,22 +23,16 @@ buildPythonPackage rec { pname = "weasel"; - version = "0.4.1"; + version = "0.4.3"; pyproject = true; src = fetchFromGitHub { owner = "explosion"; repo = "weasel"; - tag = "v${version}"; - hash = "sha256-gXPHEoEY0qKcpAtqHlUw5c43/6hKseCx+vBNzEXFF2A="; + tag = "release-v${version}"; + hash = "sha256-Xd7cJlUi/a8gwtnuO9wqZiHT1xVMbp6V6Ha+Kyr4tFE="; }; - pythonRelaxDeps = [ - "cloudpathlib" - "smart-open" - "typer" - ]; - build-system = [ setuptools ]; dependencies = [ @@ -49,7 +43,7 @@ buildPythonPackage rec { requests smart-open srsly - typer + typer-slim wasabi ]; @@ -60,7 +54,7 @@ buildPythonPackage rec { ]; disabledTests = [ - # This test requires internet access + # These tests require internet access "test_project_assets" "test_project_git_dir_asset" "test_project_git_file_asset" @@ -69,7 +63,7 @@ buildPythonPackage rec { meta = { description = "Small and easy workflow system"; homepage = "https://github.com/explosion/weasel/"; - changelog = "https://github.com/explosion/weasel/releases/tag/v${version}"; + changelog = "https://github.com/explosion/weasel/releases/tag/${src.tag}"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ GaetanLepage ]; mainProgram = "weasel"; diff --git a/pkgs/development/tools/analysis/tflint-plugins/tflint-ruleset-google.nix b/pkgs/development/tools/analysis/tflint-plugins/tflint-ruleset-google.nix index 10e0c09dcf15..10de0f0cb6f5 100644 --- a/pkgs/development/tools/analysis/tflint-plugins/tflint-ruleset-google.nix +++ b/pkgs/development/tools/analysis/tflint-plugins/tflint-ruleset-google.nix @@ -6,16 +6,16 @@ buildGoModule rec { pname = "tflint-ruleset-google"; - version = "0.36.0"; + version = "0.37.1"; src = fetchFromGitHub { owner = "terraform-linters"; repo = pname; rev = "v${version}"; - hash = "sha256-1E+3z/ZVonhJgldIDToKhGxFdhq0t+yNep38G3ePOrw="; + hash = "sha256-NQA61rS6OmTqB09uhybHiZl/9RCvgwGjBRNsFY9E7JA="; }; - vendorHash = "sha256-XKKQBpS2PCGBuoiz4G3BI6czVNndPjr+rTKrM5jlsaY="; + vendorHash = "sha256-Mt0pym1cfv6j2nfEDdKykp+UyaC3jrRTiGk9iO5QtsU="; # upstream Makefile also does a go test $(go list ./... | grep -v integration) preCheck = '' diff --git a/pkgs/development/tools/continuous-integration/woodpecker/common.nix b/pkgs/development/tools/continuous-integration/woodpecker/common.nix index aaae68d75956..442012bf5319 100644 --- a/pkgs/development/tools/continuous-integration/woodpecker/common.nix +++ b/pkgs/development/tools/continuous-integration/woodpecker/common.nix @@ -1,7 +1,7 @@ { lib, fetchzip }: let - version = "3.11.0"; - srcHash = "sha256-mLyEHNMePVZI6MOSyeD9NMp9QXRXQ7h3LFSxHxpf878="; + version = "3.12.0"; + srcHash = "sha256-36802UcUufQS8zhpWDfbO1wTRZElDD3HpxSwNTrXGp0="; vendorHash = null; # The tarball contains vendored dependencies in { diff --git a/pkgs/kde/plasma/plasma-welcome/default.nix b/pkgs/kde/plasma/plasma-welcome/default.nix index 3786b3d0c89a..b28162478ad3 100644 --- a/pkgs/kde/plasma/plasma-welcome/default.nix +++ b/pkgs/kde/plasma/plasma-welcome/default.nix @@ -1,10 +1,16 @@ { mkKdeDerivation, + breeze, qtsvg, }: mkKdeDerivation { pname = "plasma-welcome"; + postPatch = '' + substituteInPlace src/qml/mock/Mock{Activities,Card,Overview}.qml \ + --replace-fail 'file:" + Private.App.installPrefix + "/share/wallpapers/Next/contents/images' "file://${breeze}/share/wallpapers/Next/contents/images" + ''; + extraBuildInputs = [ qtsvg ]; meta.mainProgram = "plasma-welcome"; } diff --git a/pkgs/servers/home-assistant/component-packages.nix b/pkgs/servers/home-assistant/component-packages.nix index 8869697e9cde..b071fff87c55 100644 --- a/pkgs/servers/home-assistant/component-packages.nix +++ b/pkgs/servers/home-assistant/component-packages.nix @@ -1457,7 +1457,8 @@ ]; "ekeybionyx" = ps: with ps; [ - ]; # missing inputs: ekey-bionyxpy + ekey-bionyxpy + ]; "electrasmart" = ps: with ps; [ pyelectra @@ -7241,6 +7242,7 @@ "efergy" "eheimdigital" "eight_sleep" + "ekeybionyx" "electrasmart" "electric_kiwi" "elevenlabs" diff --git a/pkgs/servers/home-assistant/custom-lovelace-modules/card-mod/package.nix b/pkgs/servers/home-assistant/custom-lovelace-modules/card-mod/package.nix index d11aa9a3adf9..5807c6220f50 100644 --- a/pkgs/servers/home-assistant/custom-lovelace-modules/card-mod/package.nix +++ b/pkgs/servers/home-assistant/custom-lovelace-modules/card-mod/package.nix @@ -6,16 +6,16 @@ buildNpmPackage rec { pname = "lovelace-card-mod"; - version = "3.4.6"; + version = "4.0.0"; src = fetchFromGitHub { owner = "thomasloven"; repo = "lovelace-card-mod"; rev = "v${version}"; - hash = "sha256-eQwJOVpRy9MTILWrKSru90p+kKgRlIUBFhpeHrYX3X0="; + hash = "sha256-BXyNXxCSEY0/AUD+6ggTvXPyPQYnAjkEgAVFmui6FAs="; }; - npmDepsHash = "sha256-3KXu/RhDt0jzO9UJKRN3nOc/mm9tCOeQYGRGaCUv2wM="; + npmDepsHash = "sha256-afIJbUNKKCWckL60cpj4V2SMCOX0Kn56AkVK9t923D0="; installPhase = '' runHook preInstall diff --git a/pkgs/servers/web-apps/outline/default.nix b/pkgs/servers/web-apps/outline/default.nix index 5beaebc8e937..d917ac92f777 100644 --- a/pkgs/servers/web-apps/outline/default.nix +++ b/pkgs/servers/web-apps/outline/default.nix @@ -14,13 +14,13 @@ stdenv.mkDerivation rec { pname = "outline"; - version = "1.0.1"; + version = "1.1.0"; src = fetchFromGitHub { owner = "outline"; repo = "outline"; rev = "v${version}"; - hash = "sha256-2EKI1Zp4bx3SFTxyBm/RtqIbFk1Lv4bkM0on+7xCuso="; + hash = "sha256-IaokSRFl2fOlDzLV0jNgKzATBCTwouLFG12Beeh6vI4="; }; nativeBuildInputs = [ @@ -35,7 +35,7 @@ stdenv.mkDerivation rec { yarnOfflineCache = fetchYarnDeps { yarnLock = "${src}/yarn.lock"; - hash = "sha256-QhwNC+a33WKxSUbv8o/9yMIeGMgjVE+6hKOj4VCoiWo="; + hash = "sha256-SLyEk78NEnMBFB0Wha9rot6j97l2/ZEGkc6Mtbn9/UM="; }; configurePhase = '' diff --git a/pkgs/tools/security/gopass/default.nix b/pkgs/tools/security/gopass/default.nix index c10aabed38aa..1e5cdadde472 100644 --- a/pkgs/tools/security/gopass/default.nix +++ b/pkgs/tools/security/gopass/default.nix @@ -28,7 +28,7 @@ let in buildGoModule (finalAttrs: { pname = "gopass"; - version = "1.15.18"; + version = "1.16.0"; nativeBuildInputs = [ installShellFiles @@ -39,10 +39,10 @@ buildGoModule (finalAttrs: { owner = "gopasspw"; repo = "gopass"; tag = "v${finalAttrs.version}"; - hash = "sha256-0vAZfcI/cUS/+x9clX9dV1q9yPOP3ZYPrn7hLPaYy/U="; + hash = "sha256-JBa/PhVj0cKr9Btz9KzhGgsL4APAfZ/ixHGHWzd2TfA="; }; - vendorHash = "sha256-HH0VU/JdRbpLK4pp2WOewXmv7Slu35iC2tFZ1TYWn5s="; + vendorHash = "sha256-ebnnnAD7SQJrSVOPborHUWd8ThOstIgihEIUjrnCztQ="; subPackages = [ "." ]; @@ -71,7 +71,10 @@ buildGoModule (finalAttrs: { ''; doInstallCheck = true; - nativeInstallCheckInputs = [ versionCheckHook ]; + nativeInstallCheckInputs = [ + versionCheckHook + gitMinimal + ]; versionCheckProgramArg = "--version"; passthru = { diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index 8e5fc91d4eac..d98e2a7a13c1 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -299,6 +299,7 @@ mapAliases { appthreat-depscan = throw "'appthreat-depscan' has been renamed to/replaced by 'dep-scan'"; # Converted to throw 2025-10-27 arangodb = throw "arangodb has been removed, as it was unmaintained and the packaged version does not build with supported GCC versions"; # Added 2025-08-12 arc-browser = throw "arc-browser was removed due to being unmaintained"; # Added 2025-09-03 + archi = throw "'archi' has been removed, since its upstream maintainers do not want it packaged"; # Added 2025-11-18 archipelago-minecraft = throw "archipelago-minecraft has been removed, as upstream no longer ships minecraft as a default APWorld."; # Added 2025-07-15 archivebox = throw "archivebox has been removed, since the packaged version was stuck on django 3."; # Added 2025-08-01 ardour_7 = throw "ardour_7 has been removed because it relies on gtk2, please use ardour instead."; # Aded 2025-10-04 diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index b0e886c08d79..a72989852dc4 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10721,12 +10721,6 @@ with pkgs; inherit (darwin) DarwinTools; }; - clight = callPackage ../applications/misc/clight { }; - - clight-gui = libsForQt5.callPackage ../applications/misc/clight/clight-gui.nix { }; - - clightd = callPackage ../applications/misc/clight/clightd.nix { }; - clipgrab = libsForQt5.callPackage ../applications/video/clipgrab { }; cmus = callPackage ../applications/audio/cmus { @@ -12570,6 +12564,12 @@ with pkgs; vscodium-fhs = vscodium.fhs; vscodium-fhsWithPackages = vscodium.fhsWithPackages; + antigravity = callPackage ../by-name/an/antigravity/package.nix { + vscode-generic = ../applications/editors/vscode/generic.nix; + }; + antigravity-fhs = antigravity.fhs; + antigravity-fhsWithPackages = antigravity.fhsWithPackages; + code-cursor = callPackage ../by-name/co/code-cursor/package.nix { vscode-generic = ../applications/editors/vscode/generic.nix; }; diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 383103bf87c2..bcace84c7fdc 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -1409,6 +1409,8 @@ self: super: with self; { azure-mgmt-cosmosdb = callPackage ../development/python-modules/azure-mgmt-cosmosdb { }; + azure-mgmt-dashboard = callPackage ../development/python-modules/azure-mgmt-dashboard { }; + azure-mgmt-databoxedge = callPackage ../development/python-modules/azure-mgmt-databoxedge { }; azure-mgmt-databricks = callPackage ../development/python-modules/azure-mgmt-databricks { }; @@ -1449,6 +1451,8 @@ self: super: with self; { azure-mgmt-hdinsight = callPackage ../development/python-modules/azure-mgmt-hdinsight { }; + azure-mgmt-hybridcompute = callPackage ../development/python-modules/azure-mgmt-hybridcompute { }; + azure-mgmt-imagebuilder = callPackage ../development/python-modules/azure-mgmt-imagebuilder { }; azure-mgmt-iotcentral = callPackage ../development/python-modules/azure-mgmt-iotcentral { }; @@ -4733,6 +4737,8 @@ self: super: with self; { eiswarnung = callPackage ../development/python-modules/eiswarnung { }; + ekey-bionyxpy = callPackage ../development/python-modules/ekey-bionyxpy { }; + elastic-apm = callPackage ../development/python-modules/elastic-apm { }; elastic-transport = callPackage ../development/python-modules/elastic-transport { };