Merge master into haskell-updates

authored by github-actions[bot] and committed by GitHub a32bb438 cb0cca86

+7565 -1272
+9
maintainers/maintainer-list.nix
··· 17121 17121 githubId = 178904; 17122 17122 name = "Daniel Ehlers"; 17123 17123 }; 17124 + sascha8a = { 17125 + email = "sascha@localhost.systems"; 17126 + github = "sascha8a"; 17127 + githubId = 6937965; 17128 + name = "Alexander Lampalzer"; 17129 + keys = [{ 17130 + fingerprint = "0350 3136 E22C C561 30E3 A4AE 2087 9CCA CD5C D670"; 17131 + }]; 17132 + }; 17124 17133 saschagrunert = { 17125 17134 email = "mail@saschagrunert.de"; 17126 17135 github = "saschagrunert";
+1
nixos/doc/manual/configuration/x-windows.chapter.md
··· 150 150 drivers: 151 151 152 152 ```nix 153 + services.xserver.videoDrivers = [ "nvidiaLegacy470" ]; 153 154 services.xserver.videoDrivers = [ "nvidiaLegacy390" ]; 154 155 services.xserver.videoDrivers = [ "nvidiaLegacy340" ]; 155 156 services.xserver.videoDrivers = [ "nvidiaLegacy304" ];
+5
nixos/doc/manual/release-notes/rl-2405.section.md
··· 129 129 [v0.31](https://github.com/derailed/k9s/releases/tag/v0.31.0) for details. It is recommended 130 130 to back up your current configuration and let k9s recreate the new base configuration. 131 131 132 + - The option `services.postgresql.ensureUsers._.ensurePermissions` has been removed as it's 133 + not declarative and is broken with newer postgresql versions. Consider using 134 + [](#opt-services.postgresql.ensureUsers._.ensureDBOwnership) 135 + instead or a tool that's more suited for managing the data inside a postgresql database. 136 + 132 137 - `idris2` was updated to v0.7.0. This version introduces breaking changes. Check out the [changelog](https://github.com/idris-lang/Idris2/blob/v0.7.0/CHANGELOG.md#v070) for details. 133 138 134 139 - `neo4j` has been updated to 5, you may want to read the [release notes for Neo4j 5](https://neo4j.com/release-notes/database/neo4j-5/)
+1
nixos/modules/module-list.nix
··· 783 783 ./services/misc/svnserve.nix 784 784 ./services/misc/synergy.nix 785 785 ./services/misc/sysprof.nix 786 + ./services/misc/tabby.nix 786 787 ./services/misc/tandoor-recipes.nix 787 788 ./services/misc/taskserver 788 789 ./services/misc/tautulli.nix
+1 -1
nixos/modules/services/backup/syncoid.nix
··· 134 134 localSourceAllow = mkOption { 135 135 type = types.listOf types.str; 136 136 # Permissions snapshot and destroy are in case --no-sync-snap is not used 137 - default = [ "bookmark" "hold" "send" "snapshot" "destroy" ]; 137 + default = [ "bookmark" "hold" "send" "snapshot" "destroy" "mount" ]; 138 138 description = lib.mdDoc '' 139 139 Permissions granted for the {option}`services.syncoid.user` user 140 140 for local source datasets. See
-43
nixos/modules/services/databases/postgresql.nix
··· 161 161 ''; 162 162 }; 163 163 164 - ensurePermissions = mkOption { 165 - type = types.attrsOf types.str; 166 - default = {}; 167 - visible = false; # This option has been deprecated. 168 - description = lib.mdDoc '' 169 - This option is DEPRECATED and should not be used in nixpkgs anymore, 170 - use `ensureDBOwnership` instead. It can also break with newer 171 - versions of PostgreSQL (≥ 15). 172 - 173 - Permissions to ensure for the user, specified as an attribute set. 174 - The attribute names specify the database and tables to grant the permissions for. 175 - The attribute values specify the permissions to grant. You may specify one or 176 - multiple comma-separated SQL privileges here. 177 - 178 - For more information on how to specify the target 179 - and on which privileges exist, see the 180 - [GRANT syntax](https://www.postgresql.org/docs/current/sql-grant.html). 181 - The attributes are used as `GRANT ''${attrValue} ON ''${attrName}`. 182 - ''; 183 - example = literalExpression '' 184 - { 185 - "DATABASE \"nextcloud\"" = "ALL PRIVILEGES"; 186 - "ALL TABLES IN SCHEMA public" = "ALL PRIVILEGES"; 187 - } 188 - ''; 189 - }; 190 - 191 164 ensureDBOwnership = mkOption { 192 165 type = types.bool; 193 166 default = false; ··· 460 433 Offender: ${name} has not been found among databases. 461 434 ''; 462 435 }) cfg.ensureUsers; 463 - # `ensurePermissions` is now deprecated, let's avoid it. 464 - warnings = lib.optional (any ({ ensurePermissions, ... }: ensurePermissions != {}) cfg.ensureUsers) " 465 - `services.postgresql.ensureUsers.*.ensurePermissions` is used in your expressions, 466 - this option is known to be broken with newer PostgreSQL versions, 467 - consider migrating to `services.postgresql.ensureUsers.*.ensureDBOwnership` or 468 - consult the release notes or manual for more migration guidelines. 469 - 470 - This option will be removed in NixOS 24.05 unless it sees significant 471 - maintenance improvements. 472 - "; 473 436 474 437 services.postgresql.settings = 475 438 { ··· 583 546 concatMapStrings 584 547 (user: 585 548 let 586 - userPermissions = concatStringsSep "\n" 587 - (mapAttrsToList 588 - (database: permission: ''$PSQL -tAc 'GRANT ${permission} ON ${database} TO "${user.name}"' '') 589 - user.ensurePermissions 590 - ); 591 549 dbOwnershipStmt = optionalString 592 550 user.ensureDBOwnership 593 551 ''$PSQL -tAc 'ALTER DATABASE "${user.name}" OWNER TO "${user.name}";' ''; ··· 599 557 userClauses = ''$PSQL -tAc 'ALTER ROLE "${user.name}" ${concatStringsSep " " clauseSqlStatements}' ''; 600 558 in '' 601 559 $PSQL -tAc "SELECT 1 FROM pg_roles WHERE rolname='${user.name}'" | grep -q 1 || $PSQL -tAc 'CREATE USER "${user.name}"' 602 - ${userPermissions} 603 560 ${userClauses} 604 561 605 562 ${dbOwnershipStmt}
+203
nixos/modules/services/misc/tabby.nix
··· 1 + { config, lib, pkgs, ... }: 2 + let 3 + inherit (lib) types; 4 + 5 + cfg = config.services.tabby; 6 + format = pkgs.formats.toml { }; 7 + tabbyPackage = cfg.package.override { 8 + inherit (cfg) acceleration; 9 + }; 10 + in 11 + { 12 + options = { 13 + services.tabby = { 14 + enable = lib.mkEnableOption ( 15 + lib.mdDoc "Self-hosted AI coding assistant using large language models" 16 + ); 17 + 18 + package = lib.mkPackageOption pkgs "tabby" { }; 19 + 20 + port = lib.mkOption { 21 + type = types.port; 22 + default = 11029; 23 + description = lib.mdDoc '' 24 + Specifies the bind port on which the tabby server HTTP interface listens. 25 + ''; 26 + }; 27 + 28 + model = lib.mkOption { 29 + type = types.str; 30 + default = "TabbyML/StarCoder-1B"; 31 + description = lib.mdDoc '' 32 + Specify the model that tabby will use to generate completions. 33 + 34 + This model will be downloaded automatically if it is not already present. 35 + 36 + If you want to utilize an existing model that you've already 37 + downloaded you'll need to move it into tabby's state directory which 38 + lives in `/var/lib/tabby`. Because the tabby.service is configured to 39 + use a DyanmicUser the service will need to have been started at least 40 + once before you can move the locally existing model into 41 + `/var/lib/tabby`. You can set the model to 'none' and tabby will 42 + startup and fail to download a model, but will have created the 43 + `/var/lib/tabby` directory. You can then copy over the model manually 44 + into `/var/lib/tabby`, update the model option to the name you just 45 + downloaded and copied over then `nixos-rebuild switch` to start using 46 + it. 47 + 48 + $ tabby download --model TabbyML/DeepseekCoder-6.7B 49 + $ find ~/.tabby/ | tail -n1 50 + /home/ghthor/.tabby/models/TabbyML/DeepseekCoder-6.7B/ggml/q8_0.v2.gguf 51 + $ sudo rsync -r ~/.tabby/models/ /var/lib/tabby/models/ 52 + $ sudo chown -R tabby:tabby /var/lib/tabby/models/ 53 + 54 + See for Model Options: 55 + > https://github.com/TabbyML/registry-tabby 56 + ''; 57 + }; 58 + 59 + acceleration = lib.mkOption { 60 + type = types.nullOr (types.enum [ "cpu" "rocm" "cuda" "metal" ]); 61 + default = null; 62 + example = "rocm"; 63 + description = lib.mdDoc '' 64 + Specifies the device to use for hardware acceleration. 65 + 66 + - `cpu`: no acceleration just use the CPU 67 + - `rocm`: supported by modern AMD GPUs 68 + - `cuda`: supported by modern NVIDIA GPUs 69 + - `metal`: supported on darwin aarch64 machines 70 + 71 + Tabby will try and determine what type of acceleration that is 72 + already enabled in your configuration when `acceleration = null`. 73 + 74 + - nixpkgs.config.cudaSupport 75 + - nixpkgs.config.rocmSupport 76 + - if stdenv.isDarwin && stdenv.isAarch64 77 + 78 + IFF multiple acceleration methods are found to be enabled or if you 79 + haven't set either `cudaSupport or rocmSupport` you will have to 80 + specify the device type manually here otherwise it will default to 81 + the first from the list above or to cpu. 82 + ''; 83 + }; 84 + 85 + settings = lib.mkOption { 86 + inherit (format) type; 87 + default = { }; 88 + description = lib.mdDoc '' 89 + Tabby scheduler configuration 90 + 91 + See for more details: 92 + > https://tabby.tabbyml.com/docs/configuration/#repository-context-for-code-completion 93 + ''; 94 + example = lib.literalExpression '' 95 + settings = { 96 + repositories = [ 97 + { name = "tabby"; git_url = "https://github.com/TabbyML/tabby.git"; } 98 + { name = "CTranslate2"; git_url = "git@github.com:OpenNMT/CTranslate2.git"; } 99 + 100 + # local directory is also supported, but limited by systemd DynamicUser=1 101 + # adding local repositories will need to be done manually 102 + { name = "repository_a"; git_url = "file:///var/lib/tabby/repository_a"; } 103 + ]; 104 + }; 105 + ''; 106 + }; 107 + 108 + usageCollection = lib.mkOption { 109 + type = types.bool; 110 + default = false; 111 + description = lib.mdDoc '' 112 + Enable sending anonymous usage data. 113 + 114 + See for more details: 115 + > https://tabby.tabbyml.com/docs/configuration#usage-collection 116 + ''; 117 + }; 118 + 119 + indexInterval = lib.mkOption { 120 + type = types.str; 121 + default = "5hours"; 122 + example = "5hours"; 123 + description = lib.mdDoc '' 124 + Run tabby scheduler to generate the index database at this interval. 125 + Updates by default every 5 hours. This value applies to 126 + `OnUnitInactiveSec` 127 + 128 + The format is described in 129 + {manpage}`systemd.time(7)`. 130 + 131 + To disable running `tabby scheduler --now` updates, set to `"never"` 132 + ''; 133 + }; 134 + }; 135 + }; 136 + 137 + # TODO(ghthor): firewall config 138 + 139 + config = lib.mkIf cfg.enable { 140 + environment = { 141 + etc."tabby/config.toml".source = format.generate "config.toml" cfg.settings; 142 + systemPackages = [ tabbyPackage ]; 143 + }; 144 + 145 + 146 + systemd = let 147 + serviceUser = { 148 + WorkingDirectory = "/var/lib/tabby"; 149 + StateDirectory = [ "tabby" ]; 150 + ConfigurationDirectory = [ "tabby" ]; 151 + DynamicUser = true; 152 + User = "tabby"; 153 + Group = "tabby"; 154 + }; 155 + 156 + serviceEnv = lib.mkMerge [ 157 + { 158 + TABBY_ROOT = "%S/tabby"; 159 + } 160 + (lib.mkIf (!cfg.usageCollection) { 161 + TABBY_DISABLE_USAGE_COLLECTION = "1"; 162 + }) 163 + ]; 164 + in { 165 + services.tabby = { 166 + wantedBy = [ "multi-user.target" ]; 167 + description = "Self-hosted AI coding assistant using large language models"; 168 + after = [ "network.target" ]; 169 + environment = serviceEnv; 170 + serviceConfig = lib.mkMerge [ 171 + serviceUser 172 + { 173 + ExecStart = 174 + "${lib.getExe tabbyPackage} serve --model ${cfg.model} --port ${toString cfg.port} --device ${tabbyPackage.featureDevice}"; 175 + } 176 + ]; 177 + }; 178 + 179 + services.tabby-scheduler = lib.mkIf (cfg.indexInterval != "never") { 180 + wantedBy = [ "multi-user.target" ]; 181 + description = "Tabby repository indexing service"; 182 + after = [ "network.target" ]; 183 + environment = serviceEnv; 184 + preStart = "cp -f /etc/tabby/config.toml \${TABBY_ROOT}/config.toml"; 185 + serviceConfig = lib.mkMerge [ 186 + serviceUser 187 + { 188 + # Type = "oneshot"; 189 + ExecStart = "${lib.getExe tabbyPackage} scheduler --now"; 190 + } 191 + ]; 192 + }; 193 + timers.tabby-scheduler = lib.mkIf (cfg.indexInterval != "never") { 194 + description = "Update timer for tabby-scheduler"; 195 + partOf = [ "tabby-scheduler.service" ]; 196 + wantedBy = [ "timers.target" ]; 197 + timerConfig.OnUnitInactiveSec = cfg.indexInterval; 198 + }; 199 + }; 200 + }; 201 + 202 + meta.maintainers = with lib.maintainers; [ ghthor ]; 203 + }
+1 -1
nixos/modules/virtualisation/oci-containers.nix
··· 312 312 313 313 preStop = if cfg.backend == "podman" 314 314 then "podman stop --ignore --cidfile=/run/podman-${escapedName}.ctr-id" 315 - else "${cfg.backend} stop ${name}"; 315 + else "${cfg.backend} stop ${name} || true"; 316 316 317 317 postStop = if cfg.backend == "podman" 318 318 then "podman rm -f --ignore --cidfile=/run/podman-${escapedName}.ctr-id"
+3
nixos/tests/sanoid.nix
··· 115 115 source.systemctl("start --wait syncoid-pool-sanoid.service") 116 116 target.succeed("cat /mnt/pool/sanoid/test.txt") 117 117 source.systemctl("start --wait syncoid-pool-syncoid.service") 118 + source.systemctl("start --wait syncoid-pool-syncoid.service") 118 119 target.succeed("cat /mnt/pool/syncoid/test.txt") 120 + 121 + assert(len(source.succeed("zfs list -H -t snapshot pool/syncoid").splitlines()) == 1), "Syncoid should only retain one sync snapshot" 119 122 120 123 source.systemctl("start --wait syncoid-pool.service") 121 124 target.succeed("[[ -d /mnt/pool/full-pool/syncoid ]]")
+17
pkgs/applications/editors/vscode/extensions/default.nix
··· 3340 3340 }; 3341 3341 }; 3342 3342 3343 + samuelcolvin.jinjahtml = buildVscodeMarketplaceExtension { 3344 + mktplcRef = { 3345 + name = "jinjahtml"; 3346 + publisher = "samuelcolvin"; 3347 + version = "0.20.0"; 3348 + sha256 = "c000cbdc090b7d3d8df62a3c87a5d881c78aca5b490b3e591d9841d788a9aa93"; 3349 + }; 3350 + meta = with lib; { 3351 + description = "Syntax highlighting for jinja(2) including HTML, Markdown, YAML, Ruby and LaTeX templates"; 3352 + downloadPage = "https://marketplace.visualstudio.com/items?itemName=samuelcolvin.jinjahtml"; 3353 + homepage = "https://github.com/samuelcolvin/jinjahtml-vscode"; 3354 + changelog = "https://marketplace.visualstudio.com/items/samuelcolvin.jinjahtml/changelog"; 3355 + license = licenses.mit; 3356 + maintainers = [ maintainers.DataHearth ]; 3357 + }; 3358 + }; 3359 + 3343 3360 sanaajani.taskrunnercode = buildVscodeMarketplaceExtension { 3344 3361 mktplcRef = { 3345 3362 name = "taskrunnercode";
+8 -10
pkgs/applications/misc/mysql-workbench/default.nix
··· 80 80 81 81 # a newer libxml2 version has changed some interfaces 82 82 ./fix-xml2.patch 83 + 84 + # Don't try to override the ANTLR_JAR_PATH specified in cmakeFlags 85 + ./dont-search-for-antlr-jar.patch 83 86 ]; 84 87 85 - # 1. have it look for 4.12.0 instead of 4.11.1 86 - # 2. for some reason CMakeCache.txt is part of source code 87 - preConfigure = '' 88 - substituteInPlace CMakeLists.txt \ 89 - --replace "antlr-4.11.1-complete.jar" "antlr-4.12.0-complete.jar" 88 + postPatch = '' 89 + # For some reason CMakeCache.txt is part of source code, remove it 90 90 rm -f build/CMakeCache.txt 91 + 92 + patchShebangs tools/get_wb_version.sh 91 93 ''; 92 94 93 95 nativeBuildInputs = [ ··· 139 141 zstd 140 142 ]; 141 143 142 - postPatch = '' 143 - patchShebangs tools/get_wb_version.sh 144 - ''; 145 - 146 144 # GCC 13: error: 'int64_t' in namespace 'std' does not name a type 147 145 # when updating the version make sure this is still needed 148 146 env.CXXFLAGS = "-include cstdint"; ··· 164 162 # mysql-workbench 8.0.21 depends on libmysqlconnectorcpp 1.1.8. 165 163 # Newer versions of connector still provide the legacy library when enabled 166 164 # but the headers are in a different location. 167 - "-DWITH_ANTLR_JAR=${antlr4_12.jarLocation}" 165 + "-DANTLR_JAR_PATH=${antlr4_12.jarLocation}" 168 166 "-DMySQLCppConn_INCLUDE_DIR=${libmysqlconnectorcpp}/include/jdbc" 169 167 ]; 170 168
+30
pkgs/applications/misc/mysql-workbench/dont-search-for-antlr-jar.patch
··· 1 + diff --git a/CMakeLists.txt b/CMakeLists.txt 2 + index b7320bb..d7169da 100644 3 + --- a/CMakeLists.txt 4 + +++ b/CMakeLists.txt 5 + @@ -143,25 +143,6 @@ check_function_exists (strtoull HAVE_STRTOULL) 6 + check_function_exists (strtoimax HAVE_STRTOIMAX) 7 + check_function_exists (strtoumax HAVE_STRTOUMAX) 8 + 9 + -set(ANTLR_JAR_FILENAME "antlr-4.11.1-complete.jar") 10 + -get_filename_component(SOURCE_PARENT_DIR ${CMAKE_SOURCE_DIR} DIRECTORY) 11 + -set(LINUX_RES_BIN_DIR ${SOURCE_PARENT_DIR}/linux-res/bin) 12 + -message("WITH_ANTLR_JAR: ${WITH_ANTLR_JAR}") 13 + -if(WITH_ANTLR_JAR) 14 + - get_filename_component(ANTLR_JAR_USER_DIR ${WITH_ANTLR_JAR} DIRECTORY) 15 + - find_path(ANTLR_JAR_PATH ${ANTLR_JAR_FILENAME} ${LINUX_RES_BIN_DIR} ${ANTLR_JAR_USER_DIR}) 16 + -else(WITH_ANTLR_JAR) 17 + - find_path(ANTLR_JAR_PATH ${ANTLR_JAR_FILENAME} ${LINUX_RES_BIN_DIR}) 18 + -endif(WITH_ANTLR_JAR) 19 + - 20 + -if(ANTLR_JAR_PATH AND Java_JAVA_EXECUTABLE) 21 + - set(ANTLR_JAR_PATH ${ANTLR_JAR_PATH}/${ANTLR_JAR_FILENAME}) 22 + - message(STATUS "ANTLR jar: " ${ANTLR_JAR_PATH}) 23 + -else() 24 + - message(WARNING ${ANTLR_JAR_FILENAME} " or java runtime wasn't found which is required if you'd like to rebuild Lexer and Parser files") 25 + -endif() 26 + - 27 + - 28 + if (UNIX) 29 + if (NOT LIB_INSTALL_DIR) 30 + set(LIB_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/lib")
+7 -2
pkgs/applications/misc/syncthingtray/default.nix
··· 76 76 export QT_QPA_PLATFORM=offscreen 77 77 export QT_PLUGIN_PATH="${lib.getBin qtbase}/${qtbase.qtPluginPrefix}" 78 78 ''; 79 - # don't test --help on Darwin because output is .app 80 - doInstallCheck = !stdenv.isDarwin; 79 + postInstall = lib.optionalString stdenv.isDarwin '' 80 + # put the app bundle into the proper place /Applications instead of /bin 81 + mkdir -p $out/Applications 82 + mv $out/bin/syncthingtray.app $out/Applications 83 + # Make binary available in PATH like on other platforms 84 + ln -s $out/Applications/syncthingtray.app/Contents/MacOS/syncthingtray $out/bin/syncthingtray 85 + ''; 81 86 installCheckPhase = '' 82 87 $out/bin/syncthingtray --help | grep ${finalAttrs.version} 83 88 '';
+409 -409
pkgs/applications/networking/browsers/firefox-bin/beta_sources.nix
··· 1 1 { 2 - version = "124.0b5"; 2 + version = "124.0b8"; 3 3 sources = [ 4 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/ach/firefox-124.0b5.tar.bz2"; 4 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/ach/firefox-124.0b8.tar.bz2"; 5 5 locale = "ach"; 6 6 arch = "linux-x86_64"; 7 - sha256 = "7d2bbc3802ad238953c9423f8023f9a1177712f56379fc69a180fd39f53388d9"; 7 + sha256 = "498160fe4419c54a020abef6cef36d8dc920740da38c1c7f977220ddcaa13c71"; 8 8 } 9 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/af/firefox-124.0b5.tar.bz2"; 9 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/af/firefox-124.0b8.tar.bz2"; 10 10 locale = "af"; 11 11 arch = "linux-x86_64"; 12 - sha256 = "5f36ceebf06776170a20b4727b0859ceb4a26508d6d8707c5d492e1b4ce67975"; 12 + sha256 = "7147f1d3c1eac2e0374477ce81ad91ea49de13b5cdefff97730d9077271f692d"; 13 13 } 14 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/an/firefox-124.0b5.tar.bz2"; 14 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/an/firefox-124.0b8.tar.bz2"; 15 15 locale = "an"; 16 16 arch = "linux-x86_64"; 17 - sha256 = "5f82fc1cb4a458cf28a1f76383d6c1fe11d6f33a157f9247d524fadc5ea6759d"; 17 + sha256 = "61a472e290a57df534892b07aeca02553e756bd44546d809be341cdf95b88b3f"; 18 18 } 19 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/ar/firefox-124.0b5.tar.bz2"; 19 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/ar/firefox-124.0b8.tar.bz2"; 20 20 locale = "ar"; 21 21 arch = "linux-x86_64"; 22 - sha256 = "08680db79f744d864cba21f4795dc1b9a2af5bf8c3ddf5f7ea4c908022579028"; 22 + sha256 = "bed77ce354fb1b2e04f0a7731053a89451bd9ee8bbf72b0b5463fd961022b93a"; 23 23 } 24 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/ast/firefox-124.0b5.tar.bz2"; 24 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/ast/firefox-124.0b8.tar.bz2"; 25 25 locale = "ast"; 26 26 arch = "linux-x86_64"; 27 - sha256 = "8bbe8db78333dba3cac356b578a03dd3b77dddc7e63b2177236f6a3d0896f04d"; 27 + sha256 = "884868af0039befecb7bd6321616d230e3da5d2c35146b85d4cda87e0b537998"; 28 28 } 29 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/az/firefox-124.0b5.tar.bz2"; 29 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/az/firefox-124.0b8.tar.bz2"; 30 30 locale = "az"; 31 31 arch = "linux-x86_64"; 32 - sha256 = "7a06cd17959904e49810ef220ec2ba713d4e16ac55eb64bdf74a8dc6ce9b0440"; 32 + sha256 = "aa14276f90ec2c5d8197c9a1b36f114377afbb29ceb07cd0e14176f163451231"; 33 33 } 34 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/be/firefox-124.0b5.tar.bz2"; 34 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/be/firefox-124.0b8.tar.bz2"; 35 35 locale = "be"; 36 36 arch = "linux-x86_64"; 37 - sha256 = "10fa657b60076eb048375cc7702edee3bf006c298308254be58a809904c153d0"; 37 + sha256 = "b8a14208004e37548ba3a59ba00e51a3284fc29650809522c7c2893a2a0439e3"; 38 38 } 39 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/bg/firefox-124.0b5.tar.bz2"; 39 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/bg/firefox-124.0b8.tar.bz2"; 40 40 locale = "bg"; 41 41 arch = "linux-x86_64"; 42 - sha256 = "ecde1dcb5479e5ca179fc09a090ac542b85287369f3b0d719b1b156c32ebd80e"; 42 + sha256 = "71022753ddd7673f9e4f4bf60eae881c88f39950312b63d1d502c3b194c1523c"; 43 43 } 44 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/bn/firefox-124.0b5.tar.bz2"; 44 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/bn/firefox-124.0b8.tar.bz2"; 45 45 locale = "bn"; 46 46 arch = "linux-x86_64"; 47 - sha256 = "6339cf64b10c1d31bef2d6fc95360653446ff76d2e169dd461bba543d60ff763"; 47 + sha256 = "ac2a5c73afcc99b6e158c0f9fb751c672193549591c1d57e572ce3c19ee3cd30"; 48 48 } 49 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/br/firefox-124.0b5.tar.bz2"; 49 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/br/firefox-124.0b8.tar.bz2"; 50 50 locale = "br"; 51 51 arch = "linux-x86_64"; 52 - sha256 = "3d3a1a26e4fbb44da3d354beb6d801a80d1ce20508d99fa794d182b8d536a744"; 52 + sha256 = "ccd1d62628b6b8b8a9a5f55d9f8f16dded489177462e699568e6ee0675dd84b9"; 53 53 } 54 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/bs/firefox-124.0b5.tar.bz2"; 54 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/bs/firefox-124.0b8.tar.bz2"; 55 55 locale = "bs"; 56 56 arch = "linux-x86_64"; 57 - sha256 = "baed2b12d8d84ce5697320eebad87897b009bcac76e68ba0abda2582e24e88c9"; 57 + sha256 = "9067c57713ec76d8fb08c8f15b3a6739f67bbaa8ddd1f8a4d61299d696bbe982"; 58 58 } 59 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/ca-valencia/firefox-124.0b5.tar.bz2"; 59 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/ca-valencia/firefox-124.0b8.tar.bz2"; 60 60 locale = "ca-valencia"; 61 61 arch = "linux-x86_64"; 62 - sha256 = "fa7f53c7e56ef56b8fdb4a7e903bb51eb5447d97a0da2408a1be175bc5423f90"; 62 + sha256 = "39b0a40e608a2222643f5488b025ff6bd162fd9a67850e81bad9247314769a21"; 63 63 } 64 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/ca/firefox-124.0b5.tar.bz2"; 64 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/ca/firefox-124.0b8.tar.bz2"; 65 65 locale = "ca"; 66 66 arch = "linux-x86_64"; 67 - sha256 = "0310a427861ec5c2fb7a8dd2a285b591f36f11c90d84af47b5fa1cb52e2ad3b9"; 67 + sha256 = "0dd73343ca3fe7226ac8fc8c63a1d0575bddba7b3f2ea72b6c17cc8c668c1cba"; 68 68 } 69 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/cak/firefox-124.0b5.tar.bz2"; 69 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/cak/firefox-124.0b8.tar.bz2"; 70 70 locale = "cak"; 71 71 arch = "linux-x86_64"; 72 - sha256 = "67573c77981d94a7aca7a9d6aa2093330b02f26f4710eff9e46b60f9fd8113f2"; 72 + sha256 = "d7a5dc04bc88c1a9766c83be9661a89682535506b4836c8e63727e4c54c17e68"; 73 73 } 74 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/cs/firefox-124.0b5.tar.bz2"; 74 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/cs/firefox-124.0b8.tar.bz2"; 75 75 locale = "cs"; 76 76 arch = "linux-x86_64"; 77 - sha256 = "ee7d65efb0098765dfb498cf75cbe6555d20654c6fc00859e38204738661fd69"; 77 + sha256 = "5eec7445431e54b15c42048a65681df95f50dadf42b4a8b1e4b048c9a28394bf"; 78 78 } 79 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/cy/firefox-124.0b5.tar.bz2"; 79 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/cy/firefox-124.0b8.tar.bz2"; 80 80 locale = "cy"; 81 81 arch = "linux-x86_64"; 82 - sha256 = "75ff470c4ade892f4f3f9fe1705000f7c628d6de6e86f6908ee56612bc075671"; 82 + sha256 = "ec89add3c34304e68794fee2b4e6ec47941c23b876f8881d70390b930067ff82"; 83 83 } 84 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/da/firefox-124.0b5.tar.bz2"; 84 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/da/firefox-124.0b8.tar.bz2"; 85 85 locale = "da"; 86 86 arch = "linux-x86_64"; 87 - sha256 = "48d77741b02f2e8fc2e040a84c18e1218ca61bd8e66c7cfefc79bc24bafc5bb3"; 87 + sha256 = "30c3d6c4549da860e21a0e9f2419a5321e1c5081afae520119e276249454cb72"; 88 88 } 89 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/de/firefox-124.0b5.tar.bz2"; 89 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/de/firefox-124.0b8.tar.bz2"; 90 90 locale = "de"; 91 91 arch = "linux-x86_64"; 92 - sha256 = "2b1309a5f08980056fe3be624a6c75c05e39618d32153aee826e4b4a50ee15eb"; 92 + sha256 = "f4fff260dfb6575a9f4494b31fd3a4eb345b426d3bba42974d2af3b5bf6490e7"; 93 93 } 94 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/dsb/firefox-124.0b5.tar.bz2"; 94 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/dsb/firefox-124.0b8.tar.bz2"; 95 95 locale = "dsb"; 96 96 arch = "linux-x86_64"; 97 - sha256 = "570407536fb85f40dc7a872fed16b652b1d6db223ff46e557021233aa02a7a7d"; 97 + sha256 = "663c2964382378cf48ae28dcc0dcb6a73a5dcf44f9f154587587c23f1b524bc7"; 98 98 } 99 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/el/firefox-124.0b5.tar.bz2"; 99 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/el/firefox-124.0b8.tar.bz2"; 100 100 locale = "el"; 101 101 arch = "linux-x86_64"; 102 - sha256 = "fae76f0eed46924669128f56f97d3f2ac672bf5f33d4f1d48f5ab5a7b22d74af"; 102 + sha256 = "71077e486e15b87d2dd01e8fb2e29fd8ab3474d9c573f3822e95d3c23bead365"; 103 103 } 104 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/en-CA/firefox-124.0b5.tar.bz2"; 104 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/en-CA/firefox-124.0b8.tar.bz2"; 105 105 locale = "en-CA"; 106 106 arch = "linux-x86_64"; 107 - sha256 = "92f03b9f6d7a73411e94d69abbe375b3335302880320a3449571a0aee99eebdc"; 107 + sha256 = "3fb87d5cbc1035dcc5559762fe201ea01b8e8ca3428a4587f0cd96ea055f4be2"; 108 108 } 109 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/en-GB/firefox-124.0b5.tar.bz2"; 109 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/en-GB/firefox-124.0b8.tar.bz2"; 110 110 locale = "en-GB"; 111 111 arch = "linux-x86_64"; 112 - sha256 = "21f60b68d0c1239eaa16000c15e57357337682420bd55d3bfb4463c777cc31fd"; 112 + sha256 = "71df3c7af4c7cce95ab7828bcd2d4d276db28dffb07a9441f5c9e566218c6d9f"; 113 113 } 114 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/en-US/firefox-124.0b5.tar.bz2"; 114 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/en-US/firefox-124.0b8.tar.bz2"; 115 115 locale = "en-US"; 116 116 arch = "linux-x86_64"; 117 - sha256 = "22a8329ae9d5a493215761326cd472991f6f694a4d42eaf83628ab6d26fca83b"; 117 + sha256 = "11569530552cbbf07b204540c5827287ff5584044fb4492d236595cfe1d0cd62"; 118 118 } 119 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/eo/firefox-124.0b5.tar.bz2"; 119 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/eo/firefox-124.0b8.tar.bz2"; 120 120 locale = "eo"; 121 121 arch = "linux-x86_64"; 122 - sha256 = "5ecd98a7b5e2317abbaf6f5a9fb21c8a59be51715fb5a8c8cae3d64a0ab5fc48"; 122 + sha256 = "c17689fe1daa621071e3e4e748a04f1d272cd208b1a93483a3676eb33928a308"; 123 123 } 124 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/es-AR/firefox-124.0b5.tar.bz2"; 124 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/es-AR/firefox-124.0b8.tar.bz2"; 125 125 locale = "es-AR"; 126 126 arch = "linux-x86_64"; 127 - sha256 = "40cb5d90564fb90025fc6b392582863e0bc724326cb36fde4dba6ad1406f6d94"; 127 + sha256 = "f4a728f32da094ed1ef73e53f31031d2c73bf65ca712aa95686aa44c8be3a93e"; 128 128 } 129 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/es-CL/firefox-124.0b5.tar.bz2"; 129 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/es-CL/firefox-124.0b8.tar.bz2"; 130 130 locale = "es-CL"; 131 131 arch = "linux-x86_64"; 132 - sha256 = "4f791d29b283ae6cd5873b4dbe500b6267b051e1ab2d0cff96c1a4440e6aff08"; 132 + sha256 = "0c8924fbd8376807a578a9a721d37b4cbe308e1c696f24157e1942fa8478693e"; 133 133 } 134 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/es-ES/firefox-124.0b5.tar.bz2"; 134 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/es-ES/firefox-124.0b8.tar.bz2"; 135 135 locale = "es-ES"; 136 136 arch = "linux-x86_64"; 137 - sha256 = "2edc711c09c35cd8485343315ae5c2bc6bebb96159168d70cff22527165f58f3"; 137 + sha256 = "3dd74e6b27b9a12aa2832c99911a60435590d0b17652f30eafc98cabd82be6bf"; 138 138 } 139 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/es-MX/firefox-124.0b5.tar.bz2"; 139 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/es-MX/firefox-124.0b8.tar.bz2"; 140 140 locale = "es-MX"; 141 141 arch = "linux-x86_64"; 142 - sha256 = "b8a2f655358cffc31b1fe2447db01eb7cf57f6bbb31563c012f7158f3c9d42e8"; 142 + sha256 = "34937a832767f724c2c6d6dbadb3d1d772ae5125316b8f222b77f7fe905b4e8e"; 143 143 } 144 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/et/firefox-124.0b5.tar.bz2"; 144 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/et/firefox-124.0b8.tar.bz2"; 145 145 locale = "et"; 146 146 arch = "linux-x86_64"; 147 - sha256 = "c395fc81add76c9d275d25a8de3a4fb26e4f0415e98de5add80a6bd0e999a01a"; 147 + sha256 = "8c9433785f857c353c4d0b724908054b0406a089c3701614194695aa9de19b7f"; 148 148 } 149 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/eu/firefox-124.0b5.tar.bz2"; 149 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/eu/firefox-124.0b8.tar.bz2"; 150 150 locale = "eu"; 151 151 arch = "linux-x86_64"; 152 - sha256 = "e0851b8ea76f800d9427c217477b94a61de6c274353b4b4cdd47cc8b0d4aaa70"; 152 + sha256 = "0ed38ba2f81759eb894c773b92eec06960746cc40ba22c3dc4fa39f3b05fdfc9"; 153 153 } 154 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/fa/firefox-124.0b5.tar.bz2"; 154 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/fa/firefox-124.0b8.tar.bz2"; 155 155 locale = "fa"; 156 156 arch = "linux-x86_64"; 157 - sha256 = "8e12aa67666b55b919e4e81cad3380e0851797a13548f3dcbdc3c227c69da8d6"; 157 + sha256 = "1f2ee8a943860b90b04fc82b3dc6191721b5e9fa7153c62e5f5b2ce9bc3dbebb"; 158 158 } 159 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/ff/firefox-124.0b5.tar.bz2"; 159 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/ff/firefox-124.0b8.tar.bz2"; 160 160 locale = "ff"; 161 161 arch = "linux-x86_64"; 162 - sha256 = "c04ff0a8b62793ffcbf4d1d0a5111693cee1b35ba3fb1dd0adbaf03ba66bcdf8"; 162 + sha256 = "9a140bd2a158ee6e8d45eacbed9543995c294eb41531eb1fbb777b7de9a763bb"; 163 163 } 164 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/fi/firefox-124.0b5.tar.bz2"; 164 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/fi/firefox-124.0b8.tar.bz2"; 165 165 locale = "fi"; 166 166 arch = "linux-x86_64"; 167 - sha256 = "12ba9ea088fb6d17a826c30967ab7b3443aeff2a3f740a4df3ca7ebbd8b45ced"; 167 + sha256 = "fe71f0fa0dd029e7d6c9c2577515788657dbf6ed71706c023b3149224138137e"; 168 168 } 169 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/fr/firefox-124.0b5.tar.bz2"; 169 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/fr/firefox-124.0b8.tar.bz2"; 170 170 locale = "fr"; 171 171 arch = "linux-x86_64"; 172 - sha256 = "e91929a98ae40d1ef43b11c3c22d8ed0cb19c6e3e07bb04741090fad53b98607"; 172 + sha256 = "14dcb1413960dacc86099ac3b6f9659e64b02a8b1d12b4560186ca676a775864"; 173 173 } 174 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/fur/firefox-124.0b5.tar.bz2"; 174 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/fur/firefox-124.0b8.tar.bz2"; 175 175 locale = "fur"; 176 176 arch = "linux-x86_64"; 177 - sha256 = "99b88c86eb2013b5f07e6f14e71c2c97352dcc1acc02aff90ab42d13410ff2a5"; 177 + sha256 = "c9e91c7d6ebcfbcaa00a5999a6d98b6acb5b80fba3520783fd852bfd3264fcd0"; 178 178 } 179 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/fy-NL/firefox-124.0b5.tar.bz2"; 179 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/fy-NL/firefox-124.0b8.tar.bz2"; 180 180 locale = "fy-NL"; 181 181 arch = "linux-x86_64"; 182 - sha256 = "b9c9b522a065f64d6cf40b96dff6526313e2dca401a9008f03083b2812b6167b"; 182 + sha256 = "df7e4cd7ade845185aef56b2ba8e0922f1875c114128dc1c37c4772be0485f3b"; 183 183 } 184 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/ga-IE/firefox-124.0b5.tar.bz2"; 184 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/ga-IE/firefox-124.0b8.tar.bz2"; 185 185 locale = "ga-IE"; 186 186 arch = "linux-x86_64"; 187 - sha256 = "bca74cf277bd25d5066df857846be1dd8f6c310d301f49b2961f439949571b28"; 187 + sha256 = "565b7b7786bf35383c6997570fe0b160996d10345e95c2b17647c81eb71dc32f"; 188 188 } 189 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/gd/firefox-124.0b5.tar.bz2"; 189 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/gd/firefox-124.0b8.tar.bz2"; 190 190 locale = "gd"; 191 191 arch = "linux-x86_64"; 192 - sha256 = "47d553028a1a64259877fdfee83d70a46b866afa3b2457660d2a44067b37061d"; 192 + sha256 = "069c60b9665cc35db47d3ce49a69b490071187901a35db65d824eb0a63e2fe47"; 193 193 } 194 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/gl/firefox-124.0b5.tar.bz2"; 194 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/gl/firefox-124.0b8.tar.bz2"; 195 195 locale = "gl"; 196 196 arch = "linux-x86_64"; 197 - sha256 = "130886578c83d2eff99209c4d14c05e68acbdd37564edeac079648740fc7bf0b"; 197 + sha256 = "76dbf06e5c48450d733809bd67cd941472436048b3187d1c02f0b1dcc7220824"; 198 198 } 199 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/gn/firefox-124.0b5.tar.bz2"; 199 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/gn/firefox-124.0b8.tar.bz2"; 200 200 locale = "gn"; 201 201 arch = "linux-x86_64"; 202 - sha256 = "23ac53dd3b9a2d18d60a59e2d734fd0c44a5291fee943c902f18cf599d63c16c"; 202 + sha256 = "bd493ae8649070bbcdd7c8ff426f8aa1e49b989857776f5c1fba3f69f78caabf"; 203 203 } 204 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/gu-IN/firefox-124.0b5.tar.bz2"; 204 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/gu-IN/firefox-124.0b8.tar.bz2"; 205 205 locale = "gu-IN"; 206 206 arch = "linux-x86_64"; 207 - sha256 = "77689877b0d5e877d3be81f02a040e3120a9dd1b40a4367c5a92a40f4c494919"; 207 + sha256 = "848f4f329203608873633f5df338e270f0b1548db32365758df21329b3e54e03"; 208 208 } 209 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/he/firefox-124.0b5.tar.bz2"; 209 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/he/firefox-124.0b8.tar.bz2"; 210 210 locale = "he"; 211 211 arch = "linux-x86_64"; 212 - sha256 = "8a1f1ac0b23cbf62e47ee29b679ab6c48cd89c4bd77a6d295f6ed0fe69711499"; 212 + sha256 = "b67ffceb6f9f5827e43749a9bb515e940d3eb350d18f744615c767fd88cdef35"; 213 213 } 214 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/hi-IN/firefox-124.0b5.tar.bz2"; 214 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/hi-IN/firefox-124.0b8.tar.bz2"; 215 215 locale = "hi-IN"; 216 216 arch = "linux-x86_64"; 217 - sha256 = "18957db7e86db0a0d0b823b68d1e377f85aaa5b14e6092e24310ab8ad10a343b"; 217 + sha256 = "ca1aac0d712b9d7ff94f0ed36ec45069ab77039127fd80267a798c8a94ebe336"; 218 218 } 219 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/hr/firefox-124.0b5.tar.bz2"; 219 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/hr/firefox-124.0b8.tar.bz2"; 220 220 locale = "hr"; 221 221 arch = "linux-x86_64"; 222 - sha256 = "3625253e0f9a634270af8f70d1c81b61dadb8102fb2c81b81507f8fdb7b1d250"; 222 + sha256 = "ae32e9b27f474d0d6c4a985bd4c9f185dfc73b078b59ae785d086012dfc371a3"; 223 223 } 224 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/hsb/firefox-124.0b5.tar.bz2"; 224 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/hsb/firefox-124.0b8.tar.bz2"; 225 225 locale = "hsb"; 226 226 arch = "linux-x86_64"; 227 - sha256 = "40e040f1231c88af9090a2fac4001ab8f1d69a1e3734ed6c89bf51e4ff21b206"; 227 + sha256 = "836ab3333520cad38adac7d05d1d6e02c9cc8a2153854e259475a826ea895c5b"; 228 228 } 229 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/hu/firefox-124.0b5.tar.bz2"; 229 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/hu/firefox-124.0b8.tar.bz2"; 230 230 locale = "hu"; 231 231 arch = "linux-x86_64"; 232 - sha256 = "377fe6254302dd396bdb560a44c138983e2c02eae06c427ff5cf94bc434c61ab"; 232 + sha256 = "88fe5dd32590af165397886c47b41c7055a668dfb1428e55293eb0d13d9dc3e2"; 233 233 } 234 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/hy-AM/firefox-124.0b5.tar.bz2"; 234 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/hy-AM/firefox-124.0b8.tar.bz2"; 235 235 locale = "hy-AM"; 236 236 arch = "linux-x86_64"; 237 - sha256 = "2e4b3a4044d0297f9d9c87f1624f672d0d27b21f5012baa2ca60f45885d8ce79"; 237 + sha256 = "c11cbc9463c07edec709253dfe92f7178cfd65c7bff77744fe9a7314abe1ffd8"; 238 238 } 239 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/ia/firefox-124.0b5.tar.bz2"; 239 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/ia/firefox-124.0b8.tar.bz2"; 240 240 locale = "ia"; 241 241 arch = "linux-x86_64"; 242 - sha256 = "160aa92ea1168487ecc925ade7cbd2e117da72319a9ceccdc59507e4e8fc8764"; 242 + sha256 = "cf4bbf493f30f6438dd9905a51a4610565890d28ffb7fa210cf1ba705b62b937"; 243 243 } 244 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/id/firefox-124.0b5.tar.bz2"; 244 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/id/firefox-124.0b8.tar.bz2"; 245 245 locale = "id"; 246 246 arch = "linux-x86_64"; 247 - sha256 = "7bd38f8c8b4953db16c1916ed4b2df49b0f840b81949dc4676f2f71c40008948"; 247 + sha256 = "431b23b18f4368dc7e67eebbb5385ae6083e422106845ea32ab7a505884ca51b"; 248 248 } 249 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/is/firefox-124.0b5.tar.bz2"; 249 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/is/firefox-124.0b8.tar.bz2"; 250 250 locale = "is"; 251 251 arch = "linux-x86_64"; 252 - sha256 = "3424522524ca6388a7e2637dfc5452998b7d6dcad2514f48f518be63e5b45c6f"; 252 + sha256 = "fa7e80a8d2da221b5546cf55fcdcde8f1d90c8dc60d24ded97a9c42042c006a1"; 253 253 } 254 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/it/firefox-124.0b5.tar.bz2"; 254 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/it/firefox-124.0b8.tar.bz2"; 255 255 locale = "it"; 256 256 arch = "linux-x86_64"; 257 - sha256 = "0c7ee36605aac12acc542c9481852d39b1b0f0f3c18256cec2ff38811cb1f3eb"; 257 + sha256 = "238183326c82c260a4d052e9ca3191ada9c40eec61ee4728c76f771bab8058c8"; 258 258 } 259 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/ja/firefox-124.0b5.tar.bz2"; 259 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/ja/firefox-124.0b8.tar.bz2"; 260 260 locale = "ja"; 261 261 arch = "linux-x86_64"; 262 - sha256 = "abe8f35fe044928615fe6cfc947d4153509f88882fb94f06eb78f36ac8a5e30d"; 262 + sha256 = "ee9f7c25f347244dc9070660335fef1eec0ad5e3271e89f6abd98347c58d00ef"; 263 263 } 264 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/ka/firefox-124.0b5.tar.bz2"; 264 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/ka/firefox-124.0b8.tar.bz2"; 265 265 locale = "ka"; 266 266 arch = "linux-x86_64"; 267 - sha256 = "cb697fdd6f9ea00ce308f1c060d91bbdfc5aff20f2992a78e2e342c0c7fabb6d"; 267 + sha256 = "a4dd57e5e58915fedc95afe8b108c590ee5edfdb12dc7d13b5427b376c85887c"; 268 268 } 269 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/kab/firefox-124.0b5.tar.bz2"; 269 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/kab/firefox-124.0b8.tar.bz2"; 270 270 locale = "kab"; 271 271 arch = "linux-x86_64"; 272 - sha256 = "06984b0b178fd6ed37673e8d41670223377ad77fff6ef8a4a7f0bb09fb4836fe"; 272 + sha256 = "35b7d9bdb1b3b7be1f81d835e4c8a4dcfc6fe6972e6306236b73f43a18998138"; 273 273 } 274 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/kk/firefox-124.0b5.tar.bz2"; 274 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/kk/firefox-124.0b8.tar.bz2"; 275 275 locale = "kk"; 276 276 arch = "linux-x86_64"; 277 - sha256 = "b0184afa67d0102eec7b58749dd3ede7790346b963a52643a0b7e7c838a51357"; 277 + sha256 = "c437382b634f275765947c196009ca95dd915048e3971636b265ee32c2c0694a"; 278 278 } 279 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/km/firefox-124.0b5.tar.bz2"; 279 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/km/firefox-124.0b8.tar.bz2"; 280 280 locale = "km"; 281 281 arch = "linux-x86_64"; 282 - sha256 = "d5a344551d654e27a05483bb6fe05c878a2f1e726455b9e8cd2bda5ed98a3539"; 282 + sha256 = "a1b68b3d19faf9ced453267a4def22f93ecc221152d2fd678ac06c365ccaeddd"; 283 283 } 284 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/kn/firefox-124.0b5.tar.bz2"; 284 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/kn/firefox-124.0b8.tar.bz2"; 285 285 locale = "kn"; 286 286 arch = "linux-x86_64"; 287 - sha256 = "b91561544bb249e22e01912acd473404b181cacb6ce1f181a8714416d049ae21"; 287 + sha256 = "f58931ed182ef51499dbbbbf0c2dcc0cf16e81fa52e5262f68d96ccf3dfd1fd7"; 288 288 } 289 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/ko/firefox-124.0b5.tar.bz2"; 289 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/ko/firefox-124.0b8.tar.bz2"; 290 290 locale = "ko"; 291 291 arch = "linux-x86_64"; 292 - sha256 = "9ee5565b3f09dfd5ae9475211ae610c58ad0884759f18c643afd8e4db5187e11"; 292 + sha256 = "a12b37a933d08a9937e4a11a616c00da1ef1b2598636791fdb11a86838fed531"; 293 293 } 294 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/lij/firefox-124.0b5.tar.bz2"; 294 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/lij/firefox-124.0b8.tar.bz2"; 295 295 locale = "lij"; 296 296 arch = "linux-x86_64"; 297 - sha256 = "d42e2636a2773df593f4534bf039e8c54db2e7deee1ad1ca7352902b71b551e1"; 297 + sha256 = "4ffedfb9586bf7829bc28075404845ac5313a6fd12454ba1868ff7b09fee3e30"; 298 298 } 299 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/lt/firefox-124.0b5.tar.bz2"; 299 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/lt/firefox-124.0b8.tar.bz2"; 300 300 locale = "lt"; 301 301 arch = "linux-x86_64"; 302 - sha256 = "d4a80127dc135125f39863ee6b6e59b3aa5c8f5e73df7adddb227e995a5634b5"; 302 + sha256 = "be6ee9c388a756c491ed837143158ed985053fb2641aa3308fa62cc64119de16"; 303 303 } 304 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/lv/firefox-124.0b5.tar.bz2"; 304 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/lv/firefox-124.0b8.tar.bz2"; 305 305 locale = "lv"; 306 306 arch = "linux-x86_64"; 307 - sha256 = "3f312f2a8744b84a6543e26b08d4ea20891f0e62e1aa8430e272b0580b736db6"; 307 + sha256 = "ba4c68dd71c385f208b5204f96e60e5696a513966e24f5971b0bf4b0f601eeab"; 308 308 } 309 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/mk/firefox-124.0b5.tar.bz2"; 309 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/mk/firefox-124.0b8.tar.bz2"; 310 310 locale = "mk"; 311 311 arch = "linux-x86_64"; 312 - sha256 = "ea8c18c9a74d6108eaca2aa4e0ba42ef6452b6a96e2bb6f1ec73baaa8b661c3a"; 312 + sha256 = "01ef871b2faaa1386d5fe87fa5f3e02450d34225006f4cd0d707c18153e9f227"; 313 313 } 314 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/mr/firefox-124.0b5.tar.bz2"; 314 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/mr/firefox-124.0b8.tar.bz2"; 315 315 locale = "mr"; 316 316 arch = "linux-x86_64"; 317 - sha256 = "c501119c27b95406b81e93b41aa50088c1c87031469fdf891d35d89d09d5489e"; 317 + sha256 = "835df049127e84688e8f5f4d335282c3555ec27c451c18e5d021c58443767954"; 318 318 } 319 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/ms/firefox-124.0b5.tar.bz2"; 319 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/ms/firefox-124.0b8.tar.bz2"; 320 320 locale = "ms"; 321 321 arch = "linux-x86_64"; 322 - sha256 = "e39693bd45283c19b583848302dd405f0003b7caef939128f8c2f3dc2d5f6988"; 322 + sha256 = "1281b674ee9f91d948b0f97d5b4a2663b06235083477530c196fbb550871e554"; 323 323 } 324 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/my/firefox-124.0b5.tar.bz2"; 324 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/my/firefox-124.0b8.tar.bz2"; 325 325 locale = "my"; 326 326 arch = "linux-x86_64"; 327 - sha256 = "d8a7e54d74eb3e743f9057838e0abf73def6697fbe5f9474947e08ba810e4bc8"; 327 + sha256 = "fcd415563af57e2520583770ad3cb65b3d6cc9d5c58820e23b9972a609697896"; 328 328 } 329 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/nb-NO/firefox-124.0b5.tar.bz2"; 329 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/nb-NO/firefox-124.0b8.tar.bz2"; 330 330 locale = "nb-NO"; 331 331 arch = "linux-x86_64"; 332 - sha256 = "a63953feb54e1ec1570f5dee716eda162d56b76cc31951513e9076108935aad1"; 332 + sha256 = "22f97efb833b969b73d970964464696d48b79e38dda3df73780f3bc4864e190b"; 333 333 } 334 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/ne-NP/firefox-124.0b5.tar.bz2"; 334 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/ne-NP/firefox-124.0b8.tar.bz2"; 335 335 locale = "ne-NP"; 336 336 arch = "linux-x86_64"; 337 - sha256 = "629e529489a676d536b72a97523e4343ddfa0ce2d7356a5bf8eefe0238bcb666"; 337 + sha256 = "ce06a4576f0e005cd782270120297e09ac4cdb76cde7c30afa154894fb3ad9de"; 338 338 } 339 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/nl/firefox-124.0b5.tar.bz2"; 339 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/nl/firefox-124.0b8.tar.bz2"; 340 340 locale = "nl"; 341 341 arch = "linux-x86_64"; 342 - sha256 = "12ea68d71847b815ad65d7a665b2a557a083a1c607b3f8cb18ff5fabf0002636"; 342 + sha256 = "f58d39d3055151b14721dd71a6275022790b192fd314c47fe6cbecf7bf6aa0e5"; 343 343 } 344 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/nn-NO/firefox-124.0b5.tar.bz2"; 344 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/nn-NO/firefox-124.0b8.tar.bz2"; 345 345 locale = "nn-NO"; 346 346 arch = "linux-x86_64"; 347 - sha256 = "ca8a111ecde3bd454ed111c55eae69da4fee13504a94c9df3a93c45550905036"; 347 + sha256 = "efc46d4866f505d8d4cd616099d25f2e2d4816584d26de434e6c4ade1901aa15"; 348 348 } 349 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/oc/firefox-124.0b5.tar.bz2"; 349 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/oc/firefox-124.0b8.tar.bz2"; 350 350 locale = "oc"; 351 351 arch = "linux-x86_64"; 352 - sha256 = "902fc9328255bebf6773358103e06ccb9b585638ebaf5eb32505d867c5ecbfe6"; 352 + sha256 = "bd7585d14218a2736108097f4f19e4aa2835e6d920d543e0e7a0f8752d5723ec"; 353 353 } 354 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/pa-IN/firefox-124.0b5.tar.bz2"; 354 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/pa-IN/firefox-124.0b8.tar.bz2"; 355 355 locale = "pa-IN"; 356 356 arch = "linux-x86_64"; 357 - sha256 = "75ed8b95ab613ea714fd646b1ee84371ebf873ede8a28b6c8e5e96b41749f755"; 357 + sha256 = "57dabc970195c887ec53a354ee10c1cc603ddd2490f67ab82dd7f8bb0a436e6d"; 358 358 } 359 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/pl/firefox-124.0b5.tar.bz2"; 359 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/pl/firefox-124.0b8.tar.bz2"; 360 360 locale = "pl"; 361 361 arch = "linux-x86_64"; 362 - sha256 = "cee1409e398d803dd4fe3050fa12b75bc996bbe553b9ffeef18ea0a085b6ee80"; 362 + sha256 = "01d21b0141e06d3f1cdf85cf0b24c42ac477bab74aae89d46f328adf59178e37"; 363 363 } 364 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/pt-BR/firefox-124.0b5.tar.bz2"; 364 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/pt-BR/firefox-124.0b8.tar.bz2"; 365 365 locale = "pt-BR"; 366 366 arch = "linux-x86_64"; 367 - sha256 = "448890c7616dc46e381d621df13a28ccb2ce721df244a26742652c846db4593c"; 367 + sha256 = "bd61c71a527a525abb866502b8ee736ba038b5d5f73f91e0a11943c3710fc20f"; 368 368 } 369 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/pt-PT/firefox-124.0b5.tar.bz2"; 369 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/pt-PT/firefox-124.0b8.tar.bz2"; 370 370 locale = "pt-PT"; 371 371 arch = "linux-x86_64"; 372 - sha256 = "05a961a4d1130472fad818ac29ef473b5fefa075f86848033c6624305c59ca2b"; 372 + sha256 = "53e40341c49f6d27180a938404c2a56209c005d903b1d1c3bc1c7d484e4d0eef"; 373 373 } 374 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/rm/firefox-124.0b5.tar.bz2"; 374 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/rm/firefox-124.0b8.tar.bz2"; 375 375 locale = "rm"; 376 376 arch = "linux-x86_64"; 377 - sha256 = "c7df75c5758d198070d6d978413e3196d42a18b061509d27b3092a003fbd4c4b"; 377 + sha256 = "5d8150abe8259961e6594fdd78dfee6ce5cc8a41abf9a19d2c81aa6eb96d2356"; 378 378 } 379 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/ro/firefox-124.0b5.tar.bz2"; 379 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/ro/firefox-124.0b8.tar.bz2"; 380 380 locale = "ro"; 381 381 arch = "linux-x86_64"; 382 - sha256 = "26f47dfc912a1cd2558b060932973f2a1f690f6a7ea8eb96d36787f638341a5a"; 382 + sha256 = "0eb76559f252afe5d127b15ce12c2d25074cb672f6ec5a08f5ae0ad36d8f1b94"; 383 383 } 384 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/ru/firefox-124.0b5.tar.bz2"; 384 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/ru/firefox-124.0b8.tar.bz2"; 385 385 locale = "ru"; 386 386 arch = "linux-x86_64"; 387 - sha256 = "942c198c60dc78de58319a3b5138e573b44bc1f99d7e4d2b1325577c9bcc0896"; 387 + sha256 = "2bf109d625b3ad396d128636ff39eda37ec19313d64b396fd9345b2ba3aa59da"; 388 388 } 389 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/sat/firefox-124.0b5.tar.bz2"; 389 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/sat/firefox-124.0b8.tar.bz2"; 390 390 locale = "sat"; 391 391 arch = "linux-x86_64"; 392 - sha256 = "48510782780d5af7b0a1b6c6a86639c00312f066c69abc32bc447451d72ae8cb"; 392 + sha256 = "4009662d05b7b68badfcda5bda423f19b4ba9ecbddbf0f2b6bf4f1eaa80db417"; 393 393 } 394 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/sc/firefox-124.0b5.tar.bz2"; 394 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/sc/firefox-124.0b8.tar.bz2"; 395 395 locale = "sc"; 396 396 arch = "linux-x86_64"; 397 - sha256 = "46d9cc6b9e5c47ef64c37e77cffea12f83e64d1460253ff4cb75ed94b3e4367a"; 397 + sha256 = "e87055f385cbcb3709733d6262fa206518d878ad529917468816b39e50786d7d"; 398 398 } 399 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/sco/firefox-124.0b5.tar.bz2"; 399 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/sco/firefox-124.0b8.tar.bz2"; 400 400 locale = "sco"; 401 401 arch = "linux-x86_64"; 402 - sha256 = "7e037a7fb4c5c99557039cb1ae7618d724f3da2258d047881cdd7147d1174d81"; 402 + sha256 = "1c50bfdb850e31dda249fe3690190a2cc5c0bf364f8ae7d6785828670afc909f"; 403 403 } 404 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/si/firefox-124.0b5.tar.bz2"; 404 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/si/firefox-124.0b8.tar.bz2"; 405 405 locale = "si"; 406 406 arch = "linux-x86_64"; 407 - sha256 = "5b012871da0bf06f38bf1c26975999914e1fe8ef9824efc49f22c1fbfb6b89ca"; 407 + sha256 = "0417a734f8ae09012dc3938dd75d57ec8137809a061bfd45030ff91d569b399e"; 408 408 } 409 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/sk/firefox-124.0b5.tar.bz2"; 409 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/sk/firefox-124.0b8.tar.bz2"; 410 410 locale = "sk"; 411 411 arch = "linux-x86_64"; 412 - sha256 = "16a8afc43b6d44ab7c29b753b1a500c6106c8c7bd54c3e8320626b77e2979eb7"; 412 + sha256 = "99690e159e2c46e1dc3461518d2f7d7b5cb5eec01380dcd31c10396cb5150108"; 413 413 } 414 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/sl/firefox-124.0b5.tar.bz2"; 414 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/sl/firefox-124.0b8.tar.bz2"; 415 415 locale = "sl"; 416 416 arch = "linux-x86_64"; 417 - sha256 = "70c0cc00bf44f4d64a39c2c13ec01f9111c859190a2ca15137f21b2c1ab591a3"; 417 + sha256 = "e2cdae50872eb59517ce8f7a5e97acb7638c39d316f056bceb85adbaef3ac35a"; 418 418 } 419 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/son/firefox-124.0b5.tar.bz2"; 419 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/son/firefox-124.0b8.tar.bz2"; 420 420 locale = "son"; 421 421 arch = "linux-x86_64"; 422 - sha256 = "d94707e16ca52af39bbec9b7d527274441e090d54652dfa5c9abc16821225839"; 422 + sha256 = "caa0e11deb1fc520ec34118a0b4b1e606636e79e13e2517ff011911b4953f22a"; 423 423 } 424 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/sq/firefox-124.0b5.tar.bz2"; 424 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/sq/firefox-124.0b8.tar.bz2"; 425 425 locale = "sq"; 426 426 arch = "linux-x86_64"; 427 - sha256 = "642b971d675f9262e19402f47580f3b811240d3dad3c32b2f4f6e87b4135f2f6"; 427 + sha256 = "f8163e8fd64b5e953b91aa6d3a371ea911927f0b7b5c33b75a492973ffaa4280"; 428 428 } 429 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/sr/firefox-124.0b5.tar.bz2"; 429 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/sr/firefox-124.0b8.tar.bz2"; 430 430 locale = "sr"; 431 431 arch = "linux-x86_64"; 432 - sha256 = "23928c430e1db120e84b530b0d3503b2e62036fa8849d9c46b6b1819ea76af64"; 432 + sha256 = "9b4cdc44c7e6b48af7be0bc81117f3ca03b3780b187c0779591fd72b1968bf0e"; 433 433 } 434 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/sv-SE/firefox-124.0b5.tar.bz2"; 434 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/sv-SE/firefox-124.0b8.tar.bz2"; 435 435 locale = "sv-SE"; 436 436 arch = "linux-x86_64"; 437 - sha256 = "617add83937a3ea14002fe41c736137c8011d635e78a246a3f5002562b97f48d"; 437 + sha256 = "ec839806e1c3947c2b3631b1c2aeb71487fd57ea8c676685497f97f81af152c9"; 438 438 } 439 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/szl/firefox-124.0b5.tar.bz2"; 439 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/szl/firefox-124.0b8.tar.bz2"; 440 440 locale = "szl"; 441 441 arch = "linux-x86_64"; 442 - sha256 = "50e63481383364d50954f5bef8781c125b0f51a876a0377adb399eda00227ed1"; 442 + sha256 = "214be5eb788674c0ea75c4a374d53c64bac186e5107e6aae48dcd104f812537d"; 443 443 } 444 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/ta/firefox-124.0b5.tar.bz2"; 444 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/ta/firefox-124.0b8.tar.bz2"; 445 445 locale = "ta"; 446 446 arch = "linux-x86_64"; 447 - sha256 = "16f2ce13302bea290af292f74d5c48d8db73ccd6ebea1ce2dc441848c233f533"; 447 + sha256 = "fdf7e1134f47247cb4b36c42201a6a3b51b96ba3e47ae1c3a2bffce5234a7a90"; 448 448 } 449 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/te/firefox-124.0b5.tar.bz2"; 449 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/te/firefox-124.0b8.tar.bz2"; 450 450 locale = "te"; 451 451 arch = "linux-x86_64"; 452 - sha256 = "1fbdd511f501b4b3be1933c424c315051079a3ca0d5670c8b88438266843ad27"; 452 + sha256 = "2ef07ad1c1a007781f6da44b302ae20558c3c06142d89aae2270e88115ce5e2f"; 453 453 } 454 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/tg/firefox-124.0b5.tar.bz2"; 454 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/tg/firefox-124.0b8.tar.bz2"; 455 455 locale = "tg"; 456 456 arch = "linux-x86_64"; 457 - sha256 = "ef5d6491de252486f5b10708b0c0ea5357a2c5d6e0684047ba08949c19ba8651"; 457 + sha256 = "f1c60b13b9b50603102649d46f38eacb25c367c606a5b79a45a4775c753cac31"; 458 458 } 459 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/th/firefox-124.0b5.tar.bz2"; 459 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/th/firefox-124.0b8.tar.bz2"; 460 460 locale = "th"; 461 461 arch = "linux-x86_64"; 462 - sha256 = "1228222e854286521596d3add7ed91668643f8c243c385f90adcb12cd1b0e332"; 462 + sha256 = "37ec497b4afe4f99858ccd548738e228777ff79824de783798a99ae11e19fe8c"; 463 463 } 464 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/tl/firefox-124.0b5.tar.bz2"; 464 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/tl/firefox-124.0b8.tar.bz2"; 465 465 locale = "tl"; 466 466 arch = "linux-x86_64"; 467 - sha256 = "7e55d29a61209982dc3a607d761e6c802ab82c8ca1027b4bbf4b47a403c42872"; 467 + sha256 = "bbdd4dc391fe275faffc94a08c5c398be660641bac6adf6ff3aa1e207ee99cb3"; 468 468 } 469 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/tr/firefox-124.0b5.tar.bz2"; 469 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/tr/firefox-124.0b8.tar.bz2"; 470 470 locale = "tr"; 471 471 arch = "linux-x86_64"; 472 - sha256 = "627441565a2500c1c3bad1da306e4f5d618656d9533c89fef4e99977ccd27ab4"; 472 + sha256 = "fcbfbad85ce3dc94818858eeca8a7f582418ae49797f92c2246cea1da01376f0"; 473 473 } 474 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/trs/firefox-124.0b5.tar.bz2"; 474 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/trs/firefox-124.0b8.tar.bz2"; 475 475 locale = "trs"; 476 476 arch = "linux-x86_64"; 477 - sha256 = "7418475cd4b2d3ae8540f0caf11c8dc81cc6aae0583bffdb7f46e643422c7e77"; 477 + sha256 = "4ddb5aecc4b35d8006daa5254f9ad5250c1e8559fc4d25fbd8ea689aa0b29f82"; 478 478 } 479 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/uk/firefox-124.0b5.tar.bz2"; 479 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/uk/firefox-124.0b8.tar.bz2"; 480 480 locale = "uk"; 481 481 arch = "linux-x86_64"; 482 - sha256 = "492c3a21757e7b10644d3fa70e9f1e244a2d27e8807628088d4ade45ba41cb36"; 482 + sha256 = "700adcbb6c5f72353c0219b7cdd78163a169f3af738656aa15ecf1cfbca1d4b1"; 483 483 } 484 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/ur/firefox-124.0b5.tar.bz2"; 484 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/ur/firefox-124.0b8.tar.bz2"; 485 485 locale = "ur"; 486 486 arch = "linux-x86_64"; 487 - sha256 = "e4d7126211a34d0bc17cdbe026554fb3cbea722c2f56d1926698104d78e7207b"; 487 + sha256 = "fb34526f530ff6a98b027a2d546a3946746355b48f5a6fc5474450a8844e89f4"; 488 488 } 489 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/uz/firefox-124.0b5.tar.bz2"; 489 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/uz/firefox-124.0b8.tar.bz2"; 490 490 locale = "uz"; 491 491 arch = "linux-x86_64"; 492 - sha256 = "d8eb419cb6e4d1e86f68ddedbd42cedff86d6156ae832a32ac5806152f279a6b"; 492 + sha256 = "6ed20bf3fa767f67ff4eeb21dfaee038e0fc8bb55508a6052fcfca56ae52a068"; 493 493 } 494 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/vi/firefox-124.0b5.tar.bz2"; 494 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/vi/firefox-124.0b8.tar.bz2"; 495 495 locale = "vi"; 496 496 arch = "linux-x86_64"; 497 - sha256 = "d64cfe0c88935ed7e40099473c25a9e56002926ecbdcc29d8ced6432b0236a7c"; 497 + sha256 = "de6804cd8bc5ad41fd3f2cf7568d579917452f051be9ce9532d58b692e4eb0ac"; 498 498 } 499 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/xh/firefox-124.0b5.tar.bz2"; 499 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/xh/firefox-124.0b8.tar.bz2"; 500 500 locale = "xh"; 501 501 arch = "linux-x86_64"; 502 - sha256 = "7252e30e3656ff20dbafd9c53d5f56844997ae1e02745f59b69a9091260a9035"; 502 + sha256 = "ef53fe68d37517d4e6c02f440222668b90e9ebbe5f72629073cc9575b725573d"; 503 503 } 504 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/zh-CN/firefox-124.0b5.tar.bz2"; 504 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/zh-CN/firefox-124.0b8.tar.bz2"; 505 505 locale = "zh-CN"; 506 506 arch = "linux-x86_64"; 507 - sha256 = "6af38bf66fb726a6b59986bf563f6f18f50a8732a342bf2fe305a0b3e9c2226d"; 507 + sha256 = "219b8e7e0c3f4a00a7c1eca4ca99219a2be42374d7a5edf217bd6d949f575dc9"; 508 508 } 509 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/zh-TW/firefox-124.0b5.tar.bz2"; 509 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-x86_64/zh-TW/firefox-124.0b8.tar.bz2"; 510 510 locale = "zh-TW"; 511 511 arch = "linux-x86_64"; 512 - sha256 = "2979bd2b956475ccb6f6de52c7669ee59351bcfbb4a8d9be139edfd044558b9b"; 512 + sha256 = "4a1eac1e258a53643810d165edf9bcc30e649c8336fa73d25f7a677b3b560464"; 513 513 } 514 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/ach/firefox-124.0b5.tar.bz2"; 514 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/ach/firefox-124.0b8.tar.bz2"; 515 515 locale = "ach"; 516 516 arch = "linux-i686"; 517 - sha256 = "c72c8fff286e4ff8d51bf6475a1dfbe2be4676eb30777b093457bcb3346fd818"; 517 + sha256 = "bdcbd1f7da60fb1123831297ba67633084f00058384c3deca781e6b7f631ce0b"; 518 518 } 519 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/af/firefox-124.0b5.tar.bz2"; 519 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/af/firefox-124.0b8.tar.bz2"; 520 520 locale = "af"; 521 521 arch = "linux-i686"; 522 - sha256 = "7f604659f0cc938c54df6ede433514107bf787c9e06debb7fd475ab050cb67c7"; 522 + sha256 = "5e0a213a6805744dc628cc34b21f6033b36d0043786040d8b4fbb6f253a2a125"; 523 523 } 524 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/an/firefox-124.0b5.tar.bz2"; 524 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/an/firefox-124.0b8.tar.bz2"; 525 525 locale = "an"; 526 526 arch = "linux-i686"; 527 - sha256 = "7707076fdcbb8cae6eff8efa1fd0dac40dab0fa7d51486a108161dd8439202c3"; 527 + sha256 = "b846416562c0aba9e3251517ece40a5ea023972ecdc54f52f29444fd5fbf71c4"; 528 528 } 529 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/ar/firefox-124.0b5.tar.bz2"; 529 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/ar/firefox-124.0b8.tar.bz2"; 530 530 locale = "ar"; 531 531 arch = "linux-i686"; 532 - sha256 = "945f180d474b967c5297c73dd52726967fa337d326d044436cf4869e34db88a3"; 532 + sha256 = "ac12e77c4bbbadde99f467246e06a42b248d6546e66c75b5b69b6504ddcf04c2"; 533 533 } 534 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/ast/firefox-124.0b5.tar.bz2"; 534 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/ast/firefox-124.0b8.tar.bz2"; 535 535 locale = "ast"; 536 536 arch = "linux-i686"; 537 - sha256 = "fa6b0152749881c13f8979b0611b9dbaf8d878f68b8439f21bc88b34c7d580bd"; 537 + sha256 = "f0728b3c6b35d76de0981d149c9164b3184ab34269f28957c4782447eb2e7ec3"; 538 538 } 539 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/az/firefox-124.0b5.tar.bz2"; 539 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/az/firefox-124.0b8.tar.bz2"; 540 540 locale = "az"; 541 541 arch = "linux-i686"; 542 - sha256 = "9bb66edacd8eaf8c990f0a36a7547e6256a715dcfe7888ad15059ffc89b70984"; 542 + sha256 = "875851341f23b907320e5e82c06b311ecb0036e4bcd5b7e1f37570f897fd1499"; 543 543 } 544 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/be/firefox-124.0b5.tar.bz2"; 544 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/be/firefox-124.0b8.tar.bz2"; 545 545 locale = "be"; 546 546 arch = "linux-i686"; 547 - sha256 = "cb1cc8ef5798630117016afbd3f8fdddc66d1a191fa85bedde763e2793a998e8"; 547 + sha256 = "deed159e3b60dfb5c4e968090970aa65a5bc809452d6fae4e4af66c760c2eca9"; 548 548 } 549 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/bg/firefox-124.0b5.tar.bz2"; 549 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/bg/firefox-124.0b8.tar.bz2"; 550 550 locale = "bg"; 551 551 arch = "linux-i686"; 552 - sha256 = "683c069d5da161b02f54255a9c7a62732fe02764d8ca1ad4233f989f09ef52ad"; 552 + sha256 = "8ec73869da3b30ba52204e183ae3b32dfb4d834e283fe9d01825d1f62fe4225d"; 553 553 } 554 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/bn/firefox-124.0b5.tar.bz2"; 554 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/bn/firefox-124.0b8.tar.bz2"; 555 555 locale = "bn"; 556 556 arch = "linux-i686"; 557 - sha256 = "65caa543af3ecc5d8d4119516c57898c7644aecc988e45d59c5fd4fe2c631e28"; 557 + sha256 = "efcc5d00828b1d5577fb05af7fe766041b7518636e135dc20d2bd889ed0ee6eb"; 558 558 } 559 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/br/firefox-124.0b5.tar.bz2"; 559 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/br/firefox-124.0b8.tar.bz2"; 560 560 locale = "br"; 561 561 arch = "linux-i686"; 562 - sha256 = "19cf0bf608bea24c1c0758e07d1af6ca98d7cde3a27f838c4d9811e59bc6f7c3"; 562 + sha256 = "852099cc439439327428a76f72309c4522f517e9d9505669d234e7df835f69d4"; 563 563 } 564 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/bs/firefox-124.0b5.tar.bz2"; 564 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/bs/firefox-124.0b8.tar.bz2"; 565 565 locale = "bs"; 566 566 arch = "linux-i686"; 567 - sha256 = "5a5ae9daedd8e961542c6a81c5909a18a128f7a389f2441fb95be559a83d9f28"; 567 + sha256 = "6053af49749d82f733ec34baa91ddd122b4fb1e368bc200c9aa48170e6354d3f"; 568 568 } 569 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/ca-valencia/firefox-124.0b5.tar.bz2"; 569 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/ca-valencia/firefox-124.0b8.tar.bz2"; 570 570 locale = "ca-valencia"; 571 571 arch = "linux-i686"; 572 - sha256 = "51bff7837d421d1a6e431cb75ce04727dca12d6034d1e919d54409cc4c375023"; 572 + sha256 = "2862f74877b911cdac16cefc2d0bec3e0b4157c5402fc817f5df80ab578a65b3"; 573 573 } 574 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/ca/firefox-124.0b5.tar.bz2"; 574 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/ca/firefox-124.0b8.tar.bz2"; 575 575 locale = "ca"; 576 576 arch = "linux-i686"; 577 - sha256 = "28af0576ae0e4fef698e701560a1152264cdab0e2aec01581d8eb7cbbcbc4499"; 577 + sha256 = "38e3131a062fad31b839ea6db798dad821588b718a28d715d5848c29304b4268"; 578 578 } 579 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/cak/firefox-124.0b5.tar.bz2"; 579 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/cak/firefox-124.0b8.tar.bz2"; 580 580 locale = "cak"; 581 581 arch = "linux-i686"; 582 - sha256 = "12e49ac2213e35825928f585d6c0dea8eea1da8ce5b5533049d2fbfb188b193e"; 582 + sha256 = "2a45c9d0b8447cec450dfbdd216e117a436680ca464f2098de92c857018aaf1b"; 583 583 } 584 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/cs/firefox-124.0b5.tar.bz2"; 584 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/cs/firefox-124.0b8.tar.bz2"; 585 585 locale = "cs"; 586 586 arch = "linux-i686"; 587 - sha256 = "2256f53d918bc5dbae5064a1c79d828fc2f3731caa9e4b24ebf3f321ecd752cd"; 587 + sha256 = "48357663089077f12a74e0b8ca7536a4fc157298924c0d214ba967cee932476c"; 588 588 } 589 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/cy/firefox-124.0b5.tar.bz2"; 589 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/cy/firefox-124.0b8.tar.bz2"; 590 590 locale = "cy"; 591 591 arch = "linux-i686"; 592 - sha256 = "cb4eba3e523ee5adf085d0d1b989f26873ac0ccff0bfd560dbb25222c74262b2"; 592 + sha256 = "2922f32225039083c37f40db38589a7c81cf65e0fa642adfa3ebd68137094a56"; 593 593 } 594 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/da/firefox-124.0b5.tar.bz2"; 594 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/da/firefox-124.0b8.tar.bz2"; 595 595 locale = "da"; 596 596 arch = "linux-i686"; 597 - sha256 = "5f1568a418b84d226061d43e1ba59a2f3965308da9c9929e28e7d3118f241559"; 597 + sha256 = "5296e6782136312ced24888eeaacc3b2456a9c7ae915c9b54f48a8d92076cfe0"; 598 598 } 599 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/de/firefox-124.0b5.tar.bz2"; 599 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/de/firefox-124.0b8.tar.bz2"; 600 600 locale = "de"; 601 601 arch = "linux-i686"; 602 - sha256 = "2d278f63a5b88792951e3c9cc71984ae60d6df63cd1ba626edf11fb7d6daa72b"; 602 + sha256 = "f150299b6d34b8305564248f2ee45f85958f6dab810d17253c9414a1e24e074d"; 603 603 } 604 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/dsb/firefox-124.0b5.tar.bz2"; 604 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/dsb/firefox-124.0b8.tar.bz2"; 605 605 locale = "dsb"; 606 606 arch = "linux-i686"; 607 - sha256 = "067d0b71cc09b6b11d87d2538410ed010f5d8315c4e1cd0209ac56f8d7292b23"; 607 + sha256 = "3ef6f69508f09125f4c9e1bd752f417d55fe34f97b1ea8374d3aee2916c3dac7"; 608 608 } 609 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/el/firefox-124.0b5.tar.bz2"; 609 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/el/firefox-124.0b8.tar.bz2"; 610 610 locale = "el"; 611 611 arch = "linux-i686"; 612 - sha256 = "8753f6e8a208d7d9b08925230ff0c34dc38680831de15e0842e7f943b958f495"; 612 + sha256 = "f6528a1e33082ab896e627081330f7663b097c88c62051b1a6e17a58b30893f5"; 613 613 } 614 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/en-CA/firefox-124.0b5.tar.bz2"; 614 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/en-CA/firefox-124.0b8.tar.bz2"; 615 615 locale = "en-CA"; 616 616 arch = "linux-i686"; 617 - sha256 = "e1c3b136a9923e7f723599e4c41e2242709f93a137388c7a55c2fa01b0f8d66f"; 617 + sha256 = "acc53089885c5c00841ec66130807a9993ed223654491ef3152f460cf830a4aa"; 618 618 } 619 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/en-GB/firefox-124.0b5.tar.bz2"; 619 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/en-GB/firefox-124.0b8.tar.bz2"; 620 620 locale = "en-GB"; 621 621 arch = "linux-i686"; 622 - sha256 = "4f231c143426cf73efae5ef599621fdc4378983058b582efb2276fecf9c4d741"; 622 + sha256 = "c6bee0a546b4de27f1a35bbdf052df9508c5ef09bad436359efb3f4b8803af1c"; 623 623 } 624 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/en-US/firefox-124.0b5.tar.bz2"; 624 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/en-US/firefox-124.0b8.tar.bz2"; 625 625 locale = "en-US"; 626 626 arch = "linux-i686"; 627 - sha256 = "e327a18633e26e6a2f2c3339ca20bbc3439186ac8623d5ecc62a6229e11d73d7"; 627 + sha256 = "33e5151fb2391203017895997dc039dd0959c4d992cb427caf434be9756803dc"; 628 628 } 629 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/eo/firefox-124.0b5.tar.bz2"; 629 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/eo/firefox-124.0b8.tar.bz2"; 630 630 locale = "eo"; 631 631 arch = "linux-i686"; 632 - sha256 = "b6914d14bfcd0cb9ca6753d3d73118914c76a6c1578415e6bda627f5ec60e817"; 632 + sha256 = "c0f6a21e7c187ad2daca0f8ad18c087c2b44bc23d1bda52018ce977993bffcc9"; 633 633 } 634 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/es-AR/firefox-124.0b5.tar.bz2"; 634 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/es-AR/firefox-124.0b8.tar.bz2"; 635 635 locale = "es-AR"; 636 636 arch = "linux-i686"; 637 - sha256 = "5106309277a0bdc496fdc1bf6d038664b390706821d8d16b82b9a5e844793a48"; 637 + sha256 = "1c482f713f63cb63e5e647a8d54abef47277d2bb66b2fc073313c203ebe6e383"; 638 638 } 639 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/es-CL/firefox-124.0b5.tar.bz2"; 639 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/es-CL/firefox-124.0b8.tar.bz2"; 640 640 locale = "es-CL"; 641 641 arch = "linux-i686"; 642 - sha256 = "920a6743d3c2589f0eed4fcb5db347dd451aea9ea692e41848f2571df04ed39a"; 642 + sha256 = "f54a9bb4bd13e6c7755154746a5dd0519dacb506abf0fa255df5c654b9cb9741"; 643 643 } 644 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/es-ES/firefox-124.0b5.tar.bz2"; 644 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/es-ES/firefox-124.0b8.tar.bz2"; 645 645 locale = "es-ES"; 646 646 arch = "linux-i686"; 647 - sha256 = "1e17d715730b510ddc39e1946da41221b68f157feef8b22fa93518afc035d268"; 647 + sha256 = "0159213252e40b4bd88742da8412e0d0b7ac53c5fb1c063b4d90374211c4ae42"; 648 648 } 649 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/es-MX/firefox-124.0b5.tar.bz2"; 649 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/es-MX/firefox-124.0b8.tar.bz2"; 650 650 locale = "es-MX"; 651 651 arch = "linux-i686"; 652 - sha256 = "8bb595e7f1b5487dc797583b1c72e53f67e978eb40afa8092fc8b9df22139e29"; 652 + sha256 = "9b10953497b0a97ab545d49fd1696fd59930cec19b0ccfc44fae41af8fc89509"; 653 653 } 654 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/et/firefox-124.0b5.tar.bz2"; 654 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/et/firefox-124.0b8.tar.bz2"; 655 655 locale = "et"; 656 656 arch = "linux-i686"; 657 - sha256 = "afb7e22590c3ec2b2bc577f783c6121a0312041dfa983a4042ce1880299bd739"; 657 + sha256 = "e266b6435612746a143635d2b147d784928d6664ef9ab131043b0396c0089981"; 658 658 } 659 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/eu/firefox-124.0b5.tar.bz2"; 659 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/eu/firefox-124.0b8.tar.bz2"; 660 660 locale = "eu"; 661 661 arch = "linux-i686"; 662 - sha256 = "5a054d18e7b80f3a3e0e38f8f65d726b2f7f71fd8641d10cb7b2a99ce2d40761"; 662 + sha256 = "da36a0d396c54d8dbccc33fcaa34f813e8040bb920933faf41339258f3b90a18"; 663 663 } 664 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/fa/firefox-124.0b5.tar.bz2"; 664 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/fa/firefox-124.0b8.tar.bz2"; 665 665 locale = "fa"; 666 666 arch = "linux-i686"; 667 - sha256 = "37e9e4103ad71843732012b4f9576acb1e538404ad8b1f246a60a898598b94f5"; 667 + sha256 = "7f7998fff9db9b9b0dd6d5c8a2491912f354e69d86f8123a627823effd6af388"; 668 668 } 669 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/ff/firefox-124.0b5.tar.bz2"; 669 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/ff/firefox-124.0b8.tar.bz2"; 670 670 locale = "ff"; 671 671 arch = "linux-i686"; 672 - sha256 = "4ef6ea7c74531085f295c4c24da699a903e862b93966effbc1ba788946c94514"; 672 + sha256 = "f7d704982ff235048c274cd0ecbb36e519479229532a34b6a0e7cf9e50422b3b"; 673 673 } 674 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/fi/firefox-124.0b5.tar.bz2"; 674 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/fi/firefox-124.0b8.tar.bz2"; 675 675 locale = "fi"; 676 676 arch = "linux-i686"; 677 - sha256 = "aff1047d05b4fc1557a4a1a0913fb109f9a9ac913e1055dd3d83c84456a1ad11"; 677 + sha256 = "ba875c3c9bd322b39f3684cbe67c16de84615eb3c35e6790efcb862687ed9002"; 678 678 } 679 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/fr/firefox-124.0b5.tar.bz2"; 679 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/fr/firefox-124.0b8.tar.bz2"; 680 680 locale = "fr"; 681 681 arch = "linux-i686"; 682 - sha256 = "bf27f573772c6f4604ffd8b231c741bbbdf6f6f550d7a7e815c80c25448d68c2"; 682 + sha256 = "c921b0ccc93f94d5df9746691bbc3086b22da8349f1a52ad5e26ba93b7abf650"; 683 683 } 684 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/fur/firefox-124.0b5.tar.bz2"; 684 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/fur/firefox-124.0b8.tar.bz2"; 685 685 locale = "fur"; 686 686 arch = "linux-i686"; 687 - sha256 = "ce90c58dcda5735f20ce6d8cd6de600e3317c9b61bdaeb9cf906d835bc71cd34"; 687 + sha256 = "dc02e708a2d7ea14786f10fa984c255311c9c6e129f9fcfae6a7a542f8f68085"; 688 688 } 689 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/fy-NL/firefox-124.0b5.tar.bz2"; 689 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/fy-NL/firefox-124.0b8.tar.bz2"; 690 690 locale = "fy-NL"; 691 691 arch = "linux-i686"; 692 - sha256 = "d8e9dec1c6ee2d2e9c7088d2667ead8bd5c25dff121945df79d1485858d46237"; 692 + sha256 = "e667de6651376ba436d3903a09bfbaafbbc02b229884bf047689eb85c33358b9"; 693 693 } 694 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/ga-IE/firefox-124.0b5.tar.bz2"; 694 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/ga-IE/firefox-124.0b8.tar.bz2"; 695 695 locale = "ga-IE"; 696 696 arch = "linux-i686"; 697 - sha256 = "1019ed02595beccf552b06d966c2becf58c52bf63bf8bbfa7631c5467060a77d"; 697 + sha256 = "5a3fed972dd5eed1d9096a01ca96f461cd60422ba45056d1d360192474a92cf2"; 698 698 } 699 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/gd/firefox-124.0b5.tar.bz2"; 699 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/gd/firefox-124.0b8.tar.bz2"; 700 700 locale = "gd"; 701 701 arch = "linux-i686"; 702 - sha256 = "7e2b5c1f80810df8e22252321e0c87f62da5bf673d4d2bf7e32c4c235b6f8ba9"; 702 + sha256 = "951149f7826a41f5baf0a8e6d33894cfbbbf5604857b53add5d1ffcfe381affc"; 703 703 } 704 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/gl/firefox-124.0b5.tar.bz2"; 704 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/gl/firefox-124.0b8.tar.bz2"; 705 705 locale = "gl"; 706 706 arch = "linux-i686"; 707 - sha256 = "6080f23fa5ed30ecc29203be9b46722962605b4c6782636f8276b6d09812074c"; 707 + sha256 = "9d6edc3d5367845bdf7d3d1a037c9e6d4938bf9ca9c8da4d7b1b0be8c30884ac"; 708 708 } 709 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/gn/firefox-124.0b5.tar.bz2"; 709 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/gn/firefox-124.0b8.tar.bz2"; 710 710 locale = "gn"; 711 711 arch = "linux-i686"; 712 - sha256 = "771aba5bf954301b0bd8a1f28fc5b21be380f044d663182db4da5c58a9811498"; 712 + sha256 = "f272ef4ce5c750cdb15ee384d3b2f3d8180fefce5658e90df65c6a956a50febe"; 713 713 } 714 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/gu-IN/firefox-124.0b5.tar.bz2"; 714 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/gu-IN/firefox-124.0b8.tar.bz2"; 715 715 locale = "gu-IN"; 716 716 arch = "linux-i686"; 717 - sha256 = "c15d1bf95686b1c61b120c9dd68abcc82bb96f06e7053de38491bea049b7870e"; 717 + sha256 = "08146f867a46af824bb8cf04f65577307a88e8dc9c3551473de7b26d65c7b071"; 718 718 } 719 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/he/firefox-124.0b5.tar.bz2"; 719 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/he/firefox-124.0b8.tar.bz2"; 720 720 locale = "he"; 721 721 arch = "linux-i686"; 722 - sha256 = "704db19843bd8aed88485b13e65e0ad81afb934a50264139bf4b0c78f0c7ac49"; 722 + sha256 = "ae314e7432b89fccb51302c3e0b8ba57b08fddbc9b24ce4238c18aebb45c0a38"; 723 723 } 724 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/hi-IN/firefox-124.0b5.tar.bz2"; 724 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/hi-IN/firefox-124.0b8.tar.bz2"; 725 725 locale = "hi-IN"; 726 726 arch = "linux-i686"; 727 - sha256 = "9584a60e7eca3bc87c2d49c48dfeddbb910f5a5e8bd5250208095e9ded2c5a94"; 727 + sha256 = "20ed21211b8fa4569972286807c2a920e431253d5f78c66da8c22fff00dcf2ae"; 728 728 } 729 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/hr/firefox-124.0b5.tar.bz2"; 729 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/hr/firefox-124.0b8.tar.bz2"; 730 730 locale = "hr"; 731 731 arch = "linux-i686"; 732 - sha256 = "52b147f44dad1494b3460e37470656325d83866143071e4e4795a9d7ca5ffbd2"; 732 + sha256 = "883ebf254fd70cd1eb54c66c7836107e9faacdf9b1ede606b6996cc3c2353eda"; 733 733 } 734 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/hsb/firefox-124.0b5.tar.bz2"; 734 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/hsb/firefox-124.0b8.tar.bz2"; 735 735 locale = "hsb"; 736 736 arch = "linux-i686"; 737 - sha256 = "e2b6f044600d71cda816078e75d378df4145255eced332ead017fcf6795212ea"; 737 + sha256 = "470deb438d124656690aa408b92b388cfb8064111678c018f44d89067a8088ef"; 738 738 } 739 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/hu/firefox-124.0b5.tar.bz2"; 739 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/hu/firefox-124.0b8.tar.bz2"; 740 740 locale = "hu"; 741 741 arch = "linux-i686"; 742 - sha256 = "8a61b35c4ff40fbaa8bd09597e33ebb5cd9d3291f7df3d160c46745d4cc39505"; 742 + sha256 = "6c2f5a044d174d7e788e0db22fb42d6b84179f3777ec54a5f73fc14de8b5c5a4"; 743 743 } 744 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/hy-AM/firefox-124.0b5.tar.bz2"; 744 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/hy-AM/firefox-124.0b8.tar.bz2"; 745 745 locale = "hy-AM"; 746 746 arch = "linux-i686"; 747 - sha256 = "19ab45664ebf3160ef71762df32f3ab61ba8e8d3facbf9219858f67cd669a2fe"; 747 + sha256 = "82a2acd29a34f8423954946b032bc48b50441ff14462612a151032798d711db2"; 748 748 } 749 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/ia/firefox-124.0b5.tar.bz2"; 749 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/ia/firefox-124.0b8.tar.bz2"; 750 750 locale = "ia"; 751 751 arch = "linux-i686"; 752 - sha256 = "8130c47f85fdf7c889fd264972ec3873cd824ab51aff1a786e909448d2cd8901"; 752 + sha256 = "70a994763ad6dbd97a0b0866695ff3db379e6f132d356ef56cd3cb407251cbc6"; 753 753 } 754 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/id/firefox-124.0b5.tar.bz2"; 754 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/id/firefox-124.0b8.tar.bz2"; 755 755 locale = "id"; 756 756 arch = "linux-i686"; 757 - sha256 = "e36e080403eee96f3b85c1516f9e0d95fa433f19bff038ef5b8d562139878378"; 757 + sha256 = "c38f42145ef48fb309d772abc85a92086e9e5f7f81fa9967ce20db3f2edc0691"; 758 758 } 759 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/is/firefox-124.0b5.tar.bz2"; 759 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/is/firefox-124.0b8.tar.bz2"; 760 760 locale = "is"; 761 761 arch = "linux-i686"; 762 - sha256 = "0af7afa8188463b150bd0bb5a6d70280563a32fba63064238eb99ebd914dae43"; 762 + sha256 = "4cddf60be4c177ca9228d69d42bda0ca1d8294819efbed27048283c5d1bd6938"; 763 763 } 764 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/it/firefox-124.0b5.tar.bz2"; 764 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/it/firefox-124.0b8.tar.bz2"; 765 765 locale = "it"; 766 766 arch = "linux-i686"; 767 - sha256 = "39d4bb3eb6d4f332478dfd7151f681f912c48c9dace7fc5dad0684f114611e73"; 767 + sha256 = "f4603394a5106a77347dc3f129e3e2887545c2ac5e0794010e8b623c5068adb4"; 768 768 } 769 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/ja/firefox-124.0b5.tar.bz2"; 769 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/ja/firefox-124.0b8.tar.bz2"; 770 770 locale = "ja"; 771 771 arch = "linux-i686"; 772 - sha256 = "04a1c82420b4bd333d49c4937a721a5bfd9c01479c975885ec12d6dce5646601"; 772 + sha256 = "5bab0bf58b493c2b58b90adad6f13dee3ecda39948f2c689bd2c925cfd4c30db"; 773 773 } 774 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/ka/firefox-124.0b5.tar.bz2"; 774 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/ka/firefox-124.0b8.tar.bz2"; 775 775 locale = "ka"; 776 776 arch = "linux-i686"; 777 - sha256 = "b3b9f59d8a0b8fb940edcf4ab2d9f68e59e20335410c93c362995739a58a0fcc"; 777 + sha256 = "9e0241d98327769523ac6c5db53b362eee90bffc817228f681c5fc24f5c88106"; 778 778 } 779 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/kab/firefox-124.0b5.tar.bz2"; 779 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/kab/firefox-124.0b8.tar.bz2"; 780 780 locale = "kab"; 781 781 arch = "linux-i686"; 782 - sha256 = "b5632bc5575a1ddfcff3db4b92da6d9aad578170e491f55158f203225f74ef89"; 782 + sha256 = "3a665ed22585532423b439762a6be17f78a02e2977dfdd30a3a49c654a9d2895"; 783 783 } 784 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/kk/firefox-124.0b5.tar.bz2"; 784 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/kk/firefox-124.0b8.tar.bz2"; 785 785 locale = "kk"; 786 786 arch = "linux-i686"; 787 - sha256 = "7228c374b1b3589dbe1b72be1c108e92b5d5b1482b211eb0920f0fe5eb8109ec"; 787 + sha256 = "f27b507195363c0c10ecd2668781dcde692f0273bbfc2af97ca96b40e5c7ec46"; 788 788 } 789 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/km/firefox-124.0b5.tar.bz2"; 789 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/km/firefox-124.0b8.tar.bz2"; 790 790 locale = "km"; 791 791 arch = "linux-i686"; 792 - sha256 = "4f33c09de0b2bfabad01aadb3a599606ccda4408aaca1f46b850c6d3b0cfc89a"; 792 + sha256 = "d53d77a5f252387e1d63070b4f5684c4b631f35d4fe7a46853b3349afb061eea"; 793 793 } 794 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/kn/firefox-124.0b5.tar.bz2"; 794 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/kn/firefox-124.0b8.tar.bz2"; 795 795 locale = "kn"; 796 796 arch = "linux-i686"; 797 - sha256 = "1019326622395185993433b442246fe4f0cfff513b58143c0e8073c888dd8bd9"; 797 + sha256 = "6b5c10a4dd665cf394f2996b0aff2745d0ad08c1960cb3ffdd485d90a9875875"; 798 798 } 799 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/ko/firefox-124.0b5.tar.bz2"; 799 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/ko/firefox-124.0b8.tar.bz2"; 800 800 locale = "ko"; 801 801 arch = "linux-i686"; 802 - sha256 = "3ef4b7bc685aad7c95c85fea9c66bb708fed3619233ceb99ae838d856988bb0f"; 802 + sha256 = "f6ca141e3ec7cd2c3e757c3abc6dac2b9d8603ac21ad61c67c555b878a8960dc"; 803 803 } 804 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/lij/firefox-124.0b5.tar.bz2"; 804 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/lij/firefox-124.0b8.tar.bz2"; 805 805 locale = "lij"; 806 806 arch = "linux-i686"; 807 - sha256 = "6bb1069a877d6e70af29e47cc924e182e403ef6cd741272a4fb40c35a7661a1d"; 807 + sha256 = "a0178386782d2cc578d1412c6eb07b609db4ae08fc0d9613bfdfb6812ff49763"; 808 808 } 809 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/lt/firefox-124.0b5.tar.bz2"; 809 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/lt/firefox-124.0b8.tar.bz2"; 810 810 locale = "lt"; 811 811 arch = "linux-i686"; 812 - sha256 = "4ab9105cedeae72c8bbed0ab3ef445d3aef9aa1da200e8011249d39193584bd0"; 812 + sha256 = "a2291eb8df840e545b2bb288d5ad68f8bab9a66cd883b15ce4f9364a67e2d082"; 813 813 } 814 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/lv/firefox-124.0b5.tar.bz2"; 814 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/lv/firefox-124.0b8.tar.bz2"; 815 815 locale = "lv"; 816 816 arch = "linux-i686"; 817 - sha256 = "66a9833d26660984ca37fb09b321bacd11882333eb416558d46854ac213f5d5c"; 817 + sha256 = "8e927eca1e77dae2756eaa85f4ce8cef303904ebbef0e0cabb741a0cb60d9809"; 818 818 } 819 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/mk/firefox-124.0b5.tar.bz2"; 819 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/mk/firefox-124.0b8.tar.bz2"; 820 820 locale = "mk"; 821 821 arch = "linux-i686"; 822 - sha256 = "3d5deb04c79687e5d364c734c30707980417dd478edacf83dc915103c8df1fff"; 822 + sha256 = "71089907754ff08f5abbec5a87949634d9efcaedc6b0b052468cc4437324078c"; 823 823 } 824 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/mr/firefox-124.0b5.tar.bz2"; 824 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/mr/firefox-124.0b8.tar.bz2"; 825 825 locale = "mr"; 826 826 arch = "linux-i686"; 827 - sha256 = "217a6667c7ca77dc9225bbb5d590149dda4df4c50f8c367010bc1967d1de885c"; 827 + sha256 = "9acd87dd9b9859f82464641e51215cb2afee19355c54630a999682220c35ac5c"; 828 828 } 829 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/ms/firefox-124.0b5.tar.bz2"; 829 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/ms/firefox-124.0b8.tar.bz2"; 830 830 locale = "ms"; 831 831 arch = "linux-i686"; 832 - sha256 = "2c4a574b86ebb09770174adc1906f036b4cd9a1047dbab2470503c27b8bf8c34"; 832 + sha256 = "f341f1a23a4ced9c72d26daffd029bdbf1ff0793a72db6df9a691151317f83f4"; 833 833 } 834 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/my/firefox-124.0b5.tar.bz2"; 834 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/my/firefox-124.0b8.tar.bz2"; 835 835 locale = "my"; 836 836 arch = "linux-i686"; 837 - sha256 = "889185eac6e208029c98f32ab360d5d5d6706a6a9b74c8d0d6c223408b276bc3"; 837 + sha256 = "ae8d29654d85e6a25f8d10a113e20abb307c00f8b34fb9f63af2bfa12f9233ed"; 838 838 } 839 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/nb-NO/firefox-124.0b5.tar.bz2"; 839 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/nb-NO/firefox-124.0b8.tar.bz2"; 840 840 locale = "nb-NO"; 841 841 arch = "linux-i686"; 842 - sha256 = "54b3ebb3e3765edc5fda8dd16e77b0e64dc6f8c62062780f43fc31082b185dc2"; 842 + sha256 = "d8b6c0d18f5213d61838fa949321b34eec7d1d054ff4f6dfe9edab7bc9937c30"; 843 843 } 844 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/ne-NP/firefox-124.0b5.tar.bz2"; 844 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/ne-NP/firefox-124.0b8.tar.bz2"; 845 845 locale = "ne-NP"; 846 846 arch = "linux-i686"; 847 - sha256 = "d30e24a98bedba69ed1435dbd198e2cb581334df6bdab799e5a522808a111d78"; 847 + sha256 = "739b960b77bc4bb1a7adf41afa4f1e5a5b7e787174bcb4cef1d251a2b77d48bb"; 848 848 } 849 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/nl/firefox-124.0b5.tar.bz2"; 849 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/nl/firefox-124.0b8.tar.bz2"; 850 850 locale = "nl"; 851 851 arch = "linux-i686"; 852 - sha256 = "04d65559f5741c4546ae74645c32b8ffe26a72581e845c41a13485d8cfe30e21"; 852 + sha256 = "f9b832e2a137b369fe5b403a111b6def32c31c3bb716e1f6762bc560dfdfdc35"; 853 853 } 854 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/nn-NO/firefox-124.0b5.tar.bz2"; 854 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/nn-NO/firefox-124.0b8.tar.bz2"; 855 855 locale = "nn-NO"; 856 856 arch = "linux-i686"; 857 - sha256 = "b2691a3729afee02ab3b9eba68c08798950e912552d75723436914b4efa34919"; 857 + sha256 = "d98ec566e4ce0222cbe7714938cdfe4ee08ebd59d58e281f28afa4a998947aa9"; 858 858 } 859 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/oc/firefox-124.0b5.tar.bz2"; 859 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/oc/firefox-124.0b8.tar.bz2"; 860 860 locale = "oc"; 861 861 arch = "linux-i686"; 862 - sha256 = "fc78773fa0f6667a5685cfb641523df9996d25d3fd325d5c145ee533ad668a47"; 862 + sha256 = "af47d1a95048b8aa8bd2052e24ace28d24ab7367d113afa85055316b4844d78e"; 863 863 } 864 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/pa-IN/firefox-124.0b5.tar.bz2"; 864 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/pa-IN/firefox-124.0b8.tar.bz2"; 865 865 locale = "pa-IN"; 866 866 arch = "linux-i686"; 867 - sha256 = "e7722d661ecb1bb90fcd3aaa74dc180e9f7319c7f291ccacdfd8b8bf7b47f3ca"; 867 + sha256 = "a388e5efe3bfcfbad0b2d1b77f6b9c366f93951afe20b8438ad8241eb0362ad3"; 868 868 } 869 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/pl/firefox-124.0b5.tar.bz2"; 869 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/pl/firefox-124.0b8.tar.bz2"; 870 870 locale = "pl"; 871 871 arch = "linux-i686"; 872 - sha256 = "b776220d9d296f62f6a73f6f6b8c48d681e6d51f06072d8fe18224ead2727e89"; 872 + sha256 = "c03e54968e539c909c5a4c870b4f80dfcff406fc79d594b3897d0d0e7bc9f26c"; 873 873 } 874 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/pt-BR/firefox-124.0b5.tar.bz2"; 874 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/pt-BR/firefox-124.0b8.tar.bz2"; 875 875 locale = "pt-BR"; 876 876 arch = "linux-i686"; 877 - sha256 = "31ab39129ac43049ee04baf7862a8f37f31eb5475474c3242d4bb65069ed05be"; 877 + sha256 = "113d9baa6a713ef7bb2828759f2cb3913825d7c8b595076961ebc7a318edbe8a"; 878 878 } 879 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/pt-PT/firefox-124.0b5.tar.bz2"; 879 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/pt-PT/firefox-124.0b8.tar.bz2"; 880 880 locale = "pt-PT"; 881 881 arch = "linux-i686"; 882 - sha256 = "051f0dc8f2d9673e9998f567e68c5d93192cf868998f9ee1c8480695c868abfe"; 882 + sha256 = "93a2ba4c8564c89e28c3d29ca00caa04cd13cc6947c59aab21c9e3c91eeec5d7"; 883 883 } 884 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/rm/firefox-124.0b5.tar.bz2"; 884 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/rm/firefox-124.0b8.tar.bz2"; 885 885 locale = "rm"; 886 886 arch = "linux-i686"; 887 - sha256 = "ab7933e544de5d6302911970fa52af650c85ab3de3a1da40eb137463273c92c7"; 887 + sha256 = "90b9bd0d35cd91e6dcfa24f661d7ae40a3405604e3c696ab91b516cb159eefa1"; 888 888 } 889 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/ro/firefox-124.0b5.tar.bz2"; 889 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/ro/firefox-124.0b8.tar.bz2"; 890 890 locale = "ro"; 891 891 arch = "linux-i686"; 892 - sha256 = "ee617771912c1c0ae3bcff35a431dfb4409cfe6f4e7f4498fc6cc9402e57d9f6"; 892 + sha256 = "741b586436d5c5b85f86041ff0a17aa734a9d81ca1dfa566fc69060c4efb6c7d"; 893 893 } 894 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/ru/firefox-124.0b5.tar.bz2"; 894 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/ru/firefox-124.0b8.tar.bz2"; 895 895 locale = "ru"; 896 896 arch = "linux-i686"; 897 - sha256 = "26b2a86099de12870d55407a3742681b7a3ca1595b596355208c540728a6aa8c"; 897 + sha256 = "bb9165219242a8039761656a039fff273515f8a2e0b0444ce047b4722fa1c589"; 898 898 } 899 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/sat/firefox-124.0b5.tar.bz2"; 899 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/sat/firefox-124.0b8.tar.bz2"; 900 900 locale = "sat"; 901 901 arch = "linux-i686"; 902 - sha256 = "dd2ccdb96290275332c1cc3c72c393b293d0fd2ba13248c92af3faeaf2fcb7f0"; 902 + sha256 = "54d2506e1384a5f3ca0611f31f0f0645c8c73875ec663c40fd672931e2851cdf"; 903 903 } 904 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/sc/firefox-124.0b5.tar.bz2"; 904 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/sc/firefox-124.0b8.tar.bz2"; 905 905 locale = "sc"; 906 906 arch = "linux-i686"; 907 - sha256 = "a802cf0fc342eb63ad6330dd75f28cb2a437a701b2e06128a2e1ad08d4622496"; 907 + sha256 = "f53434a7c0f15105129a76a82dfee2b585d49aae58458a09364118c9e7cad2da"; 908 908 } 909 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/sco/firefox-124.0b5.tar.bz2"; 909 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/sco/firefox-124.0b8.tar.bz2"; 910 910 locale = "sco"; 911 911 arch = "linux-i686"; 912 - sha256 = "56b0b4bd0db2e6c47e384e3c095a39fa0c70aa1a2a1710105ad99003c0ec7955"; 912 + sha256 = "ca58ff487ce497f8b8c8ec590ac5592d30a47b3a3da2bd03b273b0ac1e94b389"; 913 913 } 914 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/si/firefox-124.0b5.tar.bz2"; 914 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/si/firefox-124.0b8.tar.bz2"; 915 915 locale = "si"; 916 916 arch = "linux-i686"; 917 - sha256 = "4033b4b774bbc9fb7839dc1557b3ded270ee14deb70a116b111021ee7d22e3e7"; 917 + sha256 = "623710ebf2caea98662b64816498f9e79dd65251a6466d5a54ee35eac763d8a8"; 918 918 } 919 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/sk/firefox-124.0b5.tar.bz2"; 919 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/sk/firefox-124.0b8.tar.bz2"; 920 920 locale = "sk"; 921 921 arch = "linux-i686"; 922 - sha256 = "d90ca875fb4d5aaf5ae2a2d9f26a62b3e78107eb900e570d54b1dca405b724ab"; 922 + sha256 = "0858782eb73df79ef09dee6b3ee2d4f59d348f134b0b1049d03b3b9981126074"; 923 923 } 924 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/sl/firefox-124.0b5.tar.bz2"; 924 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/sl/firefox-124.0b8.tar.bz2"; 925 925 locale = "sl"; 926 926 arch = "linux-i686"; 927 - sha256 = "896acd6535ce42f8fb1ee66dd39137de3cf18d4439ec10dcb1d28ce45923d9d8"; 927 + sha256 = "abc3a5d76ae7034995291722aa8841a441d6bbe23ec2bb04967e829eb0d21bb7"; 928 928 } 929 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/son/firefox-124.0b5.tar.bz2"; 929 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/son/firefox-124.0b8.tar.bz2"; 930 930 locale = "son"; 931 931 arch = "linux-i686"; 932 - sha256 = "2516376b0843971ffd6aef0ca14022835c963eb0f1360137a941189eca4ca273"; 932 + sha256 = "4ea467ca12a5fd58c79c95ba545b236ed45adaa78ee3d4c57cc91e79b77814a9"; 933 933 } 934 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/sq/firefox-124.0b5.tar.bz2"; 934 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/sq/firefox-124.0b8.tar.bz2"; 935 935 locale = "sq"; 936 936 arch = "linux-i686"; 937 - sha256 = "ece99d294565c787b94cadd992aa9ae3596df5a3e0d79214606bf5115e962eed"; 937 + sha256 = "a3904e0c003adbfa70b53c5cb320c146fe2338fe5f39aa1f577befcfbe4e56ba"; 938 938 } 939 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/sr/firefox-124.0b5.tar.bz2"; 939 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/sr/firefox-124.0b8.tar.bz2"; 940 940 locale = "sr"; 941 941 arch = "linux-i686"; 942 - sha256 = "0907bb87d06a9cdc7393953fc528f1aa01493520889c68cae81be1b1fcd0a4b9"; 942 + sha256 = "6d5e3b1f6c31ff77605dd9ea840e91e8378079ce7b396b7b2d76dea21686847b"; 943 943 } 944 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/sv-SE/firefox-124.0b5.tar.bz2"; 944 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/sv-SE/firefox-124.0b8.tar.bz2"; 945 945 locale = "sv-SE"; 946 946 arch = "linux-i686"; 947 - sha256 = "cec1b86e3f87680f95183090d08206271910ce13beacf0681d56497fba937228"; 947 + sha256 = "fcdad045574044659d42fff2c1dc13788a2fa95c53affbc6f0f01a8fbb7779c3"; 948 948 } 949 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/szl/firefox-124.0b5.tar.bz2"; 949 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/szl/firefox-124.0b8.tar.bz2"; 950 950 locale = "szl"; 951 951 arch = "linux-i686"; 952 - sha256 = "c28f2cdde800e3dc6acae4e257fc1c7466568294adf06e96ef26b66ed9786530"; 952 + sha256 = "c122a3a55de5d421f9b43025c0c6e7df8937b785a3646881d58d649f5b1df4c2"; 953 953 } 954 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/ta/firefox-124.0b5.tar.bz2"; 954 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/ta/firefox-124.0b8.tar.bz2"; 955 955 locale = "ta"; 956 956 arch = "linux-i686"; 957 - sha256 = "f5b421495a032d3a584ebe43638bf2721f1400e5d5714140344301744d3cb6a7"; 957 + sha256 = "a479a71aace75ba50794fcccab989a8a9696611a56bcd228ada53e4c278b8c37"; 958 958 } 959 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/te/firefox-124.0b5.tar.bz2"; 959 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/te/firefox-124.0b8.tar.bz2"; 960 960 locale = "te"; 961 961 arch = "linux-i686"; 962 - sha256 = "9601c95bd9d8660b7c862370233b710e99ea2d789702a6d7812d75fe59ceb84d"; 962 + sha256 = "3ab19708939b6471759e6f1209d933d3a3c8770e25ee7117f10ca0d4aaae6886"; 963 963 } 964 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/tg/firefox-124.0b5.tar.bz2"; 964 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/tg/firefox-124.0b8.tar.bz2"; 965 965 locale = "tg"; 966 966 arch = "linux-i686"; 967 - sha256 = "96837fd4aafeb63b54097193c776c798f03c86aeeb1f952a4bbb38ee37641db0"; 967 + sha256 = "1c7d028c6460a7b15c3fbb7f69f0e4af8234db574b92bf2342416646941d0d0d"; 968 968 } 969 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/th/firefox-124.0b5.tar.bz2"; 969 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/th/firefox-124.0b8.tar.bz2"; 970 970 locale = "th"; 971 971 arch = "linux-i686"; 972 - sha256 = "c0fcaef5e94b5357747486c61088b5379da9fa76ebdf2da12ee47e7938f8012b"; 972 + sha256 = "fd9a4491c3174f968347f98d77406518f7f2ef87a82915393e7e6d02f067a5c7"; 973 973 } 974 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/tl/firefox-124.0b5.tar.bz2"; 974 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/tl/firefox-124.0b8.tar.bz2"; 975 975 locale = "tl"; 976 976 arch = "linux-i686"; 977 - sha256 = "9a78df48ab64fc9bfd58a770570abc75b3ece5295e483c87bd4b80b676699084"; 977 + sha256 = "bb8cc15e3691d3064d50b5770d467219d93f625c71174a33e17a38a8f4cdde2b"; 978 978 } 979 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/tr/firefox-124.0b5.tar.bz2"; 979 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/tr/firefox-124.0b8.tar.bz2"; 980 980 locale = "tr"; 981 981 arch = "linux-i686"; 982 - sha256 = "ba817e3b99ffb7f25005164ab5faf505896a526d2f6a3cdabac4ca9d5388d0a1"; 982 + sha256 = "a5d02b487e0247c090f44eee79f6e142c7890bea6c1f9848412997e40ab48fbe"; 983 983 } 984 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/trs/firefox-124.0b5.tar.bz2"; 984 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/trs/firefox-124.0b8.tar.bz2"; 985 985 locale = "trs"; 986 986 arch = "linux-i686"; 987 - sha256 = "d4d98090131f4222a89908dcd96ad723734187bfa12078df2cdde2eb88a42b80"; 987 + sha256 = "25f4ff67fdc4be664a5b4e65a5214b7124a27725204dd93acfd24d77c70e95d6"; 988 988 } 989 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/uk/firefox-124.0b5.tar.bz2"; 989 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/uk/firefox-124.0b8.tar.bz2"; 990 990 locale = "uk"; 991 991 arch = "linux-i686"; 992 - sha256 = "0a89b2feb31cdb9b96f8576b53bb38188b78e3a225c75b5cc549d40f84239912"; 992 + sha256 = "e688945fc510418bf69321b8168bb537b76cc8a2798b19946f8d969e13151d27"; 993 993 } 994 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/ur/firefox-124.0b5.tar.bz2"; 994 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/ur/firefox-124.0b8.tar.bz2"; 995 995 locale = "ur"; 996 996 arch = "linux-i686"; 997 - sha256 = "a1f8bc32290d3b7c36796aa8d969e75346bbeb5f315cf38c143c0ca172bf171e"; 997 + sha256 = "1f01f0459e671fa083b71c96355c60aa3fa30b79116597f8ad6dfa3ab9661ba9"; 998 998 } 999 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/uz/firefox-124.0b5.tar.bz2"; 999 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/uz/firefox-124.0b8.tar.bz2"; 1000 1000 locale = "uz"; 1001 1001 arch = "linux-i686"; 1002 - sha256 = "43aa551a19e051e3e30ea2a36f66cdaf8136f51b3f8b3d59a22b8ffbe81111c1"; 1002 + sha256 = "95174084f39d37d9ca11cc2c62485f0c7b0e74cc1aecdd46e3a9958f6fd121ca"; 1003 1003 } 1004 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/vi/firefox-124.0b5.tar.bz2"; 1004 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/vi/firefox-124.0b8.tar.bz2"; 1005 1005 locale = "vi"; 1006 1006 arch = "linux-i686"; 1007 - sha256 = "22c298ab967d7c3a54b1282890e15cc6fea5c8917281473eb623a0cf0f506255"; 1007 + sha256 = "391a0e484adc0d004c3f1e1409876ff13ed6bab6ff05b686dcdc6a2ecb929886"; 1008 1008 } 1009 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/xh/firefox-124.0b5.tar.bz2"; 1009 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/xh/firefox-124.0b8.tar.bz2"; 1010 1010 locale = "xh"; 1011 1011 arch = "linux-i686"; 1012 - sha256 = "de923b5cd70637072481a3f7807bff050c46271ade9be688a52bb4f37581478b"; 1012 + sha256 = "70bbe9ae5637b874f928fc3b85dc1326aa6e7ee4e66a2a5067934f029a6ca8aa"; 1013 1013 } 1014 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/zh-CN/firefox-124.0b5.tar.bz2"; 1014 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/zh-CN/firefox-124.0b8.tar.bz2"; 1015 1015 locale = "zh-CN"; 1016 1016 arch = "linux-i686"; 1017 - sha256 = "a54545509427e22187e8da4f1aaffae25a727e9e82ae41a141d7dbe3c5f08a46"; 1017 + sha256 = "df1bacb4df2b14b7e43bb36e9acef401112957b49a86c4e7ed43c1d25f054da1"; 1018 1018 } 1019 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/zh-TW/firefox-124.0b5.tar.bz2"; 1019 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b8/linux-i686/zh-TW/firefox-124.0b8.tar.bz2"; 1020 1020 locale = "zh-TW"; 1021 1021 arch = "linux-i686"; 1022 - sha256 = "ffb6a8b9041761bc2b77a1d5ab74c6fc4b973dbfd6e46b8967d20f52b8769b7b"; 1022 + sha256 = "d32db2c273ef9e674c8746a1bed7a8d3d7d99b1d717d714b5346c66c3ba42f87"; 1023 1023 } 1024 1024 ]; 1025 1025 }
+409 -409
pkgs/applications/networking/browsers/firefox-bin/developer-edition_sources.nix
··· 1 1 { 2 - version = "124.0b5"; 2 + version = "124.0b8"; 3 3 sources = [ 4 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/ach/firefox-124.0b5.tar.bz2"; 4 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/ach/firefox-124.0b8.tar.bz2"; 5 5 locale = "ach"; 6 6 arch = "linux-x86_64"; 7 - sha256 = "3a9d427227b0e507d013b8339c945736bc39d7360c12528017e2c46cd712b74b"; 7 + sha256 = "2988de946ed490228980b45ea0890896818fcd2576ef25b7dde173e7a2288b7a"; 8 8 } 9 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/af/firefox-124.0b5.tar.bz2"; 9 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/af/firefox-124.0b8.tar.bz2"; 10 10 locale = "af"; 11 11 arch = "linux-x86_64"; 12 - sha256 = "f9389fcad849bc271805a4f6d646bf928c94b7cb848c87599397b0f6e03a5665"; 12 + sha256 = "1687d39822c1c2aa26bad3ae5b2b7249d8d77b807fb710f3ac17dbee10379fca"; 13 13 } 14 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/an/firefox-124.0b5.tar.bz2"; 14 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/an/firefox-124.0b8.tar.bz2"; 15 15 locale = "an"; 16 16 arch = "linux-x86_64"; 17 - sha256 = "e021bd8a0c1c6c8f2df3a009586b31ce45f61e3cf38719ddef8166248d9fbd28"; 17 + sha256 = "d25fa9dca8315719c7e7410d65c24878090c8ede9f8872e907f97c5208fc36af"; 18 18 } 19 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/ar/firefox-124.0b5.tar.bz2"; 19 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/ar/firefox-124.0b8.tar.bz2"; 20 20 locale = "ar"; 21 21 arch = "linux-x86_64"; 22 - sha256 = "49d099742322b2b263c27c1d86686f76b1fb8130a53b67080d1d616ffbcd4328"; 22 + sha256 = "2070bcfe283bb4cca1d41f966aa9c2482711d945d72713d2a8984550cbfb2c64"; 23 23 } 24 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/ast/firefox-124.0b5.tar.bz2"; 24 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/ast/firefox-124.0b8.tar.bz2"; 25 25 locale = "ast"; 26 26 arch = "linux-x86_64"; 27 - sha256 = "e0396631de1322a7a707451e12157101dbab304e2850300a3d49d4d4dfa54ba0"; 27 + sha256 = "babe235327c171b7cacedadcbe9bfc115268a3c86b26156159d6e13a527e5e9f"; 28 28 } 29 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/az/firefox-124.0b5.tar.bz2"; 29 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/az/firefox-124.0b8.tar.bz2"; 30 30 locale = "az"; 31 31 arch = "linux-x86_64"; 32 - sha256 = "8e49721bb354ee02c773682fa955a7f6a6b39fa7a1deb5531bddfc6b65d9cac4"; 32 + sha256 = "f88f43800dc35bd61e3954d160ece9b278bb3f7b9ffca080f56f19e72809281d"; 33 33 } 34 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/be/firefox-124.0b5.tar.bz2"; 34 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/be/firefox-124.0b8.tar.bz2"; 35 35 locale = "be"; 36 36 arch = "linux-x86_64"; 37 - sha256 = "5e47c784631398d3fbcdeff8c7472b63491c6a762953ed737475d001c3f237cd"; 37 + sha256 = "a794265636992a09b91d940694681550dcd53de67691093eaaca46451ec72559"; 38 38 } 39 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/bg/firefox-124.0b5.tar.bz2"; 39 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/bg/firefox-124.0b8.tar.bz2"; 40 40 locale = "bg"; 41 41 arch = "linux-x86_64"; 42 - sha256 = "efffce83ea3619b5370c765d1c56841c5da3139ede76f9cf1bb73990df6dc630"; 42 + sha256 = "672062dd3c6c0c0244230ed69e52e78cc8a95f4ee0e6328e9ce271dd8cc3ff4b"; 43 43 } 44 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/bn/firefox-124.0b5.tar.bz2"; 44 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/bn/firefox-124.0b8.tar.bz2"; 45 45 locale = "bn"; 46 46 arch = "linux-x86_64"; 47 - sha256 = "20deb64cc3881e1ff7300db626088cda56447a90b28725bd0d86d5e600e924ea"; 47 + sha256 = "41a949ba8f1f374deb54e5cb1ffdfcbac4be333d2f3c62f23e5de1a65d2bbcf8"; 48 48 } 49 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/br/firefox-124.0b5.tar.bz2"; 49 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/br/firefox-124.0b8.tar.bz2"; 50 50 locale = "br"; 51 51 arch = "linux-x86_64"; 52 - sha256 = "79c05c6ced75184d302cbaa0f3a11c9560fc444f7cdc869426067e0e97e06f29"; 52 + sha256 = "bcaf2de1ced5c94ff689b24f7496aae1d7ef0bc6c4106ae1864b0904c517b3cb"; 53 53 } 54 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/bs/firefox-124.0b5.tar.bz2"; 54 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/bs/firefox-124.0b8.tar.bz2"; 55 55 locale = "bs"; 56 56 arch = "linux-x86_64"; 57 - sha256 = "fa437eefe4b569f3271ee4feabe0f7636e3311a1b90ee08e59100a9603a92bc9"; 57 + sha256 = "7962417ea71924a02d08877b27cb9f3c34298820687dedd5fa14815e54813c46"; 58 58 } 59 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/ca-valencia/firefox-124.0b5.tar.bz2"; 59 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/ca-valencia/firefox-124.0b8.tar.bz2"; 60 60 locale = "ca-valencia"; 61 61 arch = "linux-x86_64"; 62 - sha256 = "d134e16646ed46d894350d8758101aded28e94a203ea6380ddb708f63973fa0b"; 62 + sha256 = "73cee93f18933add9fe9e351e9ca65df1fff08dfa58c8e0bec2a194f59e3efed"; 63 63 } 64 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/ca/firefox-124.0b5.tar.bz2"; 64 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/ca/firefox-124.0b8.tar.bz2"; 65 65 locale = "ca"; 66 66 arch = "linux-x86_64"; 67 - sha256 = "5620a53acc236bd3aea1e325936134e8f0743acf08aae617d24fa4496cf39f06"; 67 + sha256 = "81746545945da6cbaba5b62f140645ac38f766fcb85d6ccc14a6a7f4b3f2af6f"; 68 68 } 69 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/cak/firefox-124.0b5.tar.bz2"; 69 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/cak/firefox-124.0b8.tar.bz2"; 70 70 locale = "cak"; 71 71 arch = "linux-x86_64"; 72 - sha256 = "69700283c291f63e16e47a7a1a1074a2cae64708ce5fd2c0b2e2232829a6acb7"; 72 + sha256 = "c0132f83fffe7cd5e61a1d445fcf40c37efeb59a260c2aedae66070e118c36b4"; 73 73 } 74 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/cs/firefox-124.0b5.tar.bz2"; 74 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/cs/firefox-124.0b8.tar.bz2"; 75 75 locale = "cs"; 76 76 arch = "linux-x86_64"; 77 - sha256 = "efd6574b6a27aa77525edc3d1789b86a4ce3b39024670a3703ba652e8ac3252d"; 77 + sha256 = "57f97db425407eea0f7a3a46a025c2d6a78205564aca3ce833765926b191dab3"; 78 78 } 79 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/cy/firefox-124.0b5.tar.bz2"; 79 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/cy/firefox-124.0b8.tar.bz2"; 80 80 locale = "cy"; 81 81 arch = "linux-x86_64"; 82 - sha256 = "4f13852f795a6ecce2cce51537412a7cfc820d95627548b136c9f63fde959dbf"; 82 + sha256 = "e8a2ba537f651ca41c90e2b73805736d94aee2385332f78d328656bd27ad4393"; 83 83 } 84 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/da/firefox-124.0b5.tar.bz2"; 84 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/da/firefox-124.0b8.tar.bz2"; 85 85 locale = "da"; 86 86 arch = "linux-x86_64"; 87 - sha256 = "bd1c60b9026e168d704c4effa522dd944f159abf3bcb839a9f50620e281c0eb5"; 87 + sha256 = "206de0cfc1d6fe05d6cdc30f12c6c1a7078296d519dfb12c31faf4c2bac5b03d"; 88 88 } 89 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/de/firefox-124.0b5.tar.bz2"; 89 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/de/firefox-124.0b8.tar.bz2"; 90 90 locale = "de"; 91 91 arch = "linux-x86_64"; 92 - sha256 = "a0d9a1d95f802c1bd2251e96bbb694582acf69b4c63ec14f0f7ebe3201f8c55b"; 92 + sha256 = "89d56459285a171cbccb5f030fdb1ed6760c793bdef4f0331b9b59133e758795"; 93 93 } 94 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/dsb/firefox-124.0b5.tar.bz2"; 94 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/dsb/firefox-124.0b8.tar.bz2"; 95 95 locale = "dsb"; 96 96 arch = "linux-x86_64"; 97 - sha256 = "be38971a053252fc897ad1c16165b991e4b94a5edaa1d1aa358c26c6cd47055c"; 97 + sha256 = "a259ef10f69f7a0d199ed69dd6edccd3c995b492cf32a89829574bc931124907"; 98 98 } 99 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/el/firefox-124.0b5.tar.bz2"; 99 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/el/firefox-124.0b8.tar.bz2"; 100 100 locale = "el"; 101 101 arch = "linux-x86_64"; 102 - sha256 = "9be3cc3c4299e2ef1da36eb8b432b9afca72a103cc0e0c8d921147c003421e6e"; 102 + sha256 = "f540fef5edd06244d3b5677629707c25bd1b77340f8bee130410a9e13e021b4a"; 103 103 } 104 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/en-CA/firefox-124.0b5.tar.bz2"; 104 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/en-CA/firefox-124.0b8.tar.bz2"; 105 105 locale = "en-CA"; 106 106 arch = "linux-x86_64"; 107 - sha256 = "53edf88fa6281f86fd59e29aed42672488c217df9ee7cb610fe6823f38daefa2"; 107 + sha256 = "797d044fb9af451561b8aeaf44c63476018c5c1778cd8f4e159b42e66e54bbbd"; 108 108 } 109 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/en-GB/firefox-124.0b5.tar.bz2"; 109 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/en-GB/firefox-124.0b8.tar.bz2"; 110 110 locale = "en-GB"; 111 111 arch = "linux-x86_64"; 112 - sha256 = "b1cf43d40fa62dc43c049be0f53b27c93412be3363e4f1b87e3edfc2b5b0a568"; 112 + sha256 = "9f95d07b7ca673ab08febcbae1d41ec5b1540f1e3906132da6fc461c2c026412"; 113 113 } 114 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/en-US/firefox-124.0b5.tar.bz2"; 114 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/en-US/firefox-124.0b8.tar.bz2"; 115 115 locale = "en-US"; 116 116 arch = "linux-x86_64"; 117 - sha256 = "a3a6ee9756e0a49675129cf9a82e24e55df476a68ecc7cf23e7d38ba16549b85"; 117 + sha256 = "da86a9c747bebe0c7dfa7e4b9e421bbb364c9f0f89bfa4a1a9e5ecb16e10ee0d"; 118 118 } 119 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/eo/firefox-124.0b5.tar.bz2"; 119 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/eo/firefox-124.0b8.tar.bz2"; 120 120 locale = "eo"; 121 121 arch = "linux-x86_64"; 122 - sha256 = "0ad69137b8befc8f472b0f39022842747b28a22f29695b0cced487ed7050a49c"; 122 + sha256 = "edf010104ec42ad79242cce4d93ad7319e62df91f9ced6ca811367e9a8b65dbe"; 123 123 } 124 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/es-AR/firefox-124.0b5.tar.bz2"; 124 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/es-AR/firefox-124.0b8.tar.bz2"; 125 125 locale = "es-AR"; 126 126 arch = "linux-x86_64"; 127 - sha256 = "70f7f24ede7387e4f3f1a16e06d5ad1eaed16cd20c07eb80f690ddd9a7f28d57"; 127 + sha256 = "71b108e32318295d4f528216a5078f1200b7681a3d8c0a64edfcf8c750c7ccd7"; 128 128 } 129 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/es-CL/firefox-124.0b5.tar.bz2"; 129 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/es-CL/firefox-124.0b8.tar.bz2"; 130 130 locale = "es-CL"; 131 131 arch = "linux-x86_64"; 132 - sha256 = "7dc56ac573ba34c358abd8e626a93524b5af09a83f0bc12ce1ffbc3bdbe9e138"; 132 + sha256 = "0e004dbdce5186349386af181d23b7db7e70f15044fc2689251299eb14a593e0"; 133 133 } 134 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/es-ES/firefox-124.0b5.tar.bz2"; 134 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/es-ES/firefox-124.0b8.tar.bz2"; 135 135 locale = "es-ES"; 136 136 arch = "linux-x86_64"; 137 - sha256 = "77ecf7b33d05498ec6681f6248f2eb8d00869a3ac67a1f1d6e2ca4023cc03e4c"; 137 + sha256 = "1abc44fb00c7edfc1c7abce1f8a3cb42952a5202de78be6f74c193978b33fe43"; 138 138 } 139 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/es-MX/firefox-124.0b5.tar.bz2"; 139 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/es-MX/firefox-124.0b8.tar.bz2"; 140 140 locale = "es-MX"; 141 141 arch = "linux-x86_64"; 142 - sha256 = "85f2cb1788ff01356f3177973c7764ea8d6ce125c1fca1604f2273d8f0507627"; 142 + sha256 = "9829eae29d54a2cc719b1e5a1edd449d24e23f8b20cbb0848fcee65dcc49698d"; 143 143 } 144 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/et/firefox-124.0b5.tar.bz2"; 144 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/et/firefox-124.0b8.tar.bz2"; 145 145 locale = "et"; 146 146 arch = "linux-x86_64"; 147 - sha256 = "d409c5f2f299282f4196ff781bd906ea3c002aeab894b99fe12587ac2fcbfa2b"; 147 + sha256 = "bf3d8e5c72773855c67220a3fa30a3336393fee024dd660f0756b64437830b89"; 148 148 } 149 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/eu/firefox-124.0b5.tar.bz2"; 149 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/eu/firefox-124.0b8.tar.bz2"; 150 150 locale = "eu"; 151 151 arch = "linux-x86_64"; 152 - sha256 = "b64a0c98d5153a0ba06f423f891a6b1c4aa573e973be974dba9a566dd891b6bd"; 152 + sha256 = "41122f93963c7bebd6b9c4f7549e0c2ace87a9fc6b0652e95e458daedd3d7a02"; 153 153 } 154 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/fa/firefox-124.0b5.tar.bz2"; 154 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/fa/firefox-124.0b8.tar.bz2"; 155 155 locale = "fa"; 156 156 arch = "linux-x86_64"; 157 - sha256 = "6eae66efab9e9ce65e3f31f22de36f3b5aa9a5617dc12f4ac1c523edd54f4f24"; 157 + sha256 = "b77127090d34358d0bb8979d0e3f2eb2f28294aef852a4c8ff1aadd667aa2bb1"; 158 158 } 159 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/ff/firefox-124.0b5.tar.bz2"; 159 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/ff/firefox-124.0b8.tar.bz2"; 160 160 locale = "ff"; 161 161 arch = "linux-x86_64"; 162 - sha256 = "e31a40ad54a2cb84ab43cf5341b73518508cf584d02c783f1f3259de1d06421e"; 162 + sha256 = "16c289cc6df84d6c11346c63f06401ddb8213dda5fe6213adf595103006f0be3"; 163 163 } 164 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/fi/firefox-124.0b5.tar.bz2"; 164 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/fi/firefox-124.0b8.tar.bz2"; 165 165 locale = "fi"; 166 166 arch = "linux-x86_64"; 167 - sha256 = "5d3a3e5f1ffae23de87db266c00e8d2ed1f8a4bc4e304aa0ecc48fa46d6a5371"; 167 + sha256 = "9d28939dd4b140e519d8cf3dd2fb7b3d436a9dba1fe0ca3edd501efcb27fe815"; 168 168 } 169 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/fr/firefox-124.0b5.tar.bz2"; 169 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/fr/firefox-124.0b8.tar.bz2"; 170 170 locale = "fr"; 171 171 arch = "linux-x86_64"; 172 - sha256 = "8bc969e514fe1e5108682a04e196b83f4ef13145b9f64a1b151517fb8f452f28"; 172 + sha256 = "4fa0c1fce593428b52398574dfea25afc43634e501470eeb4b5377e56379c522"; 173 173 } 174 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/fur/firefox-124.0b5.tar.bz2"; 174 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/fur/firefox-124.0b8.tar.bz2"; 175 175 locale = "fur"; 176 176 arch = "linux-x86_64"; 177 - sha256 = "0e3b1d41f195253d04bf809d533412448f8e8bd78aee1052c0c4400618422801"; 177 + sha256 = "3efaed291928fc656ada9b5553465df933611f17e950bf1a33a93d5938ee308c"; 178 178 } 179 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/fy-NL/firefox-124.0b5.tar.bz2"; 179 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/fy-NL/firefox-124.0b8.tar.bz2"; 180 180 locale = "fy-NL"; 181 181 arch = "linux-x86_64"; 182 - sha256 = "ab9ebe35521aa3fb8d8685bbb0f21912435cd9cfa6c2d9e5e3d8a3287036d96f"; 182 + sha256 = "7c40996622bdcda21621feacded35a68da3da46401b5199594e9f602be7d9029"; 183 183 } 184 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/ga-IE/firefox-124.0b5.tar.bz2"; 184 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/ga-IE/firefox-124.0b8.tar.bz2"; 185 185 locale = "ga-IE"; 186 186 arch = "linux-x86_64"; 187 - sha256 = "0f1435551e0d3c35b6a83d56e6df3d053fd10df28c154b13b307b032f17124de"; 187 + sha256 = "3d3ca2cc0de55afafc208d3f2a5e8ea9a1090918497375480e00b9487aecaff5"; 188 188 } 189 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/gd/firefox-124.0b5.tar.bz2"; 189 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/gd/firefox-124.0b8.tar.bz2"; 190 190 locale = "gd"; 191 191 arch = "linux-x86_64"; 192 - sha256 = "a6eacbbd51c4b9effe1dce31fc51692d65ead167dcac1504c9005e4e006ca58a"; 192 + sha256 = "89a4df6e0be19cd486e3af3891bdeaae24b388eb107fcfb662e173952afb179b"; 193 193 } 194 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/gl/firefox-124.0b5.tar.bz2"; 194 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/gl/firefox-124.0b8.tar.bz2"; 195 195 locale = "gl"; 196 196 arch = "linux-x86_64"; 197 - sha256 = "1ec59dd6e003582ca6b1f41fc99ae6ae31a8e36405a8a0a9d0f07916ed6f1cdf"; 197 + sha256 = "1ee2cb1645e2dc1d7840ad3bc25a1b9850c613eee6638e518b4f6b1c85e72e5e"; 198 198 } 199 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/gn/firefox-124.0b5.tar.bz2"; 199 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/gn/firefox-124.0b8.tar.bz2"; 200 200 locale = "gn"; 201 201 arch = "linux-x86_64"; 202 - sha256 = "469f42a54fc30b9e16d1e2b077a6947f9abc4a2bb8538865d570fb6317a0a943"; 202 + sha256 = "53fc0c3e15c8caa460f45112dc6377f8e30fc4ea093b6add483772b4672ae35c"; 203 203 } 204 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/gu-IN/firefox-124.0b5.tar.bz2"; 204 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/gu-IN/firefox-124.0b8.tar.bz2"; 205 205 locale = "gu-IN"; 206 206 arch = "linux-x86_64"; 207 - sha256 = "85ec6fe399c612a6816e5b9825af670b90b3f6964cecf9dcdd1e998edae29cd3"; 207 + sha256 = "17ce5a7783094959e7293d4cb0980d0cecb4ffcf5047e51e32ae4acf0ab53024"; 208 208 } 209 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/he/firefox-124.0b5.tar.bz2"; 209 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/he/firefox-124.0b8.tar.bz2"; 210 210 locale = "he"; 211 211 arch = "linux-x86_64"; 212 - sha256 = "c7b9af532375a0af8fd31704984c0f47a047e5b1a9217023b4568cb9a74fa3e9"; 212 + sha256 = "e74b756e6b1405aa1ce63e62d2f1f4b0fc82cfa84591d1585335e6132f41ce03"; 213 213 } 214 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/hi-IN/firefox-124.0b5.tar.bz2"; 214 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/hi-IN/firefox-124.0b8.tar.bz2"; 215 215 locale = "hi-IN"; 216 216 arch = "linux-x86_64"; 217 - sha256 = "687111147ec150675e64314c4d81c90052f1b0c66bdd0a02d8ff539dc51deeec"; 217 + sha256 = "928e276ec78476ad1c2f6d2e4c78e378ba91f7b8fe15094f1fdb3b569bde38e5"; 218 218 } 219 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/hr/firefox-124.0b5.tar.bz2"; 219 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/hr/firefox-124.0b8.tar.bz2"; 220 220 locale = "hr"; 221 221 arch = "linux-x86_64"; 222 - sha256 = "18e2657ab0b1cc94e8643d5398401584de29d1e13542712b0359ef05b28cdaf2"; 222 + sha256 = "fbf7f1f034888366c47646f6471ff6e2b16b24653857bf29106db5c79cc0aa24"; 223 223 } 224 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/hsb/firefox-124.0b5.tar.bz2"; 224 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/hsb/firefox-124.0b8.tar.bz2"; 225 225 locale = "hsb"; 226 226 arch = "linux-x86_64"; 227 - sha256 = "e741820dc9066a89292d6b741726590d2a14bd1664ccd553fb458f44e6379157"; 227 + sha256 = "f0d43f298c10229e7445d9b6fc60d9d8082eed402a0b35ab0c7d576e8e6fe714"; 228 228 } 229 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/hu/firefox-124.0b5.tar.bz2"; 229 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/hu/firefox-124.0b8.tar.bz2"; 230 230 locale = "hu"; 231 231 arch = "linux-x86_64"; 232 - sha256 = "cbcce410d1ec563434ea44a26584ba655c26f6b41df8ecad97f41432e5f1f66d"; 232 + sha256 = "ca36f85425b69126844a50f6dfd53aa58bc5957869e182939c2c801b247d7275"; 233 233 } 234 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/hy-AM/firefox-124.0b5.tar.bz2"; 234 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/hy-AM/firefox-124.0b8.tar.bz2"; 235 235 locale = "hy-AM"; 236 236 arch = "linux-x86_64"; 237 - sha256 = "2ebd55a1f5bb40702e63488666d4399e9b1ce128d04baf2397f6d4746c66decc"; 237 + sha256 = "9dbb281f9e809c22c8247bc91f5b5f77a10ec1394d44b1a8f05b0f996781461f"; 238 238 } 239 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/ia/firefox-124.0b5.tar.bz2"; 239 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/ia/firefox-124.0b8.tar.bz2"; 240 240 locale = "ia"; 241 241 arch = "linux-x86_64"; 242 - sha256 = "bd3451b27fe2fe2f1ffaff7fbce982a88f8be73da57fa86be15f3a6aefb4e6bd"; 242 + sha256 = "3a894f67f061cba30fd1d4ad8ae6258a3603b9ff70437cd0d15dd07a0f78de08"; 243 243 } 244 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/id/firefox-124.0b5.tar.bz2"; 244 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/id/firefox-124.0b8.tar.bz2"; 245 245 locale = "id"; 246 246 arch = "linux-x86_64"; 247 - sha256 = "ca292956567115be6867630c5c446a1133f7a9f92c0b8530758527faf13fd742"; 247 + sha256 = "27adef08d52cd4a1c6030ec165a93206b179cbf71cc6531c0930c23d0d093815"; 248 248 } 249 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/is/firefox-124.0b5.tar.bz2"; 249 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/is/firefox-124.0b8.tar.bz2"; 250 250 locale = "is"; 251 251 arch = "linux-x86_64"; 252 - sha256 = "18261dd49c760210691c5f19e69df72c5db5b68334bccebc5b89e23d30feb97e"; 252 + sha256 = "5c00ac38e8bbbc12c2b82946978e5b1d9cf76e4497ac928f5cbf709248dfd965"; 253 253 } 254 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/it/firefox-124.0b5.tar.bz2"; 254 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/it/firefox-124.0b8.tar.bz2"; 255 255 locale = "it"; 256 256 arch = "linux-x86_64"; 257 - sha256 = "a9a9f81a9b2802d5c9e35a665a20cc1bd94e95a1e7d428d3c5c7e51f92fd5025"; 257 + sha256 = "bc618b604865437745a171a0ceeff8539ed29045008073ff300ce06ebe79953b"; 258 258 } 259 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/ja/firefox-124.0b5.tar.bz2"; 259 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/ja/firefox-124.0b8.tar.bz2"; 260 260 locale = "ja"; 261 261 arch = "linux-x86_64"; 262 - sha256 = "bf9cb77cb0fe54f5db5765ce921db21e6e5cb010a685e318af6c01399658be04"; 262 + sha256 = "0aa1160b46e69921be37d99e95793ba3993695e78ca2a133dcb88d0e634ff9cf"; 263 263 } 264 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/ka/firefox-124.0b5.tar.bz2"; 264 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/ka/firefox-124.0b8.tar.bz2"; 265 265 locale = "ka"; 266 266 arch = "linux-x86_64"; 267 - sha256 = "5d9d9147731060c7a4c6a3cb11778b8373ff05e31468b2a3b139627a851d3db1"; 267 + sha256 = "3ba54e3f9aaf00b7063008da2ce83390591688e81ed012c88f7a8d5ae3a826bf"; 268 268 } 269 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/kab/firefox-124.0b5.tar.bz2"; 269 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/kab/firefox-124.0b8.tar.bz2"; 270 270 locale = "kab"; 271 271 arch = "linux-x86_64"; 272 - sha256 = "7ed1d9bec42b2a96531483c584f251a47894cde8b63fe6b2e916172309ef00b7"; 272 + sha256 = "97eebeb472796278bb8b0e7253f7afc2953377904f4e58e1866381311f3e1a90"; 273 273 } 274 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/kk/firefox-124.0b5.tar.bz2"; 274 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/kk/firefox-124.0b8.tar.bz2"; 275 275 locale = "kk"; 276 276 arch = "linux-x86_64"; 277 - sha256 = "3566f38898ba1e20e07063b330bcd629013ce428cf27d64f8b02e2e60e425fca"; 277 + sha256 = "bbc0cff5ea750c9d5597935d6b6ff9724304fc44041bd2788f54c5e62d58126c"; 278 278 } 279 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/km/firefox-124.0b5.tar.bz2"; 279 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/km/firefox-124.0b8.tar.bz2"; 280 280 locale = "km"; 281 281 arch = "linux-x86_64"; 282 - sha256 = "f3badaef42cb4d56f72913377d02ca28bf6e60d1637b807d1d5c9eea18db687a"; 282 + sha256 = "1aa3e271596a41773b09edfbb2c3c2efa79bca942eefb43bafbdbb095a40a7f6"; 283 283 } 284 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/kn/firefox-124.0b5.tar.bz2"; 284 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/kn/firefox-124.0b8.tar.bz2"; 285 285 locale = "kn"; 286 286 arch = "linux-x86_64"; 287 - sha256 = "9f72af81ae057f491bb6d550790b10a7b98acdb1f39a9daded9fb62f06f531e7"; 287 + sha256 = "37f0d74e645b187f36d2adf51d54e3053ce12489d9be88572d6c9dd66b95a8e9"; 288 288 } 289 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/ko/firefox-124.0b5.tar.bz2"; 289 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/ko/firefox-124.0b8.tar.bz2"; 290 290 locale = "ko"; 291 291 arch = "linux-x86_64"; 292 - sha256 = "85eb0c3787fc9c32f050cfdb735486769d5ec06c2162931c0a68a6c40d1caf54"; 292 + sha256 = "970157e4c6562744716324dee490c0a9e2b1ec80013e613dcd31c38646b06591"; 293 293 } 294 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/lij/firefox-124.0b5.tar.bz2"; 294 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/lij/firefox-124.0b8.tar.bz2"; 295 295 locale = "lij"; 296 296 arch = "linux-x86_64"; 297 - sha256 = "79e926bfed5f351f331142467740acee235389fd42d64d7d6f26b3fd7b2284b5"; 297 + sha256 = "b8cfb9658a6553fa5630219eabe865f44b646017383d4996d0e0b28a89bb70b3"; 298 298 } 299 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/lt/firefox-124.0b5.tar.bz2"; 299 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/lt/firefox-124.0b8.tar.bz2"; 300 300 locale = "lt"; 301 301 arch = "linux-x86_64"; 302 - sha256 = "095526aca901b9a727a83b72568db9f98341d00c84f787b6cfe132af463ea570"; 302 + sha256 = "aa3197cec919cc8ee124273e258d66e2d731dda388ab5fead650e1f75efab140"; 303 303 } 304 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/lv/firefox-124.0b5.tar.bz2"; 304 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/lv/firefox-124.0b8.tar.bz2"; 305 305 locale = "lv"; 306 306 arch = "linux-x86_64"; 307 - sha256 = "00de227c3224da10b45ee7832d559faaa025d8a4ca0cfb554e28a93a1d89dbb3"; 307 + sha256 = "fc8bd3ea5641ee5f40784ff58265d1d4e9f9fbb57370c94d3bfaf16c8ca419f7"; 308 308 } 309 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/mk/firefox-124.0b5.tar.bz2"; 309 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/mk/firefox-124.0b8.tar.bz2"; 310 310 locale = "mk"; 311 311 arch = "linux-x86_64"; 312 - sha256 = "5975da0df9e6b2e12945d6e1d28a15b31764711481e9477cf71d464c64415c61"; 312 + sha256 = "3c7842697ece438bfa6f1ffa411b9f7a207b855be590e000f36bf0fbdcf7d0fc"; 313 313 } 314 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/mr/firefox-124.0b5.tar.bz2"; 314 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/mr/firefox-124.0b8.tar.bz2"; 315 315 locale = "mr"; 316 316 arch = "linux-x86_64"; 317 - sha256 = "7164e8fab3e7a47f3da722bb7b91afc3dcbd895c0c06082ae0ed658bd56c1a29"; 317 + sha256 = "c0f7095e04fdf54dd45702cd77661b9589c0179cd58af049dd9668f375bfb4db"; 318 318 } 319 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/ms/firefox-124.0b5.tar.bz2"; 319 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/ms/firefox-124.0b8.tar.bz2"; 320 320 locale = "ms"; 321 321 arch = "linux-x86_64"; 322 - sha256 = "a8850f422d6ee664a6c35e364bdde11cb6c057447354978a0ba16ba69366f885"; 322 + sha256 = "cdd283a160113ac0111b4474ce938deb4ac85dd6bd2b56a15c9452517710435b"; 323 323 } 324 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/my/firefox-124.0b5.tar.bz2"; 324 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/my/firefox-124.0b8.tar.bz2"; 325 325 locale = "my"; 326 326 arch = "linux-x86_64"; 327 - sha256 = "bbb2dd78a54472b759fe3cc55658bdf5aa7dc020b6c108785fbee037aa4d60b2"; 327 + sha256 = "9acfcf0899f950a61b6897f4c4720b04ed75424f584164a88d0fd8b14b14853a"; 328 328 } 329 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/nb-NO/firefox-124.0b5.tar.bz2"; 329 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/nb-NO/firefox-124.0b8.tar.bz2"; 330 330 locale = "nb-NO"; 331 331 arch = "linux-x86_64"; 332 - sha256 = "b938a616d1d797663022891234875c8b11d08849420b2035841e2f9923ee98f7"; 332 + sha256 = "e1bd46e35d445814f6f84994780975827098975a5f4c42a823cfdee7f2666613"; 333 333 } 334 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/ne-NP/firefox-124.0b5.tar.bz2"; 334 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/ne-NP/firefox-124.0b8.tar.bz2"; 335 335 locale = "ne-NP"; 336 336 arch = "linux-x86_64"; 337 - sha256 = "059c02e5ac4436d5b2335936986130bf798178950c34bf0761772eddbc0b290d"; 337 + sha256 = "408e293ab25cb7e08e6d75284856b780a3ba86921ee6555599e5783a386bb187"; 338 338 } 339 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/nl/firefox-124.0b5.tar.bz2"; 339 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/nl/firefox-124.0b8.tar.bz2"; 340 340 locale = "nl"; 341 341 arch = "linux-x86_64"; 342 - sha256 = "5f4aca4a2a5b6ef331bb8cdd011663e3b07197ec7a9acfad0ab72001d833a8d9"; 342 + sha256 = "90ff9d8166b37faf8ea99be184dfb5c0cb3cf4f1fb50c66880dda85aa2372ded"; 343 343 } 344 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/nn-NO/firefox-124.0b5.tar.bz2"; 344 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/nn-NO/firefox-124.0b8.tar.bz2"; 345 345 locale = "nn-NO"; 346 346 arch = "linux-x86_64"; 347 - sha256 = "71f055e95e1f20ef687f0399c7c1c6130af4a156055e2330d6b8e41fb82f384d"; 347 + sha256 = "790ec50757bf6b96437019eefc2082e21b40b50dbbe8626a508a7affd2882b20"; 348 348 } 349 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/oc/firefox-124.0b5.tar.bz2"; 349 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/oc/firefox-124.0b8.tar.bz2"; 350 350 locale = "oc"; 351 351 arch = "linux-x86_64"; 352 - sha256 = "b9e23ebc113bce19c0e792f544c2b83354a4c95982d541e86d5a140877d3ffdb"; 352 + sha256 = "7d9335f226f72b2f4cea0d05c9a473de8183fb0095e3270f937018587d1743e1"; 353 353 } 354 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/pa-IN/firefox-124.0b5.tar.bz2"; 354 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/pa-IN/firefox-124.0b8.tar.bz2"; 355 355 locale = "pa-IN"; 356 356 arch = "linux-x86_64"; 357 - sha256 = "a10f44ae3f4fe85aa8885e8ff9c8b6b412e2922760cecd7cf92fcd623606512e"; 357 + sha256 = "7131a9c7ede8e091a237a9681ee27d63d951ca0c2ab9c3c36b54fc3fe265d746"; 358 358 } 359 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/pl/firefox-124.0b5.tar.bz2"; 359 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/pl/firefox-124.0b8.tar.bz2"; 360 360 locale = "pl"; 361 361 arch = "linux-x86_64"; 362 - sha256 = "8cb1458f0df89a59aef33d6c35ffc0d267f3ed0fe09ba3c9d4bb4e73c2594c65"; 362 + sha256 = "af5ee6966b6d86a14265813adae3a197aa680c02ffacbab0ff6afc94b356d590"; 363 363 } 364 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/pt-BR/firefox-124.0b5.tar.bz2"; 364 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/pt-BR/firefox-124.0b8.tar.bz2"; 365 365 locale = "pt-BR"; 366 366 arch = "linux-x86_64"; 367 - sha256 = "3d4d6fd8f2c79b7953ae3fff5d8a9a3e6b0b90c700205640648db351fcd9ade9"; 367 + sha256 = "7090d17fac42690c2838ea84ce3bcb8a08a0fc9396a057294a6629ff2ebfb6bf"; 368 368 } 369 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/pt-PT/firefox-124.0b5.tar.bz2"; 369 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/pt-PT/firefox-124.0b8.tar.bz2"; 370 370 locale = "pt-PT"; 371 371 arch = "linux-x86_64"; 372 - sha256 = "ea42d3b23a30f7052b4ffc019ba6ffa082d5d685ede24654908ab03c8c8db318"; 372 + sha256 = "da8468391bd00b5ee03e46a744b45ca626496b1af9420c2705d5bc11c8266b12"; 373 373 } 374 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/rm/firefox-124.0b5.tar.bz2"; 374 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/rm/firefox-124.0b8.tar.bz2"; 375 375 locale = "rm"; 376 376 arch = "linux-x86_64"; 377 - sha256 = "50094bff240efd4c49d4247827a50a85ccb8cf025217b486d85fdf35656eea83"; 377 + sha256 = "c4d9327c336cf4200cf909d6cb1a673c5c77badbed3a277a94964efccdff290d"; 378 378 } 379 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/ro/firefox-124.0b5.tar.bz2"; 379 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/ro/firefox-124.0b8.tar.bz2"; 380 380 locale = "ro"; 381 381 arch = "linux-x86_64"; 382 - sha256 = "707b878228df1ca1e9f05570a7633575dda66bfb2be2e1b2a92194e101e0c124"; 382 + sha256 = "9d49135c68be87dd3c3555358ce90fcb5d67d5c326eba024d3bef4d9bea66c64"; 383 383 } 384 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/ru/firefox-124.0b5.tar.bz2"; 384 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/ru/firefox-124.0b8.tar.bz2"; 385 385 locale = "ru"; 386 386 arch = "linux-x86_64"; 387 - sha256 = "de342f890331beaaf1d9f2809baf454940edfa7a5cd9364b4ccf884ca4cf5be0"; 387 + sha256 = "717c98a87b4fdb5b1b4f89a37fdd9427f3047573781046dd3697c6cf9b9360a8"; 388 388 } 389 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/sat/firefox-124.0b5.tar.bz2"; 389 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/sat/firefox-124.0b8.tar.bz2"; 390 390 locale = "sat"; 391 391 arch = "linux-x86_64"; 392 - sha256 = "52c1c9476158d2d497faf8abc9e3beb883abd951214f04daf8696cac84806dc7"; 392 + sha256 = "9884d3194ab9635d8d5fb0ce6f1e1b4dff7d396916f43285ecefe5324c1bcad5"; 393 393 } 394 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/sc/firefox-124.0b5.tar.bz2"; 394 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/sc/firefox-124.0b8.tar.bz2"; 395 395 locale = "sc"; 396 396 arch = "linux-x86_64"; 397 - sha256 = "a4bf499bd0eb3e4b084b63725f2d1cacf51992218429d593e68564ed3400ede5"; 397 + sha256 = "00afb58e3e6fd10f52691fc69378c93037c8f3812f38ba25408a44ca978d1417"; 398 398 } 399 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/sco/firefox-124.0b5.tar.bz2"; 399 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/sco/firefox-124.0b8.tar.bz2"; 400 400 locale = "sco"; 401 401 arch = "linux-x86_64"; 402 - sha256 = "210e023054d80f11043861bd5c866d607ab275ee2bcdbc26695d63c3a6dbcfb8"; 402 + sha256 = "3dda5b6f9e6bc2d3b10c47f12fa0673bd065b3f392783d6c0fe291fcfed6d672"; 403 403 } 404 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/si/firefox-124.0b5.tar.bz2"; 404 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/si/firefox-124.0b8.tar.bz2"; 405 405 locale = "si"; 406 406 arch = "linux-x86_64"; 407 - sha256 = "92734b3ede3cad670987a741504c88c967bffbad342c6019342f62344a967e6f"; 407 + sha256 = "f476b7179fed6803d9bc3075ae00689880c24ec05a762e0b43fceef40d8e10d8"; 408 408 } 409 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/sk/firefox-124.0b5.tar.bz2"; 409 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/sk/firefox-124.0b8.tar.bz2"; 410 410 locale = "sk"; 411 411 arch = "linux-x86_64"; 412 - sha256 = "23170691d560359be0b92e3f43d468bbdae3df8b92a3fa3e56289dbe4b79a0d4"; 412 + sha256 = "d19816bb7b750dfb03ed88d47075d0c912af3e1c2e7d067649ee47a2af0ef67a"; 413 413 } 414 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/sl/firefox-124.0b5.tar.bz2"; 414 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/sl/firefox-124.0b8.tar.bz2"; 415 415 locale = "sl"; 416 416 arch = "linux-x86_64"; 417 - sha256 = "99b6aff6d04cde61fe4341c332a047c8d72ed47891b8d7b5b5f3300cfa24adea"; 417 + sha256 = "aa83d9502cdfb85037578ac6c5b6bc93f4fa50bb30cc0926de97011c8c618082"; 418 418 } 419 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/son/firefox-124.0b5.tar.bz2"; 419 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/son/firefox-124.0b8.tar.bz2"; 420 420 locale = "son"; 421 421 arch = "linux-x86_64"; 422 - sha256 = "7cfb51266358c6ccefd8be658074652be522f9dd08afa4fbd66c66ea6e1c301c"; 422 + sha256 = "64027d1b99bfe100e9bad88e1b7e4b568b82f804be5e8efa855bcec5dca433d5"; 423 423 } 424 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/sq/firefox-124.0b5.tar.bz2"; 424 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/sq/firefox-124.0b8.tar.bz2"; 425 425 locale = "sq"; 426 426 arch = "linux-x86_64"; 427 - sha256 = "36c2549c2866c02fe7439fb0aab22472a1fe08499ef903c4d100d6fc5a5382ae"; 427 + sha256 = "b8fb2c0e743af3824ab5cd1826eaa9157c4b36c1cd676785bdc4b9dff0cb5403"; 428 428 } 429 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/sr/firefox-124.0b5.tar.bz2"; 429 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/sr/firefox-124.0b8.tar.bz2"; 430 430 locale = "sr"; 431 431 arch = "linux-x86_64"; 432 - sha256 = "72d68fc9b2c27208ee82dc0b12a36c2c830dc0dd8371002f65e83d2fa9bfc580"; 432 + sha256 = "936d63bb50e68eae164386b1a759f12972e49fa00501041aeea5fcdea25c5ffc"; 433 433 } 434 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/sv-SE/firefox-124.0b5.tar.bz2"; 434 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/sv-SE/firefox-124.0b8.tar.bz2"; 435 435 locale = "sv-SE"; 436 436 arch = "linux-x86_64"; 437 - sha256 = "e404bfbec892bad57b8c4214476ab24154bb364f4bf417711e108b924cb1a0ef"; 437 + sha256 = "e387a557a1f10e26aa80668db226f8c1f4eb56a80577bf397b0034ce9034b6a7"; 438 438 } 439 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/szl/firefox-124.0b5.tar.bz2"; 439 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/szl/firefox-124.0b8.tar.bz2"; 440 440 locale = "szl"; 441 441 arch = "linux-x86_64"; 442 - sha256 = "396e3a91b623084fb01e5cfeb54b31265f64b2d40220c825013358ce6e91c086"; 442 + sha256 = "c418fdcfea926e9b7ea8bf046504efe4afd20a2a89d3d64a6d8c72b6052ef38a"; 443 443 } 444 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/ta/firefox-124.0b5.tar.bz2"; 444 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/ta/firefox-124.0b8.tar.bz2"; 445 445 locale = "ta"; 446 446 arch = "linux-x86_64"; 447 - sha256 = "3aee12fd06ed6e297c51a7f896ec6c2b6c9d9976963a3b7be38e15ee2f417363"; 447 + sha256 = "1fb9a209749419dcb3ba38c28406f468bb87f4fe353b2783b486bede3ca417b5"; 448 448 } 449 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/te/firefox-124.0b5.tar.bz2"; 449 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/te/firefox-124.0b8.tar.bz2"; 450 450 locale = "te"; 451 451 arch = "linux-x86_64"; 452 - sha256 = "879b11760080f552185afdfa7d85e97ec3de1582325c365db8e706a2479d952e"; 452 + sha256 = "35aa12ba711241352aaf0a72f4cd523ed75cb2a08d2dc705bb2f663a8bfe7bd5"; 453 453 } 454 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/tg/firefox-124.0b5.tar.bz2"; 454 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/tg/firefox-124.0b8.tar.bz2"; 455 455 locale = "tg"; 456 456 arch = "linux-x86_64"; 457 - sha256 = "142fa013b4c9c25cb3cefaa0c505867abc9f6a740436596c8c71eff2b2c89b0c"; 457 + sha256 = "00f447b784dfd4f42687a4e7abfecd0c2d27b03bf66b3c5388a6908f383cb6f7"; 458 458 } 459 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/th/firefox-124.0b5.tar.bz2"; 459 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/th/firefox-124.0b8.tar.bz2"; 460 460 locale = "th"; 461 461 arch = "linux-x86_64"; 462 - sha256 = "9b6433258f1c78b91ba027a185a393683679087d6a718bfa72dff6b29230937a"; 462 + sha256 = "a770af7bfe27c7d7cdebcb1200fdb27919f82b559e6e7f4eb5e1aa6ea2ccf434"; 463 463 } 464 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/tl/firefox-124.0b5.tar.bz2"; 464 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/tl/firefox-124.0b8.tar.bz2"; 465 465 locale = "tl"; 466 466 arch = "linux-x86_64"; 467 - sha256 = "4995d72b2c6f7c36df2bec5d7d6d43db2ab486a4666c8c494c3980ab05b28f58"; 467 + sha256 = "115ac23a996aafaac14193e441d2bee9e3b52909961ffd62d70e68c1a9573690"; 468 468 } 469 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/tr/firefox-124.0b5.tar.bz2"; 469 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/tr/firefox-124.0b8.tar.bz2"; 470 470 locale = "tr"; 471 471 arch = "linux-x86_64"; 472 - sha256 = "d69e754cd73a7160ab165cc2e9ac9152c7ce21c1f1c80b770505055dc12758b8"; 472 + sha256 = "dcadfb282a5e3f084be99e448cd0aac00c0b5354aa4883aeb964a394f33b9a7d"; 473 473 } 474 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/trs/firefox-124.0b5.tar.bz2"; 474 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/trs/firefox-124.0b8.tar.bz2"; 475 475 locale = "trs"; 476 476 arch = "linux-x86_64"; 477 - sha256 = "e7b548bcccb1fb1dd667db515b3de7b434d8ec2f6b240bfb9d2abb546fd64352"; 477 + sha256 = "19a62eeff342b238c9809f1d4b40294747e7468fd4f91a8d58388074935f409a"; 478 478 } 479 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/uk/firefox-124.0b5.tar.bz2"; 479 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/uk/firefox-124.0b8.tar.bz2"; 480 480 locale = "uk"; 481 481 arch = "linux-x86_64"; 482 - sha256 = "6b8e56538a29bd538312fda7e423e151dbf7f9818583cc855c9c6532f05012e7"; 482 + sha256 = "dc415f1cd5a41f03dac20cfc4cfbdf4d26c7ddd4be2ca4b04d51e01bf5e59306"; 483 483 } 484 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/ur/firefox-124.0b5.tar.bz2"; 484 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/ur/firefox-124.0b8.tar.bz2"; 485 485 locale = "ur"; 486 486 arch = "linux-x86_64"; 487 - sha256 = "94f69b4181bfa72981a844f133fdbd6e9ca7e82688c7c75a0ceb8a1a3b3b4962"; 487 + sha256 = "dafa40eaf630b41fc724b07f768eee71cdd07b5a30a59de495ebf39103d9c9de"; 488 488 } 489 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/uz/firefox-124.0b5.tar.bz2"; 489 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/uz/firefox-124.0b8.tar.bz2"; 490 490 locale = "uz"; 491 491 arch = "linux-x86_64"; 492 - sha256 = "2c110757681fa6bbb568cb4a73cec0dda794215a78c0bc497327aa69c558e56d"; 492 + sha256 = "1c2bb1452ab82b39e9b840191c4a40462fba2e13dbc9615b1fdc34ae0764deee"; 493 493 } 494 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/vi/firefox-124.0b5.tar.bz2"; 494 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/vi/firefox-124.0b8.tar.bz2"; 495 495 locale = "vi"; 496 496 arch = "linux-x86_64"; 497 - sha256 = "a737e018da186db9d368d9db84f96874b66d211de7dfe6f6c96c51d71296418c"; 497 + sha256 = "2263cc8f570647b8a824a03dd7faeb58b8aa382a329d084666128e47245700af"; 498 498 } 499 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/xh/firefox-124.0b5.tar.bz2"; 499 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/xh/firefox-124.0b8.tar.bz2"; 500 500 locale = "xh"; 501 501 arch = "linux-x86_64"; 502 - sha256 = "ca7c53e1ad88430cfa59a8f818ced58ab211ea50da640202692857a86487a4b9"; 502 + sha256 = "a77eb182f8025691aa3fd977c73ea96219c54be81d49f7552e09ef3c3b21bb40"; 503 503 } 504 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/zh-CN/firefox-124.0b5.tar.bz2"; 504 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/zh-CN/firefox-124.0b8.tar.bz2"; 505 505 locale = "zh-CN"; 506 506 arch = "linux-x86_64"; 507 - sha256 = "7f221cb142947db55f1bcd8bfc3951372ee99319f2cffbe92ac6e2c95d1ff30f"; 507 + sha256 = "80335d3dd9c33099116697c51e2fc695c56d6cf0e6b42db45e248f6df92c1ba9"; 508 508 } 509 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/zh-TW/firefox-124.0b5.tar.bz2"; 509 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-x86_64/zh-TW/firefox-124.0b8.tar.bz2"; 510 510 locale = "zh-TW"; 511 511 arch = "linux-x86_64"; 512 - sha256 = "25c10e07d9257649253d8acdbf17a8e7f743c7365cebec1d33a4324e57730463"; 512 + sha256 = "591be7b8a030140521f02712a23770a93f8d9da62603eefb3644b2a3ad0d21c4"; 513 513 } 514 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/ach/firefox-124.0b5.tar.bz2"; 514 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/ach/firefox-124.0b8.tar.bz2"; 515 515 locale = "ach"; 516 516 arch = "linux-i686"; 517 - sha256 = "6410b114a2c5daf887ac9a38acb844b711bba3f3ea91019711a72bc92a9e6fb8"; 517 + sha256 = "aa76760edf5c2693d1ec694ea10f7ae07b4e09e5aba0b58e106d0ede15e6e35b"; 518 518 } 519 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/af/firefox-124.0b5.tar.bz2"; 519 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/af/firefox-124.0b8.tar.bz2"; 520 520 locale = "af"; 521 521 arch = "linux-i686"; 522 - sha256 = "b36bc55464796fb51652eab114df0684d9ff6a24eed76e94d5646f34b62ce801"; 522 + sha256 = "e2ba6bad6f07c1923212dbaa47a3c58c379a45e9ff7c9104291ba8b3fcfa1a04"; 523 523 } 524 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/an/firefox-124.0b5.tar.bz2"; 524 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/an/firefox-124.0b8.tar.bz2"; 525 525 locale = "an"; 526 526 arch = "linux-i686"; 527 - sha256 = "9943120acfe5fc1f3c002bad9e594a53b3b0eb94873de3853d8f875faff79280"; 527 + sha256 = "ca164a264c83e882221fc1b0fab46fa56520ca35193c295950c11c16f660b6eb"; 528 528 } 529 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/ar/firefox-124.0b5.tar.bz2"; 529 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/ar/firefox-124.0b8.tar.bz2"; 530 530 locale = "ar"; 531 531 arch = "linux-i686"; 532 - sha256 = "753de19d7c7b6035a72829f99b77577857b0aa4da196a7925d0c8123679c4755"; 532 + sha256 = "d179a74ab02ccb30cc6c00e610b8689e512a62eed45f1aef75468b566aec063c"; 533 533 } 534 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/ast/firefox-124.0b5.tar.bz2"; 534 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/ast/firefox-124.0b8.tar.bz2"; 535 535 locale = "ast"; 536 536 arch = "linux-i686"; 537 - sha256 = "c804f9873eb9e9d03ad0814c541656a8391af36183f98047bb739e9d32751479"; 537 + sha256 = "2399fe0d6d2c8de1d6f49a4099e851a566134f96cb445894c6df0f9e278b1c60"; 538 538 } 539 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/az/firefox-124.0b5.tar.bz2"; 539 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/az/firefox-124.0b8.tar.bz2"; 540 540 locale = "az"; 541 541 arch = "linux-i686"; 542 - sha256 = "b0039d1c965c957f99b262611d79c751c34b0e65710e336fa258d4621f5bbcb1"; 542 + sha256 = "630ebf57df7056d3aada0fd46a9528eb42657e51fee2d7e982b751a417269ab1"; 543 543 } 544 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/be/firefox-124.0b5.tar.bz2"; 544 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/be/firefox-124.0b8.tar.bz2"; 545 545 locale = "be"; 546 546 arch = "linux-i686"; 547 - sha256 = "648d859b8b19c5b5aad1260436752537534008c668b3e6fbfd99760fe0159a75"; 547 + sha256 = "fff4c9023b4ce2f30603c73012e62689c93fa430850c255145d3fe897c43eaaf"; 548 548 } 549 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/bg/firefox-124.0b5.tar.bz2"; 549 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/bg/firefox-124.0b8.tar.bz2"; 550 550 locale = "bg"; 551 551 arch = "linux-i686"; 552 - sha256 = "1df511632cef19795f1f1dbd4d9162654f3ad7fb6f82f8f0042f31692decb3e0"; 552 + sha256 = "bb43272a9e759eb212daaeb275136d1b68e5d991e27d25bf082620d209f797d2"; 553 553 } 554 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/bn/firefox-124.0b5.tar.bz2"; 554 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/bn/firefox-124.0b8.tar.bz2"; 555 555 locale = "bn"; 556 556 arch = "linux-i686"; 557 - sha256 = "12eebe199a907506e279bb13ecbca0648acb610370e55b45337f21c62b779fbd"; 557 + sha256 = "bf57088004b1e0dc8ad4cede525a02926d4f371edb7d4ad8d76c053d727bb851"; 558 558 } 559 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/br/firefox-124.0b5.tar.bz2"; 559 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/br/firefox-124.0b8.tar.bz2"; 560 560 locale = "br"; 561 561 arch = "linux-i686"; 562 - sha256 = "4fe652739af9415f50117112fae884cc8965092772c6394916f593144e232096"; 562 + sha256 = "18abfec06bc1f23a9a9a182aa2185f16ad3e2f82a7b334077c66af1f9300e26e"; 563 563 } 564 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/bs/firefox-124.0b5.tar.bz2"; 564 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/bs/firefox-124.0b8.tar.bz2"; 565 565 locale = "bs"; 566 566 arch = "linux-i686"; 567 - sha256 = "e1c53f84cbdcb0e54885c95bfabcea4e3af385ef2aa7be97e90ff900ba90225e"; 567 + sha256 = "dae93ad920d4702483cb9206582aa2752f3d8e174ec49b5ce06e44d6de846a1c"; 568 568 } 569 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/ca-valencia/firefox-124.0b5.tar.bz2"; 569 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/ca-valencia/firefox-124.0b8.tar.bz2"; 570 570 locale = "ca-valencia"; 571 571 arch = "linux-i686"; 572 - sha256 = "cdae0f83ab760f8799f1059d9b0bb7ad9f9c30366ac0bacb7f7666baaf87dacb"; 572 + sha256 = "3cce7fc4501e374c1d834391ce2055a9c221924da46dcbfd4c7bc44adb046148"; 573 573 } 574 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/ca/firefox-124.0b5.tar.bz2"; 574 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/ca/firefox-124.0b8.tar.bz2"; 575 575 locale = "ca"; 576 576 arch = "linux-i686"; 577 - sha256 = "f604aeb476b0c244dc0d8da499f2da74d0637320794d8b74c8a1ca05839fe6f3"; 577 + sha256 = "dfc7e60767c592746f85771f965e0cef5497e8ecfe9e736d4defd44266a446b6"; 578 578 } 579 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/cak/firefox-124.0b5.tar.bz2"; 579 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/cak/firefox-124.0b8.tar.bz2"; 580 580 locale = "cak"; 581 581 arch = "linux-i686"; 582 - sha256 = "9f13a7c93fc8aebee8b819db09dd8a9275c3c2b87771e1f784e6332ac00384d2"; 582 + sha256 = "c1d9a227cc7ec9ae4fe3c16680dd6267979c1ecc9ef405a43e2a618a1b3df0b8"; 583 583 } 584 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/cs/firefox-124.0b5.tar.bz2"; 584 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/cs/firefox-124.0b8.tar.bz2"; 585 585 locale = "cs"; 586 586 arch = "linux-i686"; 587 - sha256 = "c2b40d89374e1b25dd304795a490d4eb8b6a4d55a5feba8d1a8fd5be19842e5a"; 587 + sha256 = "2142c9908664c1fd07e8eeee30fb87083eec9bc01e17c67d1a6cd381f498f7bf"; 588 588 } 589 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/cy/firefox-124.0b5.tar.bz2"; 589 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/cy/firefox-124.0b8.tar.bz2"; 590 590 locale = "cy"; 591 591 arch = "linux-i686"; 592 - sha256 = "4f36c761acebf9799ddad960d08c6af0918de0c76b3138475b4f41a3678a8718"; 592 + sha256 = "f844948dde2a0f6c8117e460ad665cff5c8c65426bb7fe5df1d8a6311d729515"; 593 593 } 594 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/da/firefox-124.0b5.tar.bz2"; 594 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/da/firefox-124.0b8.tar.bz2"; 595 595 locale = "da"; 596 596 arch = "linux-i686"; 597 - sha256 = "05855ff0a054dccca46f05dbd024858f2cb6b79597a3aad8d1002ff56965be05"; 597 + sha256 = "221f2ff0075634f9068e2354f998c4b7728d85690dc3597eddc2bbe1af9a71d7"; 598 598 } 599 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/de/firefox-124.0b5.tar.bz2"; 599 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/de/firefox-124.0b8.tar.bz2"; 600 600 locale = "de"; 601 601 arch = "linux-i686"; 602 - sha256 = "23b266875bbbfa3b71ef3fee60c57ca44a2c27328377c667102642366ff9a290"; 602 + sha256 = "0c351ab75f97337fdb908e26ffcb03a94f76fe8ce540427fa3d2115d8718f1d8"; 603 603 } 604 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/dsb/firefox-124.0b5.tar.bz2"; 604 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/dsb/firefox-124.0b8.tar.bz2"; 605 605 locale = "dsb"; 606 606 arch = "linux-i686"; 607 - sha256 = "80c14d7befeda8010c510f561b0fb3c7b5ea372bcb5e125c1d7c3f8102a41f2d"; 607 + sha256 = "17eccf8cf872a54ede61d94f4a06aa263c124ae02f6f71034ac33a9f635357e9"; 608 608 } 609 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/el/firefox-124.0b5.tar.bz2"; 609 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/el/firefox-124.0b8.tar.bz2"; 610 610 locale = "el"; 611 611 arch = "linux-i686"; 612 - sha256 = "ad9614d1917167408d615a733793f8c3205b8e139207ffacd2db86b6a31e86b0"; 612 + sha256 = "83f1adb26f9087922db447bb24f75c473bbf58c4747a98ee1355a62155808334"; 613 613 } 614 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/en-CA/firefox-124.0b5.tar.bz2"; 614 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/en-CA/firefox-124.0b8.tar.bz2"; 615 615 locale = "en-CA"; 616 616 arch = "linux-i686"; 617 - sha256 = "3eb6464f3a221bc467d745eea949cca12252cab79ffa14f632ed2a9fe146b685"; 617 + sha256 = "85e2b7dc78a54ecf5dd9e7338077e9319a65d6b06b99ac546af7615954950046"; 618 618 } 619 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/en-GB/firefox-124.0b5.tar.bz2"; 619 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/en-GB/firefox-124.0b8.tar.bz2"; 620 620 locale = "en-GB"; 621 621 arch = "linux-i686"; 622 - sha256 = "e3fc3a80db2f9512a19e812b5187afe409331a9f94e27a10a1b975821235db94"; 622 + sha256 = "a2d8b8f30c94ee77049e4f673fa7f06d3f0c70db9a809bdaae5bd574f01f3cbf"; 623 623 } 624 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/en-US/firefox-124.0b5.tar.bz2"; 624 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/en-US/firefox-124.0b8.tar.bz2"; 625 625 locale = "en-US"; 626 626 arch = "linux-i686"; 627 - sha256 = "e3a0ab34e853d7be3372fb02ebd926eaa1bb73198fb2ad51c166b10804659073"; 627 + sha256 = "518abc1f7ae35072ccef6446a02c4314c1755b11d6cec0624ec03259af3e4ac9"; 628 628 } 629 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/eo/firefox-124.0b5.tar.bz2"; 629 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/eo/firefox-124.0b8.tar.bz2"; 630 630 locale = "eo"; 631 631 arch = "linux-i686"; 632 - sha256 = "74a3a78037ed2c808a3d646444339e719bc898c527bbbd4a7389f91aa1a843db"; 632 + sha256 = "5532249bc5ee61e1943369c7e3436483152a804095451c7bf2633df7286ca389"; 633 633 } 634 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/es-AR/firefox-124.0b5.tar.bz2"; 634 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/es-AR/firefox-124.0b8.tar.bz2"; 635 635 locale = "es-AR"; 636 636 arch = "linux-i686"; 637 - sha256 = "5c19c4f750be69c7ece72ac5897f138942cbaadba03cbc17a9cb2e91168e9181"; 637 + sha256 = "f116793316f68401258fe6dbc60cb770ef2a1d96df6f1a9adca865a3b0d590e6"; 638 638 } 639 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/es-CL/firefox-124.0b5.tar.bz2"; 639 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/es-CL/firefox-124.0b8.tar.bz2"; 640 640 locale = "es-CL"; 641 641 arch = "linux-i686"; 642 - sha256 = "63684f89ec146eb2fe41b7a6e3931695cacf3db223b93b93c7bccdbf518a081d"; 642 + sha256 = "b163a8125e3eb6a13a63216cabaebd94efd7f6ed398e9c08b221dcab4e8d0bfb"; 643 643 } 644 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/es-ES/firefox-124.0b5.tar.bz2"; 644 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/es-ES/firefox-124.0b8.tar.bz2"; 645 645 locale = "es-ES"; 646 646 arch = "linux-i686"; 647 - sha256 = "90cfdd1d7bd9a9bd7c3ea8725deeb6343e0d0197725efc5b1ee5b7b3b0c3dea4"; 647 + sha256 = "8aaa9ef3b71276a3bee29f5deb4b0526ca47a8fcb6769987d074684f04eee86e"; 648 648 } 649 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/es-MX/firefox-124.0b5.tar.bz2"; 649 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/es-MX/firefox-124.0b8.tar.bz2"; 650 650 locale = "es-MX"; 651 651 arch = "linux-i686"; 652 - sha256 = "e76ba7f2f5616113b43a4d3dd969cc017cf31d236d8e2a839d6cd342888561dd"; 652 + sha256 = "1f85797fc49d9e623324a4fe51e88902d3ddcdd3d4cb0a3f08edd19b70c8c244"; 653 653 } 654 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/et/firefox-124.0b5.tar.bz2"; 654 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/et/firefox-124.0b8.tar.bz2"; 655 655 locale = "et"; 656 656 arch = "linux-i686"; 657 - sha256 = "29d98c7699973ada05a80bbcc1affdbe172f84d094f4ed12c2be729c84f58037"; 657 + sha256 = "0775246cd8a802f82762921039433b6cd9f5817da20fbb05385d012ac3ab24d3"; 658 658 } 659 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/eu/firefox-124.0b5.tar.bz2"; 659 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/eu/firefox-124.0b8.tar.bz2"; 660 660 locale = "eu"; 661 661 arch = "linux-i686"; 662 - sha256 = "a99a7bf071b65bbe82d16374abbb154f728ccd22db79c312c25b87fcc12fbb7b"; 662 + sha256 = "25bdea2a77f7440fb82cec00ac3cdcfe73d9b9f73c2ee8be9a968a50b2b4c90e"; 663 663 } 664 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/fa/firefox-124.0b5.tar.bz2"; 664 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/fa/firefox-124.0b8.tar.bz2"; 665 665 locale = "fa"; 666 666 arch = "linux-i686"; 667 - sha256 = "fb87bfeda0969dec943dd7da47f31cd416aab800a30c0ae00737b25044dbc9ba"; 667 + sha256 = "73fab87160c95716b4da8b3f04f7d13aa9036c7882d60a7856aa1dda4c928e2c"; 668 668 } 669 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/ff/firefox-124.0b5.tar.bz2"; 669 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/ff/firefox-124.0b8.tar.bz2"; 670 670 locale = "ff"; 671 671 arch = "linux-i686"; 672 - sha256 = "cda78f95e3124ab8efb09c6c39043e144441cea8fdea9c7bde2631a29d008a21"; 672 + sha256 = "d4f2ff849514c55cb04435be331d6d16a9e418317de3481ed4677f49dd163a73"; 673 673 } 674 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/fi/firefox-124.0b5.tar.bz2"; 674 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/fi/firefox-124.0b8.tar.bz2"; 675 675 locale = "fi"; 676 676 arch = "linux-i686"; 677 - sha256 = "534d4cf6a962369e0d55bebb2ccc411df8b875c5bf4848cf5bdfeb5420239934"; 677 + sha256 = "9d6116fdc259c3380afcff8ead9d7624031d80ba2f873e630d86ab8fe8b79892"; 678 678 } 679 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/fr/firefox-124.0b5.tar.bz2"; 679 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/fr/firefox-124.0b8.tar.bz2"; 680 680 locale = "fr"; 681 681 arch = "linux-i686"; 682 - sha256 = "16b76ccb164f7572530631e242b696f01174d1460510403a29be8f23e42ed083"; 682 + sha256 = "dbcd97a38f66fb6c3c331a9484639ba089d1ee7887576be67811b6f1ceef5e82"; 683 683 } 684 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/fur/firefox-124.0b5.tar.bz2"; 684 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/fur/firefox-124.0b8.tar.bz2"; 685 685 locale = "fur"; 686 686 arch = "linux-i686"; 687 - sha256 = "75d5dec03f0f4c9ff481a7068853f4f07a9c5dab12df2014c67a52fcf5ee41a4"; 687 + sha256 = "10d0d38bdfbb5c22a02f55e4a46dec24fd5001b6bbe86cc786e390a60305474b"; 688 688 } 689 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/fy-NL/firefox-124.0b5.tar.bz2"; 689 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/fy-NL/firefox-124.0b8.tar.bz2"; 690 690 locale = "fy-NL"; 691 691 arch = "linux-i686"; 692 - sha256 = "8b62e81fb83c91958bd4b4a1a64eb6e80f6300a071d2713e1a9fe366e9de6212"; 692 + sha256 = "ba920fcabad22afda736c77f31fc6d9197483e958c510b2cbc1fcd7bb440409d"; 693 693 } 694 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/ga-IE/firefox-124.0b5.tar.bz2"; 694 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/ga-IE/firefox-124.0b8.tar.bz2"; 695 695 locale = "ga-IE"; 696 696 arch = "linux-i686"; 697 - sha256 = "62842170dc94f350ca4cf5fa53d29e8bceda1b1ad05ea1f900a8aa559ce84a2e"; 697 + sha256 = "31421bf4e085c4ac196938dfd9fc7bd57964edf9d60211a92a968cfe17102dfb"; 698 698 } 699 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/gd/firefox-124.0b5.tar.bz2"; 699 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/gd/firefox-124.0b8.tar.bz2"; 700 700 locale = "gd"; 701 701 arch = "linux-i686"; 702 - sha256 = "6244f889f9b7403bb6566943ff7d35c6ff24bbdaea65b8b666e93578c4191c32"; 702 + sha256 = "f4e43a5050162e6184dfadaac4b96abf2aecce7db43854c7a9aaade7db076b17"; 703 703 } 704 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/gl/firefox-124.0b5.tar.bz2"; 704 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/gl/firefox-124.0b8.tar.bz2"; 705 705 locale = "gl"; 706 706 arch = "linux-i686"; 707 - sha256 = "912d1fb10dde72c84d6d91a51190b10be45b12df6504285c1f94a1faf28aca7f"; 707 + sha256 = "0123d50fb36c7af78acb5c750887b36deccf327564b035ec9c2e6a67a59c69d4"; 708 708 } 709 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/gn/firefox-124.0b5.tar.bz2"; 709 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/gn/firefox-124.0b8.tar.bz2"; 710 710 locale = "gn"; 711 711 arch = "linux-i686"; 712 - sha256 = "afc27f6985a2e206a856ff36c9f9c1237ccc9044c6295142116e582041ffd13b"; 712 + sha256 = "17d2bf565d3ec79cc5ad9c89fd84ccf3ee412c978d5f860fe1abf25f4fb66176"; 713 713 } 714 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/gu-IN/firefox-124.0b5.tar.bz2"; 714 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/gu-IN/firefox-124.0b8.tar.bz2"; 715 715 locale = "gu-IN"; 716 716 arch = "linux-i686"; 717 - sha256 = "18352071ffd3c219108553882452a07ee1d85ca33e7e4f03bd77bb01f19fa44d"; 717 + sha256 = "1269a278efb2ece6f0d07cfbbf3a632dad018320feabebe2eb82349f4bb855a5"; 718 718 } 719 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/he/firefox-124.0b5.tar.bz2"; 719 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/he/firefox-124.0b8.tar.bz2"; 720 720 locale = "he"; 721 721 arch = "linux-i686"; 722 - sha256 = "33964ef4c4f2b5c108663c60a970d7b6166ae0289fed71d67c427cbb5ee5529e"; 722 + sha256 = "7cd523d54bcf67a5b61d39ded21e2172c27ca772b422ed2d0b2bff63d4e1bce3"; 723 723 } 724 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/hi-IN/firefox-124.0b5.tar.bz2"; 724 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/hi-IN/firefox-124.0b8.tar.bz2"; 725 725 locale = "hi-IN"; 726 726 arch = "linux-i686"; 727 - sha256 = "c9d2df146e0647ee63c9110ae35cd0a377d0ec2683d211a424d73f9aebfc2fec"; 727 + sha256 = "9a5b1c15a41d3b176c6a5e2c516695de601fa71d0075ee96e6f07a9a610015cb"; 728 728 } 729 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/hr/firefox-124.0b5.tar.bz2"; 729 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/hr/firefox-124.0b8.tar.bz2"; 730 730 locale = "hr"; 731 731 arch = "linux-i686"; 732 - sha256 = "7a28b5e5f8651037094e76d638cc06d8ec0f5cede39b3dd1dbbebfec6af90fd6"; 732 + sha256 = "2e6516a1dfeb983fe22378160a212ed70fc14b062728d297eec52b241a51f324"; 733 733 } 734 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/hsb/firefox-124.0b5.tar.bz2"; 734 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/hsb/firefox-124.0b8.tar.bz2"; 735 735 locale = "hsb"; 736 736 arch = "linux-i686"; 737 - sha256 = "627b1ec567e4d8227385002ecca1369a0c8b1746d570ff5c5019e8cc3af40514"; 737 + sha256 = "f77cf0fa3f7d2080eb6761671aefe0041c3d2c516b72d8ae6d8f81ed03007ed0"; 738 738 } 739 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/hu/firefox-124.0b5.tar.bz2"; 739 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/hu/firefox-124.0b8.tar.bz2"; 740 740 locale = "hu"; 741 741 arch = "linux-i686"; 742 - sha256 = "aceec21e56f24f59e57ebbef1e826e1b5c8bae38ffd249e27dd4645a0b4559b1"; 742 + sha256 = "d0ee83be5bac2cc71f4991d5a032912f71d382c7f7ae5a668172cea7e9301c9c"; 743 743 } 744 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/hy-AM/firefox-124.0b5.tar.bz2"; 744 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/hy-AM/firefox-124.0b8.tar.bz2"; 745 745 locale = "hy-AM"; 746 746 arch = "linux-i686"; 747 - sha256 = "e45653c2f3d8e276d9a321aec0b148bc6f254f4e583f6a4b594e6cd48ff3c977"; 747 + sha256 = "4a7d3dc8a8184cebbf041777cf65e304c886398b90b27b2540021221a7363056"; 748 748 } 749 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/ia/firefox-124.0b5.tar.bz2"; 749 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/ia/firefox-124.0b8.tar.bz2"; 750 750 locale = "ia"; 751 751 arch = "linux-i686"; 752 - sha256 = "63efce2c4ae7bebc130745b123b73e6d7ddc620b1aca6b50271cfbc24319cb9f"; 752 + sha256 = "30186ea1499238252c4f918f5ca76d5afb576d15ff21d029d31e6f6f6b541196"; 753 753 } 754 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/id/firefox-124.0b5.tar.bz2"; 754 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/id/firefox-124.0b8.tar.bz2"; 755 755 locale = "id"; 756 756 arch = "linux-i686"; 757 - sha256 = "ce6af3a7fddb9ba6520e186ef647b4ace04e6e7b7b5bdee0888b440b115297ae"; 757 + sha256 = "d9ceb73e188a90710fe8c8c9b4e32dda51ebf37a02787bc3238590154ea426dc"; 758 758 } 759 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/is/firefox-124.0b5.tar.bz2"; 759 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/is/firefox-124.0b8.tar.bz2"; 760 760 locale = "is"; 761 761 arch = "linux-i686"; 762 - sha256 = "c904ead6b576bbb42b39689263ff83197e851a90abd3e824b79315f6c830e593"; 762 + sha256 = "ff38b84ccd30753c006597e01ac66ecf2ddc3d3f95116609c53610fcbe9937cb"; 763 763 } 764 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/it/firefox-124.0b5.tar.bz2"; 764 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/it/firefox-124.0b8.tar.bz2"; 765 765 locale = "it"; 766 766 arch = "linux-i686"; 767 - sha256 = "5db33151f0819a8af41aa73077c4e825f52044bc629ce644ef8b80873aefcc19"; 767 + sha256 = "3eb74a0a81a220a2f95318e0db06edebe7bd8479cf8f81d0f4f8c2c7adedc149"; 768 768 } 769 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/ja/firefox-124.0b5.tar.bz2"; 769 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/ja/firefox-124.0b8.tar.bz2"; 770 770 locale = "ja"; 771 771 arch = "linux-i686"; 772 - sha256 = "73b5d2622f067d74c1f3322ffd2df3c9db5e27ac7edc24e8b3d5b5483d89b02a"; 772 + sha256 = "db4d2bed4c3c734b01b6705a9dd53994232edd982890eee692030476910dd90a"; 773 773 } 774 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/ka/firefox-124.0b5.tar.bz2"; 774 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/ka/firefox-124.0b8.tar.bz2"; 775 775 locale = "ka"; 776 776 arch = "linux-i686"; 777 - sha256 = "7930341f03147d7149883a91e1c1e588daebfe4f9548314c6fdfdc3c2209e137"; 777 + sha256 = "0d0d6b513949fd0cd5a586533863472ffe62d4be58d22af841d30525c5190674"; 778 778 } 779 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/kab/firefox-124.0b5.tar.bz2"; 779 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/kab/firefox-124.0b8.tar.bz2"; 780 780 locale = "kab"; 781 781 arch = "linux-i686"; 782 - sha256 = "39fc9f26498bbf98c4636dc71bd66053de766b1652dacced0b257da37efba818"; 782 + sha256 = "0ccc4e6d3c782ceb99a6ceae54d973c8d88b3b5d9fc6bb618624c1fa7b597212"; 783 783 } 784 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/kk/firefox-124.0b5.tar.bz2"; 784 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/kk/firefox-124.0b8.tar.bz2"; 785 785 locale = "kk"; 786 786 arch = "linux-i686"; 787 - sha256 = "f4af02bdb106533f991b2a279781461ebb64115996fb45a37b4e4888583a8325"; 787 + sha256 = "23d0a3e6824b0eea903dfbe98bf6876ee53c2db3acfb5632d662f4525bae92ab"; 788 788 } 789 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/km/firefox-124.0b5.tar.bz2"; 789 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/km/firefox-124.0b8.tar.bz2"; 790 790 locale = "km"; 791 791 arch = "linux-i686"; 792 - sha256 = "5ae42af8950275d2d8ce097db1791982ae52c1cb9f4e77a08e8e95a52211708b"; 792 + sha256 = "02dfd503a62e28aeb3dda3b09d6972ec327d238f0f2ef64768705c72e8be7bf2"; 793 793 } 794 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/kn/firefox-124.0b5.tar.bz2"; 794 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/kn/firefox-124.0b8.tar.bz2"; 795 795 locale = "kn"; 796 796 arch = "linux-i686"; 797 - sha256 = "fb34672b970fa04b93573b699e69e2ad6517996d685e041c41ac9409f97f1e8e"; 797 + sha256 = "e07d9f8b2c65a53e485c1fb1a0bc4da6c97cc08c4b458ecb9d506f70d2fdecb5"; 798 798 } 799 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/ko/firefox-124.0b5.tar.bz2"; 799 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/ko/firefox-124.0b8.tar.bz2"; 800 800 locale = "ko"; 801 801 arch = "linux-i686"; 802 - sha256 = "1bee075f512ab94e99252a55645300151c979e5797ece8cc6f60e7c3e2941979"; 802 + sha256 = "b1bc1228711c61aa6661d6d7bd8c9dc14633b91e39c01c529509fab1a694dfa4"; 803 803 } 804 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/lij/firefox-124.0b5.tar.bz2"; 804 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/lij/firefox-124.0b8.tar.bz2"; 805 805 locale = "lij"; 806 806 arch = "linux-i686"; 807 - sha256 = "598d283a34daf9273349de71bfbf25f842149273aad136285d88edce83a19b9e"; 807 + sha256 = "25b6aaca1a0fb110d7c1d0cecc8e33f7547a751b4b3a0f231c8a8d7f70d61650"; 808 808 } 809 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/lt/firefox-124.0b5.tar.bz2"; 809 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/lt/firefox-124.0b8.tar.bz2"; 810 810 locale = "lt"; 811 811 arch = "linux-i686"; 812 - sha256 = "126df1404e11bb44864903879eba9a0eddd942248519b17352dff8487c9737c8"; 812 + sha256 = "ac056502aa4f2bad9a3546e137d998092a68527cc6be43bd9d6968639755aeb9"; 813 813 } 814 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/lv/firefox-124.0b5.tar.bz2"; 814 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/lv/firefox-124.0b8.tar.bz2"; 815 815 locale = "lv"; 816 816 arch = "linux-i686"; 817 - sha256 = "d4064f65336d206258b2e2298bdc8cc966e9ea747fa172bf393553f2ad9bf4cd"; 817 + sha256 = "68b6ec84d05606f81f297b4b1ff16a2a1dc8fcfedb1cdc767b7da2f510b80e25"; 818 818 } 819 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/mk/firefox-124.0b5.tar.bz2"; 819 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/mk/firefox-124.0b8.tar.bz2"; 820 820 locale = "mk"; 821 821 arch = "linux-i686"; 822 - sha256 = "d01ff8b6f392c9d20eba744df9cbea1f424d3be8a2b225301506813c24626ed9"; 822 + sha256 = "5f942d4160e9f90aede2ee9b3b13aada7255e01deae66eba68573355c5217b35"; 823 823 } 824 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/mr/firefox-124.0b5.tar.bz2"; 824 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/mr/firefox-124.0b8.tar.bz2"; 825 825 locale = "mr"; 826 826 arch = "linux-i686"; 827 - sha256 = "a3032ebd70ba506c5380faaee3df946df840b9eafde5a3c889e675fd4bda6d93"; 827 + sha256 = "840311613baf8efce83f271c7c83dfc6d77697496f98ffcd27dddd8a2120f928"; 828 828 } 829 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/ms/firefox-124.0b5.tar.bz2"; 829 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/ms/firefox-124.0b8.tar.bz2"; 830 830 locale = "ms"; 831 831 arch = "linux-i686"; 832 - sha256 = "01124e88f41088d3af50d627b3f60e92a392561b0bc8a376e19b90e5d9532a68"; 832 + sha256 = "a1d3e3591d229f57a2a7e034a3f8b94bb02732c0573281cd6fe4246f438cab08"; 833 833 } 834 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/my/firefox-124.0b5.tar.bz2"; 834 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/my/firefox-124.0b8.tar.bz2"; 835 835 locale = "my"; 836 836 arch = "linux-i686"; 837 - sha256 = "e8cdcc7d9b37275ce14a592126e2ed9ebca9b6b61862a11d543deb40292ca3d2"; 837 + sha256 = "69beb93edaa85ffef9522a9ea56e8afc88a2038650574ae800828ab85c3780e8"; 838 838 } 839 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/nb-NO/firefox-124.0b5.tar.bz2"; 839 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/nb-NO/firefox-124.0b8.tar.bz2"; 840 840 locale = "nb-NO"; 841 841 arch = "linux-i686"; 842 - sha256 = "2706dffb755d8f9f1bc3322f8c81ba0fca6ff614e2b722a4f157a2ba5f131427"; 842 + sha256 = "3f1b794544cbce7dc677cb8c9256bea073958a4fd1aa959fb08be9d95bbeb885"; 843 843 } 844 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/ne-NP/firefox-124.0b5.tar.bz2"; 844 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/ne-NP/firefox-124.0b8.tar.bz2"; 845 845 locale = "ne-NP"; 846 846 arch = "linux-i686"; 847 - sha256 = "ae07fb682309cfc7a9b3bac71f01deb5f99da5f4959552af27f929cece49fb91"; 847 + sha256 = "8b9bc5f41692289eeb8e9467347bb36bd49b7fd9a953f20083d265283c0f8fec"; 848 848 } 849 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/nl/firefox-124.0b5.tar.bz2"; 849 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/nl/firefox-124.0b8.tar.bz2"; 850 850 locale = "nl"; 851 851 arch = "linux-i686"; 852 - sha256 = "e5aabf8ddfb7ce8aa1ee23976646879a29fe75aa67a685a23a92267bc82efa31"; 852 + sha256 = "9586b5dad0cb92829bdfcfd62bbbf0063c164f45f6f32c20674893eccc5bc87e"; 853 853 } 854 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/nn-NO/firefox-124.0b5.tar.bz2"; 854 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/nn-NO/firefox-124.0b8.tar.bz2"; 855 855 locale = "nn-NO"; 856 856 arch = "linux-i686"; 857 - sha256 = "df00b85e4c0617c9a79d3c1f7d879b4426f2d86a2fb90a9e0854a227438f1223"; 857 + sha256 = "554278e0e22a6ee6cae6b97af98cf431949994d67a3c45e3d014c077e535bb80"; 858 858 } 859 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/oc/firefox-124.0b5.tar.bz2"; 859 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/oc/firefox-124.0b8.tar.bz2"; 860 860 locale = "oc"; 861 861 arch = "linux-i686"; 862 - sha256 = "c087ba2df8b1629ae2a9b7db9c48ed43fdb2721cac5a5560e479f48a4e6026e1"; 862 + sha256 = "7ad9b9fe11914a409e6399e382769d5714cda263369ecce9623eb48473b21f50"; 863 863 } 864 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/pa-IN/firefox-124.0b5.tar.bz2"; 864 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/pa-IN/firefox-124.0b8.tar.bz2"; 865 865 locale = "pa-IN"; 866 866 arch = "linux-i686"; 867 - sha256 = "016724e6aa1ce48a5402ed2e70fd51ab02c3c9540c8157560eb4d9718b75c46e"; 867 + sha256 = "e7aa0ab0df162527d0f1c732557f2167f9db7006f0594159525d16332a9955a6"; 868 868 } 869 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/pl/firefox-124.0b5.tar.bz2"; 869 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/pl/firefox-124.0b8.tar.bz2"; 870 870 locale = "pl"; 871 871 arch = "linux-i686"; 872 - sha256 = "5fc308cd53fb059626a035193bd9e60b36f932e22a3110ac3860d9721bfb0f67"; 872 + sha256 = "dcce2bb444c3cf0b87e0287b16dc4957fbcafaae54cd2544e2b4b5cb2b97c84e"; 873 873 } 874 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/pt-BR/firefox-124.0b5.tar.bz2"; 874 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/pt-BR/firefox-124.0b8.tar.bz2"; 875 875 locale = "pt-BR"; 876 876 arch = "linux-i686"; 877 - sha256 = "ce7c0b1faed4b1d98c470e9ff34795f97e93f2b77f01a11499bb449cbb914001"; 877 + sha256 = "71e547acf97d111ff652bef1cbda341b15163f6d803ebe22ccf1453d2f561c02"; 878 878 } 879 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/pt-PT/firefox-124.0b5.tar.bz2"; 879 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/pt-PT/firefox-124.0b8.tar.bz2"; 880 880 locale = "pt-PT"; 881 881 arch = "linux-i686"; 882 - sha256 = "b30e8a87937bdeb6c95b17db5d514851219c4a83f3995c27a73ece8a732c1b74"; 882 + sha256 = "dc2897cb329190a51974759cc2e89d0c575e8a1870cfb262d1409d274508f05c"; 883 883 } 884 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/rm/firefox-124.0b5.tar.bz2"; 884 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/rm/firefox-124.0b8.tar.bz2"; 885 885 locale = "rm"; 886 886 arch = "linux-i686"; 887 - sha256 = "fc9f24869aa998ff0e49659b338661164727d4e1411e7750afd34a9b32e4fa58"; 887 + sha256 = "d2d40be605511153cf23f414096f2c84a343296f575f5ffe73a4f473fa697514"; 888 888 } 889 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/ro/firefox-124.0b5.tar.bz2"; 889 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/ro/firefox-124.0b8.tar.bz2"; 890 890 locale = "ro"; 891 891 arch = "linux-i686"; 892 - sha256 = "7a8224a90221d9ffe9a243c051c05327610755f11ecdecd2b5d3f30e04fc13b4"; 892 + sha256 = "fae6d516211ca709c302c422e7a41c0fae50cb4b4a99ed6004c94b374ac759af"; 893 893 } 894 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/ru/firefox-124.0b5.tar.bz2"; 894 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/ru/firefox-124.0b8.tar.bz2"; 895 895 locale = "ru"; 896 896 arch = "linux-i686"; 897 - sha256 = "184c7301bce1429f2eb03de2752ac0d4488f90351a40e4a1b1a591f256609dca"; 897 + sha256 = "d9fe4059ab150b9dacd0127033830e14fd9a525ad55871d9d85132637fa05231"; 898 898 } 899 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/sat/firefox-124.0b5.tar.bz2"; 899 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/sat/firefox-124.0b8.tar.bz2"; 900 900 locale = "sat"; 901 901 arch = "linux-i686"; 902 - sha256 = "57f605d927b765595d702c5a21022d06c29979594ff4c3a0b2490beb49aebbc3"; 902 + sha256 = "348dbbf5d660b8792550ef382ebc950bd592eacfd4d7f14da6b9762c6da7776c"; 903 903 } 904 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/sc/firefox-124.0b5.tar.bz2"; 904 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/sc/firefox-124.0b8.tar.bz2"; 905 905 locale = "sc"; 906 906 arch = "linux-i686"; 907 - sha256 = "d45fbd0ec436d2b3a404a8ebb4a2953d94672cd58d547fec7b37c9dd9a880cf0"; 907 + sha256 = "be6234ee443ed62fcd48b83883a3b1aa8d08bb27e4151ae57ed1cf0a2aebac54"; 908 908 } 909 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/sco/firefox-124.0b5.tar.bz2"; 909 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/sco/firefox-124.0b8.tar.bz2"; 910 910 locale = "sco"; 911 911 arch = "linux-i686"; 912 - sha256 = "ca5080dd24a1728596ee9f18622b8f472a38794dddcf502f94cdea322a5c2ea0"; 912 + sha256 = "09300d6f2319d04a1ab4f818267bc07566e58fa3bf61f19ea5aa7846d31ebdf4"; 913 913 } 914 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/si/firefox-124.0b5.tar.bz2"; 914 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/si/firefox-124.0b8.tar.bz2"; 915 915 locale = "si"; 916 916 arch = "linux-i686"; 917 - sha256 = "7619c96af6694e39b4facd42e8e99d7b8efe716372b7241b6f411c5c887ceec1"; 917 + sha256 = "be8ff8fefc496f37e26f4085fbff4a17f44754b352f98be9fca234ce2d2730ea"; 918 918 } 919 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/sk/firefox-124.0b5.tar.bz2"; 919 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/sk/firefox-124.0b8.tar.bz2"; 920 920 locale = "sk"; 921 921 arch = "linux-i686"; 922 - sha256 = "299383f3da74c81153bc828506fed4f2a3ce312b49420fb992e847710e87b5d9"; 922 + sha256 = "774899fbc337bf361ab92e81634f3c47f02b7d8332e22571376a0415eadd85ba"; 923 923 } 924 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/sl/firefox-124.0b5.tar.bz2"; 924 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/sl/firefox-124.0b8.tar.bz2"; 925 925 locale = "sl"; 926 926 arch = "linux-i686"; 927 - sha256 = "dbf5b58e315ab2723ed5408c290c527261c1f2780dc54baeca55c3ad092c5167"; 927 + sha256 = "25b2e5f818328ca37fd59921ed66868924a68293333fd2edd26118ba6dd587a5"; 928 928 } 929 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/son/firefox-124.0b5.tar.bz2"; 929 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/son/firefox-124.0b8.tar.bz2"; 930 930 locale = "son"; 931 931 arch = "linux-i686"; 932 - sha256 = "8e61c851cbcc497b73770a6ecb6281dbe59fb6059c33b29906c29bec1d0887af"; 932 + sha256 = "104feb16b580dc2cbee8fdd8d17678db9f036eff957d1b4e50d1e293734270dc"; 933 933 } 934 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/sq/firefox-124.0b5.tar.bz2"; 934 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/sq/firefox-124.0b8.tar.bz2"; 935 935 locale = "sq"; 936 936 arch = "linux-i686"; 937 - sha256 = "bf2fd515b30e3dff7ac7b796a66098b6dcf026e5329521c08e5d2966e97c8a9c"; 937 + sha256 = "f33ef83e14680dea66e3401e159be8be324e7eba896f156f17226cb698146162"; 938 938 } 939 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/sr/firefox-124.0b5.tar.bz2"; 939 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/sr/firefox-124.0b8.tar.bz2"; 940 940 locale = "sr"; 941 941 arch = "linux-i686"; 942 - sha256 = "1102ed90f5af1feccef6ee6d891c378260fa83356b7e5c10df0e812ee199ba0f"; 942 + sha256 = "8d7c9969490597f1bfbe5f0b373284a26eed2c94255761b94290540eb84de86e"; 943 943 } 944 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/sv-SE/firefox-124.0b5.tar.bz2"; 944 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/sv-SE/firefox-124.0b8.tar.bz2"; 945 945 locale = "sv-SE"; 946 946 arch = "linux-i686"; 947 - sha256 = "08deb15679412a19305b447b5623a01cd85fa640904eeb83fb00cd7878b34d8b"; 947 + sha256 = "15ed3a7a62a46e9206321575119613997e85fea8e97a9a761456e53d825a652e"; 948 948 } 949 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/szl/firefox-124.0b5.tar.bz2"; 949 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/szl/firefox-124.0b8.tar.bz2"; 950 950 locale = "szl"; 951 951 arch = "linux-i686"; 952 - sha256 = "7f9bc22f10d3e775c5a6f1e1db2d477fb4fe2cf7fdfa340dcf36cec4aa8842e2"; 952 + sha256 = "bb4996c80d9e035cda965b2a817e2b5c9735ea8ee22407dcddfbd41d21d9716e"; 953 953 } 954 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/ta/firefox-124.0b5.tar.bz2"; 954 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/ta/firefox-124.0b8.tar.bz2"; 955 955 locale = "ta"; 956 956 arch = "linux-i686"; 957 - sha256 = "0fc213731dc9a04c3f83f936eb138a0da768c577e65d688b5bfc4a5b6340a2aa"; 957 + sha256 = "1e12b1d2d7c15458dea4c27d814954d956282309ffaf70ddb69c98e635f0788d"; 958 958 } 959 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/te/firefox-124.0b5.tar.bz2"; 959 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/te/firefox-124.0b8.tar.bz2"; 960 960 locale = "te"; 961 961 arch = "linux-i686"; 962 - sha256 = "08f380bef43660c672cdd604cdcc871894810db738cc808f65713d4af5116031"; 962 + sha256 = "b4ff963d688f88eedf43085acfc6702754d25e12f43a80b019de58f4cc2855fb"; 963 963 } 964 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/tg/firefox-124.0b5.tar.bz2"; 964 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/tg/firefox-124.0b8.tar.bz2"; 965 965 locale = "tg"; 966 966 arch = "linux-i686"; 967 - sha256 = "2e8b90a30b37889814aaa76bc9984fae85265c8b991e0847661d5485d5ac75cf"; 967 + sha256 = "85223aa30f3e81f204c0256e1a9a6a0c76e9681fbdb3c7474c64626b9ef5a24a"; 968 968 } 969 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/th/firefox-124.0b5.tar.bz2"; 969 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/th/firefox-124.0b8.tar.bz2"; 970 970 locale = "th"; 971 971 arch = "linux-i686"; 972 - sha256 = "07684ca053f6321c5ea5c4307ea1e1ba1ac13eb45c519e83d5c6b4515e7db324"; 972 + sha256 = "f635bd36bbd753cb3077e03418eb750baa8002a6c9f44fcaf6366872c721168e"; 973 973 } 974 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/tl/firefox-124.0b5.tar.bz2"; 974 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/tl/firefox-124.0b8.tar.bz2"; 975 975 locale = "tl"; 976 976 arch = "linux-i686"; 977 - sha256 = "d58a6d63ca1d2d161b85c78660a303f91875ba6f69a2ef66e36e393688b02a3e"; 977 + sha256 = "776710dbfce6eba3bfc624e2711debb03d8a546c191a97c5c4ce9095f47a7aa1"; 978 978 } 979 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/tr/firefox-124.0b5.tar.bz2"; 979 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/tr/firefox-124.0b8.tar.bz2"; 980 980 locale = "tr"; 981 981 arch = "linux-i686"; 982 - sha256 = "b1f71d7961f2cc9a025f65e4f6ddd3c28acd3e11f9aed981bef38dcdf5191b68"; 982 + sha256 = "8782b53e8d9eebf17c01c118afff74b203e81b555c7e368960b1bc4eeea58eb3"; 983 983 } 984 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/trs/firefox-124.0b5.tar.bz2"; 984 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/trs/firefox-124.0b8.tar.bz2"; 985 985 locale = "trs"; 986 986 arch = "linux-i686"; 987 - sha256 = "d17daf00437ffcdaca30e7b085f12d0e18850e42cc9974349738e6f53d7d8077"; 987 + sha256 = "055dd3e5277051a5272ce373054671c5714d2d40e62cedf837a4357d39e4ca25"; 988 988 } 989 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/uk/firefox-124.0b5.tar.bz2"; 989 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/uk/firefox-124.0b8.tar.bz2"; 990 990 locale = "uk"; 991 991 arch = "linux-i686"; 992 - sha256 = "c3e8c5fe1c6ed73a9b66ad4f6785929c183a1333588b1d288a481f8abf52bb4f"; 992 + sha256 = "e23e6924dc570e08598b0dd0552a3172e107d711a2ca7460f64bbcdaedf77116"; 993 993 } 994 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/ur/firefox-124.0b5.tar.bz2"; 994 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/ur/firefox-124.0b8.tar.bz2"; 995 995 locale = "ur"; 996 996 arch = "linux-i686"; 997 - sha256 = "653473c33c8eafe638c83089ba9f99ffc81b20f13d0b6d15bfbc2ebee5bb1931"; 997 + sha256 = "8fb0251ae0590956d5a94d5eb7eff2331df364c8b032f63e817d3ad781b042bb"; 998 998 } 999 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/uz/firefox-124.0b5.tar.bz2"; 999 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/uz/firefox-124.0b8.tar.bz2"; 1000 1000 locale = "uz"; 1001 1001 arch = "linux-i686"; 1002 - sha256 = "7ca4cd55d2d48aef1c80f26c9e0c7edd8db4f2945d5fb8bd3466cd61d3917965"; 1002 + sha256 = "50da5b255686fdcec917b5baf4414b864c6f8fd55e515d11de2880978b1ddc23"; 1003 1003 } 1004 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/vi/firefox-124.0b5.tar.bz2"; 1004 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/vi/firefox-124.0b8.tar.bz2"; 1005 1005 locale = "vi"; 1006 1006 arch = "linux-i686"; 1007 - sha256 = "2c45af4e5a789bb7a2ec03322987e83c249b18006126c0cb6a2036678092c244"; 1007 + sha256 = "43fbed358886f514899d631d705a94dd091a862ba54f07a517e464bddbfc01b2"; 1008 1008 } 1009 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/xh/firefox-124.0b5.tar.bz2"; 1009 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/xh/firefox-124.0b8.tar.bz2"; 1010 1010 locale = "xh"; 1011 1011 arch = "linux-i686"; 1012 - sha256 = "8b4d414f92a3f1368d2eef8cfccb17ee9bba5c86fdf705281020f140d60fe5ee"; 1012 + sha256 = "37e909b0a9f8095699b5275905111d4057c0f3a2be41bb035f9219e349713b96"; 1013 1013 } 1014 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/zh-CN/firefox-124.0b5.tar.bz2"; 1014 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/zh-CN/firefox-124.0b8.tar.bz2"; 1015 1015 locale = "zh-CN"; 1016 1016 arch = "linux-i686"; 1017 - sha256 = "79a67eefcf5655b1de108f6d14f42ed34167e5556637c34f41a1093e6a18561f"; 1017 + sha256 = "db219f41bdf130da6acc1aec907b4c685cfd03ee45f2c27f7942695df770355b"; 1018 1018 } 1019 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/zh-TW/firefox-124.0b5.tar.bz2"; 1019 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b8/linux-i686/zh-TW/firefox-124.0b8.tar.bz2"; 1020 1020 locale = "zh-TW"; 1021 1021 arch = "linux-i686"; 1022 - sha256 = "f14023c75ee13fc10e05db2110bf4e9541f2cda889715e6e499122fb698d40a7"; 1022 + sha256 = "9bda59e49ce5a7c9fa3834a1e5d5c359d0ea51e6b44db77a909db36be636dc85"; 1023 1023 } 1024 1024 ]; 1025 1025 }
+4 -4
pkgs/applications/networking/browsers/firefox/packages.nix
··· 33 33 34 34 firefox-beta = buildMozillaMach rec { 35 35 pname = "firefox-beta"; 36 - version = "124.0b5"; 36 + version = "124.0b8"; 37 37 applicationName = "Mozilla Firefox Beta"; 38 38 src = fetchurl { 39 39 url = "mirror://mozilla/firefox/releases/${version}/source/firefox-${version}.source.tar.xz"; 40 - sha512 = "a232d5f8d3118ef37166ef8706ab17d4cceaf67f0b12da4780c52253eec297c79e95ab42fe15165fdda62cda045ac923a53550c3525e9fd94ea3dca586510637"; 40 + sha512 = "8f3564169be29a5456c2e3fee22c0fb7146caf4c13770a8c32dd9bcc667410a90135b634598fc243e088c1b078ab31470ceb2fc3557c13221414bf8ba518c67b"; 41 41 }; 42 42 43 43 meta = { ··· 62 62 63 63 firefox-devedition = buildMozillaMach rec { 64 64 pname = "firefox-devedition"; 65 - version = "124.0b5"; 65 + version = "124.0b8"; 66 66 applicationName = "Mozilla Firefox Developer Edition"; 67 67 requireSigning = false; 68 68 branding = "browser/branding/aurora"; 69 69 src = fetchurl { 70 70 url = "mirror://mozilla/devedition/releases/${version}/source/firefox-${version}.source.tar.xz"; 71 - sha512 = "bea92dcf8703dab99cc8248a0d205b8613f74efa81cbe789aa3ef863093fa78ac4e362956dfd57186954389cd87cd97bc0b077d3f80bfe5b7dd3b6435874fa98"; 71 + sha512 = "7aa937b7d41fce7b8ccd3e33a68c7d85a05a2c6a8c3ff4891b8731e335c4ac3b03838c9056ac7fc1f28b5a0de04188c8126f6725a3d7f544f5854d53595688a6"; 72 72 }; 73 73 74 74 meta = {
+9
pkgs/applications/networking/cluster/terraform-providers/providers.json
··· 1134 1134 "spdx": "MPL-2.0", 1135 1135 "vendorHash": "sha256-lOLX/ZcBbh7TzsKO9w/dB1gm0KD9ezlXNjWRBBQVgsQ=" 1136 1136 }, 1137 + "ssh": { 1138 + "hash": "sha256-1UN5QJyjCuxs2vQYlSuz2jsu/HgGTxOoWWRcv4qcwow=", 1139 + "homepage": "https://registry.terraform.io/providers/loafoe/ssh", 1140 + "owner": "loafoe", 1141 + "repo": "terraform-provider-ssh", 1142 + "rev": "v2.7.0", 1143 + "spdx": "MIT", 1144 + "vendorHash": "sha256-vcuUt3WIo1TnLApch410JgtyCzliQRYMQQQ2Z9diDZ8=" 1145 + }, 1137 1146 "stackpath": { 1138 1147 "hash": "sha256-aCaoRxlV/UxYobHC5OqFO8nt9oQgyug1AuJffhnwauc=", 1139 1148 "homepage": "https://registry.terraform.io/providers/stackpath/stackpath",
+3 -3
pkgs/applications/networking/cluster/yor/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "yor"; 8 - version = "0.1.189"; 8 + version = "0.1.190"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "bridgecrewio"; 12 12 repo = pname; 13 13 rev = version; 14 - hash = "sha256-9xZVim5fMKDaeATSpgEGV5ukLv+aw7A99825iBIvvb0="; 14 + hash = "sha256-1CofTfH7PffncLsa8Ho/fY+R6oaefUld3x84oeD5Bbo="; 15 15 }; 16 16 17 - vendorHash = "sha256-RNtWPAAOCGs0aCR0PWnOP4GxaXTXA3uLI3aGLuMNGYI="; 17 + vendorHash = "sha256-iUBajZv9BHQm0kHJGK/9FYp7nGSr7p6tlPKxugZ3BjQ="; 18 18 19 19 doCheck = false; 20 20
+3 -3
pkgs/applications/networking/instant-messengers/signal-desktop/signal-desktop-beta.nix
··· 1 1 { callPackage }: 2 - callPackage ./generic.nix {} rec { 2 + callPackage ./generic.nix { } rec { 3 3 pname = "signal-desktop-beta"; 4 4 dir = "Signal Beta"; 5 - version = "7.0.0-beta.2"; 5 + version = "7.2.0-beta.1"; 6 6 url = "https://updates.signal.org/desktop/apt/pool/s/signal-desktop-beta/signal-desktop-beta_${version}_amd64.deb"; 7 - hash = "sha256-yfa82JI/CKyQNT+oq0laupLyMIrq9Xs99M/xxgM9eQs="; 7 + hash = "sha256-ZCTCcNMrZwadAbs+1sf3A+S1FRjTCb1lYk0Vg5rxqXc="; 8 8 }
+3 -3
pkgs/applications/networking/instant-messengers/signal-desktop/signal-desktop.nix
··· 1 1 { callPackage }: 2 - callPackage ./generic.nix {} rec { 2 + callPackage ./generic.nix { } rec { 3 3 pname = "signal-desktop"; 4 4 dir = "Signal"; 5 - version = "7.0.0"; 5 + version = "7.1.1"; 6 6 url = "https://updates.signal.org/desktop/apt/pool/s/signal-desktop/signal-desktop_${version}_amd64.deb"; 7 - hash = "sha256-xwKisiOE2g+pg1P9mX6AlwYU1JWXIWSSygwauoU05E8="; 7 + hash = "sha256-YQLDm6T67vio66PLehlLQDxsAkhm22dhpjUR1eBwsg8="; 8 8 }
+2 -2
pkgs/applications/networking/instant-messengers/signalbackup-tools/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "signalbackup-tools"; 5 - version = "20240304"; 5 + version = "20240306"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "bepaald"; 9 9 repo = pname; 10 10 rev = version; 11 - hash = "sha256-FvQaBGWPcewrvLaCzWgsn+cAe0Nye4d1s6IZu9JbcO0="; 11 + hash = "sha256-KN4FkqgWj92LqPtwU/Wyk1qe8AyUsWlobypq5WgRVyI="; 12 12 }; 13 13 14 14 postPatch = ''
+5 -3
pkgs/applications/networking/localsend/default.nix
··· 11 11 12 12 let 13 13 pname = "localsend"; 14 - version = "1.13.1"; 14 + version = "1.14.0"; 15 15 16 16 linux = flutter313.buildFlutterApplication { 17 17 inherit pname version; ··· 20 20 owner = pname; 21 21 repo = pname; 22 22 rev = "v${version}"; 23 - hash = "sha256-GJHCKNtKvwQAG3AUkhk0G4k/qsmLOUQAyyi9Id7NJh8="; 23 + hash = "sha256-CO0uFcZnOfE31EZxRUpgtod3+1lyXPpbytHB45DEM98="; 24 24 }; 25 25 26 26 sourceRoot = "source/app"; ··· 57 57 categories = [ "Network" ]; 58 58 }; 59 59 60 + passthru.updateScript = ./update.sh; 61 + 60 62 meta = meta // { 61 63 mainProgram = "localsend_app"; 62 64 }; ··· 67 69 68 70 src = fetchurl { 69 71 url = "https://github.com/localsend/localsend/releases/download/v${version}/LocalSend-${version}.dmg"; 70 - hash = "sha256-YCy6NlmEPsOFtIZ27mOYDnMPd1tj3YO2bwNDdM3K/uY="; 72 + hash = "sha256-L7V48QoOA0cjx45n+9Xav/zzCzCsZB3TBip0WGusMXg="; 71 73 }; 72 74 73 75 nativeBuildInputs = [ undmg ];
+149 -129
pkgs/applications/networking/localsend/pubspec.lock.json
··· 44 44 "dependency": "transitive", 45 45 "description": { 46 46 "name": "archive", 47 - "sha256": "7b875fd4a20b165a3084bd2d210439b22ebc653f21cea4842729c0c30c82596b", 47 + "sha256": "22600aa1e926be775fa5fe7e6894e7fb3df9efda8891c73f70fb3262399a432d", 48 48 "url": "https://pub.dev" 49 49 }, 50 50 "source": "hosted", 51 - "version": "3.4.9" 51 + "version": "3.4.10" 52 52 }, 53 53 "args": { 54 54 "dependency": "transitive", ··· 124 124 "dependency": "transitive", 125 125 "description": { 126 126 "name": "build_resolvers", 127 - "sha256": "64e12b0521812d1684b1917bc80945625391cb9bdd4312536b1d69dcb6133ed8", 127 + "sha256": "339086358431fa15d7eca8b6a36e5d783728cf025e559b834f4609a1fcfb7b0a", 128 128 "url": "https://pub.dev" 129 129 }, 130 130 "source": "hosted", 131 - "version": "2.4.1" 131 + "version": "2.4.2" 132 132 }, 133 133 "build_runner": { 134 134 "dependency": "direct dev", 135 135 "description": { 136 136 "name": "build_runner", 137 - "sha256": "67d591d602906ef9201caf93452495ad1812bea2074f04e25dbd7c133785821b", 137 + "sha256": "581bacf68f89ec8792f5e5a0b2c4decd1c948e97ce659dc783688c8a88fbec21", 138 138 "url": "https://pub.dev" 139 139 }, 140 140 "source": "hosted", 141 - "version": "2.4.7" 141 + "version": "2.4.8" 142 142 }, 143 143 "build_runner_core": { 144 144 "dependency": "transitive", 145 145 "description": { 146 146 "name": "build_runner_core", 147 - "sha256": "c9e32d21dd6626b5c163d48b037ce906bbe428bc23ab77bcd77bb21e593b6185", 147 + "sha256": "4ae8ffe5ac758da294ecf1802f2aff01558d8b1b00616aa7538ea9a8a5d50799", 148 148 "url": "https://pub.dev" 149 149 }, 150 150 "source": "hosted", 151 - "version": "7.2.11" 151 + "version": "7.3.0" 152 152 }, 153 153 "built_collection": { 154 154 "dependency": "transitive", ··· 164 164 "dependency": "transitive", 165 165 "description": { 166 166 "name": "built_value", 167 - "sha256": "69acb7007eb2a31dc901512bfe0f7b767168be34cb734835d54c070bfa74c1b2", 167 + "sha256": "fedde275e0a6b798c3296963c5cd224e3e1b55d0e478d5b7e65e6b540f363a0e", 168 168 "url": "https://pub.dev" 169 169 }, 170 170 "source": "hosted", 171 - "version": "8.8.0" 171 + "version": "8.9.1" 172 172 }, 173 173 "characters": { 174 174 "dependency": "transitive", ··· 194 194 "dependency": "transitive", 195 195 "description": { 196 196 "name": "cli_util", 197 - "sha256": "b8db3080e59b2503ca9e7922c3df2072cf13992354d5e944074ffa836fba43b7", 197 + "sha256": "c05b7406fdabc7a49a3929d4af76bcaccbbffcbcdcf185b082e1ae07da323d19", 198 198 "url": "https://pub.dev" 199 199 }, 200 200 "source": "hosted", 201 - "version": "0.4.0" 201 + "version": "0.4.1" 202 202 }, 203 203 "clock": { 204 204 "dependency": "transitive", ··· 214 214 "dependency": "transitive", 215 215 "description": { 216 216 "name": "code_builder", 217 - "sha256": "b2151ce26a06171005b379ecff6e08d34c470180ffe16b8e14b6d52be292b55f", 217 + "sha256": "f692079e25e7869c14132d39f223f8eec9830eb76131925143b2129c4bb01b37", 218 218 "url": "https://pub.dev" 219 219 }, 220 220 "source": "hosted", 221 - "version": "4.8.0" 221 + "version": "4.10.0" 222 222 }, 223 223 "collection": { 224 224 "dependency": "direct main", ··· 343 343 "dependency": "direct main", 344 344 "description": { 345 345 "name": "dart_mappable", 346 - "sha256": "c2d4775336d7166590766a1c4451edde2a302efe2a2a35ac09eef9025102e10f", 346 + "sha256": "7b6d38ae95f1ae8ffa65df9a5464f14b56c2de94699a035202ca4cd3a0ba249e", 347 347 "url": "https://pub.dev" 348 348 }, 349 349 "source": "hosted", 350 - "version": "4.0.1" 350 + "version": "4.2.0" 351 351 }, 352 352 "dart_mappable_builder": { 353 353 "dependency": "direct dev", 354 354 "description": { 355 355 "name": "dart_mappable_builder", 356 - "sha256": "41926353f9bc20f659c39f1d83d90c9ae5fd0d14aec9b59732cf714eee589b7a", 356 + "sha256": "98c058f7e80a98ea42d357d888ed1648d96bedac8b16872b58fc7024faefcdfe", 357 357 "url": "https://pub.dev" 358 358 }, 359 359 "source": "hosted", 360 - "version": "4.0.1" 360 + "version": "4.2.0" 361 361 }, 362 362 "dart_style": { 363 363 "dependency": "transitive", ··· 413 413 "dependency": "direct main", 414 414 "description": { 415 415 "name": "device_info_plus", 416 - "sha256": "0042cb3b2a76413ea5f8a2b40cec2a33e01d0c937e91f0f7c211fde4f7739ba6", 416 + "sha256": "77f757b789ff68e4eaf9c56d1752309bd9f7ad557cb105b938a7f8eb89e59110", 417 417 "url": "https://pub.dev" 418 418 }, 419 419 "source": "hosted", 420 - "version": "9.1.1" 420 + "version": "9.1.2" 421 421 }, 422 422 "device_info_plus_platform_interface": { 423 423 "dependency": "transitive", ··· 433 433 "dependency": "direct main", 434 434 "description": { 435 435 "name": "dio", 436 - "sha256": "797e1e341c3dd2f69f2dad42564a6feff3bfb87187d05abb93b9609e6f1645c3", 436 + "sha256": "49af28382aefc53562459104f64d16b9dfd1e8ef68c862d5af436cc8356ce5a8", 437 437 "url": "https://pub.dev" 438 438 }, 439 439 "source": "hosted", 440 - "version": "5.4.0" 440 + "version": "5.4.1" 441 441 }, 442 442 "dynamic_color": { 443 443 "dependency": "direct main", 444 444 "description": { 445 445 "name": "dynamic_color", 446 - "sha256": "8b8bd1d798bd393e11eddeaa8ae95b12ff028bf7d5998fc5d003488cd5f4ce2f", 446 + "sha256": "a866f1f8947bfdaf674d7928e769eac7230388a2e7a2542824fad4bb5b87be3b", 447 447 "url": "https://pub.dev" 448 448 }, 449 449 "source": "hosted", 450 - "version": "1.6.8" 450 + "version": "1.6.9" 451 451 }, 452 452 "extended_image": { 453 453 "dependency": "transitive", ··· 513 513 "dependency": "direct main", 514 514 "description": { 515 515 "name": "file_selector", 516 - "sha256": "84eaf3e034d647859167d1f01cfe7b6352488f34c1b4932635012b202014c25b", 516 + "sha256": "5019692b593455127794d5718304ff1ae15447dea286cdda9f0db2a796a1b828", 517 517 "url": "https://pub.dev" 518 518 }, 519 519 "source": "hosted", 520 - "version": "1.0.1" 520 + "version": "1.0.3" 521 521 }, 522 522 "file_selector_android": { 523 523 "dependency": "transitive", 524 524 "description": { 525 525 "name": "file_selector_android", 526 - "sha256": "b7556052dbcc25ef88f6eba45ab98aa5600382af8dfdabc9d644a93d97b7be7f", 526 + "sha256": "1cd66575f063b689e041aec836905ba7be18d76c9f0634d0d75daec825f67095", 527 527 "url": "https://pub.dev" 528 528 }, 529 529 "source": "hosted", 530 - "version": "0.5.0+4" 530 + "version": "0.5.0+7" 531 531 }, 532 532 "file_selector_ios": { 533 533 "dependency": "transitive", 534 534 "description": { 535 535 "name": "file_selector_ios", 536 - "sha256": "2f48db7e338b2255101c35c604b7ca5ab588dce032db7fc418a2fe5f28da63f8", 536 + "sha256": "b015154e6d9fddbc4d08916794df170b44531798c8dd709a026df162d07ad81d", 537 537 "url": "https://pub.dev" 538 538 }, 539 539 "source": "hosted", 540 - "version": "0.5.1+7" 540 + "version": "0.5.1+8" 541 541 }, 542 542 "file_selector_linux": { 543 543 "dependency": "transitive", ··· 563 563 "dependency": "transitive", 564 564 "description": { 565 565 "name": "file_selector_platform_interface", 566 - "sha256": "0aa47a725c346825a2bd396343ce63ac00bda6eff2fbc43eabe99737dede8262", 566 + "sha256": "a3994c26f10378a039faa11de174d7b78eb8f79e4dd0af2a451410c1a5c3f66b", 567 567 "url": "https://pub.dev" 568 568 }, 569 569 "source": "hosted", 570 - "version": "2.6.1" 570 + "version": "2.6.2" 571 571 }, 572 572 "file_selector_web": { 573 573 "dependency": "transitive", ··· 655 655 "dependency": "direct main", 656 656 "description": { 657 657 "name": "flutter_markdown", 658 - "sha256": "35108526a233cc0755664d445f8a6b4b61e6f8fe993b3658b80b4a26827fc196", 658 + "sha256": "21b085a1c185e46701373866144ced56cfb7a0c33f63c916bb8fe2d0c1491278", 659 659 "url": "https://pub.dev" 660 660 }, 661 661 "source": "hosted", 662 - "version": "0.6.18+2" 662 + "version": "0.6.19" 663 663 }, 664 664 "flutter_plugin_android_lifecycle": { 665 665 "dependency": "transitive", ··· 697 697 "dependency": "direct main", 698 698 "description": { 699 699 "name": "gal", 700 - "sha256": "e53ff8647a031e7e4562b4f5978d3008328aeef650c293a3c92d8411e3e299f7", 700 + "sha256": "54c9b72528efce7c66234f3b6dd01cb0304fd8af8196de15571d7bdddb940977", 701 701 "url": "https://pub.dev" 702 702 }, 703 703 "source": "hosted", 704 - "version": "2.1.4" 704 + "version": "2.3.0" 705 705 }, 706 706 "get_it": { 707 707 "dependency": "transitive", 708 708 "description": { 709 709 "name": "get_it", 710 - "sha256": "f79870884de16d689cf9a7d15eedf31ed61d750e813c538a6efb92660fea83c3", 710 + "sha256": "e6017ce7fdeaf218dc51a100344d8cb70134b80e28b760f8bb23c242437bafd7", 711 711 "url": "https://pub.dev" 712 712 }, 713 713 "source": "hosted", 714 - "version": "7.6.4" 714 + "version": "7.6.7" 715 715 }, 716 716 "glob": { 717 717 "dependency": "transitive", ··· 807 807 "dependency": "transitive", 808 808 "description": { 809 809 "name": "image", 810 - "sha256": "028f61960d56f26414eb616b48b04eb37d700cbe477b7fb09bf1d7ce57fd9271", 810 + "sha256": "4c68bfd5ae83e700b5204c1e74451e7bf3cf750e6843c6e158289cf56bda018e", 811 811 "url": "https://pub.dev" 812 812 }, 813 813 "source": "hosted", 814 - "version": "4.1.3" 814 + "version": "4.1.7" 815 815 }, 816 816 "image_picker": { 817 817 "dependency": "direct main", 818 818 "description": { 819 819 "name": "image_picker", 820 - "sha256": "7d7f2768df2a8b0a3cefa5ef4f84636121987d403130e70b17ef7e2cf650ba84", 820 + "sha256": "26222b01a0c9a2c8fe02fc90b8208bd3325da5ed1f4a2acabf75939031ac0bdd", 821 821 "url": "https://pub.dev" 822 822 }, 823 823 "source": "hosted", 824 - "version": "1.0.4" 824 + "version": "1.0.7" 825 825 }, 826 826 "image_picker_android": { 827 827 "dependency": "transitive", 828 828 "description": { 829 829 "name": "image_picker_android", 830 - "sha256": "d6a6e78821086b0b737009b09363018309bbc6de3fd88cc5c26bc2bb44a4957f", 830 + "sha256": "39f2bfe497e495450c81abcd44b62f56c2a36a37a175da7d137b4454977b51b1", 831 831 "url": "https://pub.dev" 832 832 }, 833 833 "source": "hosted", 834 - "version": "0.8.8+2" 834 + "version": "0.8.9+3" 835 835 }, 836 836 "image_picker_for_web": { 837 837 "dependency": "transitive", 838 838 "description": { 839 839 "name": "image_picker_for_web", 840 - "sha256": "50bc9ae6a77eea3a8b11af5eb6c661eeb858fdd2f734c2a4fd17086922347ef7", 840 + "sha256": "e2423c53a68b579a7c37a1eda967b8ae536c3d98518e5db95ca1fe5719a730a3", 841 841 "url": "https://pub.dev" 842 842 }, 843 843 "source": "hosted", 844 - "version": "3.0.1" 844 + "version": "3.0.2" 845 845 }, 846 846 "image_picker_ios": { 847 847 "dependency": "transitive", 848 848 "description": { 849 849 "name": "image_picker_ios", 850 - "sha256": "76ec722aeea419d03aa915c2c96bf5b47214b053899088c9abb4086ceecf97a7", 850 + "sha256": "fadafce49e8569257a0cad56d24438a6fa1f0cbd7ee0af9b631f7492818a4ca3", 851 851 "url": "https://pub.dev" 852 852 }, 853 853 "source": "hosted", 854 - "version": "0.8.8+4" 854 + "version": "0.8.9+1" 855 855 }, 856 856 "image_picker_linux": { 857 857 "dependency": "transitive", ··· 877 877 "dependency": "transitive", 878 878 "description": { 879 879 "name": "image_picker_platform_interface", 880 - "sha256": "ed9b00e63977c93b0d2d2b343685bed9c324534ba5abafbb3dfbd6a780b1b514", 880 + "sha256": "fa4e815e6fcada50e35718727d83ba1c92f1edf95c0b4436554cec301b56233b", 881 881 "url": "https://pub.dev" 882 882 }, 883 883 "source": "hosted", 884 - "version": "2.9.1" 884 + "version": "2.9.3" 885 885 }, 886 886 "image_picker_windows": { 887 887 "dependency": "transitive", ··· 897 897 "dependency": "direct main", 898 898 "description": { 899 899 "name": "in_app_purchase", 900 - "sha256": "bdda02b5b11b56d5e29c7f0c57c433db3452b0c8ce1c37cbfcf1de52946efd9f", 900 + "sha256": "def70fbaa2a274f4d835677459f6f7afc5469de912438f86076e51cbd4cbd5b4", 901 901 "url": "https://pub.dev" 902 902 }, 903 903 "source": "hosted", 904 - "version": "3.1.11" 904 + "version": "3.1.13" 905 905 }, 906 906 "in_app_purchase_android": { 907 907 "dependency": "transitive", 908 908 "description": { 909 909 "name": "in_app_purchase_android", 910 - "sha256": "c4b84caa4e2c7ffebda444c5033fd8423cc3a45a6e1066929bbbcd4daf665db5", 910 + "sha256": "c94aebe986723b6f4e4d8551d160c6602e73d0b38bf86a59fb054dfeb44bc1e5", 911 911 "url": "https://pub.dev" 912 912 }, 913 913 "source": "hosted", 914 - "version": "0.3.0+15" 914 + "version": "0.3.1" 915 915 }, 916 916 "in_app_purchase_platform_interface": { 917 917 "dependency": "transitive", 918 918 "description": { 919 919 "name": "in_app_purchase_platform_interface", 920 - "sha256": "5168afbc54f406f741252b66d41872c1193a0066a6edcb587176290b92e2d537", 920 + "sha256": "412efce2b9238c5ace4f057acad43f793ed06880e366d26ae322e796cadb051a", 921 921 "url": "https://pub.dev" 922 922 }, 923 923 "source": "hosted", 924 - "version": "1.3.6" 924 + "version": "1.3.7" 925 925 }, 926 926 "in_app_purchase_storekit": { 927 927 "dependency": "transitive", 928 928 "description": { 929 929 "name": "in_app_purchase_storekit", 930 - "sha256": "29526f5ce85bd908b4cacdadb2e8ef299bccbb516b90d2881805343f868502ab", 930 + "sha256": "c4b17a7f2ca8ddc7fd7996a8c32a3af6beddf91d651997c8675a5f23c103c9bc", 931 931 "url": "https://pub.dev" 932 932 }, 933 933 "source": "hosted", 934 - "version": "0.3.7" 934 + "version": "0.3.8+1" 935 935 }, 936 936 "intl": { 937 937 "dependency": "direct main", ··· 1017 1017 "dependency": "transitive", 1018 1018 "description": { 1019 1019 "name": "markdown", 1020 - "sha256": "acf35edccc0463a9d7384e437c015a3535772e09714cf60e07eeef3a15870dcd", 1020 + "sha256": "1b134d9f8ff2da15cb298efe6cd8b7d2a78958c1b00384ebcbdf13fe340a6c90", 1021 1021 "url": "https://pub.dev" 1022 1022 }, 1023 1023 "source": "hosted", 1024 - "version": "7.1.1" 1024 + "version": "7.2.1" 1025 1025 }, 1026 1026 "matcher": { 1027 1027 "dependency": "transitive", ··· 1073 1073 "source": "hosted", 1074 1074 "version": "1.0.4" 1075 1075 }, 1076 + "mockito": { 1077 + "dependency": "direct dev", 1078 + "description": { 1079 + "name": "mockito", 1080 + "sha256": "6841eed20a7befac0ce07df8116c8b8233ed1f4486a7647c7fc5a02ae6163917", 1081 + "url": "https://pub.dev" 1082 + }, 1083 + "source": "hosted", 1084 + "version": "5.4.4" 1085 + }, 1076 1086 "msix": { 1077 1087 "dependency": "direct dev", 1078 1088 "description": { ··· 1097 1107 "dependency": "direct main", 1098 1108 "description": { 1099 1109 "name": "network_info_plus", 1100 - "sha256": "2d9e88b9a459e5d4e224f828d26cc38ea140511e89b943116939994324be5c96", 1110 + "sha256": "4601b815b1c6a46d84839f65cd774a7d999738471d910fae00d813e9e98b04e1", 1101 1111 "url": "https://pub.dev" 1102 1112 }, 1103 1113 "source": "hosted", 1104 - "version": "4.1.0" 1114 + "version": "4.1.0+1" 1105 1115 }, 1106 1116 "network_info_plus_platform_interface": { 1107 1117 "dependency": "transitive", ··· 1137 1147 "dependency": "direct main", 1138 1148 "description": { 1139 1149 "name": "open_filex", 1140 - "sha256": "a6c95237767c5647e68b71a476602fcf4f1bfc530c126265e53addae22ef5fc2", 1150 + "sha256": "74e2280754cf8161e860746c3181db2c996d6c1909c7057b738ede4a469816b8", 1141 1151 "url": "https://pub.dev" 1142 1152 }, 1143 1153 "source": "hosted", 1144 - "version": "4.3.4" 1154 + "version": "4.4.0" 1145 1155 }, 1146 1156 "package_config": { 1147 1157 "dependency": "transitive", ··· 1197 1207 "dependency": "direct main", 1198 1208 "description": { 1199 1209 "name": "path_provider", 1200 - "sha256": "a1aa8aaa2542a6bc57e381f132af822420216c80d4781f7aa085ca3229208aaa", 1210 + "sha256": "b27217933eeeba8ff24845c34003b003b2b22151de3c908d0e679e8fe1aa078b", 1201 1211 "url": "https://pub.dev" 1202 1212 }, 1203 1213 "source": "hosted", 1204 - "version": "2.1.1" 1214 + "version": "2.1.2" 1205 1215 }, 1206 1216 "path_provider_android": { 1207 1217 "dependency": "transitive", 1208 1218 "description": { 1209 1219 "name": "path_provider_android", 1210 - "sha256": "e595b98692943b4881b219f0a9e3945118d3c16bd7e2813f98ec6e532d905f72", 1220 + "sha256": "477184d672607c0a3bf68fbbf601805f92ef79c82b64b4d6eb318cbca4c48668", 1211 1221 "url": "https://pub.dev" 1212 1222 }, 1213 1223 "source": "hosted", 1214 - "version": "2.2.1" 1224 + "version": "2.2.2" 1215 1225 }, 1216 1226 "path_provider_foundation": { 1217 1227 "dependency": "transitive", 1218 1228 "description": { 1219 1229 "name": "path_provider_foundation", 1220 - "sha256": "19314d595120f82aca0ba62787d58dde2cc6b5df7d2f0daf72489e38d1b57f2d", 1230 + "sha256": "5a7999be66e000916500be4f15a3633ebceb8302719b47b9cc49ce924125350f", 1221 1231 "url": "https://pub.dev" 1222 1232 }, 1223 1233 "source": "hosted", 1224 - "version": "2.3.1" 1234 + "version": "2.3.2" 1225 1235 }, 1226 1236 "path_provider_linux": { 1227 1237 "dependency": "transitive", ··· 1237 1247 "dependency": "transitive", 1238 1248 "description": { 1239 1249 "name": "path_provider_platform_interface", 1240 - "sha256": "94b1e0dd80970c1ce43d5d4e050a9918fce4f4a775e6142424c30a29a363265c", 1250 + "sha256": "88f5779f72ba699763fa3a3b06aa4bf6de76c8e5de842cf6f29e2e06476c2334", 1241 1251 "url": "https://pub.dev" 1242 1252 }, 1243 1253 "source": "hosted", 1244 - "version": "2.1.1" 1254 + "version": "2.1.2" 1245 1255 }, 1246 1256 "path_provider_windows": { 1247 1257 "dependency": "transitive", ··· 1328 1338 "dependency": "transitive", 1329 1339 "description": { 1330 1340 "name": "platform", 1331 - "sha256": "0a279f0707af40c890e80b1e9df8bb761694c074ba7e1d4ab1bc4b728e200b59", 1341 + "sha256": "12220bb4b65720483f8fa9450b4332347737cf8213dd2840d8b2c823e47243ec", 1332 1342 "url": "https://pub.dev" 1333 1343 }, 1334 1344 "source": "hosted", 1335 - "version": "3.1.3" 1345 + "version": "3.1.4" 1336 1346 }, 1337 1347 "plugin_platform_interface": { 1338 1348 "dependency": "transitive", 1339 1349 "description": { 1340 1350 "name": "plugin_platform_interface", 1341 - "sha256": "f4f88d4a900933e7267e2b353594774fc0d07fb072b47eedcd5b54e1ea3269f8", 1351 + "sha256": "4820fbfdb9478b1ebae27888254d445073732dae3d6ea81f0b7e06d5dedc3f02", 1342 1352 "url": "https://pub.dev" 1343 1353 }, 1344 1354 "source": "hosted", 1345 - "version": "2.1.7" 1355 + "version": "2.1.8" 1346 1356 }, 1347 1357 "pointycastle": { 1348 1358 "dependency": "transitive", 1349 1359 "description": { 1350 1360 "name": "pointycastle", 1351 - "sha256": "7c1e5f0d23c9016c5bbd8b1473d0d3fb3fc851b876046039509e18e0c7485f2c", 1361 + "sha256": "43ac87de6e10afabc85c445745a7b799e04de84cebaa4fd7bf55a5e1e9604d29", 1352 1362 "url": "https://pub.dev" 1353 1363 }, 1354 1364 "source": "hosted", 1355 - "version": "3.7.3" 1365 + "version": "3.7.4" 1356 1366 }, 1357 1367 "pool": { 1358 1368 "dependency": "transitive", ··· 1368 1378 "dependency": "direct main", 1369 1379 "description": { 1370 1380 "name": "pretty_qr_code", 1371 - "sha256": "799fa8d5c605028302cb7debbf3f180ce56678c4927fb2ecc4b174a3bee526d6", 1381 + "sha256": "47a0fde3967e01ea31985d1a11a998fab1ab900becdba592e9abb0a4034b807e", 1372 1382 "url": "https://pub.dev" 1373 1383 }, 1374 1384 "source": "hosted", 1375 - "version": "3.0.0" 1385 + "version": "3.2.1" 1376 1386 }, 1377 1387 "provider": { 1378 1388 "dependency": "transitive", ··· 1418 1428 "dependency": "transitive", 1419 1429 "description": { 1420 1430 "name": "refena", 1421 - "sha256": "dad98c0d372617054a86b33a504fb973ba083c21b7a2b321a4b2142fae3342a2", 1431 + "sha256": "a29603854d785e5259c6fb99268847e918f54463a861accc36cc913daea95cb8", 1422 1432 "url": "https://pub.dev" 1423 1433 }, 1424 1434 "source": "hosted", 1425 - "version": "1.5.0" 1435 + "version": "1.6.1" 1426 1436 }, 1427 1437 "refena_flutter": { 1428 1438 "dependency": "direct main", 1429 1439 "description": { 1430 1440 "name": "refena_flutter", 1431 - "sha256": "fcd8e28e50515182a40abc2718600bbac11ba4757c2b2b92b71177fbc2ee9721", 1441 + "sha256": "2bee85271c8d8ced0238d98c1c056dbabfd4af207f9cc248d10af5a37820ae3e", 1432 1442 "url": "https://pub.dev" 1433 1443 }, 1434 1444 "source": "hosted", 1435 - "version": "1.5.0" 1445 + "version": "1.6.0" 1436 1446 }, 1437 1447 "refena_inspector": { 1438 1448 "dependency": "direct dev", ··· 1464 1474 "source": "hosted", 1465 1475 "version": "0.8.0" 1466 1476 }, 1477 + "saf_stream": { 1478 + "dependency": "direct main", 1479 + "description": { 1480 + "name": "saf_stream", 1481 + "sha256": "1db21cfa5914a5cf9a7c962b5d57fc8c07011561e365e7ff7f8013019cc3c0f3", 1482 + "url": "https://pub.dev" 1483 + }, 1484 + "source": "hosted", 1485 + "version": "0.4.0" 1486 + }, 1467 1487 "screen_retriever": { 1468 1488 "dependency": "direct main", 1469 1489 "description": { ··· 1495 1515 "version": "0.0.7" 1496 1516 }, 1497 1517 "share_handler_ios": { 1498 - "dependency": "transitive", 1518 + "dependency": "direct main", 1499 1519 "description": { 1500 1520 "name": "share_handler_ios", 1501 1521 "sha256": "522e5284ef186e83c34acea16fd65469db56a78a4c932c95e71a5be8a0e02d51", ··· 1538 1558 "dependency": "transitive", 1539 1559 "description": { 1540 1560 "name": "shared_preferences_foundation", 1541 - "sha256": "7bf53a9f2d007329ee6f3df7268fd498f8373602f943c975598bbb34649b62a7", 1561 + "sha256": "7708d83064f38060c7b39db12aefe449cb8cdc031d6062280087bc4cdb988f5c", 1542 1562 "url": "https://pub.dev" 1543 1563 }, 1544 1564 "source": "hosted", 1545 - "version": "2.3.4" 1565 + "version": "2.3.5" 1546 1566 }, 1547 1567 "shared_preferences_linux": { 1548 1568 "dependency": "transitive", ··· 1558 1578 "dependency": "direct main", 1559 1579 "description": { 1560 1580 "name": "shared_preferences_platform_interface", 1561 - "sha256": "d4ec5fc9ebb2f2e056c617112aa75dcf92fc2e4faaf2ae999caa297473f75d8a", 1581 + "sha256": "22e2ecac9419b4246d7c22bfbbda589e3acf5c0351137d87dd2939d984d37c3b", 1562 1582 "url": "https://pub.dev" 1563 1583 }, 1564 1584 "source": "hosted", 1565 - "version": "2.3.1" 1585 + "version": "2.3.2" 1566 1586 }, 1567 1587 "shared_preferences_web": { 1568 1588 "dependency": "transitive", ··· 1588 1608 "dependency": "direct main", 1589 1609 "description": { 1590 1610 "name": "shared_storage", 1591 - "sha256": "7c65a9d64f0f5521256be974cfd74010af12196657cec9f9fb7b03b2f11bcaf6", 1611 + "sha256": "cf20428d06af065311b71e09cbfbbfe431e979a3bf9180001c1952129b7c708f", 1592 1612 "url": "https://pub.dev" 1593 1613 }, 1594 1614 "source": "hosted", 1595 - "version": "0.8.0" 1615 + "version": "0.8.1" 1596 1616 }, 1597 1617 "shelf": { 1598 1618 "dependency": "direct main", ··· 1664 1684 "dependency": "direct main", 1665 1685 "description": { 1666 1686 "name": "slang", 1667 - "sha256": "fe73e995287db77a32ef5a4ab8247bd20adc7a27ba2a4ba373a8132164eba654", 1687 + "sha256": "95dee03eb3fd1b36c99f365d4eace270a0d83c6148f8e7d1057806ef60cfaf12", 1668 1688 "url": "https://pub.dev" 1669 1689 }, 1670 1690 "source": "hosted", 1671 - "version": "3.26.1" 1691 + "version": "3.29.0" 1672 1692 }, 1673 1693 "slang_build_runner": { 1674 1694 "dependency": "direct dev", 1675 1695 "description": { 1676 1696 "name": "slang_build_runner", 1677 - "sha256": "72364adbb8d682b48b72402fd67f84e1b62fd96424eae98477a8fe58faec280c", 1697 + "sha256": "929ea4bf24f11e09afd2b01abd658f550da7eb4039ae83d91bc220f942e18cb3", 1678 1698 "url": "https://pub.dev" 1679 1699 }, 1680 1700 "source": "hosted", 1681 - "version": "3.26.1" 1701 + "version": "3.29.0" 1682 1702 }, 1683 1703 "slang_flutter": { 1684 1704 "dependency": "direct main", 1685 1705 "description": { 1686 1706 "name": "slang_flutter", 1687 - "sha256": "df1d6e5a7237028bcf94f7401d575fdfee8c9ca066b3e9a02acdcd5096e2a25a", 1707 + "sha256": "34c7cf297c608e24d3957a29e75c6790f4dbbfb1a4783d261a6c1e33ede7ad0f", 1688 1708 "url": "https://pub.dev" 1689 1709 }, 1690 1710 "source": "hosted", 1691 - "version": "3.26.1" 1711 + "version": "3.29.0" 1692 1712 }, 1693 1713 "slang_gpt": { 1694 1714 "dependency": "direct dev", ··· 1704 1724 "dependency": "transitive", 1705 1725 "description": { 1706 1726 "name": "source_gen", 1707 - "sha256": "fc0da689e5302edb6177fdd964efcb7f58912f43c28c2047a808f5bfff643d16", 1727 + "sha256": "14658ba5f669685cd3d63701d01b31ea748310f7ab854e471962670abcf57832", 1708 1728 "url": "https://pub.dev" 1709 1729 }, 1710 1730 "source": "hosted", 1711 - "version": "1.4.0" 1731 + "version": "1.5.0" 1712 1732 }, 1713 1733 "source_map_stack_trace": { 1714 1734 "dependency": "transitive", ··· 1844 1864 "dependency": "transitive", 1845 1865 "description": { 1846 1866 "name": "time", 1847 - "sha256": "83427e11d9072e038364a5e4da559e85869b227cf699a541be0da74f14140124", 1867 + "sha256": "ad8e018a6c9db36cb917a031853a1aae49467a93e0d464683e029537d848c221", 1848 1868 "url": "https://pub.dev" 1849 1869 }, 1850 1870 "source": "hosted", 1851 - "version": "2.1.3" 1871 + "version": "2.1.4" 1852 1872 }, 1853 1873 "timing": { 1854 1874 "dependency": "transitive", ··· 1895 1915 "dependency": "direct main", 1896 1916 "description": { 1897 1917 "name": "url_launcher", 1898 - "sha256": "b1c9e98774adf8820c96fbc7ae3601231d324a7d5ebd8babe27b6dfac91357ba", 1918 + "sha256": "c512655380d241a337521703af62d2c122bf7b77a46ff7dd750092aa9433499c", 1899 1919 "url": "https://pub.dev" 1900 1920 }, 1901 1921 "source": "hosted", 1902 - "version": "6.2.1" 1922 + "version": "6.2.4" 1903 1923 }, 1904 1924 "url_launcher_android": { 1905 1925 "dependency": "transitive", 1906 1926 "description": { 1907 1927 "name": "url_launcher_android", 1908 - "sha256": "31222ffb0063171b526d3e569079cf1f8b294075ba323443fdc690842bfd4def", 1928 + "sha256": "d4ed0711849dd8e33eb2dd69c25db0d0d3fdc37e0a62e629fe32f57a22db2745", 1909 1929 "url": "https://pub.dev" 1910 1930 }, 1911 1931 "source": "hosted", 1912 - "version": "6.2.0" 1932 + "version": "6.3.0" 1913 1933 }, 1914 1934 "url_launcher_ios": { 1915 1935 "dependency": "transitive", 1916 1936 "description": { 1917 1937 "name": "url_launcher_ios", 1918 - "sha256": "bba3373219b7abb6b5e0d071b0fe66dfbe005d07517a68e38d4fc3638f35c6d3", 1938 + "sha256": "75bb6fe3f60070407704282a2d295630cab232991eb52542b18347a8a941df03", 1919 1939 "url": "https://pub.dev" 1920 1940 }, 1921 1941 "source": "hosted", 1922 - "version": "6.2.1" 1942 + "version": "6.2.4" 1923 1943 }, 1924 1944 "url_launcher_linux": { 1925 1945 "dependency": "transitive", 1926 1946 "description": { 1927 1947 "name": "url_launcher_linux", 1928 - "sha256": "9f2d390e096fdbe1e6e6256f97851e51afc2d9c423d3432f1d6a02a8a9a8b9fd", 1948 + "sha256": "ab360eb661f8879369acac07b6bb3ff09d9471155357da8443fd5d3cf7363811", 1929 1949 "url": "https://pub.dev" 1930 1950 }, 1931 1951 "source": "hosted", 1932 - "version": "3.1.0" 1952 + "version": "3.1.1" 1933 1953 }, 1934 1954 "url_launcher_macos": { 1935 1955 "dependency": "transitive", ··· 1945 1965 "dependency": "transitive", 1946 1966 "description": { 1947 1967 "name": "url_launcher_platform_interface", 1948 - "sha256": "980e8d9af422f477be6948bdfb68df8433be71f5743a188968b0c1b887807e50", 1968 + "sha256": "552f8a1e663569be95a8190206a38187b531910283c3e982193e4f2733f01029", 1949 1969 "url": "https://pub.dev" 1950 1970 }, 1951 1971 "source": "hosted", 1952 - "version": "2.2.0" 1972 + "version": "2.3.2" 1953 1973 }, 1954 1974 "url_launcher_web": { 1955 1975 "dependency": "transitive", ··· 1965 1985 "dependency": "transitive", 1966 1986 "description": { 1967 1987 "name": "url_launcher_windows", 1968 - "sha256": "7754a1ad30ee896b265f8d14078b0513a4dba28d358eabb9d5f339886f4a1adc", 1988 + "sha256": "ecf9725510600aa2bb6d7ddabe16357691b6d2805f66216a97d1b881e21beff7", 1969 1989 "url": "https://pub.dev" 1970 1990 }, 1971 1991 "source": "hosted", 1972 - "version": "3.1.0" 1992 + "version": "3.1.1" 1973 1993 }, 1974 1994 "uuid": { 1975 1995 "dependency": "direct main", ··· 1995 2015 "dependency": "transitive", 1996 2016 "description": { 1997 2017 "name": "video_player", 1998 - "sha256": "e16f0a83601a78d165dabc17e4dac50997604eb9e4cc76e10fa219046b70cef3", 2018 + "sha256": "fbf28ce8bcfe709ad91b5789166c832cb7a684d14f571a81891858fefb5bb1c2", 1999 2019 "url": "https://pub.dev" 2000 2020 }, 2001 2021 "source": "hosted", 2002 - "version": "2.8.1" 2022 + "version": "2.8.2" 2003 2023 }, 2004 2024 "video_player_android": { 2005 2025 "dependency": "transitive", 2006 2026 "description": { 2007 2027 "name": "video_player_android", 2008 - "sha256": "3fe89ab07fdbce786e7eb25b58532d6eaf189ceddc091cb66cba712f8d9e8e55", 2028 + "sha256": "4dd9b8b86d70d65eecf3dcabfcdfbb9c9115d244d022654aba49a00336d540c2", 2009 2029 "url": "https://pub.dev" 2010 2030 }, 2011 2031 "source": "hosted", 2012 - "version": "2.4.10" 2032 + "version": "2.4.12" 2013 2033 }, 2014 2034 "video_player_avfoundation": { 2015 2035 "dependency": "transitive", ··· 2025 2045 "dependency": "transitive", 2026 2046 "description": { 2027 2047 "name": "video_player_platform_interface", 2028 - "sha256": "be72301bf2c0150ab35a8c34d66e5a99de525f6de1e8d27c0672b836fe48f73a", 2048 + "sha256": "236454725fafcacf98f0f39af0d7c7ab2ce84762e3b63f2cbb3ef9a7e0550bc6", 2029 2049 "url": "https://pub.dev" 2030 2050 }, 2031 2051 "source": "hosted", 2032 - "version": "6.2.1" 2052 + "version": "6.2.2" 2033 2053 }, 2034 2054 "video_player_web": { 2035 2055 "dependency": "transitive", 2036 2056 "description": { 2037 2057 "name": "video_player_web", 2038 - "sha256": "ab7a462b07d9ca80bed579e30fb3bce372468f1b78642e0911b10600f2c5cb5b", 2058 + "sha256": "34beb3a07d4331a24f7e7b2f75b8e2b103289038e07e65529699a671b6a6e2cb", 2039 2059 "url": "https://pub.dev" 2040 2060 }, 2041 2061 "source": "hosted", 2042 - "version": "2.1.2" 2062 + "version": "2.1.3" 2043 2063 }, 2044 2064 "vm_service": { 2045 2065 "dependency": "transitive", ··· 2115 2135 "dependency": "direct main", 2116 2136 "description": { 2117 2137 "name": "wechat_assets_picker", 2118 - "sha256": "0856437acd3a013f34cbca4448ad08bd004f387fc2b11b007b4713f00d63fcb7", 2138 + "sha256": "f78c7797dc88e3c9170d318acc9f535ca104ab648cc69ab3b7745f1ceac29910", 2119 2139 "url": "https://pub.dev" 2120 2140 }, 2121 2141 "source": "hosted", 2122 - "version": "8.8.0" 2142 + "version": "8.8.1+1" 2123 2143 }, 2124 2144 "win32": { 2125 2145 "dependency": "transitive", ··· 2145 2165 "dependency": "direct main", 2146 2166 "description": { 2147 2167 "name": "window_manager", 2148 - "sha256": "dcc865277f26a7dad263a47d0e405d77e21f12cb71f30333a52710a408690bd7", 2168 + "sha256": "b3c895bdf936c77b83c5254bec2e6b3f066710c1f89c38b20b8acc382b525494", 2149 2169 "url": "https://pub.dev" 2150 2170 }, 2151 2171 "source": "hosted", 2152 - "version": "0.3.7" 2172 + "version": "0.3.8" 2153 2173 }, 2154 2174 "xdg_directories": { 2155 2175 "dependency": "transitive", 2156 2176 "description": { 2157 2177 "name": "xdg_directories", 2158 - "sha256": "589ada45ba9e39405c198fe34eb0f607cddb2108527e658136120892beac46d2", 2178 + "sha256": "faea9dee56b520b55a566385b84f2e8de55e7496104adada9962e0bd11bcff1d", 2159 2179 "url": "https://pub.dev" 2160 2180 }, 2161 2181 "source": "hosted", 2162 - "version": "1.0.3" 2182 + "version": "1.0.4" 2163 2183 }, 2164 2184 "xml": { 2165 2185 "dependency": "transitive", ··· 2185 2205 "dependency": "direct main", 2186 2206 "description": { 2187 2207 "name": "yaru", 2188 - "sha256": "037219db9ffe757eae0d929cb9dc1a8b27af9850dc6c0d89ecf597dc4f78a5b6", 2208 + "sha256": "e9ccb22cb283ecf3f6b21d64dee9764d4abff65a44f48ce21aa13b9eae3e3be5", 2189 2209 "url": "https://pub.dev" 2190 2210 }, 2191 2211 "source": "hosted", 2192 - "version": "1.2.0" 2212 + "version": "1.2.2" 2193 2213 } 2194 2214 }, 2195 2215 "sdks": {
+1 -1
pkgs/applications/networking/localsend/update.sh
··· 1 1 #! /usr/bin/env nix-shell 2 - #! nix-shell -I nixpkgs=./. -i bash -p curl gnused jq yq nix-prefetch-url 2 + #! nix-shell -I nixpkgs=./. -i bash -p curl gnused jq yq nix 3 3 4 4 set -eou pipefail 5 5
+2 -2
pkgs/applications/networking/nextcloud-client/default.nix
··· 26 26 27 27 stdenv.mkDerivation rec { 28 28 pname = "nextcloud-client"; 29 - version = "3.12.0"; 29 + version = "3.12.1"; 30 30 31 31 outputs = [ "out" "dev" ]; 32 32 ··· 34 34 owner = "nextcloud"; 35 35 repo = "desktop"; 36 36 rev = "v${version}"; 37 - hash = "sha256-77vsl7BvptNlU/1epn4Eo+3Lnedn5awUgqbkyapW7+A="; 37 + hash = "sha256-WGmabfOuEs9WRq1Ta7ZiZQuscoEdxhaFhuppE7MpZfk="; 38 38 }; 39 39 40 40 patches = [
+6 -4
pkgs/applications/office/zotero/zotero_7.nix
··· 47 47 version = "7.0.0-beta"; 48 48 49 49 src = fetchurl { 50 - url = "https://download.zotero.org/client/beta/${version}.51%2B7c5600913/Zotero-${version}.51%2B7c5600913_linux-x86_64.tar.bz2"; 51 - hash = "sha256-zJ+jG7zlvWq+WEYOPyMIhqHPfsUe9tn0cbRyibQ7bFw="; 50 + url = "https://download.zotero.org/client/beta/${version}.65%2Bb047f3d90/Zotero-${version}.65%2Bb047f3d90_linux-x86_64.tar.bz2"; 51 + hash = "sha256-e7T/hvb8bFb4hkouihBkgqUu4ugYoUMHNVKxh0r/WUM="; 52 52 }; 53 53 54 54 nativeBuildInputs = [ ··· 125 125 # install desktop file and icons. 126 126 mkdir -p $out/share/applications 127 127 cp ${desktopItem}/share/applications/* $out/share/applications/ 128 - for size in 16 32 48 256; do 129 - install -Dm444 chrome/icons/default/default$size.png \ 128 + for size in 32 64 128; do 129 + install -Dm444 icons/icon$size.png \ 130 130 $out/share/icons/hicolor/''${size}x''${size}/apps/zotero.png 131 131 done 132 + install -Dm444 icons/symbolic.svg \ 133 + $out/share/icons/hicolor/symbolic/apps/zotero-symbolic.svg 132 134 133 135 runHook postInstall 134 136 '';
+3 -3
pkgs/applications/science/math/eigenmath/default.nix
··· 7 7 8 8 stdenv.mkDerivation rec { 9 9 pname = "eigenmath"; 10 - version = "unstable-2024-02-25"; 10 + version = "unstable-2024-03-06"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "georgeweigt"; 14 14 repo = pname; 15 - rev = "4391a5bfe22d095cdf9fc12f376f64a8ffccccd9"; 16 - hash = "sha256-p+dnu35HGX8SgVpq5NczoZVehzfcuN+uucGurT7lWYM="; 15 + rev = "ff2a5f89969e106f57ad624ac3897e06f26692d7"; 16 + hash = "sha256-54nw734EjICaac8PvdgiGeDWdJTCXnWVUJL2uE937E4="; 17 17 }; 18 18 19 19 checkPhase = let emulator = stdenv.hostPlatform.emulator buildPackages; in ''
+3 -3
pkgs/applications/science/math/geogebra/default.nix
··· 1 - { lib, stdenv, fetchurl, xorg, jre, makeDesktopItem, makeWrapper, unzip, language ? "en_US" }: 1 + { lib, stdenv, fetchurl, libGL, xorg, jre, makeDesktopItem, makeWrapper, unzip, language ? "en_US" }: 2 2 let 3 3 pname = "geogebra"; 4 4 version = "5-0-785-0"; ··· 55 55 installPhase = '' 56 56 install -D geogebra/* -t "$out/libexec/geogebra/" 57 57 58 - # The bundled jogl (required for 3D graphics) links to libXxf86vm 58 + # The bundled jogl (required for 3D graphics) links to libXxf86vm, and loads libGL at runtime 59 59 # OpenGL versions newer than 3.0 cause "javax.media.opengl.GLException: Not a GL2 implementation" 60 60 makeWrapper "$out/libexec/geogebra/geogebra" "$out/bin/geogebra" \ 61 - --prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath [ xorg.libXxf86vm ]}" \ 61 + --prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath [ libGL xorg.libXxf86vm ]}" \ 62 62 --set MESA_GL_VERSION_OVERRIDE 3.0 \ 63 63 --set JAVACMD "${jre}/bin/java" \ 64 64 --set GG_PATH "$out/libexec/geogebra" \
+2 -2
pkgs/applications/video/mpv/scripts/mpvacious.nix
··· 9 9 10 10 buildLua rec { 11 11 pname = "mpvacious"; 12 - version = "0.25"; 12 + version = "0.26"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "Ajatt-Tools"; 16 16 repo = "mpvacious"; 17 17 rev = "v${version}"; 18 - sha256 = "sha256-XTnib4cguWFEvZtmsLfkesbjFbkt2YoyYLT587ajyUM="; 18 + sha256 = "sha256-QPLJC6SxocvOPeY6qI8q+EyXNGVef3J/Z38W0/rzFCg="; 19 19 }; 20 20 passthru.updateScript = gitUpdater { 21 21 rev-prefix = "v";
+2 -2
pkgs/by-name/am/amazon-ssm-agent/package.nix
··· 42 42 in 43 43 buildGoModule rec { 44 44 pname = "amazon-ssm-agent"; 45 - version = "3.2.2222.0"; 45 + version = "3.3.40.0"; 46 46 47 47 src = fetchFromGitHub { 48 48 owner = "aws"; 49 49 repo = "amazon-ssm-agent"; 50 50 rev = "refs/tags/${version}"; 51 - hash = "sha256-0mXf7n+Cd5t3xAB/84ejdCzcZviBLODBPkJah1X63+0="; 51 + hash = "sha256-o1THIj0QAafqhbFoZKVZXWiAEcaYB+xP5Y2e45D/6Xg="; 52 52 }; 53 53 54 54 vendorHash = null;
+5 -5
pkgs/by-name/co/codeium/package.nix
··· 13 13 }.${system} or throwSystem; 14 14 15 15 hash = { 16 - x86_64-linux = "sha256-+SdAippxuJ0LvT+w6xSvTpzCv5EPjxXJKH4mcmnxu9Y="; 17 - aarch64-linux = "sha256-cX+P0WcT+0oYDAcUJJ0+SRWPQCdv4rhrBf5BdPrF1Hg="; 18 - x86_64-darwin = "sha256-eQjwViY5OsFzFtKkjLbrQgGNVBBpNNJjlfu8t/F37hI="; 19 - aarch64-darwin = "sha256-xfB81SLuVa1wKcIGJZFxjdCSPmPXg0vYXtkCftiXBtU="; 16 + x86_64-linux = "sha256-/heSkG7TtDHzNfvXblR6A5y+c12EmuQ8XZGDRqIEvtg="; 17 + aarch64-linux = "sha256-WkpcNwWS0e5NURfHloV4xjIGSRPfP0RRflq98NY16AY="; 18 + x86_64-darwin = "sha256-nXPaangEVRZf/dEt+i0AWOyT66jGIcRaN4ZO3k/VMh4="; 19 + aarch64-darwin = "sha256-hs2lLy9thrp414+oQSf9euwNuU06UggLQ/EuMg/lrc0="; 20 20 }.${system} or throwSystem; 21 21 22 22 bin = "$out/bin/codeium_language_server"; ··· 24 24 in 25 25 stdenv.mkDerivation (finalAttrs: { 26 26 pname = "codeium"; 27 - version = "1.8.0"; 27 + version = "1.8.5"; 28 28 src = fetchurl { 29 29 name = "${finalAttrs.pname}-${finalAttrs.version}.gz"; 30 30 url = "https://github.com/Exafunction/codeium/releases/download/language-server-v${finalAttrs.version}/language_server_${plat}.gz";
+9
pkgs/by-name/es/espflash/package.nix
··· 3 3 , rustPlatform 4 4 , fetchFromGitHub 5 5 , pkg-config 6 + , installShellFiles 6 7 , udev 7 8 , stdenv 8 9 , Security ··· 24 25 25 26 nativeBuildInputs = [ 26 27 pkg-config 28 + installShellFiles 27 29 ]; 28 30 29 31 # Needed to get openssl-sys to use pkg-config. ··· 37 39 ]; 38 40 39 41 cargoHash = "sha256-Xj5FVTssC3e+mMhDHmKqV6lUQgaIv3aVc1yewbQSy9E="; 42 + 43 + postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) '' 44 + installShellCompletion --cmd espflash \ 45 + --bash <($out/bin/espflash completions bash) \ 46 + --zsh <($out/bin/espflash completions zsh) \ 47 + --fish <($out/bin/espflash completions fish) 48 + ''; 40 49 41 50 passthru.updateScript = nix-update-script { }; 42 51
+2 -2
pkgs/by-name/no/noto-fonts/package.nix
··· 18 18 19 19 stdenvNoCC.mkDerivation rec { 20 20 pname = "noto-fonts${suffix}"; 21 - version = "24.2.1"; 21 + version = "24.3.1"; 22 22 23 23 src = fetchFromGitHub { 24 24 owner = "notofonts"; 25 25 repo = "notofonts.github.io"; 26 26 rev = "noto-monthly-release-${version}"; 27 - hash = "sha256-gOiaV1K7vYp5XguJTKRgUXJA+46p7po972XgCxV68iA="; 27 + hash = "sha256-bopBRpIGXtRyAjBuMhJCjwFUlK8WDurxIFbZbRzEE40="; 28 28 }; 29 29 30 30 _variants = map (variant: builtins.replaceStrings [ " " ] [ "" ] variant) variants;
+51
pkgs/by-name/op/openttd-ttf/package.nix
··· 1 + { lib 2 + , stdenvNoCC 3 + , fetchFromGitHub 4 + , python3 5 + }: 6 + 7 + stdenvNoCC.mkDerivation (finalAttrs: { 8 + pname = "openttd-ttf"; 9 + version = "0.5"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "zephyris"; 13 + repo = "openttd-ttf"; 14 + rev = "refs/tags/${finalAttrs.version}"; 15 + hash = "sha256-GjtfwM268i3bUAX8Pw5/Og9029AuD1OZuJ2VIlFTogY="; 16 + }; 17 + 18 + nativeBuildInputs = [ 19 + (python3.withPackages (pp: with pp; [ 20 + fontforge 21 + pillow 22 + setuptools 23 + ])) 24 + ]; 25 + 26 + postPatch = '' 27 + chmod a+x build.sh 28 + patchShebangs --build build.sh 29 + ''; 30 + 31 + buildPhase = '' 32 + runHook preBuild 33 + ./build.sh 34 + runHook postBuild 35 + ''; 36 + 37 + installPhase = '' 38 + runHook preInstall 39 + install -m444 -Dt $out/share/fonts/truetype */*.ttf 40 + runHook postInstall 41 + ''; 42 + 43 + meta = with lib; { 44 + homepage = "https://github.com/zephyris/openttd-ttf"; 45 + changelog = "https://github.com/zephyris/openttd-ttf/releases/tag/${finalAttrs.version}"; 46 + description = "TrueType typefaces for text in a pixel art style, designed for use in OpenTTD"; 47 + license = [ licenses.gpl2 ]; 48 + platforms = platforms.all; 49 + maintainers = [ maintainers.sfrijters ]; 50 + }; 51 + })
+59
pkgs/by-name/ph/photocollage/package.nix
··· 1 + { lib 2 + , python3Packages 3 + , fetchFromGitHub 4 + , gettext 5 + , gdk-pixbuf 6 + , gobject-introspection 7 + , wrapGAppsHook 8 + }: 9 + 10 + python3Packages.buildPythonApplication rec { 11 + pname = "photocollage"; 12 + version = "1.4.6"; 13 + 14 + src = fetchFromGitHub { 15 + owner = "adrienverge"; 16 + repo = "PhotoCollage"; 17 + rev = "v${version}"; 18 + hash = "sha256-jDb2mFsok8TNi9+A/FAieqo7YbAUsmrFRBGwdGv71Xg="; 19 + }; 20 + 21 + propagatedBuildInputs = with python3Packages; [ 22 + pillow 23 + pycairo 24 + pygobject3 25 + ]; 26 + 27 + buildInputs = [ 28 + gdk-pixbuf 29 + ]; 30 + 31 + nativeBuildInputs = [ 32 + gettext 33 + gobject-introspection 34 + wrapGAppsHook 35 + ]; 36 + 37 + dontWrapGApps = true; 38 + 39 + preFixup = '' 40 + makeWrapperArgs+=("''${gappsWrapperArgs[@]}") 41 + ''; 42 + 43 + postInstall = '' 44 + # Based on the debian package's list of files. Link: 45 + # https://packages.debian.org/bookworm/all/photocollage/filelist 46 + install -Dm0644 ./data/photocollage.desktop $out/share/applications/photocollage.desktop 47 + install -Dm0644 ./data/photocollage.appdata.xml $out/share/appdata/photocollage.appdata.xml 48 + cp -r ./data/icons $out/share/icons 49 + ''; 50 + 51 + meta = { 52 + description = "Graphical tool to make photo collage posters"; 53 + homepage = "https://github.com/adrienverge/PhotoCollage"; 54 + license = lib.licenses.gpl2Plus; 55 + maintainers = with lib.maintainers; [ eliandoran ]; 56 + platforms = lib.platforms.linux; 57 + mainProgram = "photocollage"; 58 + }; 59 + }
+82
pkgs/by-name/pt/ptouch-driver/package.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , cups 5 + , cups-filters 6 + , foomatic-db-engine 7 + , fetchpatch 8 + , ghostscript 9 + , libpng 10 + , libxml2 11 + , autoreconfHook 12 + , perl 13 + , patchPpdFilesHook 14 + }: 15 + 16 + stdenv.mkDerivation rec { 17 + pname = "ptouch-driver"; 18 + version = "1.7"; 19 + 20 + src = fetchFromGitHub { 21 + owner = "philpem"; 22 + repo = "printer-driver-ptouch"; 23 + rev = "v${version}"; 24 + hash = "sha256-3ZotSHn7lERp53hAzx47Ct/k565rEoensCcltwX/Xls="; 25 + }; 26 + 27 + patches = [ 28 + # Fixes some invalid XML file that otherwise causes a build failure 29 + (fetchpatch { 30 + name = "fix-brother-ql-600.patch"; 31 + url = "https://github.com/philpem/printer-driver-ptouch/commit/b3c53b3bc4dd98ed172f2c79405c7c09b3b3836a.patch"; 32 + hash = "sha256-y5bHKFeRXx8Wdl1++l4QNGgiY41LY5uzrRdOlaZyF9I="; 33 + }) 34 + ]; 35 + 36 + buildInputs = [ cups cups-filters ghostscript libpng libxml2 ]; 37 + nativeBuildInputs = [ 38 + autoreconfHook 39 + foomatic-db-engine 40 + patchPpdFilesHook 41 + (perl.withPackages (pp: with pp; [ XMLLibXML ])) 42 + ]; 43 + 44 + postPatch = '' 45 + patchShebangs ./foomaticalize 46 + ''; 47 + 48 + postInstall = '' 49 + export FOOMATICDB="${placeholder "out"}/share/foomatic" 50 + mkdir -p "${placeholder "out"}/share/cups/model" 51 + foomatic-compiledb -j "$NIX_BUILD_CORES" -d "${placeholder "out"}/share/cups/model/ptouch-driver" 52 + ''; 53 + 54 + # compress ppd files 55 + postFixup = '' 56 + echo 'compressing ppd files' 57 + find -H "${placeholder "out"}/share/cups/model/ptouch-driver" -type f -iname '*.ppd' -print0 \ 58 + | xargs -0r -n 4 -P "$NIX_BUILD_CORES" gzip -9n 59 + ''; 60 + 61 + # Comments indicate the respective 62 + # package the command is contained in. 63 + ppdFileCommands = [ 64 + "rastertoptch" # ptouch-driver 65 + "gs" # ghostscript 66 + "foomatic-rip" # cups-filters 67 + ]; 68 + 69 + meta = with lib; { 70 + changelog = "https://github.com/philpem/printer-driver-ptouch/releases/tag/v${version}"; 71 + description = "Printer Driver for Brother P-touch and QL Label Printers"; 72 + downloadPage = "https://github.com/philpem/printer-driver-ptouch"; 73 + homepage = "https://github.com/philpem/printer-driver-ptouch"; 74 + license = licenses.gpl2Plus; 75 + maintainers = with maintainers; [ sascha8a ]; 76 + platforms = platforms.linux; 77 + longDescription = '' 78 + This is ptouch-driver, a printer driver based on CUPS and foomatic, 79 + for the Brother P-touch and QL label printer families. 80 + ''; 81 + }; 82 + }
+38
pkgs/by-name/ro/rose-pine-cursor/package.nix
··· 1 + { lib 2 + , stdenvNoCC 3 + , fetchurl 4 + }: 5 + 6 + stdenvNoCC.mkDerivation (finalAttrs: { 7 + pname = "rose-pine-cursor"; 8 + version = "1.1.0"; 9 + 10 + srcs = [ 11 + (fetchurl { 12 + url = "https://github.com/rose-pine/cursor/releases/download/v${finalAttrs.version}/BreezeX-RosePine-Linux.tar.xz"; 13 + hash = "sha256-szDVnOjg5GAgn2OKl853K3jZ5rVsz2PIpQ6dlBKJoa8="; 14 + }) 15 + (fetchurl { 16 + url = "https://github.com/rose-pine/cursor/releases/download/v${finalAttrs.version}/BreezeX-RosePineDawn-Linux.tar.xz"; 17 + hash = "sha256-hanfwx9ooT1TbmcgCr63KVYwC1OIzTwjmxzi4Zjcrdg="; 18 + }) 19 + ]; 20 + 21 + sourceRoot = "."; 22 + 23 + installPhase = '' 24 + runHook preInstall 25 + mkdir -p $out/share/icons 26 + cp -R BreezeX-RosePine-Linux $out/share/icons/ 27 + cp -R BreezeX-RosePineDawn-Linux $out/share/icons/ 28 + runHook postInstall 29 + ''; 30 + 31 + meta = with lib; { 32 + description = "Soho vibes for Cursors"; 33 + downloadPage = "https://github.com/rose-pine/cursor/releases"; 34 + homepage = "https://rosepinetheme.com/"; 35 + license = licenses.gpl3; 36 + maintainers = with maintainers; [ aikooo7 ]; 37 + }; 38 + })
+29
pkgs/by-name/ta/tabby/0001-nix-build-use-nix-native-llama-cpp-package.patch
··· 1 + From c0152b6bbd751313be756fdcd7b3e3912567b535 Mon Sep 17 00:00:00 2001 2 + From: Will Owens <ghthor@gmail.com> 3 + Date: Fri, 1 Mar 2024 01:37:55 -0500 4 + Subject: [PATCH] nix-build: use nix native llama-cpp package 5 + 6 + --- 7 + crates/llama-cpp-bindings/build.rs | 4 ++-- 8 + 1 file changed, 2 insertions(+), 2 deletions(-) 9 + 10 + diff --git a/crates/llama-cpp-bindings/build.rs b/crates/llama-cpp-bindings/build.rs 11 + index 06629ac4..aa004493 100644 12 + --- a/crates/llama-cpp-bindings/build.rs 13 + +++ b/crates/llama-cpp-bindings/build.rs 14 + @@ -12,10 +12,10 @@ fn main() { 15 + 16 + println!("cargo:rerun-if-changed=include/engine.h"); 17 + println!("cargo:rerun-if-changed=src/engine.cc"); 18 + + println!("cargo:rustc-link-search=native={}", env::var("LLAMA_CPP_LIB").unwrap()); 19 + println!("cargo:rustc-link-lib=llama"); 20 + - println!("cargo:rustc-link-lib=ggml_static"); 21 + + println!("cargo:rustc-link-lib=ggml_shared"); 22 + 23 + - build_llama_cpp(); 24 + build_cxx_binding(); 25 + } 26 + 27 + -- 28 + 2.43.1 29 +
+5510
pkgs/by-name/ta/tabby/Cargo.lock
··· 1 + # This file is automatically @generated by Cargo. 2 + # It is not intended for manual editing. 3 + version = 3 4 + 5 + [[package]] 6 + name = "addr2line" 7 + version = "0.19.0" 8 + source = "registry+https://github.com/rust-lang/crates.io-index" 9 + checksum = "a76fd60b23679b7d19bd066031410fb7e458ccc5e958eb5c325888ce4baedc97" 10 + dependencies = [ 11 + "gimli", 12 + ] 13 + 14 + [[package]] 15 + name = "adler" 16 + version = "1.0.2" 17 + source = "registry+https://github.com/rust-lang/crates.io-index" 18 + checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 19 + 20 + [[package]] 21 + name = "ahash" 22 + version = "0.8.7" 23 + source = "registry+https://github.com/rust-lang/crates.io-index" 24 + checksum = "77c3a9648d43b9cd48db467b3f87fdd6e146bcc88ab0180006cef2179fe11d01" 25 + dependencies = [ 26 + "cfg-if", 27 + "once_cell", 28 + "version_check", 29 + "zerocopy", 30 + ] 31 + 32 + [[package]] 33 + name = "aho-corasick" 34 + version = "1.1.2" 35 + source = "registry+https://github.com/rust-lang/crates.io-index" 36 + checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0" 37 + dependencies = [ 38 + "memchr", 39 + ] 40 + 41 + [[package]] 42 + name = "aim-downloader" 43 + version = "0.8.3" 44 + dependencies = [ 45 + "async-stream", 46 + "clap", 47 + "custom_error", 48 + "dotenvy", 49 + "futures-util", 50 + "home", 51 + "indicatif", 52 + "netrc", 53 + "regex", 54 + "reqwest", 55 + "serial_test 2.0.0", 56 + "sha2", 57 + "strfmt", 58 + "tokio", 59 + "tokio-util", 60 + "url-parse", 61 + ] 62 + 63 + [[package]] 64 + name = "allocator-api2" 65 + version = "0.2.16" 66 + source = "registry+https://github.com/rust-lang/crates.io-index" 67 + checksum = "0942ffc6dcaadf03badf6e6a2d0228460359d5e34b57ccdc720b7382dfbd5ec5" 68 + 69 + [[package]] 70 + name = "android-tzdata" 71 + version = "0.1.1" 72 + source = "registry+https://github.com/rust-lang/crates.io-index" 73 + checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" 74 + 75 + [[package]] 76 + name = "android_system_properties" 77 + version = "0.1.5" 78 + source = "registry+https://github.com/rust-lang/crates.io-index" 79 + checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 80 + dependencies = [ 81 + "libc", 82 + ] 83 + 84 + [[package]] 85 + name = "ansi_term" 86 + version = "0.12.1" 87 + source = "registry+https://github.com/rust-lang/crates.io-index" 88 + checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2" 89 + dependencies = [ 90 + "winapi", 91 + ] 92 + 93 + [[package]] 94 + name = "anstream" 95 + version = "0.6.4" 96 + source = "registry+https://github.com/rust-lang/crates.io-index" 97 + checksum = "2ab91ebe16eb252986481c5b62f6098f3b698a45e34b5b98200cf20dd2484a44" 98 + dependencies = [ 99 + "anstyle", 100 + "anstyle-parse", 101 + "anstyle-query", 102 + "anstyle-wincon", 103 + "colorchoice", 104 + "utf8parse", 105 + ] 106 + 107 + [[package]] 108 + name = "anstyle" 109 + version = "1.0.0" 110 + source = "registry+https://github.com/rust-lang/crates.io-index" 111 + checksum = "41ed9a86bf92ae6580e0a31281f65a1b1d867c0cc68d5346e2ae128dddfa6a7d" 112 + 113 + [[package]] 114 + name = "anstyle-parse" 115 + version = "0.2.0" 116 + source = "registry+https://github.com/rust-lang/crates.io-index" 117 + checksum = "e765fd216e48e067936442276d1d57399e37bce53c264d6fefbe298080cb57ee" 118 + dependencies = [ 119 + "utf8parse", 120 + ] 121 + 122 + [[package]] 123 + name = "anstyle-query" 124 + version = "1.0.0" 125 + source = "registry+https://github.com/rust-lang/crates.io-index" 126 + checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b" 127 + dependencies = [ 128 + "windows-sys 0.48.0", 129 + ] 130 + 131 + [[package]] 132 + name = "anstyle-wincon" 133 + version = "3.0.1" 134 + source = "registry+https://github.com/rust-lang/crates.io-index" 135 + checksum = "f0699d10d2f4d628a98ee7b57b289abbc98ff3bad977cb3152709d4bf2330628" 136 + dependencies = [ 137 + "anstyle", 138 + "windows-sys 0.48.0", 139 + ] 140 + 141 + [[package]] 142 + name = "anyhow" 143 + version = "1.0.71" 144 + source = "registry+https://github.com/rust-lang/crates.io-index" 145 + checksum = "9c7d0618f0e0b7e8ff11427422b64564d5fb0be1940354bfe2e0529b18a9d9b8" 146 + 147 + [[package]] 148 + name = "arc-swap" 149 + version = "1.6.0" 150 + source = "registry+https://github.com/rust-lang/crates.io-index" 151 + checksum = "bddcadddf5e9015d310179a59bb28c4d4b9920ad0f11e8e14dbadf654890c9a6" 152 + 153 + [[package]] 154 + name = "argon2" 155 + version = "0.5.2" 156 + source = "registry+https://github.com/rust-lang/crates.io-index" 157 + checksum = "17ba4cac0a46bc1d2912652a751c47f2a9f3a7fe89bcae2275d418f5270402f9" 158 + dependencies = [ 159 + "base64ct", 160 + "blake2", 161 + "cpufeatures", 162 + "password-hash", 163 + ] 164 + 165 + [[package]] 166 + name = "ascii" 167 + version = "0.9.3" 168 + source = "registry+https://github.com/rust-lang/crates.io-index" 169 + checksum = "eab1c04a571841102f5345a8fc0f6bb3d31c315dec879b5c6e42e40ce7ffa34e" 170 + 171 + [[package]] 172 + name = "assert-json-diff" 173 + version = "2.0.2" 174 + source = "registry+https://github.com/rust-lang/crates.io-index" 175 + checksum = "47e4f2b81832e72834d7518d8487a0396a28cc408186a2e8854c0f98011faf12" 176 + dependencies = [ 177 + "serde", 178 + "serde_json", 179 + ] 180 + 181 + [[package]] 182 + name = "assert_matches" 183 + version = "1.5.0" 184 + source = "registry+https://github.com/rust-lang/crates.io-index" 185 + checksum = "9b34d609dfbaf33d6889b2b7106d3ca345eacad44200913df5ba02bfd31d2ba9" 186 + 187 + [[package]] 188 + name = "async-stream" 189 + version = "0.3.5" 190 + source = "registry+https://github.com/rust-lang/crates.io-index" 191 + checksum = "cd56dd203fef61ac097dd65721a419ddccb106b2d2b70ba60a6b529f03961a51" 192 + dependencies = [ 193 + "async-stream-impl", 194 + "futures-core", 195 + "pin-project-lite", 196 + ] 197 + 198 + [[package]] 199 + name = "async-stream-impl" 200 + version = "0.3.5" 201 + source = "registry+https://github.com/rust-lang/crates.io-index" 202 + checksum = "16e62a023e7c117e27523144c5d2459f4397fcc3cab0085af8e2224f643a0193" 203 + dependencies = [ 204 + "proc-macro2", 205 + "quote", 206 + "syn 2.0.32", 207 + ] 208 + 209 + [[package]] 210 + name = "async-trait" 211 + version = "0.1.74" 212 + source = "registry+https://github.com/rust-lang/crates.io-index" 213 + checksum = "a66537f1bb974b254c98ed142ff995236e81b9d0fe4db0575f46612cb15eb0f9" 214 + dependencies = [ 215 + "proc-macro2", 216 + "quote", 217 + "syn 2.0.32", 218 + ] 219 + 220 + [[package]] 221 + name = "autocfg" 222 + version = "1.1.0" 223 + source = "registry+https://github.com/rust-lang/crates.io-index" 224 + checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 225 + 226 + [[package]] 227 + name = "axum" 228 + version = "0.6.20" 229 + source = "registry+https://github.com/rust-lang/crates.io-index" 230 + checksum = "3b829e4e32b91e643de6eafe82b1d90675f5874230191a4ffbc1b336dec4d6bf" 231 + dependencies = [ 232 + "async-trait", 233 + "axum-core", 234 + "base64 0.21.5", 235 + "bitflags 1.3.2", 236 + "bytes", 237 + "futures-util", 238 + "headers", 239 + "http", 240 + "http-body", 241 + "hyper", 242 + "itoa", 243 + "matchit", 244 + "memchr", 245 + "mime", 246 + "percent-encoding", 247 + "pin-project-lite", 248 + "rustversion", 249 + "serde", 250 + "serde_json", 251 + "serde_path_to_error", 252 + "serde_urlencoded", 253 + "sha1", 254 + "sync_wrapper", 255 + "tokio", 256 + "tokio-tungstenite", 257 + "tower", 258 + "tower-layer", 259 + "tower-service", 260 + ] 261 + 262 + [[package]] 263 + name = "axum-core" 264 + version = "0.3.4" 265 + source = "registry+https://github.com/rust-lang/crates.io-index" 266 + checksum = "759fa577a247914fd3f7f76d62972792636412fbfd634cd452f6a385a74d2d2c" 267 + dependencies = [ 268 + "async-trait", 269 + "bytes", 270 + "futures-util", 271 + "http", 272 + "http-body", 273 + "mime", 274 + "rustversion", 275 + "tower-layer", 276 + "tower-service", 277 + ] 278 + 279 + [[package]] 280 + name = "axum-prometheus" 281 + version = "0.4.0" 282 + source = "registry+https://github.com/rust-lang/crates.io-index" 283 + checksum = "97def327c5481791abb57ac295bfc70f2e1a0727675b7dbf74bd1b27a72b6fd8" 284 + dependencies = [ 285 + "axum", 286 + "axum-core", 287 + "bytes", 288 + "futures", 289 + "futures-core", 290 + "http", 291 + "http-body", 292 + "matchit", 293 + "metrics", 294 + "metrics-exporter-prometheus", 295 + "once_cell", 296 + "pin-project", 297 + "tokio", 298 + "tower", 299 + "tower-http 0.4.0", 300 + ] 301 + 302 + [[package]] 303 + name = "axum-tracing-opentelemetry" 304 + version = "0.10.0" 305 + source = "registry+https://github.com/rust-lang/crates.io-index" 306 + checksum = "164b95427e83b79583c7699a72b4a6b485a12bbdef5b5c054ee5ff2296d82f52" 307 + dependencies = [ 308 + "axum", 309 + "futures", 310 + "http", 311 + "opentelemetry", 312 + "tower", 313 + "tower-http 0.3.5", 314 + "tracing", 315 + "tracing-opentelemetry", 316 + ] 317 + 318 + [[package]] 319 + name = "backtrace" 320 + version = "0.3.67" 321 + source = "registry+https://github.com/rust-lang/crates.io-index" 322 + checksum = "233d376d6d185f2a3093e58f283f60f880315b6c60075b01f36b3b85154564ca" 323 + dependencies = [ 324 + "addr2line", 325 + "cc", 326 + "cfg-if", 327 + "libc", 328 + "miniz_oxide 0.6.2", 329 + "object", 330 + "rustc-demangle", 331 + ] 332 + 333 + [[package]] 334 + name = "base64" 335 + version = "0.13.1" 336 + source = "registry+https://github.com/rust-lang/crates.io-index" 337 + checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" 338 + 339 + [[package]] 340 + name = "base64" 341 + version = "0.21.5" 342 + source = "registry+https://github.com/rust-lang/crates.io-index" 343 + checksum = "35636a1494ede3b646cc98f74f8e62c773a38a659ebc777a2cf26b9b74171df9" 344 + 345 + [[package]] 346 + name = "base64ct" 347 + version = "1.6.0" 348 + source = "registry+https://github.com/rust-lang/crates.io-index" 349 + checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b" 350 + 351 + [[package]] 352 + name = "bincode" 353 + version = "1.3.3" 354 + source = "registry+https://github.com/rust-lang/crates.io-index" 355 + checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad" 356 + dependencies = [ 357 + "serde", 358 + ] 359 + 360 + [[package]] 361 + name = "bitflags" 362 + version = "1.3.2" 363 + source = "registry+https://github.com/rust-lang/crates.io-index" 364 + checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 365 + 366 + [[package]] 367 + name = "bitflags" 368 + version = "2.4.0" 369 + source = "registry+https://github.com/rust-lang/crates.io-index" 370 + checksum = "b4682ae6287fcf752ecaabbfcc7b6f9b72aa33933dc23a554d853aea8eea8635" 371 + 372 + [[package]] 373 + name = "bitpacking" 374 + version = "0.8.4" 375 + source = "registry+https://github.com/rust-lang/crates.io-index" 376 + checksum = "a8c7d2ac73c167c06af4a5f37e6e59d84148d57ccbe4480b76f0273eefea82d7" 377 + dependencies = [ 378 + "crunchy", 379 + ] 380 + 381 + [[package]] 382 + name = "blake2" 383 + version = "0.10.6" 384 + source = "registry+https://github.com/rust-lang/crates.io-index" 385 + checksum = "46502ad458c9a52b69d4d4d32775c788b7a1b85e8bc9d482d92250fc0e3f8efe" 386 + dependencies = [ 387 + "digest", 388 + ] 389 + 390 + [[package]] 391 + name = "block-buffer" 392 + version = "0.10.4" 393 + source = "registry+https://github.com/rust-lang/crates.io-index" 394 + checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 395 + dependencies = [ 396 + "generic-array", 397 + ] 398 + 399 + [[package]] 400 + name = "bson" 401 + version = "1.2.4" 402 + source = "registry+https://github.com/rust-lang/crates.io-index" 403 + checksum = "de0aa578035b938855a710ba58d43cfb4d435f3619f99236fb35922a574d6cb1" 404 + dependencies = [ 405 + "base64 0.13.1", 406 + "chrono", 407 + "hex", 408 + "lazy_static", 409 + "linked-hash-map", 410 + "rand 0.7.3", 411 + "serde", 412 + "serde_json", 413 + "uuid 0.8.2", 414 + ] 415 + 416 + [[package]] 417 + name = "bstr" 418 + version = "1.7.0" 419 + source = "registry+https://github.com/rust-lang/crates.io-index" 420 + checksum = "c79ad7fb2dd38f3dabd76b09c6a5a20c038fc0213ef1e9afd30eb777f120f019" 421 + dependencies = [ 422 + "memchr", 423 + "serde", 424 + ] 425 + 426 + [[package]] 427 + name = "bumpalo" 428 + version = "3.13.0" 429 + source = "registry+https://github.com/rust-lang/crates.io-index" 430 + checksum = "a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1" 431 + 432 + [[package]] 433 + name = "byteorder" 434 + version = "1.4.3" 435 + source = "registry+https://github.com/rust-lang/crates.io-index" 436 + checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" 437 + 438 + [[package]] 439 + name = "bytes" 440 + version = "1.5.0" 441 + source = "registry+https://github.com/rust-lang/crates.io-index" 442 + checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223" 443 + 444 + [[package]] 445 + name = "cargo-lock" 446 + version = "9.0.0" 447 + source = "registry+https://github.com/rust-lang/crates.io-index" 448 + checksum = "e11c675378efb449ed3ce8de78d75d0d80542fc98487c26aba28eb3b82feac72" 449 + dependencies = [ 450 + "petgraph", 451 + "semver", 452 + "serde", 453 + "toml", 454 + "url", 455 + ] 456 + 457 + [[package]] 458 + name = "cc" 459 + version = "1.0.83" 460 + source = "registry+https://github.com/rust-lang/crates.io-index" 461 + checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0" 462 + dependencies = [ 463 + "jobserver", 464 + "libc", 465 + ] 466 + 467 + [[package]] 468 + name = "census" 469 + version = "0.4.1" 470 + source = "registry+https://github.com/rust-lang/crates.io-index" 471 + checksum = "0fafee10a5dd1cffcb5cc560e0d0df8803d7355a2b12272e3557dee57314cb6e" 472 + 473 + [[package]] 474 + name = "cfg-if" 475 + version = "1.0.0" 476 + source = "registry+https://github.com/rust-lang/crates.io-index" 477 + checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 478 + 479 + [[package]] 480 + name = "chrono" 481 + version = "0.4.31" 482 + source = "registry+https://github.com/rust-lang/crates.io-index" 483 + checksum = "7f2c685bad3eb3d45a01354cedb7d5faa66194d1d58ba6e267a8de788f79db38" 484 + dependencies = [ 485 + "android-tzdata", 486 + "iana-time-zone", 487 + "js-sys", 488 + "num-traits", 489 + "serde", 490 + "wasm-bindgen", 491 + "windows-targets 0.48.0", 492 + ] 493 + 494 + [[package]] 495 + name = "chumsky" 496 + version = "0.9.3" 497 + source = "registry+https://github.com/rust-lang/crates.io-index" 498 + checksum = "8eebd66744a15ded14960ab4ccdbfb51ad3b81f51f3f04a80adac98c985396c9" 499 + dependencies = [ 500 + "hashbrown 0.14.3", 501 + "stacker", 502 + ] 503 + 504 + [[package]] 505 + name = "clap" 506 + version = "4.4.11" 507 + source = "registry+https://github.com/rust-lang/crates.io-index" 508 + checksum = "bfaff671f6b22ca62406885ece523383b9b64022e341e53e009a62ebc47a45f2" 509 + dependencies = [ 510 + "clap_builder", 511 + "clap_derive", 512 + ] 513 + 514 + [[package]] 515 + name = "clap_builder" 516 + version = "4.4.11" 517 + source = "registry+https://github.com/rust-lang/crates.io-index" 518 + checksum = "a216b506622bb1d316cd51328dce24e07bdff4a6128a47c7e7fad11878d5adbb" 519 + dependencies = [ 520 + "anstream", 521 + "anstyle", 522 + "clap_lex", 523 + "strsim 0.10.0", 524 + ] 525 + 526 + [[package]] 527 + name = "clap_derive" 528 + version = "4.4.7" 529 + source = "registry+https://github.com/rust-lang/crates.io-index" 530 + checksum = "cf9804afaaf59a91e75b022a30fb7229a7901f60c755489cc61c9b423b836442" 531 + dependencies = [ 532 + "heck", 533 + "proc-macro2", 534 + "quote", 535 + "syn 2.0.32", 536 + ] 537 + 538 + [[package]] 539 + name = "clap_lex" 540 + version = "0.6.0" 541 + source = "registry+https://github.com/rust-lang/crates.io-index" 542 + checksum = "702fc72eb24e5a1e48ce58027a675bc24edd52096d5397d4aea7c6dd9eca0bd1" 543 + 544 + [[package]] 545 + name = "cmake" 546 + version = "0.1.50" 547 + source = "registry+https://github.com/rust-lang/crates.io-index" 548 + checksum = "a31c789563b815f77f4250caee12365734369f942439b7defd71e18a48197130" 549 + dependencies = [ 550 + "cc", 551 + ] 552 + 553 + [[package]] 554 + name = "codespan-reporting" 555 + version = "0.11.1" 556 + source = "registry+https://github.com/rust-lang/crates.io-index" 557 + checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e" 558 + dependencies = [ 559 + "termcolor", 560 + "unicode-width", 561 + ] 562 + 563 + [[package]] 564 + name = "colorchoice" 565 + version = "1.0.0" 566 + source = "registry+https://github.com/rust-lang/crates.io-index" 567 + checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" 568 + 569 + [[package]] 570 + name = "combine" 571 + version = "3.8.1" 572 + source = "registry+https://github.com/rust-lang/crates.io-index" 573 + checksum = "da3da6baa321ec19e1cc41d31bf599f00c783d0517095cdaf0332e3fe8d20680" 574 + dependencies = [ 575 + "ascii", 576 + "byteorder", 577 + "either", 578 + "memchr", 579 + "unreachable", 580 + ] 581 + 582 + [[package]] 583 + name = "console" 584 + version = "0.15.7" 585 + source = "registry+https://github.com/rust-lang/crates.io-index" 586 + checksum = "c926e00cc70edefdc64d3a5ff31cc65bb97a3460097762bd23afb4d8145fccf8" 587 + dependencies = [ 588 + "encode_unicode", 589 + "lazy_static", 590 + "libc", 591 + "unicode-width", 592 + "windows-sys 0.45.0", 593 + ] 594 + 595 + [[package]] 596 + name = "core-foundation" 597 + version = "0.9.3" 598 + source = "registry+https://github.com/rust-lang/crates.io-index" 599 + checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146" 600 + dependencies = [ 601 + "core-foundation-sys", 602 + "libc", 603 + ] 604 + 605 + [[package]] 606 + name = "core-foundation-sys" 607 + version = "0.8.4" 608 + source = "registry+https://github.com/rust-lang/crates.io-index" 609 + checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa" 610 + 611 + [[package]] 612 + name = "cpufeatures" 613 + version = "0.2.11" 614 + source = "registry+https://github.com/rust-lang/crates.io-index" 615 + checksum = "ce420fe07aecd3e67c5f910618fe65e94158f6dcc0adf44e00d69ce2bdfe0fd0" 616 + dependencies = [ 617 + "libc", 618 + ] 619 + 620 + [[package]] 621 + name = "crc32fast" 622 + version = "1.3.2" 623 + source = "registry+https://github.com/rust-lang/crates.io-index" 624 + checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" 625 + dependencies = [ 626 + "cfg-if", 627 + ] 628 + 629 + [[package]] 630 + name = "cron" 631 + version = "0.6.1" 632 + source = "registry+https://github.com/rust-lang/crates.io-index" 633 + checksum = "ab00a636277f7ea5d8dd92ac7a5099fc9a46e5327bba84d3640b41ae127eada9" 634 + dependencies = [ 635 + "chrono", 636 + "error-chain", 637 + "nom 4.1.1", 638 + ] 639 + 640 + [[package]] 641 + name = "cron" 642 + version = "0.12.0" 643 + source = "registry+https://github.com/rust-lang/crates.io-index" 644 + checksum = "1ff76b51e4c068c52bfd2866e1567bee7c567ae8f24ada09fd4307019e25eab7" 645 + dependencies = [ 646 + "chrono", 647 + "nom 7.1.3", 648 + "once_cell", 649 + ] 650 + 651 + [[package]] 652 + name = "crossbeam-channel" 653 + version = "0.5.8" 654 + source = "registry+https://github.com/rust-lang/crates.io-index" 655 + checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200" 656 + dependencies = [ 657 + "cfg-if", 658 + "crossbeam-utils", 659 + ] 660 + 661 + [[package]] 662 + name = "crossbeam-deque" 663 + version = "0.8.3" 664 + source = "registry+https://github.com/rust-lang/crates.io-index" 665 + checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef" 666 + dependencies = [ 667 + "cfg-if", 668 + "crossbeam-epoch", 669 + "crossbeam-utils", 670 + ] 671 + 672 + [[package]] 673 + name = "crossbeam-epoch" 674 + version = "0.9.14" 675 + source = "registry+https://github.com/rust-lang/crates.io-index" 676 + checksum = "46bd5f3f85273295a9d14aedfb86f6aadbff6d8f5295c4a9edb08e819dcf5695" 677 + dependencies = [ 678 + "autocfg", 679 + "cfg-if", 680 + "crossbeam-utils", 681 + "memoffset", 682 + "scopeguard", 683 + ] 684 + 685 + [[package]] 686 + name = "crossbeam-utils" 687 + version = "0.8.16" 688 + source = "registry+https://github.com/rust-lang/crates.io-index" 689 + checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294" 690 + dependencies = [ 691 + "cfg-if", 692 + ] 693 + 694 + [[package]] 695 + name = "crunchy" 696 + version = "0.2.2" 697 + source = "registry+https://github.com/rust-lang/crates.io-index" 698 + checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" 699 + 700 + [[package]] 701 + name = "crypto-common" 702 + version = "0.1.6" 703 + source = "registry+https://github.com/rust-lang/crates.io-index" 704 + checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 705 + dependencies = [ 706 + "generic-array", 707 + "typenum", 708 + ] 709 + 710 + [[package]] 711 + name = "custom_error" 712 + version = "1.9.2" 713 + source = "registry+https://github.com/rust-lang/crates.io-index" 714 + checksum = "4f8a51dd197fa6ba5b4dc98a990a43cc13693c23eb0089ebb0fcc1f04152bca6" 715 + 716 + [[package]] 717 + name = "cxx" 718 + version = "1.0.95" 719 + source = "registry+https://github.com/rust-lang/crates.io-index" 720 + checksum = "109308c20e8445959c2792e81871054c6a17e6976489a93d2769641a2ba5839c" 721 + dependencies = [ 722 + "cc", 723 + "cxxbridge-flags", 724 + "cxxbridge-macro", 725 + "link-cplusplus", 726 + ] 727 + 728 + [[package]] 729 + name = "cxx-build" 730 + version = "1.0.95" 731 + source = "registry+https://github.com/rust-lang/crates.io-index" 732 + checksum = "daf4c6755cdf10798b97510e0e2b3edb9573032bd9379de8fffa59d68165494f" 733 + dependencies = [ 734 + "cc", 735 + "codespan-reporting", 736 + "once_cell", 737 + "proc-macro2", 738 + "quote", 739 + "scratch", 740 + "syn 2.0.32", 741 + ] 742 + 743 + [[package]] 744 + name = "cxxbridge-flags" 745 + version = "1.0.95" 746 + source = "registry+https://github.com/rust-lang/crates.io-index" 747 + checksum = "882074421238e84fe3b4c65d0081de34e5b323bf64555d3e61991f76eb64a7bb" 748 + 749 + [[package]] 750 + name = "cxxbridge-macro" 751 + version = "1.0.95" 752 + source = "registry+https://github.com/rust-lang/crates.io-index" 753 + checksum = "4a076022ece33e7686fb76513518e219cca4fce5750a8ae6d1ce6c0f48fd1af9" 754 + dependencies = [ 755 + "proc-macro2", 756 + "quote", 757 + "syn 2.0.32", 758 + ] 759 + 760 + [[package]] 761 + name = "darling" 762 + version = "0.10.2" 763 + source = "registry+https://github.com/rust-lang/crates.io-index" 764 + checksum = "0d706e75d87e35569db781a9b5e2416cff1236a47ed380831f959382ccd5f858" 765 + dependencies = [ 766 + "darling_core 0.10.2", 767 + "darling_macro 0.10.2", 768 + ] 769 + 770 + [[package]] 771 + name = "darling" 772 + version = "0.14.4" 773 + source = "registry+https://github.com/rust-lang/crates.io-index" 774 + checksum = "7b750cb3417fd1b327431a470f388520309479ab0bf5e323505daf0290cd3850" 775 + dependencies = [ 776 + "darling_core 0.14.4", 777 + "darling_macro 0.14.4", 778 + ] 779 + 780 + [[package]] 781 + name = "darling_core" 782 + version = "0.10.2" 783 + source = "registry+https://github.com/rust-lang/crates.io-index" 784 + checksum = "f0c960ae2da4de88a91b2d920c2a7233b400bc33cb28453a2987822d8392519b" 785 + dependencies = [ 786 + "fnv", 787 + "ident_case", 788 + "proc-macro2", 789 + "quote", 790 + "strsim 0.9.3", 791 + "syn 1.0.109", 792 + ] 793 + 794 + [[package]] 795 + name = "darling_core" 796 + version = "0.14.4" 797 + source = "registry+https://github.com/rust-lang/crates.io-index" 798 + checksum = "109c1ca6e6b7f82cc233a97004ea8ed7ca123a9af07a8230878fcfda9b158bf0" 799 + dependencies = [ 800 + "fnv", 801 + "ident_case", 802 + "proc-macro2", 803 + "quote", 804 + "strsim 0.10.0", 805 + "syn 1.0.109", 806 + ] 807 + 808 + [[package]] 809 + name = "darling_macro" 810 + version = "0.10.2" 811 + source = "registry+https://github.com/rust-lang/crates.io-index" 812 + checksum = "d9b5a2f4ac4969822c62224815d069952656cadc7084fdca9751e6d959189b72" 813 + dependencies = [ 814 + "darling_core 0.10.2", 815 + "quote", 816 + "syn 1.0.109", 817 + ] 818 + 819 + [[package]] 820 + name = "darling_macro" 821 + version = "0.14.4" 822 + source = "registry+https://github.com/rust-lang/crates.io-index" 823 + checksum = "a4aab4dbc9f7611d8b55048a3a16d2d010c2c8334e46304b40ac1cc14bf3b48e" 824 + dependencies = [ 825 + "darling_core 0.14.4", 826 + "quote", 827 + "syn 1.0.109", 828 + ] 829 + 830 + [[package]] 831 + name = "dashmap" 832 + version = "5.5.3" 833 + source = "registry+https://github.com/rust-lang/crates.io-index" 834 + checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856" 835 + dependencies = [ 836 + "cfg-if", 837 + "hashbrown 0.14.3", 838 + "lock_api", 839 + "once_cell", 840 + "parking_lot_core", 841 + ] 842 + 843 + [[package]] 844 + name = "data-encoding" 845 + version = "2.4.0" 846 + source = "registry+https://github.com/rust-lang/crates.io-index" 847 + checksum = "c2e66c9d817f1720209181c316d28635c050fa304f9c79e47a520882661b7308" 848 + 849 + [[package]] 850 + name = "deranged" 851 + version = "0.3.8" 852 + source = "registry+https://github.com/rust-lang/crates.io-index" 853 + checksum = "f2696e8a945f658fd14dc3b87242e6b80cd0f36ff04ea560fa39082368847946" 854 + dependencies = [ 855 + "serde", 856 + ] 857 + 858 + [[package]] 859 + name = "derive_builder" 860 + version = "0.12.0" 861 + source = "registry+https://github.com/rust-lang/crates.io-index" 862 + checksum = "8d67778784b508018359cbc8696edb3db78160bab2c2a28ba7f56ef6932997f8" 863 + dependencies = [ 864 + "derive_builder_macro", 865 + ] 866 + 867 + [[package]] 868 + name = "derive_builder_core" 869 + version = "0.12.0" 870 + source = "registry+https://github.com/rust-lang/crates.io-index" 871 + checksum = "c11bdc11a0c47bc7d37d582b5285da6849c96681023680b906673c5707af7b0f" 872 + dependencies = [ 873 + "darling 0.14.4", 874 + "proc-macro2", 875 + "quote", 876 + "syn 1.0.109", 877 + ] 878 + 879 + [[package]] 880 + name = "derive_builder_macro" 881 + version = "0.12.0" 882 + source = "registry+https://github.com/rust-lang/crates.io-index" 883 + checksum = "ebcda35c7a396850a55ffeac740804b40ffec779b98fffbb1738f4033f0ee79e" 884 + dependencies = [ 885 + "derive_builder_core", 886 + "syn 1.0.109", 887 + ] 888 + 889 + [[package]] 890 + name = "derive_utils" 891 + version = "0.11.2" 892 + source = "registry+https://github.com/rust-lang/crates.io-index" 893 + checksum = "532b4c15dccee12c7044f1fcad956e98410860b22231e44a3b827464797ca7bf" 894 + dependencies = [ 895 + "proc-macro2", 896 + "quote", 897 + "syn 1.0.109", 898 + ] 899 + 900 + [[package]] 901 + name = "digest" 902 + version = "0.10.7" 903 + source = "registry+https://github.com/rust-lang/crates.io-index" 904 + checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 905 + dependencies = [ 906 + "block-buffer", 907 + "crypto-common", 908 + "subtle", 909 + ] 910 + 911 + [[package]] 912 + name = "dirs" 913 + version = "4.0.0" 914 + source = "registry+https://github.com/rust-lang/crates.io-index" 915 + checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059" 916 + dependencies = [ 917 + "dirs-sys", 918 + ] 919 + 920 + [[package]] 921 + name = "dirs-sys" 922 + version = "0.3.7" 923 + source = "registry+https://github.com/rust-lang/crates.io-index" 924 + checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6" 925 + dependencies = [ 926 + "libc", 927 + "redox_users", 928 + "winapi", 929 + ] 930 + 931 + [[package]] 932 + name = "dotenvy" 933 + version = "0.15.7" 934 + source = "registry+https://github.com/rust-lang/crates.io-index" 935 + checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b" 936 + 937 + [[package]] 938 + name = "downcast-rs" 939 + version = "1.2.0" 940 + source = "registry+https://github.com/rust-lang/crates.io-index" 941 + checksum = "9ea835d29036a4087793836fa931b08837ad5e957da9e23886b29586fb9b6650" 942 + 943 + [[package]] 944 + name = "either" 945 + version = "1.8.1" 946 + source = "registry+https://github.com/rust-lang/crates.io-index" 947 + checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91" 948 + 949 + [[package]] 950 + name = "email-encoding" 951 + version = "0.2.0" 952 + source = "registry+https://github.com/rust-lang/crates.io-index" 953 + checksum = "dbfb21b9878cf7a348dcb8559109aabc0ec40d69924bd706fa5149846c4fef75" 954 + dependencies = [ 955 + "base64 0.21.5", 956 + "memchr", 957 + ] 958 + 959 + [[package]] 960 + name = "email_address" 961 + version = "0.2.4" 962 + source = "registry+https://github.com/rust-lang/crates.io-index" 963 + checksum = "e2153bd83ebc09db15bcbdc3e2194d901804952e3dc96967e1cd3b0c5c32d112" 964 + 965 + [[package]] 966 + name = "encode_unicode" 967 + version = "0.3.6" 968 + source = "registry+https://github.com/rust-lang/crates.io-index" 969 + checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f" 970 + 971 + [[package]] 972 + name = "encoding_rs" 973 + version = "0.8.32" 974 + source = "registry+https://github.com/rust-lang/crates.io-index" 975 + checksum = "071a31f4ee85403370b58aca746f01041ede6f0da2730960ad001edc2b71b394" 976 + dependencies = [ 977 + "cfg-if", 978 + ] 979 + 980 + [[package]] 981 + name = "equivalent" 982 + version = "1.0.1" 983 + source = "registry+https://github.com/rust-lang/crates.io-index" 984 + checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" 985 + 986 + [[package]] 987 + name = "errno" 988 + version = "0.3.1" 989 + source = "registry+https://github.com/rust-lang/crates.io-index" 990 + checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a" 991 + dependencies = [ 992 + "errno-dragonfly", 993 + "libc", 994 + "windows-sys 0.48.0", 995 + ] 996 + 997 + [[package]] 998 + name = "errno-dragonfly" 999 + version = "0.1.2" 1000 + source = "registry+https://github.com/rust-lang/crates.io-index" 1001 + checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf" 1002 + dependencies = [ 1003 + "cc", 1004 + "libc", 1005 + ] 1006 + 1007 + [[package]] 1008 + name = "error-chain" 1009 + version = "0.10.0" 1010 + source = "registry+https://github.com/rust-lang/crates.io-index" 1011 + checksum = "d9435d864e017c3c6afeac1654189b06cdb491cf2ff73dbf0d73b0f292f42ff8" 1012 + dependencies = [ 1013 + "backtrace", 1014 + ] 1015 + 1016 + [[package]] 1017 + name = "fallible-iterator" 1018 + version = "0.3.0" 1019 + source = "registry+https://github.com/rust-lang/crates.io-index" 1020 + checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649" 1021 + 1022 + [[package]] 1023 + name = "fallible-streaming-iterator" 1024 + version = "0.1.9" 1025 + source = "registry+https://github.com/rust-lang/crates.io-index" 1026 + checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a" 1027 + 1028 + [[package]] 1029 + name = "fastdivide" 1030 + version = "0.4.0" 1031 + source = "registry+https://github.com/rust-lang/crates.io-index" 1032 + checksum = "25c7df09945d65ea8d70b3321547ed414bbc540aad5bac6883d021b970f35b04" 1033 + 1034 + [[package]] 1035 + name = "fastrand" 1036 + version = "1.9.0" 1037 + source = "registry+https://github.com/rust-lang/crates.io-index" 1038 + checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be" 1039 + dependencies = [ 1040 + "instant", 1041 + ] 1042 + 1043 + [[package]] 1044 + name = "fastrand" 1045 + version = "2.0.1" 1046 + source = "registry+https://github.com/rust-lang/crates.io-index" 1047 + checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5" 1048 + 1049 + [[package]] 1050 + name = "file-rotate" 1051 + version = "0.7.5" 1052 + source = "registry+https://github.com/rust-lang/crates.io-index" 1053 + checksum = "ddf221ceec4517f3cb764dae3541b2bd87666fc8832e51322fbb97250b468c71" 1054 + dependencies = [ 1055 + "chrono", 1056 + "flate2", 1057 + ] 1058 + 1059 + [[package]] 1060 + name = "filenamify" 1061 + version = "0.1.0" 1062 + source = "registry+https://github.com/rust-lang/crates.io-index" 1063 + checksum = "b781e8974b2cc71ac3c587c881c11ee5fe9a379f43503674e1e1052647593b4c" 1064 + dependencies = [ 1065 + "regex", 1066 + ] 1067 + 1068 + [[package]] 1069 + name = "fixedbitset" 1070 + version = "0.4.2" 1071 + source = "registry+https://github.com/rust-lang/crates.io-index" 1072 + checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80" 1073 + 1074 + [[package]] 1075 + name = "flate2" 1076 + version = "1.0.26" 1077 + source = "registry+https://github.com/rust-lang/crates.io-index" 1078 + checksum = "3b9429470923de8e8cbd4d2dc513535400b4b3fef0319fb5c4e1f520a7bef743" 1079 + dependencies = [ 1080 + "crc32fast", 1081 + "miniz_oxide 0.7.1", 1082 + ] 1083 + 1084 + [[package]] 1085 + name = "fnv" 1086 + version = "1.0.7" 1087 + source = "registry+https://github.com/rust-lang/crates.io-index" 1088 + checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 1089 + 1090 + [[package]] 1091 + name = "foreign-types" 1092 + version = "0.3.2" 1093 + source = "registry+https://github.com/rust-lang/crates.io-index" 1094 + checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" 1095 + dependencies = [ 1096 + "foreign-types-shared", 1097 + ] 1098 + 1099 + [[package]] 1100 + name = "foreign-types-shared" 1101 + version = "0.1.1" 1102 + source = "registry+https://github.com/rust-lang/crates.io-index" 1103 + checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" 1104 + 1105 + [[package]] 1106 + name = "form_urlencoded" 1107 + version = "1.2.1" 1108 + source = "registry+https://github.com/rust-lang/crates.io-index" 1109 + checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456" 1110 + dependencies = [ 1111 + "percent-encoding", 1112 + ] 1113 + 1114 + [[package]] 1115 + name = "fs4" 1116 + version = "0.6.6" 1117 + source = "registry+https://github.com/rust-lang/crates.io-index" 1118 + checksum = "2eeb4ed9e12f43b7fa0baae3f9cdda28352770132ef2e09a23760c29cae8bd47" 1119 + dependencies = [ 1120 + "rustix 0.38.17", 1121 + "windows-sys 0.48.0", 1122 + ] 1123 + 1124 + [[package]] 1125 + name = "futures" 1126 + version = "0.3.28" 1127 + source = "registry+https://github.com/rust-lang/crates.io-index" 1128 + checksum = "23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40" 1129 + dependencies = [ 1130 + "futures-channel", 1131 + "futures-core", 1132 + "futures-executor", 1133 + "futures-io", 1134 + "futures-sink", 1135 + "futures-task", 1136 + "futures-util", 1137 + ] 1138 + 1139 + [[package]] 1140 + name = "futures-channel" 1141 + version = "0.3.29" 1142 + source = "registry+https://github.com/rust-lang/crates.io-index" 1143 + checksum = "ff4dd66668b557604244583e3e1e1eada8c5c2e96a6d0d6653ede395b78bbacb" 1144 + dependencies = [ 1145 + "futures-core", 1146 + "futures-sink", 1147 + ] 1148 + 1149 + [[package]] 1150 + name = "futures-core" 1151 + version = "0.3.29" 1152 + source = "registry+https://github.com/rust-lang/crates.io-index" 1153 + checksum = "eb1d22c66e66d9d72e1758f0bd7d4fd0bee04cad842ee34587d68c07e45d088c" 1154 + 1155 + [[package]] 1156 + name = "futures-enum" 1157 + version = "0.1.17" 1158 + source = "registry+https://github.com/rust-lang/crates.io-index" 1159 + checksum = "3422d14de7903a52e9dbc10ae05a7e14445ec61890100e098754e120b2bd7b1e" 1160 + dependencies = [ 1161 + "derive_utils", 1162 + "quote", 1163 + "syn 1.0.109", 1164 + ] 1165 + 1166 + [[package]] 1167 + name = "futures-executor" 1168 + version = "0.3.28" 1169 + source = "registry+https://github.com/rust-lang/crates.io-index" 1170 + checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0" 1171 + dependencies = [ 1172 + "futures-core", 1173 + "futures-task", 1174 + "futures-util", 1175 + ] 1176 + 1177 + [[package]] 1178 + name = "futures-io" 1179 + version = "0.3.29" 1180 + source = "registry+https://github.com/rust-lang/crates.io-index" 1181 + checksum = "8bf34a163b5c4c52d0478a4d757da8fb65cabef42ba90515efee0f6f9fa45aaa" 1182 + 1183 + [[package]] 1184 + name = "futures-macro" 1185 + version = "0.3.29" 1186 + source = "registry+https://github.com/rust-lang/crates.io-index" 1187 + checksum = "53b153fd91e4b0147f4aced87be237c98248656bb01050b96bf3ee89220a8ddb" 1188 + dependencies = [ 1189 + "proc-macro2", 1190 + "quote", 1191 + "syn 2.0.32", 1192 + ] 1193 + 1194 + [[package]] 1195 + name = "futures-sink" 1196 + version = "0.3.29" 1197 + source = "registry+https://github.com/rust-lang/crates.io-index" 1198 + checksum = "e36d3378ee38c2a36ad710c5d30c2911d752cb941c00c72dbabfb786a7970817" 1199 + 1200 + [[package]] 1201 + name = "futures-task" 1202 + version = "0.3.29" 1203 + source = "registry+https://github.com/rust-lang/crates.io-index" 1204 + checksum = "efd193069b0ddadc69c46389b740bbccdd97203899b48d09c5f7969591d6bae2" 1205 + 1206 + [[package]] 1207 + name = "futures-util" 1208 + version = "0.3.29" 1209 + source = "registry+https://github.com/rust-lang/crates.io-index" 1210 + checksum = "a19526d624e703a3179b3d322efec918b6246ea0fa51d41124525f00f1cc8104" 1211 + dependencies = [ 1212 + "futures-channel", 1213 + "futures-core", 1214 + "futures-io", 1215 + "futures-macro", 1216 + "futures-sink", 1217 + "futures-task", 1218 + "memchr", 1219 + "pin-project-lite", 1220 + "pin-utils", 1221 + "slab", 1222 + ] 1223 + 1224 + [[package]] 1225 + name = "generator" 1226 + version = "0.7.4" 1227 + source = "registry+https://github.com/rust-lang/crates.io-index" 1228 + checksum = "f3e123d9ae7c02966b4d892e550bdc32164f05853cd40ab570650ad600596a8a" 1229 + dependencies = [ 1230 + "cc", 1231 + "libc", 1232 + "log", 1233 + "rustversion", 1234 + "windows", 1235 + ] 1236 + 1237 + [[package]] 1238 + name = "generic-array" 1239 + version = "0.14.7" 1240 + source = "registry+https://github.com/rust-lang/crates.io-index" 1241 + checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 1242 + dependencies = [ 1243 + "typenum", 1244 + "version_check", 1245 + ] 1246 + 1247 + [[package]] 1248 + name = "getrandom" 1249 + version = "0.1.16" 1250 + source = "registry+https://github.com/rust-lang/crates.io-index" 1251 + checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" 1252 + dependencies = [ 1253 + "cfg-if", 1254 + "libc", 1255 + "wasi 0.9.0+wasi-snapshot-preview1", 1256 + ] 1257 + 1258 + [[package]] 1259 + name = "getrandom" 1260 + version = "0.2.11" 1261 + source = "registry+https://github.com/rust-lang/crates.io-index" 1262 + checksum = "fe9006bed769170c11f845cf00c7c1e9092aeb3f268e007c3e760ac68008070f" 1263 + dependencies = [ 1264 + "cfg-if", 1265 + "libc", 1266 + "wasi 0.11.0+wasi-snapshot-preview1", 1267 + ] 1268 + 1269 + [[package]] 1270 + name = "gimli" 1271 + version = "0.27.2" 1272 + source = "registry+https://github.com/rust-lang/crates.io-index" 1273 + checksum = "ad0a93d233ebf96623465aad4046a8d3aa4da22d4f4beba5388838c8a434bbb4" 1274 + 1275 + [[package]] 1276 + name = "glob" 1277 + version = "0.3.1" 1278 + source = "registry+https://github.com/rust-lang/crates.io-index" 1279 + checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" 1280 + 1281 + [[package]] 1282 + name = "globset" 1283 + version = "0.4.13" 1284 + source = "registry+https://github.com/rust-lang/crates.io-index" 1285 + checksum = "759c97c1e17c55525b57192c06a267cda0ac5210b222d6b82189a2338fa1c13d" 1286 + dependencies = [ 1287 + "aho-corasick", 1288 + "bstr", 1289 + "fnv", 1290 + "log", 1291 + "regex", 1292 + ] 1293 + 1294 + [[package]] 1295 + name = "globwalk" 1296 + version = "0.7.3" 1297 + source = "registry+https://github.com/rust-lang/crates.io-index" 1298 + checksum = "d9db17aec586697a93219b19726b5b68307eba92898c34b170857343fe67c99d" 1299 + dependencies = [ 1300 + "ignore", 1301 + "walkdir", 1302 + ] 1303 + 1304 + [[package]] 1305 + name = "graphql-parser" 1306 + version = "0.3.0" 1307 + source = "registry+https://github.com/rust-lang/crates.io-index" 1308 + checksum = "d1abd4ce5247dfc04a03ccde70f87a048458c9356c7e41d21ad8c407b3dde6f2" 1309 + dependencies = [ 1310 + "combine", 1311 + "thiserror", 1312 + ] 1313 + 1314 + [[package]] 1315 + name = "h2" 1316 + version = "0.3.19" 1317 + source = "registry+https://github.com/rust-lang/crates.io-index" 1318 + checksum = "d357c7ae988e7d2182f7d7871d0b963962420b0678b0997ce7de72001aeab782" 1319 + dependencies = [ 1320 + "bytes", 1321 + "fnv", 1322 + "futures-core", 1323 + "futures-sink", 1324 + "futures-util", 1325 + "http", 1326 + "indexmap 1.9.3", 1327 + "slab", 1328 + "tokio", 1329 + "tokio-util", 1330 + "tracing", 1331 + ] 1332 + 1333 + [[package]] 1334 + name = "hashbrown" 1335 + version = "0.12.3" 1336 + source = "registry+https://github.com/rust-lang/crates.io-index" 1337 + checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 1338 + 1339 + [[package]] 1340 + name = "hashbrown" 1341 + version = "0.13.1" 1342 + source = "registry+https://github.com/rust-lang/crates.io-index" 1343 + checksum = "33ff8ae62cd3a9102e5637afc8452c55acf3844001bd5374e0b0bd7b6616c038" 1344 + dependencies = [ 1345 + "ahash", 1346 + ] 1347 + 1348 + [[package]] 1349 + name = "hashbrown" 1350 + version = "0.14.3" 1351 + source = "registry+https://github.com/rust-lang/crates.io-index" 1352 + checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604" 1353 + dependencies = [ 1354 + "ahash", 1355 + "allocator-api2", 1356 + ] 1357 + 1358 + [[package]] 1359 + name = "hashlink" 1360 + version = "0.8.4" 1361 + source = "registry+https://github.com/rust-lang/crates.io-index" 1362 + checksum = "e8094feaf31ff591f651a2664fb9cfd92bba7a60ce3197265e9482ebe753c8f7" 1363 + dependencies = [ 1364 + "hashbrown 0.14.3", 1365 + ] 1366 + 1367 + [[package]] 1368 + name = "headers" 1369 + version = "0.3.8" 1370 + source = "registry+https://github.com/rust-lang/crates.io-index" 1371 + checksum = "f3e372db8e5c0d213e0cd0b9be18be2aca3d44cf2fe30a9d46a65581cd454584" 1372 + dependencies = [ 1373 + "base64 0.13.1", 1374 + "bitflags 1.3.2", 1375 + "bytes", 1376 + "headers-core", 1377 + "http", 1378 + "httpdate", 1379 + "mime", 1380 + "sha1", 1381 + ] 1382 + 1383 + [[package]] 1384 + name = "headers-core" 1385 + version = "0.2.0" 1386 + source = "registry+https://github.com/rust-lang/crates.io-index" 1387 + checksum = "e7f66481bfee273957b1f20485a4ff3362987f85b2c236580d81b4eb7a326429" 1388 + dependencies = [ 1389 + "http", 1390 + ] 1391 + 1392 + [[package]] 1393 + name = "heck" 1394 + version = "0.4.1" 1395 + source = "registry+https://github.com/rust-lang/crates.io-index" 1396 + checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 1397 + 1398 + [[package]] 1399 + name = "hermit-abi" 1400 + version = "0.2.6" 1401 + source = "registry+https://github.com/rust-lang/crates.io-index" 1402 + checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7" 1403 + dependencies = [ 1404 + "libc", 1405 + ] 1406 + 1407 + [[package]] 1408 + name = "hermit-abi" 1409 + version = "0.3.1" 1410 + source = "registry+https://github.com/rust-lang/crates.io-index" 1411 + checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286" 1412 + 1413 + [[package]] 1414 + name = "hex" 1415 + version = "0.4.3" 1416 + source = "registry+https://github.com/rust-lang/crates.io-index" 1417 + checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 1418 + 1419 + [[package]] 1420 + name = "home" 1421 + version = "0.5.5" 1422 + source = "registry+https://github.com/rust-lang/crates.io-index" 1423 + checksum = "5444c27eef6923071f7ebcc33e3444508466a76f7a2b93da00ed6e19f30c1ddb" 1424 + dependencies = [ 1425 + "windows-sys 0.48.0", 1426 + ] 1427 + 1428 + [[package]] 1429 + name = "hostname" 1430 + version = "0.3.1" 1431 + source = "registry+https://github.com/rust-lang/crates.io-index" 1432 + checksum = "3c731c3e10504cc8ed35cfe2f1db4c9274c3d35fa486e3b31df46f068ef3e867" 1433 + dependencies = [ 1434 + "libc", 1435 + "match_cfg", 1436 + "winapi", 1437 + ] 1438 + 1439 + [[package]] 1440 + name = "htmlescape" 1441 + version = "0.3.1" 1442 + source = "registry+https://github.com/rust-lang/crates.io-index" 1443 + checksum = "e9025058dae765dee5070ec375f591e2ba14638c63feff74f13805a72e523163" 1444 + 1445 + [[package]] 1446 + name = "http" 1447 + version = "0.2.11" 1448 + source = "registry+https://github.com/rust-lang/crates.io-index" 1449 + checksum = "8947b1a6fad4393052c7ba1f4cd97bed3e953a95c79c92ad9b051a04611d9fbb" 1450 + dependencies = [ 1451 + "bytes", 1452 + "fnv", 1453 + "itoa", 1454 + ] 1455 + 1456 + [[package]] 1457 + name = "http-api-bindings" 1458 + version = "0.8.3" 1459 + dependencies = [ 1460 + "anyhow", 1461 + "async-trait", 1462 + "futures", 1463 + "reqwest", 1464 + "serde", 1465 + "serde_json", 1466 + "tabby-inference", 1467 + "tokio", 1468 + "tracing", 1469 + ] 1470 + 1471 + [[package]] 1472 + name = "http-body" 1473 + version = "0.4.5" 1474 + source = "registry+https://github.com/rust-lang/crates.io-index" 1475 + checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1" 1476 + dependencies = [ 1477 + "bytes", 1478 + "http", 1479 + "pin-project-lite", 1480 + ] 1481 + 1482 + [[package]] 1483 + name = "http-range-header" 1484 + version = "0.3.0" 1485 + source = "registry+https://github.com/rust-lang/crates.io-index" 1486 + checksum = "0bfe8eed0a9285ef776bb792479ea3834e8b94e13d615c2f66d03dd50a435a29" 1487 + 1488 + [[package]] 1489 + name = "httparse" 1490 + version = "1.8.0" 1491 + source = "registry+https://github.com/rust-lang/crates.io-index" 1492 + checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" 1493 + 1494 + [[package]] 1495 + name = "httpdate" 1496 + version = "1.0.2" 1497 + source = "registry+https://github.com/rust-lang/crates.io-index" 1498 + checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421" 1499 + 1500 + [[package]] 1501 + name = "humantime" 1502 + version = "2.1.0" 1503 + source = "registry+https://github.com/rust-lang/crates.io-index" 1504 + checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" 1505 + 1506 + [[package]] 1507 + name = "hyper" 1508 + version = "0.14.27" 1509 + source = "registry+https://github.com/rust-lang/crates.io-index" 1510 + checksum = "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468" 1511 + dependencies = [ 1512 + "bytes", 1513 + "futures-channel", 1514 + "futures-core", 1515 + "futures-util", 1516 + "h2", 1517 + "http", 1518 + "http-body", 1519 + "httparse", 1520 + "httpdate", 1521 + "itoa", 1522 + "pin-project-lite", 1523 + "socket2 0.4.9", 1524 + "tokio", 1525 + "tower-service", 1526 + "tracing", 1527 + "want", 1528 + ] 1529 + 1530 + [[package]] 1531 + name = "hyper-timeout" 1532 + version = "0.4.1" 1533 + source = "registry+https://github.com/rust-lang/crates.io-index" 1534 + checksum = "bbb958482e8c7be4bc3cf272a766a2b0bf1a6755e7a6ae777f017a31d11b13b1" 1535 + dependencies = [ 1536 + "hyper", 1537 + "pin-project-lite", 1538 + "tokio", 1539 + "tokio-io-timeout", 1540 + ] 1541 + 1542 + [[package]] 1543 + name = "hyper-tls" 1544 + version = "0.5.0" 1545 + source = "registry+https://github.com/rust-lang/crates.io-index" 1546 + checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905" 1547 + dependencies = [ 1548 + "bytes", 1549 + "hyper", 1550 + "native-tls", 1551 + "tokio", 1552 + "tokio-native-tls", 1553 + ] 1554 + 1555 + [[package]] 1556 + name = "iana-time-zone" 1557 + version = "0.1.57" 1558 + source = "registry+https://github.com/rust-lang/crates.io-index" 1559 + checksum = "2fad5b825842d2b38bd206f3e81d6957625fd7f0a361e345c30e01a0ae2dd613" 1560 + dependencies = [ 1561 + "android_system_properties", 1562 + "core-foundation-sys", 1563 + "iana-time-zone-haiku", 1564 + "js-sys", 1565 + "wasm-bindgen", 1566 + "windows", 1567 + ] 1568 + 1569 + [[package]] 1570 + name = "iana-time-zone-haiku" 1571 + version = "0.1.2" 1572 + source = "registry+https://github.com/rust-lang/crates.io-index" 1573 + checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" 1574 + dependencies = [ 1575 + "cc", 1576 + ] 1577 + 1578 + [[package]] 1579 + name = "ident_case" 1580 + version = "1.0.1" 1581 + source = "registry+https://github.com/rust-lang/crates.io-index" 1582 + checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" 1583 + 1584 + [[package]] 1585 + name = "idna" 1586 + version = "0.4.0" 1587 + source = "registry+https://github.com/rust-lang/crates.io-index" 1588 + checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c" 1589 + dependencies = [ 1590 + "unicode-bidi", 1591 + "unicode-normalization", 1592 + ] 1593 + 1594 + [[package]] 1595 + name = "idna" 1596 + version = "0.5.0" 1597 + source = "registry+https://github.com/rust-lang/crates.io-index" 1598 + checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6" 1599 + dependencies = [ 1600 + "unicode-bidi", 1601 + "unicode-normalization", 1602 + ] 1603 + 1604 + [[package]] 1605 + name = "if_chain" 1606 + version = "1.0.2" 1607 + source = "registry+https://github.com/rust-lang/crates.io-index" 1608 + checksum = "cb56e1aa765b4b4f3aadfab769793b7087bb03a4ea4920644a6d238e2df5b9ed" 1609 + 1610 + [[package]] 1611 + name = "ignore" 1612 + version = "0.4.20" 1613 + source = "registry+https://github.com/rust-lang/crates.io-index" 1614 + checksum = "dbe7873dab538a9a44ad79ede1faf5f30d49f9a5c883ddbab48bce81b64b7492" 1615 + dependencies = [ 1616 + "globset", 1617 + "lazy_static", 1618 + "log", 1619 + "memchr", 1620 + "regex", 1621 + "same-file", 1622 + "thread_local", 1623 + "walkdir", 1624 + "winapi-util", 1625 + ] 1626 + 1627 + [[package]] 1628 + name = "include_dir" 1629 + version = "0.7.3" 1630 + source = "registry+https://github.com/rust-lang/crates.io-index" 1631 + checksum = "18762faeff7122e89e0857b02f7ce6fcc0d101d5e9ad2ad7846cc01d61b7f19e" 1632 + dependencies = [ 1633 + "include_dir_macros", 1634 + ] 1635 + 1636 + [[package]] 1637 + name = "include_dir_macros" 1638 + version = "0.7.3" 1639 + source = "registry+https://github.com/rust-lang/crates.io-index" 1640 + checksum = "b139284b5cf57ecfa712bcc66950bb635b31aff41c188e8a4cfc758eca374a3f" 1641 + dependencies = [ 1642 + "proc-macro2", 1643 + "quote", 1644 + ] 1645 + 1646 + [[package]] 1647 + name = "indexmap" 1648 + version = "1.9.3" 1649 + source = "registry+https://github.com/rust-lang/crates.io-index" 1650 + checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" 1651 + dependencies = [ 1652 + "autocfg", 1653 + "hashbrown 0.12.3", 1654 + "serde", 1655 + ] 1656 + 1657 + [[package]] 1658 + name = "indexmap" 1659 + version = "2.0.1" 1660 + source = "registry+https://github.com/rust-lang/crates.io-index" 1661 + checksum = "ad227c3af19d4914570ad36d30409928b75967c298feb9ea1969db3a610bb14e" 1662 + dependencies = [ 1663 + "equivalent", 1664 + "hashbrown 0.14.3", 1665 + ] 1666 + 1667 + [[package]] 1668 + name = "indicatif" 1669 + version = "0.17.7" 1670 + source = "registry+https://github.com/rust-lang/crates.io-index" 1671 + checksum = "fb28741c9db9a713d93deb3bb9515c20788cef5815265bee4980e87bde7e0f25" 1672 + dependencies = [ 1673 + "console", 1674 + "instant", 1675 + "number_prefix", 1676 + "portable-atomic", 1677 + "unicode-width", 1678 + ] 1679 + 1680 + [[package]] 1681 + name = "insta" 1682 + version = "1.34.0" 1683 + source = "registry+https://github.com/rust-lang/crates.io-index" 1684 + checksum = "5d64600be34b2fcfc267740a243fa7744441bb4947a619ac4e5bb6507f35fbfc" 1685 + dependencies = [ 1686 + "console", 1687 + "lazy_static", 1688 + "linked-hash-map", 1689 + "pest", 1690 + "pest_derive", 1691 + "serde", 1692 + "similar", 1693 + "yaml-rust", 1694 + ] 1695 + 1696 + [[package]] 1697 + name = "instant" 1698 + version = "0.1.12" 1699 + source = "registry+https://github.com/rust-lang/crates.io-index" 1700 + checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 1701 + dependencies = [ 1702 + "cfg-if", 1703 + "js-sys", 1704 + "wasm-bindgen", 1705 + "web-sys", 1706 + ] 1707 + 1708 + [[package]] 1709 + name = "io-lifetimes" 1710 + version = "1.0.11" 1711 + source = "registry+https://github.com/rust-lang/crates.io-index" 1712 + checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2" 1713 + dependencies = [ 1714 + "hermit-abi 0.3.1", 1715 + "libc", 1716 + "windows-sys 0.48.0", 1717 + ] 1718 + 1719 + [[package]] 1720 + name = "ipnet" 1721 + version = "2.7.2" 1722 + source = "registry+https://github.com/rust-lang/crates.io-index" 1723 + checksum = "12b6ee2129af8d4fb011108c73d99a1b83a85977f23b82460c0ae2e25bb4b57f" 1724 + 1725 + [[package]] 1726 + name = "itertools" 1727 + version = "0.10.5" 1728 + source = "registry+https://github.com/rust-lang/crates.io-index" 1729 + checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473" 1730 + dependencies = [ 1731 + "either", 1732 + ] 1733 + 1734 + [[package]] 1735 + name = "itertools" 1736 + version = "0.11.0" 1737 + source = "registry+https://github.com/rust-lang/crates.io-index" 1738 + checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57" 1739 + dependencies = [ 1740 + "either", 1741 + ] 1742 + 1743 + [[package]] 1744 + name = "itoa" 1745 + version = "1.0.6" 1746 + source = "registry+https://github.com/rust-lang/crates.io-index" 1747 + checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6" 1748 + 1749 + [[package]] 1750 + name = "job_scheduler" 1751 + version = "1.2.1" 1752 + source = "registry+https://github.com/rust-lang/crates.io-index" 1753 + checksum = "51f368c9c76dde2282714ae32dc274b79c27527a0c06c816f6dda048904d0d7c" 1754 + dependencies = [ 1755 + "chrono", 1756 + "cron 0.6.1", 1757 + "uuid 0.8.2", 1758 + ] 1759 + 1760 + [[package]] 1761 + name = "jobserver" 1762 + version = "0.1.26" 1763 + source = "registry+https://github.com/rust-lang/crates.io-index" 1764 + checksum = "936cfd212a0155903bcbc060e316fb6cc7cbf2e1907329391ebadc1fe0ce77c2" 1765 + dependencies = [ 1766 + "libc", 1767 + ] 1768 + 1769 + [[package]] 1770 + name = "js-sys" 1771 + version = "0.3.64" 1772 + source = "registry+https://github.com/rust-lang/crates.io-index" 1773 + checksum = "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a" 1774 + dependencies = [ 1775 + "wasm-bindgen", 1776 + ] 1777 + 1778 + [[package]] 1779 + name = "jsonwebtoken" 1780 + version = "9.1.0" 1781 + source = "registry+https://github.com/rust-lang/crates.io-index" 1782 + checksum = "155c4d7e39ad04c172c5e3a99c434ea3b4a7ba7960b38ecd562b270b097cce09" 1783 + dependencies = [ 1784 + "base64 0.21.5", 1785 + "pem", 1786 + "ring", 1787 + "serde", 1788 + "serde_json", 1789 + "simple_asn1", 1790 + ] 1791 + 1792 + [[package]] 1793 + name = "juniper" 1794 + version = "0.15.11" 1795 + source = "registry+https://github.com/rust-lang/crates.io-index" 1796 + checksum = "52adf17d43d0b526eed31fac15d9312941c5c2558ffbfb105811690b96d6e2f1" 1797 + dependencies = [ 1798 + "async-trait", 1799 + "bson", 1800 + "chrono", 1801 + "fnv", 1802 + "futures", 1803 + "futures-enum", 1804 + "graphql-parser", 1805 + "indexmap 1.9.3", 1806 + "juniper_codegen", 1807 + "serde", 1808 + "smartstring", 1809 + "static_assertions", 1810 + "url", 1811 + "uuid 0.8.2", 1812 + ] 1813 + 1814 + [[package]] 1815 + name = "juniper-axum" 1816 + version = "0.8.3" 1817 + dependencies = [ 1818 + "axum", 1819 + "juniper", 1820 + "juniper_graphql_ws", 1821 + "serde", 1822 + "serde_json", 1823 + ] 1824 + 1825 + [[package]] 1826 + name = "juniper_codegen" 1827 + version = "0.15.9" 1828 + source = "registry+https://github.com/rust-lang/crates.io-index" 1829 + checksum = "aee97671061ad50301ba077d054d295e01d31a1868fbd07902db651f987e71db" 1830 + dependencies = [ 1831 + "proc-macro-error", 1832 + "proc-macro2", 1833 + "quote", 1834 + "syn 1.0.109", 1835 + ] 1836 + 1837 + [[package]] 1838 + name = "juniper_graphql_ws" 1839 + version = "0.3.0" 1840 + source = "registry+https://github.com/rust-lang/crates.io-index" 1841 + checksum = "ed5526c2f2a9c40f08841dc559971641fdd71c008a265745d18bb0c8b7e105b3" 1842 + dependencies = [ 1843 + "juniper", 1844 + "juniper_subscriptions", 1845 + "serde", 1846 + "tokio", 1847 + ] 1848 + 1849 + [[package]] 1850 + name = "juniper_subscriptions" 1851 + version = "0.16.0" 1852 + source = "registry+https://github.com/rust-lang/crates.io-index" 1853 + checksum = "2983b26a1e12b691c17432aee3881d8bec4a94d6c64bc933c0eaf6d9e3429f13" 1854 + dependencies = [ 1855 + "futures", 1856 + "juniper", 1857 + ] 1858 + 1859 + [[package]] 1860 + name = "kdam" 1861 + version = "0.5.0" 1862 + source = "registry+https://github.com/rust-lang/crates.io-index" 1863 + checksum = "e352f4e1acc6a3d0919eaeb014ca63e5da9450a12ef7106fe2936a07a1648d44" 1864 + dependencies = [ 1865 + "terminal_size", 1866 + "windows-sys 0.48.0", 1867 + ] 1868 + 1869 + [[package]] 1870 + name = "lazy_static" 1871 + version = "1.4.0" 1872 + source = "registry+https://github.com/rust-lang/crates.io-index" 1873 + checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 1874 + 1875 + [[package]] 1876 + name = "lettre" 1877 + version = "0.11.3" 1878 + source = "registry+https://github.com/rust-lang/crates.io-index" 1879 + checksum = "f5aaf628956b6b0852e12ac3505d20d7a12ecc1e32d5ea921f002af4a74036a5" 1880 + dependencies = [ 1881 + "base64 0.21.5", 1882 + "chumsky", 1883 + "email-encoding", 1884 + "email_address", 1885 + "fastrand 2.0.1", 1886 + "futures-util", 1887 + "hostname", 1888 + "httpdate", 1889 + "idna 0.5.0", 1890 + "mime", 1891 + "native-tls", 1892 + "nom 7.1.3", 1893 + "quoted_printable", 1894 + "socket2 0.5.5", 1895 + "tokio", 1896 + "url", 1897 + ] 1898 + 1899 + [[package]] 1900 + name = "levenshtein_automata" 1901 + version = "0.2.1" 1902 + source = "registry+https://github.com/rust-lang/crates.io-index" 1903 + checksum = "0c2cdeb66e45e9f36bfad5bbdb4d2384e70936afbee843c6f6543f0c551ebb25" 1904 + 1905 + [[package]] 1906 + name = "libc" 1907 + version = "0.2.149" 1908 + source = "registry+https://github.com/rust-lang/crates.io-index" 1909 + checksum = "a08173bc88b7955d1b3145aa561539096c421ac8debde8cbc3612ec635fee29b" 1910 + 1911 + [[package]] 1912 + name = "libloading" 1913 + version = "0.7.4" 1914 + source = "registry+https://github.com/rust-lang/crates.io-index" 1915 + checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f" 1916 + dependencies = [ 1917 + "cfg-if", 1918 + "winapi", 1919 + ] 1920 + 1921 + [[package]] 1922 + name = "libsqlite3-sys" 1923 + version = "0.27.0" 1924 + source = "registry+https://github.com/rust-lang/crates.io-index" 1925 + checksum = "cf4e226dcd58b4be396f7bd3c20da8fdee2911400705297ba7d2d7cc2c30f716" 1926 + dependencies = [ 1927 + "cc", 1928 + "pkg-config", 1929 + "vcpkg", 1930 + ] 1931 + 1932 + [[package]] 1933 + name = "link-cplusplus" 1934 + version = "1.0.8" 1935 + source = "registry+https://github.com/rust-lang/crates.io-index" 1936 + checksum = "ecd207c9c713c34f95a097a5b029ac2ce6010530c7b49d7fea24d977dede04f5" 1937 + dependencies = [ 1938 + "cc", 1939 + ] 1940 + 1941 + [[package]] 1942 + name = "linked-hash-map" 1943 + version = "0.5.6" 1944 + source = "registry+https://github.com/rust-lang/crates.io-index" 1945 + checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" 1946 + 1947 + [[package]] 1948 + name = "linux-raw-sys" 1949 + version = "0.3.8" 1950 + source = "registry+https://github.com/rust-lang/crates.io-index" 1951 + checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519" 1952 + 1953 + [[package]] 1954 + name = "linux-raw-sys" 1955 + version = "0.4.10" 1956 + source = "registry+https://github.com/rust-lang/crates.io-index" 1957 + checksum = "da2479e8c062e40bf0066ffa0bc823de0a9368974af99c9f6df941d2c231e03f" 1958 + 1959 + [[package]] 1960 + name = "llama-cpp-bindings" 1961 + version = "0.8.3" 1962 + dependencies = [ 1963 + "async-stream", 1964 + "async-trait", 1965 + "cmake", 1966 + "cxx", 1967 + "cxx-build", 1968 + "derive_builder", 1969 + "futures", 1970 + "tabby-inference", 1971 + "tokio", 1972 + "tracing", 1973 + ] 1974 + 1975 + [[package]] 1976 + name = "lock_api" 1977 + version = "0.4.10" 1978 + source = "registry+https://github.com/rust-lang/crates.io-index" 1979 + checksum = "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16" 1980 + dependencies = [ 1981 + "autocfg", 1982 + "scopeguard", 1983 + ] 1984 + 1985 + [[package]] 1986 + name = "log" 1987 + version = "0.4.20" 1988 + source = "registry+https://github.com/rust-lang/crates.io-index" 1989 + checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" 1990 + 1991 + [[package]] 1992 + name = "loom" 1993 + version = "0.5.6" 1994 + source = "registry+https://github.com/rust-lang/crates.io-index" 1995 + checksum = "ff50ecb28bb86013e935fb6683ab1f6d3a20016f123c76fd4c27470076ac30f5" 1996 + dependencies = [ 1997 + "cfg-if", 1998 + "generator", 1999 + "pin-utils", 2000 + "scoped-tls", 2001 + "tracing", 2002 + "tracing-subscriber 0.3.17", 2003 + ] 2004 + 2005 + [[package]] 2006 + name = "lru" 2007 + version = "0.11.1" 2008 + source = "registry+https://github.com/rust-lang/crates.io-index" 2009 + checksum = "a4a83fb7698b3643a0e34f9ae6f2e8f0178c0fd42f8b59d493aa271ff3a5bf21" 2010 + dependencies = [ 2011 + "hashbrown 0.14.3", 2012 + ] 2013 + 2014 + [[package]] 2015 + name = "lz4_flex" 2016 + version = "0.11.1" 2017 + source = "registry+https://github.com/rust-lang/crates.io-index" 2018 + checksum = "3ea9b256699eda7b0387ffbc776dd625e28bde3918446381781245b7a50349d8" 2019 + 2020 + [[package]] 2021 + name = "mach2" 2022 + version = "0.4.1" 2023 + source = "registry+https://github.com/rust-lang/crates.io-index" 2024 + checksum = "6d0d1830bcd151a6fc4aea1369af235b36c1528fe976b8ff678683c9995eade8" 2025 + dependencies = [ 2026 + "libc", 2027 + ] 2028 + 2029 + [[package]] 2030 + name = "match_cfg" 2031 + version = "0.1.0" 2032 + source = "registry+https://github.com/rust-lang/crates.io-index" 2033 + checksum = "ffbee8634e0d45d258acb448e7eaab3fce7a0a467395d4d9f228e3c1f01fb2e4" 2034 + 2035 + [[package]] 2036 + name = "matchers" 2037 + version = "0.0.1" 2038 + source = "registry+https://github.com/rust-lang/crates.io-index" 2039 + checksum = "f099785f7595cc4b4553a174ce30dd7589ef93391ff414dbb67f62392b9e0ce1" 2040 + dependencies = [ 2041 + "regex-automata 0.1.10", 2042 + ] 2043 + 2044 + [[package]] 2045 + name = "matchers" 2046 + version = "0.1.0" 2047 + source = "registry+https://github.com/rust-lang/crates.io-index" 2048 + checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558" 2049 + dependencies = [ 2050 + "regex-automata 0.1.10", 2051 + ] 2052 + 2053 + [[package]] 2054 + name = "matchit" 2055 + version = "0.7.0" 2056 + source = "registry+https://github.com/rust-lang/crates.io-index" 2057 + checksum = "b87248edafb776e59e6ee64a79086f65890d3510f2c656c000bf2a7e8a0aea40" 2058 + 2059 + [[package]] 2060 + name = "measure_time" 2061 + version = "0.8.2" 2062 + source = "registry+https://github.com/rust-lang/crates.io-index" 2063 + checksum = "56220900f1a0923789ecd6bf25fbae8af3b2f1ff3e9e297fc9b6b8674dd4d852" 2064 + dependencies = [ 2065 + "instant", 2066 + "log", 2067 + ] 2068 + 2069 + [[package]] 2070 + name = "memchr" 2071 + version = "2.6.2" 2072 + source = "registry+https://github.com/rust-lang/crates.io-index" 2073 + checksum = "5486aed0026218e61b8a01d5fbd5a0a134649abb71a0e53b7bc088529dced86e" 2074 + 2075 + [[package]] 2076 + name = "memmap2" 2077 + version = "0.7.1" 2078 + source = "registry+https://github.com/rust-lang/crates.io-index" 2079 + checksum = "f49388d20533534cd19360ad3d6a7dadc885944aa802ba3995040c5ec11288c6" 2080 + dependencies = [ 2081 + "libc", 2082 + ] 2083 + 2084 + [[package]] 2085 + name = "memo-map" 2086 + version = "0.3.2" 2087 + source = "registry+https://github.com/rust-lang/crates.io-index" 2088 + checksum = "374c335b2df19e62d4cb323103473cbc6510980253119180de862d89184f6a83" 2089 + 2090 + [[package]] 2091 + name = "memoffset" 2092 + version = "0.8.0" 2093 + source = "registry+https://github.com/rust-lang/crates.io-index" 2094 + checksum = "d61c719bcfbcf5d62b3a09efa6088de8c54bc0bfcd3ea7ae39fcc186108b8de1" 2095 + dependencies = [ 2096 + "autocfg", 2097 + ] 2098 + 2099 + [[package]] 2100 + name = "metrics" 2101 + version = "0.21.1" 2102 + source = "registry+https://github.com/rust-lang/crates.io-index" 2103 + checksum = "fde3af1a009ed76a778cb84fdef9e7dbbdf5775ae3e4cc1f434a6a307f6f76c5" 2104 + dependencies = [ 2105 + "ahash", 2106 + "metrics-macros", 2107 + "portable-atomic", 2108 + ] 2109 + 2110 + [[package]] 2111 + name = "metrics-exporter-prometheus" 2112 + version = "0.12.1" 2113 + source = "registry+https://github.com/rust-lang/crates.io-index" 2114 + checksum = "8a4964177ddfdab1e3a2b37aec7cf320e14169abb0ed73999f558136409178d5" 2115 + dependencies = [ 2116 + "base64 0.21.5", 2117 + "hyper", 2118 + "indexmap 1.9.3", 2119 + "ipnet", 2120 + "metrics", 2121 + "metrics-util", 2122 + "quanta", 2123 + "thiserror", 2124 + "tokio", 2125 + "tracing", 2126 + ] 2127 + 2128 + [[package]] 2129 + name = "metrics-macros" 2130 + version = "0.7.0" 2131 + source = "registry+https://github.com/rust-lang/crates.io-index" 2132 + checksum = "ddece26afd34c31585c74a4db0630c376df271c285d682d1e55012197830b6df" 2133 + dependencies = [ 2134 + "proc-macro2", 2135 + "quote", 2136 + "syn 2.0.32", 2137 + ] 2138 + 2139 + [[package]] 2140 + name = "metrics-util" 2141 + version = "0.15.1" 2142 + source = "registry+https://github.com/rust-lang/crates.io-index" 2143 + checksum = "4de2ed6e491ed114b40b732e4d1659a9d53992ebd87490c44a6ffe23739d973e" 2144 + dependencies = [ 2145 + "crossbeam-epoch", 2146 + "crossbeam-utils", 2147 + "hashbrown 0.13.1", 2148 + "metrics", 2149 + "num_cpus", 2150 + "quanta", 2151 + "sketches-ddsketch", 2152 + ] 2153 + 2154 + [[package]] 2155 + name = "mime" 2156 + version = "0.3.17" 2157 + source = "registry+https://github.com/rust-lang/crates.io-index" 2158 + checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 2159 + 2160 + [[package]] 2161 + name = "mime_guess" 2162 + version = "2.0.4" 2163 + source = "registry+https://github.com/rust-lang/crates.io-index" 2164 + checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef" 2165 + dependencies = [ 2166 + "mime", 2167 + "unicase", 2168 + ] 2169 + 2170 + [[package]] 2171 + name = "minijinja" 2172 + version = "1.0.8" 2173 + source = "registry+https://github.com/rust-lang/crates.io-index" 2174 + checksum = "80084fa3099f58b7afab51e5f92e24c2c2c68dcad26e96ad104bd6011570461d" 2175 + dependencies = [ 2176 + "memo-map", 2177 + "self_cell", 2178 + "serde", 2179 + ] 2180 + 2181 + [[package]] 2182 + name = "minimal-lexical" 2183 + version = "0.2.1" 2184 + source = "registry+https://github.com/rust-lang/crates.io-index" 2185 + checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" 2186 + 2187 + [[package]] 2188 + name = "miniz_oxide" 2189 + version = "0.6.2" 2190 + source = "registry+https://github.com/rust-lang/crates.io-index" 2191 + checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa" 2192 + dependencies = [ 2193 + "adler", 2194 + ] 2195 + 2196 + [[package]] 2197 + name = "miniz_oxide" 2198 + version = "0.7.1" 2199 + source = "registry+https://github.com/rust-lang/crates.io-index" 2200 + checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" 2201 + dependencies = [ 2202 + "adler", 2203 + ] 2204 + 2205 + [[package]] 2206 + name = "mio" 2207 + version = "0.8.10" 2208 + source = "registry+https://github.com/rust-lang/crates.io-index" 2209 + checksum = "8f3d0b296e374a4e6f3c7b0a1f5a51d748a0d34c85e7dc48fc3fa9a87657fe09" 2210 + dependencies = [ 2211 + "libc", 2212 + "wasi 0.11.0+wasi-snapshot-preview1", 2213 + "windows-sys 0.48.0", 2214 + ] 2215 + 2216 + [[package]] 2217 + name = "multimap" 2218 + version = "0.8.3" 2219 + source = "registry+https://github.com/rust-lang/crates.io-index" 2220 + checksum = "e5ce46fe64a9d73be07dcbe690a38ce1b293be448fd8ce1e6c1b8062c9f72c6a" 2221 + 2222 + [[package]] 2223 + name = "murmurhash32" 2224 + version = "0.3.0" 2225 + source = "registry+https://github.com/rust-lang/crates.io-index" 2226 + checksum = "d9380db4c04d219ac5c51d14996bbf2c2e9a15229771b53f8671eb6c83cf44df" 2227 + 2228 + [[package]] 2229 + name = "native-tls" 2230 + version = "0.2.11" 2231 + source = "registry+https://github.com/rust-lang/crates.io-index" 2232 + checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e" 2233 + dependencies = [ 2234 + "lazy_static", 2235 + "libc", 2236 + "log", 2237 + "openssl", 2238 + "openssl-probe", 2239 + "openssl-sys", 2240 + "schannel", 2241 + "security-framework", 2242 + "security-framework-sys", 2243 + "tempfile", 2244 + ] 2245 + 2246 + [[package]] 2247 + name = "netrc" 2248 + version = "0.4.1" 2249 + source = "registry+https://github.com/rust-lang/crates.io-index" 2250 + checksum = "c9a91b326434fca226707ed8ec1fd22d4e1c96801abdf10c412afdc7d97116e0" 2251 + 2252 + [[package]] 2253 + name = "nom" 2254 + version = "4.1.1" 2255 + source = "registry+https://github.com/rust-lang/crates.io-index" 2256 + checksum = "9c349f68f25f596b9f44cf0e7c69752a5c633b0550c3ff849518bfba0233774a" 2257 + dependencies = [ 2258 + "memchr", 2259 + ] 2260 + 2261 + [[package]] 2262 + name = "nom" 2263 + version = "7.1.3" 2264 + source = "registry+https://github.com/rust-lang/crates.io-index" 2265 + checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" 2266 + dependencies = [ 2267 + "memchr", 2268 + "minimal-lexical", 2269 + ] 2270 + 2271 + [[package]] 2272 + name = "ntapi" 2273 + version = "0.4.1" 2274 + source = "registry+https://github.com/rust-lang/crates.io-index" 2275 + checksum = "e8a3895c6391c39d7fe7ebc444a87eb2991b2a0bc718fdabd071eec617fc68e4" 2276 + dependencies = [ 2277 + "winapi", 2278 + ] 2279 + 2280 + [[package]] 2281 + name = "nu-ansi-term" 2282 + version = "0.46.0" 2283 + source = "registry+https://github.com/rust-lang/crates.io-index" 2284 + checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84" 2285 + dependencies = [ 2286 + "overload", 2287 + "winapi", 2288 + ] 2289 + 2290 + [[package]] 2291 + name = "num-bigint" 2292 + version = "0.4.4" 2293 + source = "registry+https://github.com/rust-lang/crates.io-index" 2294 + checksum = "608e7659b5c3d7cba262d894801b9ec9d00de989e8a82bd4bef91d08da45cdc0" 2295 + dependencies = [ 2296 + "autocfg", 2297 + "num-integer", 2298 + "num-traits", 2299 + ] 2300 + 2301 + [[package]] 2302 + name = "num-derive" 2303 + version = "0.3.3" 2304 + source = "registry+https://github.com/rust-lang/crates.io-index" 2305 + checksum = "876a53fff98e03a936a674b29568b0e605f06b29372c2489ff4de23f1949743d" 2306 + dependencies = [ 2307 + "proc-macro2", 2308 + "quote", 2309 + "syn 1.0.109", 2310 + ] 2311 + 2312 + [[package]] 2313 + name = "num-integer" 2314 + version = "0.1.45" 2315 + source = "registry+https://github.com/rust-lang/crates.io-index" 2316 + checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" 2317 + dependencies = [ 2318 + "autocfg", 2319 + "num-traits", 2320 + ] 2321 + 2322 + [[package]] 2323 + name = "num-traits" 2324 + version = "0.2.17" 2325 + source = "registry+https://github.com/rust-lang/crates.io-index" 2326 + checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c" 2327 + dependencies = [ 2328 + "autocfg", 2329 + ] 2330 + 2331 + [[package]] 2332 + name = "num_cpus" 2333 + version = "1.15.0" 2334 + source = "registry+https://github.com/rust-lang/crates.io-index" 2335 + checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b" 2336 + dependencies = [ 2337 + "hermit-abi 0.2.6", 2338 + "libc", 2339 + ] 2340 + 2341 + [[package]] 2342 + name = "num_threads" 2343 + version = "0.1.6" 2344 + source = "registry+https://github.com/rust-lang/crates.io-index" 2345 + checksum = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44" 2346 + dependencies = [ 2347 + "libc", 2348 + ] 2349 + 2350 + [[package]] 2351 + name = "number_prefix" 2352 + version = "0.4.0" 2353 + source = "registry+https://github.com/rust-lang/crates.io-index" 2354 + checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3" 2355 + 2356 + [[package]] 2357 + name = "nvml-wrapper" 2358 + version = "0.9.0" 2359 + source = "registry+https://github.com/rust-lang/crates.io-index" 2360 + checksum = "7cd21b9f5a1cce3c3515c9ffa85f5c7443e07162dae0ccf4339bb7ca38ad3454" 2361 + dependencies = [ 2362 + "bitflags 1.3.2", 2363 + "libloading", 2364 + "nvml-wrapper-sys", 2365 + "static_assertions", 2366 + "thiserror", 2367 + "wrapcenum-derive", 2368 + ] 2369 + 2370 + [[package]] 2371 + name = "nvml-wrapper-sys" 2372 + version = "0.7.0" 2373 + source = "registry+https://github.com/rust-lang/crates.io-index" 2374 + checksum = "c961a2ea9e91c59a69b78e69090f6f5b867bb46c0c56de9482da232437c4987e" 2375 + dependencies = [ 2376 + "libloading", 2377 + ] 2378 + 2379 + [[package]] 2380 + name = "object" 2381 + version = "0.30.3" 2382 + source = "registry+https://github.com/rust-lang/crates.io-index" 2383 + checksum = "ea86265d3d3dcb6a27fc51bd29a4bf387fae9d2986b823079d4986af253eb439" 2384 + dependencies = [ 2385 + "memchr", 2386 + ] 2387 + 2388 + [[package]] 2389 + name = "once_cell" 2390 + version = "1.18.0" 2391 + source = "registry+https://github.com/rust-lang/crates.io-index" 2392 + checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" 2393 + 2394 + [[package]] 2395 + name = "oneshot" 2396 + version = "0.1.5" 2397 + source = "registry+https://github.com/rust-lang/crates.io-index" 2398 + checksum = "fc22d22931513428ea6cc089e942d38600e3d00976eef8c86de6b8a3aadec6eb" 2399 + dependencies = [ 2400 + "loom", 2401 + ] 2402 + 2403 + [[package]] 2404 + name = "openssl" 2405 + version = "0.10.61" 2406 + source = "registry+https://github.com/rust-lang/crates.io-index" 2407 + checksum = "6b8419dc8cc6d866deb801274bba2e6f8f6108c1bb7fcc10ee5ab864931dbb45" 2408 + dependencies = [ 2409 + "bitflags 2.4.0", 2410 + "cfg-if", 2411 + "foreign-types", 2412 + "libc", 2413 + "once_cell", 2414 + "openssl-macros", 2415 + "openssl-sys", 2416 + ] 2417 + 2418 + [[package]] 2419 + name = "openssl-macros" 2420 + version = "0.1.1" 2421 + source = "registry+https://github.com/rust-lang/crates.io-index" 2422 + checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" 2423 + dependencies = [ 2424 + "proc-macro2", 2425 + "quote", 2426 + "syn 2.0.32", 2427 + ] 2428 + 2429 + [[package]] 2430 + name = "openssl-probe" 2431 + version = "0.1.5" 2432 + source = "registry+https://github.com/rust-lang/crates.io-index" 2433 + checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" 2434 + 2435 + [[package]] 2436 + name = "openssl-src" 2437 + version = "300.2.1+3.2.0" 2438 + source = "registry+https://github.com/rust-lang/crates.io-index" 2439 + checksum = "3fe476c29791a5ca0d1273c697e96085bbabbbea2ef7afd5617e78a4b40332d3" 2440 + dependencies = [ 2441 + "cc", 2442 + ] 2443 + 2444 + [[package]] 2445 + name = "openssl-sys" 2446 + version = "0.9.97" 2447 + source = "registry+https://github.com/rust-lang/crates.io-index" 2448 + checksum = "c3eaad34cdd97d81de97964fc7f29e2d104f483840d906ef56daa1912338460b" 2449 + dependencies = [ 2450 + "cc", 2451 + "libc", 2452 + "openssl-src", 2453 + "pkg-config", 2454 + "vcpkg", 2455 + ] 2456 + 2457 + [[package]] 2458 + name = "opentelemetry" 2459 + version = "0.18.0" 2460 + source = "registry+https://github.com/rust-lang/crates.io-index" 2461 + checksum = "69d6c3d7288a106c0a363e4b0e8d308058d56902adefb16f4936f417ffef086e" 2462 + dependencies = [ 2463 + "opentelemetry_api", 2464 + "opentelemetry_sdk", 2465 + ] 2466 + 2467 + [[package]] 2468 + name = "opentelemetry-otlp" 2469 + version = "0.11.0" 2470 + source = "registry+https://github.com/rust-lang/crates.io-index" 2471 + checksum = "d1c928609d087790fc936a1067bdc310ae702bdf3b090c3f281b713622c8bbde" 2472 + dependencies = [ 2473 + "async-trait", 2474 + "futures", 2475 + "futures-util", 2476 + "http", 2477 + "opentelemetry", 2478 + "opentelemetry-proto", 2479 + "prost", 2480 + "thiserror", 2481 + "tokio", 2482 + "tonic", 2483 + ] 2484 + 2485 + [[package]] 2486 + name = "opentelemetry-proto" 2487 + version = "0.1.0" 2488 + source = "registry+https://github.com/rust-lang/crates.io-index" 2489 + checksum = "d61a2f56df5574508dd86aaca016c917489e589ece4141df1b5e349af8d66c28" 2490 + dependencies = [ 2491 + "futures", 2492 + "futures-util", 2493 + "opentelemetry", 2494 + "prost", 2495 + "tonic", 2496 + "tonic-build", 2497 + ] 2498 + 2499 + [[package]] 2500 + name = "opentelemetry_api" 2501 + version = "0.18.0" 2502 + source = "registry+https://github.com/rust-lang/crates.io-index" 2503 + checksum = "c24f96e21e7acc813c7a8394ee94978929db2bcc46cf6b5014fc612bf7760c22" 2504 + dependencies = [ 2505 + "fnv", 2506 + "futures-channel", 2507 + "futures-util", 2508 + "indexmap 1.9.3", 2509 + "js-sys", 2510 + "once_cell", 2511 + "pin-project-lite", 2512 + "thiserror", 2513 + ] 2514 + 2515 + [[package]] 2516 + name = "opentelemetry_sdk" 2517 + version = "0.18.0" 2518 + source = "registry+https://github.com/rust-lang/crates.io-index" 2519 + checksum = "1ca41c4933371b61c2a2f214bf16931499af4ec90543604ec828f7a625c09113" 2520 + dependencies = [ 2521 + "async-trait", 2522 + "crossbeam-channel", 2523 + "dashmap", 2524 + "fnv", 2525 + "futures-channel", 2526 + "futures-executor", 2527 + "futures-util", 2528 + "once_cell", 2529 + "opentelemetry_api", 2530 + "percent-encoding", 2531 + "rand 0.8.5", 2532 + "thiserror", 2533 + "tokio", 2534 + "tokio-stream", 2535 + ] 2536 + 2537 + [[package]] 2538 + name = "overload" 2539 + version = "0.1.1" 2540 + source = "registry+https://github.com/rust-lang/crates.io-index" 2541 + checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" 2542 + 2543 + [[package]] 2544 + name = "ownedbytes" 2545 + version = "0.6.0" 2546 + source = "registry+https://github.com/rust-lang/crates.io-index" 2547 + checksum = "6e8a72b918ae8198abb3a18c190288123e1d442b6b9a7d709305fd194688b4b7" 2548 + dependencies = [ 2549 + "stable_deref_trait", 2550 + ] 2551 + 2552 + [[package]] 2553 + name = "parking_lot" 2554 + version = "0.12.1" 2555 + source = "registry+https://github.com/rust-lang/crates.io-index" 2556 + checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" 2557 + dependencies = [ 2558 + "lock_api", 2559 + "parking_lot_core", 2560 + ] 2561 + 2562 + [[package]] 2563 + name = "parking_lot_core" 2564 + version = "0.9.8" 2565 + source = "registry+https://github.com/rust-lang/crates.io-index" 2566 + checksum = "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447" 2567 + dependencies = [ 2568 + "cfg-if", 2569 + "libc", 2570 + "redox_syscall 0.3.5", 2571 + "smallvec", 2572 + "windows-targets 0.48.0", 2573 + ] 2574 + 2575 + [[package]] 2576 + name = "password-hash" 2577 + version = "0.5.0" 2578 + source = "registry+https://github.com/rust-lang/crates.io-index" 2579 + checksum = "346f04948ba92c43e8469c1ee6736c7563d71012b17d40745260fe106aac2166" 2580 + dependencies = [ 2581 + "base64ct", 2582 + "rand_core 0.6.4", 2583 + "subtle", 2584 + ] 2585 + 2586 + [[package]] 2587 + name = "paste" 2588 + version = "1.0.12" 2589 + source = "registry+https://github.com/rust-lang/crates.io-index" 2590 + checksum = "9f746c4065a8fa3fe23974dd82f15431cc8d40779821001404d10d2e79ca7d79" 2591 + 2592 + [[package]] 2593 + name = "pem" 2594 + version = "3.0.2" 2595 + source = "registry+https://github.com/rust-lang/crates.io-index" 2596 + checksum = "3163d2912b7c3b52d651a055f2c7eec9ba5cd22d26ef75b8dd3a59980b185923" 2597 + dependencies = [ 2598 + "base64 0.21.5", 2599 + "serde", 2600 + ] 2601 + 2602 + [[package]] 2603 + name = "percent-encoding" 2604 + version = "2.3.1" 2605 + source = "registry+https://github.com/rust-lang/crates.io-index" 2606 + checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" 2607 + 2608 + [[package]] 2609 + name = "pest" 2610 + version = "2.7.5" 2611 + source = "registry+https://github.com/rust-lang/crates.io-index" 2612 + checksum = "ae9cee2a55a544be8b89dc6848072af97a20f2422603c10865be2a42b580fff5" 2613 + dependencies = [ 2614 + "memchr", 2615 + "thiserror", 2616 + "ucd-trie", 2617 + ] 2618 + 2619 + [[package]] 2620 + name = "pest_derive" 2621 + version = "2.7.5" 2622 + source = "registry+https://github.com/rust-lang/crates.io-index" 2623 + checksum = "81d78524685f5ef2a3b3bd1cafbc9fcabb036253d9b1463e726a91cd16e2dfc2" 2624 + dependencies = [ 2625 + "pest", 2626 + "pest_generator", 2627 + ] 2628 + 2629 + [[package]] 2630 + name = "pest_generator" 2631 + version = "2.7.5" 2632 + source = "registry+https://github.com/rust-lang/crates.io-index" 2633 + checksum = "68bd1206e71118b5356dae5ddc61c8b11e28b09ef6a31acbd15ea48a28e0c227" 2634 + dependencies = [ 2635 + "pest", 2636 + "pest_meta", 2637 + "proc-macro2", 2638 + "quote", 2639 + "syn 2.0.32", 2640 + ] 2641 + 2642 + [[package]] 2643 + name = "pest_meta" 2644 + version = "2.7.5" 2645 + source = "registry+https://github.com/rust-lang/crates.io-index" 2646 + checksum = "7c747191d4ad9e4a4ab9c8798f1e82a39affe7ef9648390b7e5548d18e099de6" 2647 + dependencies = [ 2648 + "once_cell", 2649 + "pest", 2650 + "sha2", 2651 + ] 2652 + 2653 + [[package]] 2654 + name = "petgraph" 2655 + version = "0.6.3" 2656 + source = "registry+https://github.com/rust-lang/crates.io-index" 2657 + checksum = "4dd7d28ee937e54fe3080c91faa1c3a46c06de6252988a7f4592ba2310ef22a4" 2658 + dependencies = [ 2659 + "fixedbitset", 2660 + "indexmap 1.9.3", 2661 + ] 2662 + 2663 + [[package]] 2664 + name = "pin-project" 2665 + version = "1.1.3" 2666 + source = "registry+https://github.com/rust-lang/crates.io-index" 2667 + checksum = "fda4ed1c6c173e3fc7a83629421152e01d7b1f9b7f65fb301e490e8cfc656422" 2668 + dependencies = [ 2669 + "pin-project-internal", 2670 + ] 2671 + 2672 + [[package]] 2673 + name = "pin-project-internal" 2674 + version = "1.1.3" 2675 + source = "registry+https://github.com/rust-lang/crates.io-index" 2676 + checksum = "4359fd9c9171ec6e8c62926d6faaf553a8dc3f64e1507e76da7911b4f6a04405" 2677 + dependencies = [ 2678 + "proc-macro2", 2679 + "quote", 2680 + "syn 2.0.32", 2681 + ] 2682 + 2683 + [[package]] 2684 + name = "pin-project-lite" 2685 + version = "0.2.13" 2686 + source = "registry+https://github.com/rust-lang/crates.io-index" 2687 + checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58" 2688 + 2689 + [[package]] 2690 + name = "pin-utils" 2691 + version = "0.1.0" 2692 + source = "registry+https://github.com/rust-lang/crates.io-index" 2693 + checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 2694 + 2695 + [[package]] 2696 + name = "pkg-config" 2697 + version = "0.3.27" 2698 + source = "registry+https://github.com/rust-lang/crates.io-index" 2699 + checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" 2700 + 2701 + [[package]] 2702 + name = "portable-atomic" 2703 + version = "1.3.2" 2704 + source = "registry+https://github.com/rust-lang/crates.io-index" 2705 + checksum = "dc59d1bcc64fc5d021d67521f818db868368028108d37f0e98d74e33f68297b5" 2706 + 2707 + [[package]] 2708 + name = "ppv-lite86" 2709 + version = "0.2.17" 2710 + source = "registry+https://github.com/rust-lang/crates.io-index" 2711 + checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" 2712 + 2713 + [[package]] 2714 + name = "prettyplease" 2715 + version = "0.1.25" 2716 + source = "registry+https://github.com/rust-lang/crates.io-index" 2717 + checksum = "6c8646e95016a7a6c4adea95bafa8a16baab64b583356217f2c85db4a39d9a86" 2718 + dependencies = [ 2719 + "proc-macro2", 2720 + "syn 1.0.109", 2721 + ] 2722 + 2723 + [[package]] 2724 + name = "proc-macro-error" 2725 + version = "1.0.4" 2726 + source = "registry+https://github.com/rust-lang/crates.io-index" 2727 + checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 2728 + dependencies = [ 2729 + "proc-macro-error-attr", 2730 + "proc-macro2", 2731 + "quote", 2732 + "syn 1.0.109", 2733 + "version_check", 2734 + ] 2735 + 2736 + [[package]] 2737 + name = "proc-macro-error-attr" 2738 + version = "1.0.4" 2739 + source = "registry+https://github.com/rust-lang/crates.io-index" 2740 + checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" 2741 + dependencies = [ 2742 + "proc-macro2", 2743 + "quote", 2744 + "version_check", 2745 + ] 2746 + 2747 + [[package]] 2748 + name = "proc-macro2" 2749 + version = "1.0.66" 2750 + source = "registry+https://github.com/rust-lang/crates.io-index" 2751 + checksum = "18fb31db3f9bddb2ea821cde30a9f70117e3f119938b5ee630b7403aa6e2ead9" 2752 + dependencies = [ 2753 + "unicode-ident", 2754 + ] 2755 + 2756 + [[package]] 2757 + name = "prost" 2758 + version = "0.11.9" 2759 + source = "registry+https://github.com/rust-lang/crates.io-index" 2760 + checksum = "0b82eaa1d779e9a4bc1c3217db8ffbeabaae1dca241bf70183242128d48681cd" 2761 + dependencies = [ 2762 + "bytes", 2763 + "prost-derive", 2764 + ] 2765 + 2766 + [[package]] 2767 + name = "prost-build" 2768 + version = "0.11.9" 2769 + source = "registry+https://github.com/rust-lang/crates.io-index" 2770 + checksum = "119533552c9a7ffacc21e099c24a0ac8bb19c2a2a3f363de84cd9b844feab270" 2771 + dependencies = [ 2772 + "bytes", 2773 + "heck", 2774 + "itertools 0.10.5", 2775 + "lazy_static", 2776 + "log", 2777 + "multimap", 2778 + "petgraph", 2779 + "prettyplease", 2780 + "prost", 2781 + "prost-types", 2782 + "regex", 2783 + "syn 1.0.109", 2784 + "tempfile", 2785 + "which", 2786 + ] 2787 + 2788 + [[package]] 2789 + name = "prost-derive" 2790 + version = "0.11.9" 2791 + source = "registry+https://github.com/rust-lang/crates.io-index" 2792 + checksum = "e5d2d8d10f3c6ded6da8b05b5fb3b8a5082514344d56c9f871412d29b4e075b4" 2793 + dependencies = [ 2794 + "anyhow", 2795 + "itertools 0.10.5", 2796 + "proc-macro2", 2797 + "quote", 2798 + "syn 1.0.109", 2799 + ] 2800 + 2801 + [[package]] 2802 + name = "prost-types" 2803 + version = "0.11.9" 2804 + source = "registry+https://github.com/rust-lang/crates.io-index" 2805 + checksum = "213622a1460818959ac1181aaeb2dc9c7f63df720db7d788b3e24eacd1983e13" 2806 + dependencies = [ 2807 + "prost", 2808 + ] 2809 + 2810 + [[package]] 2811 + name = "psm" 2812 + version = "0.1.21" 2813 + source = "registry+https://github.com/rust-lang/crates.io-index" 2814 + checksum = "5787f7cda34e3033a72192c018bc5883100330f362ef279a8cbccfce8bb4e874" 2815 + dependencies = [ 2816 + "cc", 2817 + ] 2818 + 2819 + [[package]] 2820 + name = "quanta" 2821 + version = "0.11.1" 2822 + source = "registry+https://github.com/rust-lang/crates.io-index" 2823 + checksum = "a17e662a7a8291a865152364c20c7abc5e60486ab2001e8ec10b24862de0b9ab" 2824 + dependencies = [ 2825 + "crossbeam-utils", 2826 + "libc", 2827 + "mach2", 2828 + "once_cell", 2829 + "raw-cpuid", 2830 + "wasi 0.11.0+wasi-snapshot-preview1", 2831 + "web-sys", 2832 + "winapi", 2833 + ] 2834 + 2835 + [[package]] 2836 + name = "quote" 2837 + version = "1.0.32" 2838 + source = "registry+https://github.com/rust-lang/crates.io-index" 2839 + checksum = "50f3b39ccfb720540debaa0164757101c08ecb8d326b15358ce76a62c7e85965" 2840 + dependencies = [ 2841 + "proc-macro2", 2842 + ] 2843 + 2844 + [[package]] 2845 + name = "quoted_printable" 2846 + version = "0.5.0" 2847 + source = "registry+https://github.com/rust-lang/crates.io-index" 2848 + checksum = "79ec282e887b434b68c18fe5c121d38e72a5cf35119b59e54ec5b992ea9c8eb0" 2849 + 2850 + [[package]] 2851 + name = "rand" 2852 + version = "0.7.3" 2853 + source = "registry+https://github.com/rust-lang/crates.io-index" 2854 + checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" 2855 + dependencies = [ 2856 + "getrandom 0.1.16", 2857 + "libc", 2858 + "rand_chacha 0.2.2", 2859 + "rand_core 0.5.1", 2860 + "rand_hc", 2861 + ] 2862 + 2863 + [[package]] 2864 + name = "rand" 2865 + version = "0.8.5" 2866 + source = "registry+https://github.com/rust-lang/crates.io-index" 2867 + checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 2868 + dependencies = [ 2869 + "libc", 2870 + "rand_chacha 0.3.1", 2871 + "rand_core 0.6.4", 2872 + ] 2873 + 2874 + [[package]] 2875 + name = "rand_chacha" 2876 + version = "0.2.2" 2877 + source = "registry+https://github.com/rust-lang/crates.io-index" 2878 + checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402" 2879 + dependencies = [ 2880 + "ppv-lite86", 2881 + "rand_core 0.5.1", 2882 + ] 2883 + 2884 + [[package]] 2885 + name = "rand_chacha" 2886 + version = "0.3.1" 2887 + source = "registry+https://github.com/rust-lang/crates.io-index" 2888 + checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 2889 + dependencies = [ 2890 + "ppv-lite86", 2891 + "rand_core 0.6.4", 2892 + ] 2893 + 2894 + [[package]] 2895 + name = "rand_core" 2896 + version = "0.5.1" 2897 + source = "registry+https://github.com/rust-lang/crates.io-index" 2898 + checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" 2899 + dependencies = [ 2900 + "getrandom 0.1.16", 2901 + ] 2902 + 2903 + [[package]] 2904 + name = "rand_core" 2905 + version = "0.6.4" 2906 + source = "registry+https://github.com/rust-lang/crates.io-index" 2907 + checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 2908 + dependencies = [ 2909 + "getrandom 0.2.11", 2910 + ] 2911 + 2912 + [[package]] 2913 + name = "rand_hc" 2914 + version = "0.2.0" 2915 + source = "registry+https://github.com/rust-lang/crates.io-index" 2916 + checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" 2917 + dependencies = [ 2918 + "rand_core 0.5.1", 2919 + ] 2920 + 2921 + [[package]] 2922 + name = "raw-cpuid" 2923 + version = "10.7.0" 2924 + source = "registry+https://github.com/rust-lang/crates.io-index" 2925 + checksum = "6c297679cb867470fa8c9f67dbba74a78d78e3e98d7cf2b08d6d71540f797332" 2926 + dependencies = [ 2927 + "bitflags 1.3.2", 2928 + ] 2929 + 2930 + [[package]] 2931 + name = "rayon" 2932 + version = "1.7.0" 2933 + source = "registry+https://github.com/rust-lang/crates.io-index" 2934 + checksum = "1d2df5196e37bcc87abebc0053e20787d73847bb33134a69841207dd0a47f03b" 2935 + dependencies = [ 2936 + "either", 2937 + "rayon-core", 2938 + ] 2939 + 2940 + [[package]] 2941 + name = "rayon-core" 2942 + version = "1.11.0" 2943 + source = "registry+https://github.com/rust-lang/crates.io-index" 2944 + checksum = "4b8f95bd6966f5c87776639160a66bd8ab9895d9d4ab01ddba9fc60661aebe8d" 2945 + dependencies = [ 2946 + "crossbeam-channel", 2947 + "crossbeam-deque", 2948 + "crossbeam-utils", 2949 + "num_cpus", 2950 + ] 2951 + 2952 + [[package]] 2953 + name = "redox_syscall" 2954 + version = "0.2.16" 2955 + source = "registry+https://github.com/rust-lang/crates.io-index" 2956 + checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 2957 + dependencies = [ 2958 + "bitflags 1.3.2", 2959 + ] 2960 + 2961 + [[package]] 2962 + name = "redox_syscall" 2963 + version = "0.3.5" 2964 + source = "registry+https://github.com/rust-lang/crates.io-index" 2965 + checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" 2966 + dependencies = [ 2967 + "bitflags 1.3.2", 2968 + ] 2969 + 2970 + [[package]] 2971 + name = "redox_users" 2972 + version = "0.4.3" 2973 + source = "registry+https://github.com/rust-lang/crates.io-index" 2974 + checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b" 2975 + dependencies = [ 2976 + "getrandom 0.2.11", 2977 + "redox_syscall 0.2.16", 2978 + "thiserror", 2979 + ] 2980 + 2981 + [[package]] 2982 + name = "regex" 2983 + version = "1.10.2" 2984 + source = "registry+https://github.com/rust-lang/crates.io-index" 2985 + checksum = "380b951a9c5e80ddfd6136919eef32310721aa4aacd4889a8d39124b026ab343" 2986 + dependencies = [ 2987 + "aho-corasick", 2988 + "memchr", 2989 + "regex-automata 0.4.3", 2990 + "regex-syntax 0.8.2", 2991 + ] 2992 + 2993 + [[package]] 2994 + name = "regex-automata" 2995 + version = "0.1.10" 2996 + source = "registry+https://github.com/rust-lang/crates.io-index" 2997 + checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" 2998 + dependencies = [ 2999 + "regex-syntax 0.6.29", 3000 + ] 3001 + 3002 + [[package]] 3003 + name = "regex-automata" 3004 + version = "0.4.3" 3005 + source = "registry+https://github.com/rust-lang/crates.io-index" 3006 + checksum = "5f804c7828047e88b2d32e2d7fe5a105da8ee3264f01902f796c8e067dc2483f" 3007 + dependencies = [ 3008 + "aho-corasick", 3009 + "memchr", 3010 + "regex-syntax 0.8.2", 3011 + ] 3012 + 3013 + [[package]] 3014 + name = "regex-syntax" 3015 + version = "0.6.29" 3016 + source = "registry+https://github.com/rust-lang/crates.io-index" 3017 + checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" 3018 + 3019 + [[package]] 3020 + name = "regex-syntax" 3021 + version = "0.8.2" 3022 + source = "registry+https://github.com/rust-lang/crates.io-index" 3023 + checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" 3024 + 3025 + [[package]] 3026 + name = "requirements" 3027 + version = "0.3.0" 3028 + source = "registry+https://github.com/rust-lang/crates.io-index" 3029 + checksum = "2643e903f79d8e6bc310ee0def974d12a33561d14e0728511b6ba5e8be0791c3" 3030 + dependencies = [ 3031 + "globwalk", 3032 + "pest", 3033 + "pest_derive", 3034 + "regex", 3035 + "walkdir", 3036 + ] 3037 + 3038 + [[package]] 3039 + name = "reqwest" 3040 + version = "0.11.22" 3041 + source = "registry+https://github.com/rust-lang/crates.io-index" 3042 + checksum = "046cd98826c46c2ac8ddecae268eb5c2e58628688a5fc7a2643704a73faba95b" 3043 + dependencies = [ 3044 + "base64 0.21.5", 3045 + "bytes", 3046 + "encoding_rs", 3047 + "futures-core", 3048 + "futures-util", 3049 + "h2", 3050 + "http", 3051 + "http-body", 3052 + "hyper", 3053 + "hyper-tls", 3054 + "ipnet", 3055 + "js-sys", 3056 + "log", 3057 + "mime", 3058 + "native-tls", 3059 + "once_cell", 3060 + "percent-encoding", 3061 + "pin-project-lite", 3062 + "serde", 3063 + "serde_json", 3064 + "serde_urlencoded", 3065 + "system-configuration", 3066 + "tokio", 3067 + "tokio-native-tls", 3068 + "tokio-util", 3069 + "tower-service", 3070 + "url", 3071 + "wasm-bindgen", 3072 + "wasm-bindgen-futures", 3073 + "wasm-streams", 3074 + "web-sys", 3075 + "winreg", 3076 + ] 3077 + 3078 + [[package]] 3079 + name = "ring" 3080 + version = "0.17.5" 3081 + source = "registry+https://github.com/rust-lang/crates.io-index" 3082 + checksum = "fb0205304757e5d899b9c2e448b867ffd03ae7f988002e47cd24954391394d0b" 3083 + dependencies = [ 3084 + "cc", 3085 + "getrandom 0.2.11", 3086 + "libc", 3087 + "spin", 3088 + "untrusted", 3089 + "windows-sys 0.48.0", 3090 + ] 3091 + 3092 + [[package]] 3093 + name = "rmp" 3094 + version = "0.8.11" 3095 + source = "registry+https://github.com/rust-lang/crates.io-index" 3096 + checksum = "44519172358fd6d58656c86ab8e7fbc9e1490c3e8f14d35ed78ca0dd07403c9f" 3097 + dependencies = [ 3098 + "byteorder", 3099 + "num-traits", 3100 + "paste", 3101 + ] 3102 + 3103 + [[package]] 3104 + name = "rmp-serde" 3105 + version = "1.1.1" 3106 + source = "registry+https://github.com/rust-lang/crates.io-index" 3107 + checksum = "c5b13be192e0220b8afb7222aa5813cb62cc269ebb5cac346ca6487681d2913e" 3108 + dependencies = [ 3109 + "byteorder", 3110 + "rmp", 3111 + "serde", 3112 + ] 3113 + 3114 + [[package]] 3115 + name = "rusqlite" 3116 + version = "0.30.0" 3117 + source = "registry+https://github.com/rust-lang/crates.io-index" 3118 + checksum = "a78046161564f5e7cd9008aff3b2990b3850dc8e0349119b98e8f251e099f24d" 3119 + dependencies = [ 3120 + "bitflags 2.4.0", 3121 + "chrono", 3122 + "fallible-iterator", 3123 + "fallible-streaming-iterator", 3124 + "hashlink", 3125 + "libsqlite3-sys", 3126 + "smallvec", 3127 + ] 3128 + 3129 + [[package]] 3130 + name = "rusqlite_migration" 3131 + version = "1.1.0-beta.1" 3132 + source = "registry+https://github.com/rust-lang/crates.io-index" 3133 + checksum = "b5767f8cb28e54d1ed745f072b72c6e68bfa6179fabb4cd15bdb8575858e301d" 3134 + dependencies = [ 3135 + "include_dir", 3136 + "log", 3137 + "rusqlite", 3138 + "tokio", 3139 + "tokio-rusqlite", 3140 + ] 3141 + 3142 + [[package]] 3143 + name = "rust-embed" 3144 + version = "6.6.1" 3145 + source = "registry+https://github.com/rust-lang/crates.io-index" 3146 + checksum = "1b68543d5527e158213414a92832d2aab11a84d2571a5eb021ebe22c43aab066" 3147 + dependencies = [ 3148 + "rust-embed-impl 6.5.0", 3149 + "rust-embed-utils 7.5.0", 3150 + "walkdir", 3151 + ] 3152 + 3153 + [[package]] 3154 + name = "rust-embed" 3155 + version = "8.0.0" 3156 + source = "registry+https://github.com/rust-lang/crates.io-index" 3157 + checksum = "b1e7d90385b59f0a6bf3d3b757f3ca4ece2048265d70db20a2016043d4509a40" 3158 + dependencies = [ 3159 + "rust-embed-impl 8.0.0", 3160 + "rust-embed-utils 8.0.0", 3161 + "walkdir", 3162 + ] 3163 + 3164 + [[package]] 3165 + name = "rust-embed-impl" 3166 + version = "6.5.0" 3167 + source = "registry+https://github.com/rust-lang/crates.io-index" 3168 + checksum = "4d4e0f0ced47ded9a68374ac145edd65a6c1fa13a96447b873660b2a568a0fd7" 3169 + dependencies = [ 3170 + "proc-macro2", 3171 + "quote", 3172 + "rust-embed-utils 7.5.0", 3173 + "shellexpand", 3174 + "syn 1.0.109", 3175 + "walkdir", 3176 + ] 3177 + 3178 + [[package]] 3179 + name = "rust-embed-impl" 3180 + version = "8.0.0" 3181 + source = "registry+https://github.com/rust-lang/crates.io-index" 3182 + checksum = "3c3d8c6fd84090ae348e63a84336b112b5c3918b3bf0493a581f7bd8ee623c29" 3183 + dependencies = [ 3184 + "proc-macro2", 3185 + "quote", 3186 + "rust-embed-utils 8.0.0", 3187 + "syn 2.0.32", 3188 + "walkdir", 3189 + ] 3190 + 3191 + [[package]] 3192 + name = "rust-embed-utils" 3193 + version = "7.5.0" 3194 + source = "registry+https://github.com/rust-lang/crates.io-index" 3195 + checksum = "512b0ab6853f7e14e3c8754acb43d6f748bb9ced66aa5915a6553ac8213f7731" 3196 + dependencies = [ 3197 + "sha2", 3198 + "walkdir", 3199 + ] 3200 + 3201 + [[package]] 3202 + name = "rust-embed-utils" 3203 + version = "8.0.0" 3204 + source = "registry+https://github.com/rust-lang/crates.io-index" 3205 + checksum = "873feff8cb7bf86fdf0a71bb21c95159f4e4a37dd7a4bd1855a940909b583ada" 3206 + dependencies = [ 3207 + "sha2", 3208 + "walkdir", 3209 + ] 3210 + 3211 + [[package]] 3212 + name = "rust-stemmers" 3213 + version = "1.2.0" 3214 + source = "registry+https://github.com/rust-lang/crates.io-index" 3215 + checksum = "e46a2036019fdb888131db7a4c847a1063a7493f971ed94ea82c67eada63ca54" 3216 + dependencies = [ 3217 + "serde", 3218 + "serde_derive", 3219 + ] 3220 + 3221 + [[package]] 3222 + name = "rustc-demangle" 3223 + version = "0.1.23" 3224 + source = "registry+https://github.com/rust-lang/crates.io-index" 3225 + checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" 3226 + 3227 + [[package]] 3228 + name = "rustc-hash" 3229 + version = "1.1.0" 3230 + source = "registry+https://github.com/rust-lang/crates.io-index" 3231 + checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" 3232 + 3233 + [[package]] 3234 + name = "rustix" 3235 + version = "0.37.19" 3236 + source = "registry+https://github.com/rust-lang/crates.io-index" 3237 + checksum = "acf8729d8542766f1b2cf77eb034d52f40d375bb8b615d0b147089946e16613d" 3238 + dependencies = [ 3239 + "bitflags 1.3.2", 3240 + "errno", 3241 + "io-lifetimes", 3242 + "libc", 3243 + "linux-raw-sys 0.3.8", 3244 + "windows-sys 0.48.0", 3245 + ] 3246 + 3247 + [[package]] 3248 + name = "rustix" 3249 + version = "0.38.17" 3250 + source = "registry+https://github.com/rust-lang/crates.io-index" 3251 + checksum = "f25469e9ae0f3d0047ca8b93fc56843f38e6774f0914a107ff8b41be8be8e0b7" 3252 + dependencies = [ 3253 + "bitflags 2.4.0", 3254 + "errno", 3255 + "libc", 3256 + "linux-raw-sys 0.4.10", 3257 + "windows-sys 0.48.0", 3258 + ] 3259 + 3260 + [[package]] 3261 + name = "rustversion" 3262 + version = "1.0.14" 3263 + source = "registry+https://github.com/rust-lang/crates.io-index" 3264 + checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4" 3265 + 3266 + [[package]] 3267 + name = "ryu" 3268 + version = "1.0.13" 3269 + source = "registry+https://github.com/rust-lang/crates.io-index" 3270 + checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041" 3271 + 3272 + [[package]] 3273 + name = "same-file" 3274 + version = "1.0.6" 3275 + source = "registry+https://github.com/rust-lang/crates.io-index" 3276 + checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 3277 + dependencies = [ 3278 + "winapi-util", 3279 + ] 3280 + 3281 + [[package]] 3282 + name = "schannel" 3283 + version = "0.1.21" 3284 + source = "registry+https://github.com/rust-lang/crates.io-index" 3285 + checksum = "713cfb06c7059f3588fb8044c0fad1d09e3c01d225e25b9220dbfdcf16dbb1b3" 3286 + dependencies = [ 3287 + "windows-sys 0.42.0", 3288 + ] 3289 + 3290 + [[package]] 3291 + name = "scoped-tls" 3292 + version = "1.0.1" 3293 + source = "registry+https://github.com/rust-lang/crates.io-index" 3294 + checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294" 3295 + 3296 + [[package]] 3297 + name = "scopeguard" 3298 + version = "1.1.0" 3299 + source = "registry+https://github.com/rust-lang/crates.io-index" 3300 + checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 3301 + 3302 + [[package]] 3303 + name = "scratch" 3304 + version = "1.0.5" 3305 + source = "registry+https://github.com/rust-lang/crates.io-index" 3306 + checksum = "1792db035ce95be60c3f8853017b3999209281c24e2ba5bc8e59bf97a0c590c1" 3307 + 3308 + [[package]] 3309 + name = "security-framework" 3310 + version = "2.9.2" 3311 + source = "registry+https://github.com/rust-lang/crates.io-index" 3312 + checksum = "05b64fb303737d99b81884b2c63433e9ae28abebe5eb5045dcdd175dc2ecf4de" 3313 + dependencies = [ 3314 + "bitflags 1.3.2", 3315 + "core-foundation", 3316 + "core-foundation-sys", 3317 + "libc", 3318 + "security-framework-sys", 3319 + ] 3320 + 3321 + [[package]] 3322 + name = "security-framework-sys" 3323 + version = "2.9.1" 3324 + source = "registry+https://github.com/rust-lang/crates.io-index" 3325 + checksum = "e932934257d3b408ed8f30db49d85ea163bfe74961f017f405b025af298f0c7a" 3326 + dependencies = [ 3327 + "core-foundation-sys", 3328 + "libc", 3329 + ] 3330 + 3331 + [[package]] 3332 + name = "self_cell" 3333 + version = "1.0.1" 3334 + source = "registry+https://github.com/rust-lang/crates.io-index" 3335 + checksum = "4c309e515543e67811222dbc9e3dd7e1056279b782e1dacffe4242b718734fb6" 3336 + 3337 + [[package]] 3338 + name = "semver" 3339 + version = "1.0.20" 3340 + source = "registry+https://github.com/rust-lang/crates.io-index" 3341 + checksum = "836fa6a3e1e547f9a2c4040802ec865b5d85f4014efe00555d7090a3dcaa1090" 3342 + dependencies = [ 3343 + "serde", 3344 + ] 3345 + 3346 + [[package]] 3347 + name = "serde" 3348 + version = "1.0.171" 3349 + source = "registry+https://github.com/rust-lang/crates.io-index" 3350 + checksum = "30e27d1e4fd7659406c492fd6cfaf2066ba8773de45ca75e855590f856dc34a9" 3351 + dependencies = [ 3352 + "serde_derive", 3353 + ] 3354 + 3355 + [[package]] 3356 + name = "serde-jsonlines" 3357 + version = "0.4.0" 3358 + source = "registry+https://github.com/rust-lang/crates.io-index" 3359 + checksum = "4684abdec99c1de7e507a3516c82385ff74d54c385973846b079bfd9f5920d35" 3360 + dependencies = [ 3361 + "serde", 3362 + "serde_json", 3363 + ] 3364 + 3365 + [[package]] 3366 + name = "serde-jsonlines" 3367 + version = "0.5.0" 3368 + source = "registry+https://github.com/rust-lang/crates.io-index" 3369 + checksum = "e228faf5f94badfe42723177b62cfb9b187351994cb4e852cd4a6a4c96dbeea8" 3370 + dependencies = [ 3371 + "serde", 3372 + "serde_json", 3373 + ] 3374 + 3375 + [[package]] 3376 + name = "serde_derive" 3377 + version = "1.0.171" 3378 + source = "registry+https://github.com/rust-lang/crates.io-index" 3379 + checksum = "389894603bd18c46fa56231694f8d827779c0951a667087194cf9de94ed24682" 3380 + dependencies = [ 3381 + "proc-macro2", 3382 + "quote", 3383 + "syn 2.0.32", 3384 + ] 3385 + 3386 + [[package]] 3387 + name = "serde_json" 3388 + version = "1.0.107" 3389 + source = "registry+https://github.com/rust-lang/crates.io-index" 3390 + checksum = "6b420ce6e3d8bd882e9b243c6eed35dbc9a6110c9769e74b584e0d68d1f20c65" 3391 + dependencies = [ 3392 + "indexmap 2.0.1", 3393 + "itoa", 3394 + "ryu", 3395 + "serde", 3396 + ] 3397 + 3398 + [[package]] 3399 + name = "serde_path_to_error" 3400 + version = "0.1.11" 3401 + source = "registry+https://github.com/rust-lang/crates.io-index" 3402 + checksum = "f7f05c1d5476066defcdfacce1f52fc3cae3af1d3089727100c02ae92e5abbe0" 3403 + dependencies = [ 3404 + "serde", 3405 + ] 3406 + 3407 + [[package]] 3408 + name = "serde_spanned" 3409 + version = "0.6.2" 3410 + source = "registry+https://github.com/rust-lang/crates.io-index" 3411 + checksum = "93107647184f6027e3b7dcb2e11034cf95ffa1e3a682c67951963ac69c1c007d" 3412 + dependencies = [ 3413 + "serde", 3414 + ] 3415 + 3416 + [[package]] 3417 + name = "serde_urlencoded" 3418 + version = "0.7.1" 3419 + source = "registry+https://github.com/rust-lang/crates.io-index" 3420 + checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 3421 + dependencies = [ 3422 + "form_urlencoded", 3423 + "itoa", 3424 + "ryu", 3425 + "serde", 3426 + ] 3427 + 3428 + [[package]] 3429 + name = "serdeconv" 3430 + version = "0.4.1" 3431 + source = "registry+https://github.com/rust-lang/crates.io-index" 3432 + checksum = "8897696def1d25e554294b168e0e8e77c860483666eeb8d3d33ae58b06f47221" 3433 + dependencies = [ 3434 + "rmp-serde", 3435 + "serde", 3436 + "serde_json", 3437 + "toml", 3438 + "trackable", 3439 + ] 3440 + 3441 + [[package]] 3442 + name = "serial_test" 3443 + version = "2.0.0" 3444 + source = "registry+https://github.com/rust-lang/crates.io-index" 3445 + checksum = "0e56dd856803e253c8f298af3f4d7eb0ae5e23a737252cd90bb4f3b435033b2d" 3446 + dependencies = [ 3447 + "dashmap", 3448 + "futures", 3449 + "lazy_static", 3450 + "log", 3451 + "parking_lot", 3452 + "serial_test_derive 2.0.0", 3453 + ] 3454 + 3455 + [[package]] 3456 + name = "serial_test" 3457 + version = "3.0.0" 3458 + source = "registry+https://github.com/rust-lang/crates.io-index" 3459 + checksum = "953ad9342b3aaca7cb43c45c097dd008d4907070394bd0751a0aa8817e5a018d" 3460 + dependencies = [ 3461 + "dashmap", 3462 + "futures", 3463 + "lazy_static", 3464 + "log", 3465 + "parking_lot", 3466 + "serial_test_derive 3.0.0", 3467 + ] 3468 + 3469 + [[package]] 3470 + name = "serial_test_derive" 3471 + version = "2.0.0" 3472 + source = "registry+https://github.com/rust-lang/crates.io-index" 3473 + checksum = "91d129178576168c589c9ec973feedf7d3126c01ac2bf08795109aa35b69fb8f" 3474 + dependencies = [ 3475 + "proc-macro2", 3476 + "quote", 3477 + "syn 2.0.32", 3478 + ] 3479 + 3480 + [[package]] 3481 + name = "serial_test_derive" 3482 + version = "3.0.0" 3483 + source = "registry+https://github.com/rust-lang/crates.io-index" 3484 + checksum = "b93fb4adc70021ac1b47f7d45e8cc4169baaa7ea58483bc5b721d19a26202212" 3485 + dependencies = [ 3486 + "proc-macro2", 3487 + "quote", 3488 + "syn 2.0.32", 3489 + ] 3490 + 3491 + [[package]] 3492 + name = "sha1" 3493 + version = "0.10.6" 3494 + source = "registry+https://github.com/rust-lang/crates.io-index" 3495 + checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba" 3496 + dependencies = [ 3497 + "cfg-if", 3498 + "cpufeatures", 3499 + "digest", 3500 + ] 3501 + 3502 + [[package]] 3503 + name = "sha2" 3504 + version = "0.10.8" 3505 + source = "registry+https://github.com/rust-lang/crates.io-index" 3506 + checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8" 3507 + dependencies = [ 3508 + "cfg-if", 3509 + "cpufeatures", 3510 + "digest", 3511 + ] 3512 + 3513 + [[package]] 3514 + name = "sha256" 3515 + version = "1.4.0" 3516 + source = "registry+https://github.com/rust-lang/crates.io-index" 3517 + checksum = "7895c8ae88588ccead14ff438b939b0c569cd619116f14b4d13fdff7b8333386" 3518 + dependencies = [ 3519 + "async-trait", 3520 + "bytes", 3521 + "hex", 3522 + "sha2", 3523 + "tokio", 3524 + ] 3525 + 3526 + [[package]] 3527 + name = "sharded-slab" 3528 + version = "0.1.4" 3529 + source = "registry+https://github.com/rust-lang/crates.io-index" 3530 + checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31" 3531 + dependencies = [ 3532 + "lazy_static", 3533 + ] 3534 + 3535 + [[package]] 3536 + name = "shellexpand" 3537 + version = "2.1.2" 3538 + source = "registry+https://github.com/rust-lang/crates.io-index" 3539 + checksum = "7ccc8076840c4da029af4f87e4e8daeb0fca6b87bbb02e10cb60b791450e11e4" 3540 + dependencies = [ 3541 + "dirs", 3542 + ] 3543 + 3544 + [[package]] 3545 + name = "signal-hook-registry" 3546 + version = "1.4.1" 3547 + source = "registry+https://github.com/rust-lang/crates.io-index" 3548 + checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1" 3549 + dependencies = [ 3550 + "libc", 3551 + ] 3552 + 3553 + [[package]] 3554 + name = "similar" 3555 + version = "2.3.0" 3556 + source = "registry+https://github.com/rust-lang/crates.io-index" 3557 + checksum = "2aeaf503862c419d66959f5d7ca015337d864e9c49485d771b732e2a20453597" 3558 + 3559 + [[package]] 3560 + name = "simple_asn1" 3561 + version = "0.6.2" 3562 + source = "registry+https://github.com/rust-lang/crates.io-index" 3563 + checksum = "adc4e5204eb1910f40f9cfa375f6f05b68c3abac4b6fd879c8ff5e7ae8a0a085" 3564 + dependencies = [ 3565 + "num-bigint", 3566 + "num-traits", 3567 + "thiserror", 3568 + "time", 3569 + ] 3570 + 3571 + [[package]] 3572 + name = "sketches-ddsketch" 3573 + version = "0.2.1" 3574 + source = "registry+https://github.com/rust-lang/crates.io-index" 3575 + checksum = "68a406c1882ed7f29cd5e248c9848a80e7cb6ae0fea82346d2746f2f941c07e1" 3576 + dependencies = [ 3577 + "serde", 3578 + ] 3579 + 3580 + [[package]] 3581 + name = "slab" 3582 + version = "0.4.8" 3583 + source = "registry+https://github.com/rust-lang/crates.io-index" 3584 + checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d" 3585 + dependencies = [ 3586 + "autocfg", 3587 + ] 3588 + 3589 + [[package]] 3590 + name = "smallvec" 3591 + version = "1.10.0" 3592 + source = "registry+https://github.com/rust-lang/crates.io-index" 3593 + checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0" 3594 + 3595 + [[package]] 3596 + name = "smartstring" 3597 + version = "1.0.1" 3598 + source = "registry+https://github.com/rust-lang/crates.io-index" 3599 + checksum = "3fb72c633efbaa2dd666986505016c32c3044395ceaf881518399d2f4127ee29" 3600 + dependencies = [ 3601 + "autocfg", 3602 + "static_assertions", 3603 + "version_check", 3604 + ] 3605 + 3606 + [[package]] 3607 + name = "socket2" 3608 + version = "0.4.9" 3609 + source = "registry+https://github.com/rust-lang/crates.io-index" 3610 + checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662" 3611 + dependencies = [ 3612 + "libc", 3613 + "winapi", 3614 + ] 3615 + 3616 + [[package]] 3617 + name = "socket2" 3618 + version = "0.5.5" 3619 + source = "registry+https://github.com/rust-lang/crates.io-index" 3620 + checksum = "7b5fac59a5cb5dd637972e5fca70daf0523c9067fcdc4842f053dae04a18f8e9" 3621 + dependencies = [ 3622 + "libc", 3623 + "windows-sys 0.48.0", 3624 + ] 3625 + 3626 + [[package]] 3627 + name = "spin" 3628 + version = "0.9.8" 3629 + source = "registry+https://github.com/rust-lang/crates.io-index" 3630 + checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" 3631 + 3632 + [[package]] 3633 + name = "stable_deref_trait" 3634 + version = "1.2.0" 3635 + source = "registry+https://github.com/rust-lang/crates.io-index" 3636 + checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" 3637 + 3638 + [[package]] 3639 + name = "stacker" 3640 + version = "0.1.15" 3641 + source = "registry+https://github.com/rust-lang/crates.io-index" 3642 + checksum = "c886bd4480155fd3ef527d45e9ac8dd7118a898a46530b7b94c3e21866259fce" 3643 + dependencies = [ 3644 + "cc", 3645 + "cfg-if", 3646 + "libc", 3647 + "psm", 3648 + "winapi", 3649 + ] 3650 + 3651 + [[package]] 3652 + name = "static_assertions" 3653 + version = "1.1.0" 3654 + source = "registry+https://github.com/rust-lang/crates.io-index" 3655 + checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 3656 + 3657 + [[package]] 3658 + name = "strfmt" 3659 + version = "0.2.4" 3660 + source = "registry+https://github.com/rust-lang/crates.io-index" 3661 + checksum = "7a8348af2d9fc3258c8733b8d9d8db2e56f54b2363a4b5b81585c7875ed65e65" 3662 + 3663 + [[package]] 3664 + name = "strsim" 3665 + version = "0.9.3" 3666 + source = "registry+https://github.com/rust-lang/crates.io-index" 3667 + checksum = "6446ced80d6c486436db5c078dde11a9f73d42b57fb273121e160b84f63d894c" 3668 + 3669 + [[package]] 3670 + name = "strsim" 3671 + version = "0.10.0" 3672 + source = "registry+https://github.com/rust-lang/crates.io-index" 3673 + checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" 3674 + 3675 + [[package]] 3676 + name = "strum" 3677 + version = "0.24.1" 3678 + source = "registry+https://github.com/rust-lang/crates.io-index" 3679 + checksum = "063e6045c0e62079840579a7e47a355ae92f60eb74daaf156fb1e84ba164e63f" 3680 + dependencies = [ 3681 + "strum_macros", 3682 + ] 3683 + 3684 + [[package]] 3685 + name = "strum_macros" 3686 + version = "0.24.3" 3687 + source = "registry+https://github.com/rust-lang/crates.io-index" 3688 + checksum = "1e385be0d24f186b4ce2f9982191e7101bb737312ad61c1f2f984f34bcf85d59" 3689 + dependencies = [ 3690 + "heck", 3691 + "proc-macro2", 3692 + "quote", 3693 + "rustversion", 3694 + "syn 1.0.109", 3695 + ] 3696 + 3697 + [[package]] 3698 + name = "subtle" 3699 + version = "2.5.0" 3700 + source = "registry+https://github.com/rust-lang/crates.io-index" 3701 + checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc" 3702 + 3703 + [[package]] 3704 + name = "syn" 3705 + version = "1.0.109" 3706 + source = "registry+https://github.com/rust-lang/crates.io-index" 3707 + checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 3708 + dependencies = [ 3709 + "proc-macro2", 3710 + "quote", 3711 + "unicode-ident", 3712 + ] 3713 + 3714 + [[package]] 3715 + name = "syn" 3716 + version = "2.0.32" 3717 + source = "registry+https://github.com/rust-lang/crates.io-index" 3718 + checksum = "239814284fd6f1a4ffe4ca893952cdd93c224b6a1571c9a9eadd670295c0c9e2" 3719 + dependencies = [ 3720 + "proc-macro2", 3721 + "quote", 3722 + "unicode-ident", 3723 + ] 3724 + 3725 + [[package]] 3726 + name = "sync_wrapper" 3727 + version = "0.1.2" 3728 + source = "registry+https://github.com/rust-lang/crates.io-index" 3729 + checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160" 3730 + 3731 + [[package]] 3732 + name = "sysinfo" 3733 + version = "0.29.8" 3734 + source = "registry+https://github.com/rust-lang/crates.io-index" 3735 + checksum = "d10ed79c22663a35a255d289a7fdcb43559fc77ff15df5ce6c341809e7867528" 3736 + dependencies = [ 3737 + "cfg-if", 3738 + "core-foundation-sys", 3739 + "libc", 3740 + "ntapi", 3741 + "once_cell", 3742 + "rayon", 3743 + "winapi", 3744 + ] 3745 + 3746 + [[package]] 3747 + name = "system-configuration" 3748 + version = "0.5.1" 3749 + source = "registry+https://github.com/rust-lang/crates.io-index" 3750 + checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7" 3751 + dependencies = [ 3752 + "bitflags 1.3.2", 3753 + "core-foundation", 3754 + "system-configuration-sys", 3755 + ] 3756 + 3757 + [[package]] 3758 + name = "system-configuration-sys" 3759 + version = "0.5.0" 3760 + source = "registry+https://github.com/rust-lang/crates.io-index" 3761 + checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9" 3762 + dependencies = [ 3763 + "core-foundation-sys", 3764 + "libc", 3765 + ] 3766 + 3767 + [[package]] 3768 + name = "tabby" 3769 + version = "0.8.3" 3770 + dependencies = [ 3771 + "anyhow", 3772 + "assert-json-diff", 3773 + "async-stream", 3774 + "async-trait", 3775 + "axum", 3776 + "axum-prometheus", 3777 + "axum-tracing-opentelemetry", 3778 + "chrono", 3779 + "clap", 3780 + "futures", 3781 + "http-api-bindings", 3782 + "hyper", 3783 + "insta", 3784 + "lazy_static", 3785 + "llama-cpp-bindings", 3786 + "minijinja", 3787 + "nvml-wrapper", 3788 + "openssl", 3789 + "opentelemetry", 3790 + "opentelemetry-otlp", 3791 + "regex", 3792 + "reqwest", 3793 + "serde", 3794 + "serde-jsonlines 0.5.0", 3795 + "serde_json", 3796 + "serdeconv", 3797 + "serial_test 3.0.0", 3798 + "strfmt", 3799 + "strum", 3800 + "sysinfo", 3801 + "tabby-common", 3802 + "tabby-download", 3803 + "tabby-inference", 3804 + "tabby-scheduler", 3805 + "tabby-webserver", 3806 + "tantivy", 3807 + "textdistance", 3808 + "thiserror", 3809 + "tokio", 3810 + "tower-http 0.4.0", 3811 + "tracing", 3812 + "tracing-opentelemetry", 3813 + "tracing-subscriber 0.3.17", 3814 + "utoipa", 3815 + "utoipa-swagger-ui", 3816 + "uuid 1.6.1", 3817 + "vergen", 3818 + ] 3819 + 3820 + [[package]] 3821 + name = "tabby-common" 3822 + version = "0.8.3" 3823 + dependencies = [ 3824 + "anyhow", 3825 + "async-trait", 3826 + "filenamify", 3827 + "glob", 3828 + "home", 3829 + "lazy_static", 3830 + "regex", 3831 + "reqwest", 3832 + "serde", 3833 + "serde-jsonlines 0.4.0", 3834 + "serde_json", 3835 + "serdeconv", 3836 + "tantivy", 3837 + "thiserror", 3838 + "utoipa", 3839 + "uuid 1.6.1", 3840 + ] 3841 + 3842 + [[package]] 3843 + name = "tabby-db" 3844 + version = "0.8.3" 3845 + dependencies = [ 3846 + "anyhow", 3847 + "assert_matches", 3848 + "chrono", 3849 + "include_dir", 3850 + "lazy_static", 3851 + "rusqlite", 3852 + "rusqlite_migration", 3853 + "tabby-common", 3854 + "tokio", 3855 + "tokio-rusqlite", 3856 + "uuid 1.6.1", 3857 + ] 3858 + 3859 + [[package]] 3860 + name = "tabby-download" 3861 + version = "0.8.3" 3862 + dependencies = [ 3863 + "aim-downloader", 3864 + "anyhow", 3865 + "sha256", 3866 + "tabby-common", 3867 + "tokio-retry", 3868 + "tracing", 3869 + ] 3870 + 3871 + [[package]] 3872 + name = "tabby-inference" 3873 + version = "0.8.3" 3874 + dependencies = [ 3875 + "async-stream", 3876 + "async-trait", 3877 + "dashmap", 3878 + "derive_builder", 3879 + "futures", 3880 + "regex", 3881 + "tabby-common", 3882 + ] 3883 + 3884 + [[package]] 3885 + name = "tabby-scheduler" 3886 + version = "0.8.3" 3887 + dependencies = [ 3888 + "anyhow", 3889 + "cargo-lock", 3890 + "file-rotate", 3891 + "ignore", 3892 + "job_scheduler", 3893 + "kdam", 3894 + "lazy_static", 3895 + "requirements", 3896 + "serde-jsonlines 0.4.0", 3897 + "serde_json", 3898 + "serdeconv", 3899 + "tabby-common", 3900 + "tantivy", 3901 + "temp_testdir", 3902 + "tokio", 3903 + "tracing", 3904 + "tracing-test", 3905 + "tree-sitter-c", 3906 + "tree-sitter-cpp", 3907 + "tree-sitter-go", 3908 + "tree-sitter-java", 3909 + "tree-sitter-kotlin", 3910 + "tree-sitter-python", 3911 + "tree-sitter-ruby", 3912 + "tree-sitter-rust", 3913 + "tree-sitter-tags", 3914 + "tree-sitter-typescript", 3915 + ] 3916 + 3917 + [[package]] 3918 + name = "tabby-webserver" 3919 + version = "0.8.3" 3920 + dependencies = [ 3921 + "anyhow", 3922 + "argon2", 3923 + "assert_matches", 3924 + "async-trait", 3925 + "axum", 3926 + "bincode", 3927 + "chrono", 3928 + "futures", 3929 + "hyper", 3930 + "jsonwebtoken", 3931 + "juniper", 3932 + "juniper-axum", 3933 + "lazy_static", 3934 + "lettre", 3935 + "mime_guess", 3936 + "pin-project", 3937 + "reqwest", 3938 + "rust-embed 8.0.0", 3939 + "serde", 3940 + "serde_json", 3941 + "tabby-common", 3942 + "tabby-db", 3943 + "tarpc", 3944 + "thiserror", 3945 + "tokio", 3946 + "tokio-cron-scheduler", 3947 + "tokio-tungstenite", 3948 + "tower", 3949 + "tower-http 0.4.0", 3950 + "tracing", 3951 + "unicase", 3952 + "uuid 1.6.1", 3953 + "validator", 3954 + ] 3955 + 3956 + [[package]] 3957 + name = "tantivy" 3958 + version = "0.21.0" 3959 + source = "registry+https://github.com/rust-lang/crates.io-index" 3960 + checksum = "c1d4675fed6fe2218ce11445374e181e864a8ffd0f28e7e0591ccfc38cd000ae" 3961 + dependencies = [ 3962 + "aho-corasick", 3963 + "arc-swap", 3964 + "async-trait", 3965 + "base64 0.21.5", 3966 + "bitpacking", 3967 + "byteorder", 3968 + "census", 3969 + "crc32fast", 3970 + "crossbeam-channel", 3971 + "downcast-rs", 3972 + "fastdivide", 3973 + "fs4", 3974 + "htmlescape", 3975 + "itertools 0.11.0", 3976 + "levenshtein_automata", 3977 + "log", 3978 + "lru", 3979 + "lz4_flex", 3980 + "measure_time", 3981 + "memmap2", 3982 + "murmurhash32", 3983 + "num_cpus", 3984 + "once_cell", 3985 + "oneshot", 3986 + "rayon", 3987 + "regex", 3988 + "rust-stemmers", 3989 + "rustc-hash", 3990 + "serde", 3991 + "serde_json", 3992 + "sketches-ddsketch", 3993 + "smallvec", 3994 + "tantivy-bitpacker", 3995 + "tantivy-columnar", 3996 + "tantivy-common", 3997 + "tantivy-fst", 3998 + "tantivy-query-grammar", 3999 + "tantivy-stacker", 4000 + "tantivy-tokenizer-api", 4001 + "tempfile", 4002 + "thiserror", 4003 + "time", 4004 + "uuid 1.6.1", 4005 + "winapi", 4006 + ] 4007 + 4008 + [[package]] 4009 + name = "tantivy-bitpacker" 4010 + version = "0.5.0" 4011 + source = "registry+https://github.com/rust-lang/crates.io-index" 4012 + checksum = "cecb164321482301f514dd582264fa67f70da2d7eb01872ccd71e35e0d96655a" 4013 + dependencies = [ 4014 + "bitpacking", 4015 + ] 4016 + 4017 + [[package]] 4018 + name = "tantivy-columnar" 4019 + version = "0.2.0" 4020 + source = "registry+https://github.com/rust-lang/crates.io-index" 4021 + checksum = "8d85f8019af9a78b3118c11298b36ffd21c2314bd76bbcd9d12e00124cbb7e70" 4022 + dependencies = [ 4023 + "fastdivide", 4024 + "fnv", 4025 + "itertools 0.11.0", 4026 + "serde", 4027 + "tantivy-bitpacker", 4028 + "tantivy-common", 4029 + "tantivy-sstable", 4030 + "tantivy-stacker", 4031 + ] 4032 + 4033 + [[package]] 4034 + name = "tantivy-common" 4035 + version = "0.6.0" 4036 + source = "registry+https://github.com/rust-lang/crates.io-index" 4037 + checksum = "af4a3a975e604a2aba6b1106a04505e1e7a025e6def477fab6e410b4126471e1" 4038 + dependencies = [ 4039 + "async-trait", 4040 + "byteorder", 4041 + "ownedbytes", 4042 + "serde", 4043 + "time", 4044 + ] 4045 + 4046 + [[package]] 4047 + name = "tantivy-fst" 4048 + version = "0.4.0" 4049 + source = "registry+https://github.com/rust-lang/crates.io-index" 4050 + checksum = "fc3c506b1a8443a3a65352df6382a1fb6a7afe1a02e871cee0d25e2c3d5f3944" 4051 + dependencies = [ 4052 + "byteorder", 4053 + "regex-syntax 0.6.29", 4054 + "utf8-ranges", 4055 + ] 4056 + 4057 + [[package]] 4058 + name = "tantivy-query-grammar" 4059 + version = "0.21.0" 4060 + source = "registry+https://github.com/rust-lang/crates.io-index" 4061 + checksum = "1d39c5a03100ac10c96e0c8b07538e2ab8b17da56434ab348309b31f23fada77" 4062 + dependencies = [ 4063 + "nom 7.1.3", 4064 + ] 4065 + 4066 + [[package]] 4067 + name = "tantivy-sstable" 4068 + version = "0.2.0" 4069 + source = "registry+https://github.com/rust-lang/crates.io-index" 4070 + checksum = "fc0c1bb43e5e8b8e05eb8009610344dbf285f06066c844032fbb3e546b3c71df" 4071 + dependencies = [ 4072 + "tantivy-common", 4073 + "tantivy-fst", 4074 + "zstd", 4075 + ] 4076 + 4077 + [[package]] 4078 + name = "tantivy-stacker" 4079 + version = "0.2.0" 4080 + source = "registry+https://github.com/rust-lang/crates.io-index" 4081 + checksum = "b2c078595413f13f218cf6f97b23dcfd48936838f1d3d13a1016e05acd64ed6c" 4082 + dependencies = [ 4083 + "murmurhash32", 4084 + "tantivy-common", 4085 + ] 4086 + 4087 + [[package]] 4088 + name = "tantivy-tokenizer-api" 4089 + version = "0.2.0" 4090 + source = "registry+https://github.com/rust-lang/crates.io-index" 4091 + checksum = "347b6fb212b26d3505d224f438e3c4b827ab8bd847fe9953ad5ac6b8f9443b66" 4092 + dependencies = [ 4093 + "serde", 4094 + ] 4095 + 4096 + [[package]] 4097 + name = "tarpc" 4098 + version = "0.33.0" 4099 + source = "registry+https://github.com/rust-lang/crates.io-index" 4100 + checksum = "6f41bce44d290df0598ae4b9cd6ea7f58f651fd3aa4af1b26060c4fa32b08af7" 4101 + dependencies = [ 4102 + "anyhow", 4103 + "fnv", 4104 + "futures", 4105 + "humantime", 4106 + "opentelemetry", 4107 + "pin-project", 4108 + "rand 0.8.5", 4109 + "serde", 4110 + "static_assertions", 4111 + "tarpc-plugins", 4112 + "thiserror", 4113 + "tokio", 4114 + "tokio-serde", 4115 + "tokio-util", 4116 + "tracing", 4117 + "tracing-opentelemetry", 4118 + ] 4119 + 4120 + [[package]] 4121 + name = "tarpc-plugins" 4122 + version = "0.12.0" 4123 + source = "registry+https://github.com/rust-lang/crates.io-index" 4124 + checksum = "0ee42b4e559f17bce0385ebf511a7beb67d5cc33c12c96b7f4e9789919d9c10f" 4125 + dependencies = [ 4126 + "proc-macro2", 4127 + "quote", 4128 + "syn 1.0.109", 4129 + ] 4130 + 4131 + [[package]] 4132 + name = "temp_testdir" 4133 + version = "0.2.3" 4134 + source = "registry+https://github.com/rust-lang/crates.io-index" 4135 + checksum = "921f1e9c427802414907a48b21a6504ff6b3a15a1a3cf37e699590949ad9befc" 4136 + 4137 + [[package]] 4138 + name = "tempfile" 4139 + version = "3.5.0" 4140 + source = "registry+https://github.com/rust-lang/crates.io-index" 4141 + checksum = "b9fbec84f381d5795b08656e4912bec604d162bff9291d6189a78f4c8ab87998" 4142 + dependencies = [ 4143 + "cfg-if", 4144 + "fastrand 1.9.0", 4145 + "redox_syscall 0.3.5", 4146 + "rustix 0.37.19", 4147 + "windows-sys 0.45.0", 4148 + ] 4149 + 4150 + [[package]] 4151 + name = "termcolor" 4152 + version = "1.2.0" 4153 + source = "registry+https://github.com/rust-lang/crates.io-index" 4154 + checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6" 4155 + dependencies = [ 4156 + "winapi-util", 4157 + ] 4158 + 4159 + [[package]] 4160 + name = "terminal_size" 4161 + version = "0.3.0" 4162 + source = "registry+https://github.com/rust-lang/crates.io-index" 4163 + checksum = "21bebf2b7c9e0a515f6e0f8c51dc0f8e4696391e6f1ff30379559f8365fb0df7" 4164 + dependencies = [ 4165 + "rustix 0.38.17", 4166 + "windows-sys 0.48.0", 4167 + ] 4168 + 4169 + [[package]] 4170 + name = "textdistance" 4171 + version = "1.0.2" 4172 + source = "registry+https://github.com/rust-lang/crates.io-index" 4173 + checksum = "d321c8576c2b47e43953e9cce236550d4cd6af0a6ce518fe084340082ca6037b" 4174 + 4175 + [[package]] 4176 + name = "thiserror" 4177 + version = "1.0.49" 4178 + source = "registry+https://github.com/rust-lang/crates.io-index" 4179 + checksum = "1177e8c6d7ede7afde3585fd2513e611227efd6481bd78d2e82ba1ce16557ed4" 4180 + dependencies = [ 4181 + "thiserror-impl", 4182 + ] 4183 + 4184 + [[package]] 4185 + name = "thiserror-impl" 4186 + version = "1.0.49" 4187 + source = "registry+https://github.com/rust-lang/crates.io-index" 4188 + checksum = "10712f02019e9288794769fba95cd6847df9874d49d871d062172f9dd41bc4cc" 4189 + dependencies = [ 4190 + "proc-macro2", 4191 + "quote", 4192 + "syn 2.0.32", 4193 + ] 4194 + 4195 + [[package]] 4196 + name = "thread_local" 4197 + version = "1.1.7" 4198 + source = "registry+https://github.com/rust-lang/crates.io-index" 4199 + checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152" 4200 + dependencies = [ 4201 + "cfg-if", 4202 + "once_cell", 4203 + ] 4204 + 4205 + [[package]] 4206 + name = "time" 4207 + version = "0.3.26" 4208 + source = "registry+https://github.com/rust-lang/crates.io-index" 4209 + checksum = "a79d09ac6b08c1ab3906a2f7cc2e81a0e27c7ae89c63812df75e52bef0751e07" 4210 + dependencies = [ 4211 + "deranged", 4212 + "itoa", 4213 + "libc", 4214 + "num_threads", 4215 + "serde", 4216 + "time-core", 4217 + "time-macros", 4218 + ] 4219 + 4220 + [[package]] 4221 + name = "time-core" 4222 + version = "0.1.1" 4223 + source = "registry+https://github.com/rust-lang/crates.io-index" 4224 + checksum = "7300fbefb4dadc1af235a9cef3737cea692a9d97e1b9cbcd4ebdae6f8868e6fb" 4225 + 4226 + [[package]] 4227 + name = "time-macros" 4228 + version = "0.2.12" 4229 + source = "registry+https://github.com/rust-lang/crates.io-index" 4230 + checksum = "75c65469ed6b3a4809d987a41eb1dc918e9bc1d92211cbad7ae82931846f7451" 4231 + dependencies = [ 4232 + "time-core", 4233 + ] 4234 + 4235 + [[package]] 4236 + name = "tinyvec" 4237 + version = "1.6.0" 4238 + source = "registry+https://github.com/rust-lang/crates.io-index" 4239 + checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" 4240 + dependencies = [ 4241 + "tinyvec_macros", 4242 + ] 4243 + 4244 + [[package]] 4245 + name = "tinyvec_macros" 4246 + version = "0.1.1" 4247 + source = "registry+https://github.com/rust-lang/crates.io-index" 4248 + checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 4249 + 4250 + [[package]] 4251 + name = "tokio" 4252 + version = "1.35.0" 4253 + source = "registry+https://github.com/rust-lang/crates.io-index" 4254 + checksum = "841d45b238a16291a4e1584e61820b8ae57d696cc5015c459c229ccc6990cc1c" 4255 + dependencies = [ 4256 + "backtrace", 4257 + "bytes", 4258 + "libc", 4259 + "mio", 4260 + "num_cpus", 4261 + "parking_lot", 4262 + "pin-project-lite", 4263 + "signal-hook-registry", 4264 + "socket2 0.5.5", 4265 + "tokio-macros", 4266 + "windows-sys 0.48.0", 4267 + ] 4268 + 4269 + [[package]] 4270 + name = "tokio-cron-scheduler" 4271 + version = "0.9.4" 4272 + source = "registry+https://github.com/rust-lang/crates.io-index" 4273 + checksum = "de2c1fd54a857b29c6cd1846f31903d0ae8e28175615c14a277aed45c58d8e27" 4274 + dependencies = [ 4275 + "chrono", 4276 + "cron 0.12.0", 4277 + "num-derive", 4278 + "num-traits", 4279 + "tokio", 4280 + "tracing", 4281 + "uuid 1.6.1", 4282 + ] 4283 + 4284 + [[package]] 4285 + name = "tokio-io-timeout" 4286 + version = "1.2.0" 4287 + source = "registry+https://github.com/rust-lang/crates.io-index" 4288 + checksum = "30b74022ada614a1b4834de765f9bb43877f910cc8ce4be40e89042c9223a8bf" 4289 + dependencies = [ 4290 + "pin-project-lite", 4291 + "tokio", 4292 + ] 4293 + 4294 + [[package]] 4295 + name = "tokio-macros" 4296 + version = "2.2.0" 4297 + source = "registry+https://github.com/rust-lang/crates.io-index" 4298 + checksum = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b" 4299 + dependencies = [ 4300 + "proc-macro2", 4301 + "quote", 4302 + "syn 2.0.32", 4303 + ] 4304 + 4305 + [[package]] 4306 + name = "tokio-native-tls" 4307 + version = "0.3.1" 4308 + source = "registry+https://github.com/rust-lang/crates.io-index" 4309 + checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2" 4310 + dependencies = [ 4311 + "native-tls", 4312 + "tokio", 4313 + ] 4314 + 4315 + [[package]] 4316 + name = "tokio-retry" 4317 + version = "0.3.0" 4318 + source = "registry+https://github.com/rust-lang/crates.io-index" 4319 + checksum = "7f57eb36ecbe0fc510036adff84824dd3c24bb781e21bfa67b69d556aa85214f" 4320 + dependencies = [ 4321 + "pin-project", 4322 + "rand 0.8.5", 4323 + "tokio", 4324 + ] 4325 + 4326 + [[package]] 4327 + name = "tokio-rusqlite" 4328 + version = "0.5.0" 4329 + source = "registry+https://github.com/rust-lang/crates.io-index" 4330 + checksum = "dc785c98d0c872455381e59be1f33a8f3a6b4e852544212e37601cc2ccb21d39" 4331 + dependencies = [ 4332 + "crossbeam-channel", 4333 + "rusqlite", 4334 + "tokio", 4335 + ] 4336 + 4337 + [[package]] 4338 + name = "tokio-serde" 4339 + version = "0.8.0" 4340 + source = "registry+https://github.com/rust-lang/crates.io-index" 4341 + checksum = "911a61637386b789af998ee23f50aa30d5fd7edcec8d6d3dedae5e5815205466" 4342 + dependencies = [ 4343 + "bytes", 4344 + "futures-core", 4345 + "futures-sink", 4346 + "pin-project", 4347 + ] 4348 + 4349 + [[package]] 4350 + name = "tokio-stream" 4351 + version = "0.1.14" 4352 + source = "registry+https://github.com/rust-lang/crates.io-index" 4353 + checksum = "397c988d37662c7dda6d2208364a706264bf3d6138b11d436cbac0ad38832842" 4354 + dependencies = [ 4355 + "futures-core", 4356 + "pin-project-lite", 4357 + "tokio", 4358 + ] 4359 + 4360 + [[package]] 4361 + name = "tokio-tungstenite" 4362 + version = "0.20.1" 4363 + source = "registry+https://github.com/rust-lang/crates.io-index" 4364 + checksum = "212d5dcb2a1ce06d81107c3d0ffa3121fe974b73f068c8282cb1c32328113b6c" 4365 + dependencies = [ 4366 + "futures-util", 4367 + "log", 4368 + "tokio", 4369 + "tungstenite", 4370 + ] 4371 + 4372 + [[package]] 4373 + name = "tokio-util" 4374 + version = "0.7.10" 4375 + source = "registry+https://github.com/rust-lang/crates.io-index" 4376 + checksum = "5419f34732d9eb6ee4c3578b7989078579b7f039cbbb9ca2c4da015749371e15" 4377 + dependencies = [ 4378 + "bytes", 4379 + "futures-core", 4380 + "futures-io", 4381 + "futures-sink", 4382 + "futures-util", 4383 + "hashbrown 0.14.3", 4384 + "pin-project-lite", 4385 + "slab", 4386 + "tokio", 4387 + "tracing", 4388 + ] 4389 + 4390 + [[package]] 4391 + name = "toml" 4392 + version = "0.7.4" 4393 + source = "registry+https://github.com/rust-lang/crates.io-index" 4394 + checksum = "d6135d499e69981f9ff0ef2167955a5333c35e36f6937d382974566b3d5b94ec" 4395 + dependencies = [ 4396 + "serde", 4397 + "serde_spanned", 4398 + "toml_datetime", 4399 + "toml_edit", 4400 + ] 4401 + 4402 + [[package]] 4403 + name = "toml_datetime" 4404 + version = "0.6.2" 4405 + source = "registry+https://github.com/rust-lang/crates.io-index" 4406 + checksum = "5a76a9312f5ba4c2dec6b9161fdf25d87ad8a09256ccea5a556fef03c706a10f" 4407 + dependencies = [ 4408 + "serde", 4409 + ] 4410 + 4411 + [[package]] 4412 + name = "toml_edit" 4413 + version = "0.19.10" 4414 + source = "registry+https://github.com/rust-lang/crates.io-index" 4415 + checksum = "2380d56e8670370eee6566b0bfd4265f65b3f432e8c6d85623f728d4fa31f739" 4416 + dependencies = [ 4417 + "indexmap 1.9.3", 4418 + "serde", 4419 + "serde_spanned", 4420 + "toml_datetime", 4421 + "winnow", 4422 + ] 4423 + 4424 + [[package]] 4425 + name = "tonic" 4426 + version = "0.8.3" 4427 + source = "registry+https://github.com/rust-lang/crates.io-index" 4428 + checksum = "8f219fad3b929bef19b1f86fbc0358d35daed8f2cac972037ac0dc10bbb8d5fb" 4429 + dependencies = [ 4430 + "async-stream", 4431 + "async-trait", 4432 + "axum", 4433 + "base64 0.13.1", 4434 + "bytes", 4435 + "futures-core", 4436 + "futures-util", 4437 + "h2", 4438 + "http", 4439 + "http-body", 4440 + "hyper", 4441 + "hyper-timeout", 4442 + "percent-encoding", 4443 + "pin-project", 4444 + "prost", 4445 + "prost-derive", 4446 + "tokio", 4447 + "tokio-stream", 4448 + "tokio-util", 4449 + "tower", 4450 + "tower-layer", 4451 + "tower-service", 4452 + "tracing", 4453 + "tracing-futures", 4454 + ] 4455 + 4456 + [[package]] 4457 + name = "tonic-build" 4458 + version = "0.8.4" 4459 + source = "registry+https://github.com/rust-lang/crates.io-index" 4460 + checksum = "5bf5e9b9c0f7e0a7c027dcfaba7b2c60816c7049171f679d99ee2ff65d0de8c4" 4461 + dependencies = [ 4462 + "prettyplease", 4463 + "proc-macro2", 4464 + "prost-build", 4465 + "quote", 4466 + "syn 1.0.109", 4467 + ] 4468 + 4469 + [[package]] 4470 + name = "tower" 4471 + version = "0.4.13" 4472 + source = "registry+https://github.com/rust-lang/crates.io-index" 4473 + checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c" 4474 + dependencies = [ 4475 + "futures-core", 4476 + "futures-util", 4477 + "indexmap 1.9.3", 4478 + "pin-project", 4479 + "pin-project-lite", 4480 + "rand 0.8.5", 4481 + "slab", 4482 + "tokio", 4483 + "tokio-util", 4484 + "tower-layer", 4485 + "tower-service", 4486 + "tracing", 4487 + ] 4488 + 4489 + [[package]] 4490 + name = "tower-http" 4491 + version = "0.3.5" 4492 + source = "registry+https://github.com/rust-lang/crates.io-index" 4493 + checksum = "f873044bf02dd1e8239e9c1293ea39dad76dc594ec16185d0a1bf31d8dc8d858" 4494 + dependencies = [ 4495 + "bitflags 1.3.2", 4496 + "bytes", 4497 + "futures-core", 4498 + "futures-util", 4499 + "http", 4500 + "http-body", 4501 + "http-range-header", 4502 + "pin-project-lite", 4503 + "tower-layer", 4504 + "tower-service", 4505 + "tracing", 4506 + ] 4507 + 4508 + [[package]] 4509 + name = "tower-http" 4510 + version = "0.4.0" 4511 + source = "registry+https://github.com/rust-lang/crates.io-index" 4512 + checksum = "5d1d42a9b3f3ec46ba828e8d376aec14592ea199f70a06a548587ecd1c4ab658" 4513 + dependencies = [ 4514 + "bitflags 1.3.2", 4515 + "bytes", 4516 + "futures-core", 4517 + "futures-util", 4518 + "http", 4519 + "http-body", 4520 + "http-range-header", 4521 + "httpdate", 4522 + "mime", 4523 + "mime_guess", 4524 + "percent-encoding", 4525 + "pin-project-lite", 4526 + "tokio", 4527 + "tokio-util", 4528 + "tower-layer", 4529 + "tower-service", 4530 + "tracing", 4531 + ] 4532 + 4533 + [[package]] 4534 + name = "tower-layer" 4535 + version = "0.3.2" 4536 + source = "registry+https://github.com/rust-lang/crates.io-index" 4537 + checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0" 4538 + 4539 + [[package]] 4540 + name = "tower-service" 4541 + version = "0.3.2" 4542 + source = "registry+https://github.com/rust-lang/crates.io-index" 4543 + checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52" 4544 + 4545 + [[package]] 4546 + name = "tracing" 4547 + version = "0.1.37" 4548 + source = "registry+https://github.com/rust-lang/crates.io-index" 4549 + checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8" 4550 + dependencies = [ 4551 + "cfg-if", 4552 + "log", 4553 + "pin-project-lite", 4554 + "tracing-attributes", 4555 + "tracing-core", 4556 + ] 4557 + 4558 + [[package]] 4559 + name = "tracing-attributes" 4560 + version = "0.1.24" 4561 + source = "registry+https://github.com/rust-lang/crates.io-index" 4562 + checksum = "0f57e3ca2a01450b1a921183a9c9cbfda207fd822cef4ccb00a65402cbba7a74" 4563 + dependencies = [ 4564 + "proc-macro2", 4565 + "quote", 4566 + "syn 2.0.32", 4567 + ] 4568 + 4569 + [[package]] 4570 + name = "tracing-core" 4571 + version = "0.1.31" 4572 + source = "registry+https://github.com/rust-lang/crates.io-index" 4573 + checksum = "0955b8137a1df6f1a2e9a37d8a6656291ff0297c1a97c24e0d8425fe2312f79a" 4574 + dependencies = [ 4575 + "once_cell", 4576 + "valuable", 4577 + ] 4578 + 4579 + [[package]] 4580 + name = "tracing-futures" 4581 + version = "0.2.5" 4582 + source = "registry+https://github.com/rust-lang/crates.io-index" 4583 + checksum = "97d095ae15e245a057c8e8451bab9b3ee1e1f68e9ba2b4fbc18d0ac5237835f2" 4584 + dependencies = [ 4585 + "pin-project", 4586 + "tracing", 4587 + ] 4588 + 4589 + [[package]] 4590 + name = "tracing-log" 4591 + version = "0.1.3" 4592 + source = "registry+https://github.com/rust-lang/crates.io-index" 4593 + checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922" 4594 + dependencies = [ 4595 + "lazy_static", 4596 + "log", 4597 + "tracing-core", 4598 + ] 4599 + 4600 + [[package]] 4601 + name = "tracing-opentelemetry" 4602 + version = "0.18.0" 4603 + source = "registry+https://github.com/rust-lang/crates.io-index" 4604 + checksum = "21ebb87a95ea13271332df069020513ab70bdb5637ca42d6e492dc3bbbad48de" 4605 + dependencies = [ 4606 + "once_cell", 4607 + "opentelemetry", 4608 + "tracing", 4609 + "tracing-core", 4610 + "tracing-log", 4611 + "tracing-subscriber 0.3.17", 4612 + ] 4613 + 4614 + [[package]] 4615 + name = "tracing-serde" 4616 + version = "0.1.3" 4617 + source = "registry+https://github.com/rust-lang/crates.io-index" 4618 + checksum = "bc6b213177105856957181934e4920de57730fc69bf42c37ee5bb664d406d9e1" 4619 + dependencies = [ 4620 + "serde", 4621 + "tracing-core", 4622 + ] 4623 + 4624 + [[package]] 4625 + name = "tracing-subscriber" 4626 + version = "0.2.25" 4627 + source = "registry+https://github.com/rust-lang/crates.io-index" 4628 + checksum = "0e0d2eaa99c3c2e41547cfa109e910a68ea03823cccad4a0525dcbc9b01e8c71" 4629 + dependencies = [ 4630 + "ansi_term", 4631 + "chrono", 4632 + "lazy_static", 4633 + "matchers 0.0.1", 4634 + "regex", 4635 + "serde", 4636 + "serde_json", 4637 + "sharded-slab", 4638 + "smallvec", 4639 + "thread_local", 4640 + "tracing", 4641 + "tracing-core", 4642 + "tracing-log", 4643 + "tracing-serde", 4644 + ] 4645 + 4646 + [[package]] 4647 + name = "tracing-subscriber" 4648 + version = "0.3.17" 4649 + source = "registry+https://github.com/rust-lang/crates.io-index" 4650 + checksum = "30a651bc37f915e81f087d86e62a18eec5f79550c7faff886f7090b4ea757c77" 4651 + dependencies = [ 4652 + "matchers 0.1.0", 4653 + "nu-ansi-term", 4654 + "once_cell", 4655 + "regex", 4656 + "sharded-slab", 4657 + "smallvec", 4658 + "thread_local", 4659 + "tracing", 4660 + "tracing-core", 4661 + "tracing-log", 4662 + ] 4663 + 4664 + [[package]] 4665 + name = "tracing-test" 4666 + version = "0.1.0" 4667 + source = "registry+https://github.com/rust-lang/crates.io-index" 4668 + checksum = "a3b48778c2d401c6a7fcf38a0e3c55dc8e8e753cbd381044a8cdb6fd69a29f53" 4669 + dependencies = [ 4670 + "lazy_static", 4671 + "tracing-core", 4672 + "tracing-subscriber 0.2.25", 4673 + "tracing-test-macro", 4674 + ] 4675 + 4676 + [[package]] 4677 + name = "tracing-test-macro" 4678 + version = "0.1.0" 4679 + source = "registry+https://github.com/rust-lang/crates.io-index" 4680 + checksum = "c49adbab879d2e0dd7f75edace5f0ac2156939ecb7e6a1e8fa14e53728328c48" 4681 + dependencies = [ 4682 + "lazy_static", 4683 + "quote", 4684 + "syn 1.0.109", 4685 + ] 4686 + 4687 + [[package]] 4688 + name = "trackable" 4689 + version = "1.3.0" 4690 + source = "registry+https://github.com/rust-lang/crates.io-index" 4691 + checksum = "b15bd114abb99ef8cee977e517c8f37aee63f184f2d08e3e6ceca092373369ae" 4692 + dependencies = [ 4693 + "trackable_derive", 4694 + ] 4695 + 4696 + [[package]] 4697 + name = "trackable_derive" 4698 + version = "1.0.0" 4699 + source = "registry+https://github.com/rust-lang/crates.io-index" 4700 + checksum = "ebeb235c5847e2f82cfe0f07eb971d1e5f6804b18dac2ae16349cc604380f82f" 4701 + dependencies = [ 4702 + "quote", 4703 + "syn 1.0.109", 4704 + ] 4705 + 4706 + [[package]] 4707 + name = "tree-sitter" 4708 + version = "0.20.10" 4709 + source = "registry+https://github.com/rust-lang/crates.io-index" 4710 + checksum = "e747b1f9b7b931ed39a548c1fae149101497de3c1fc8d9e18c62c1a66c683d3d" 4711 + dependencies = [ 4712 + "cc", 4713 + "regex", 4714 + ] 4715 + 4716 + [[package]] 4717 + name = "tree-sitter-c" 4718 + version = "0.20.6" 4719 + source = "git+https://github.com/tree-sitter/tree-sitter-c/?rev=212a80f#212a80f86452bb1316324fa0db730cf52f29e05a" 4720 + dependencies = [ 4721 + "cc", 4722 + "tree-sitter", 4723 + ] 4724 + 4725 + [[package]] 4726 + name = "tree-sitter-cpp" 4727 + version = "0.20.3" 4728 + source = "git+https://github.com/tree-sitter/tree-sitter-cpp?rev=a714740#a71474021410973b29bfe99440d57bcd750246b1" 4729 + dependencies = [ 4730 + "cc", 4731 + "tree-sitter", 4732 + ] 4733 + 4734 + [[package]] 4735 + name = "tree-sitter-go" 4736 + version = "0.20.0" 4737 + source = "registry+https://github.com/rust-lang/crates.io-index" 4738 + checksum = "1ad6d11f19441b961af2fda7f12f5d0dac325f6d6de83836a1d3750018cc5114" 4739 + dependencies = [ 4740 + "cc", 4741 + "tree-sitter", 4742 + ] 4743 + 4744 + [[package]] 4745 + name = "tree-sitter-java" 4746 + version = "0.20.2" 4747 + source = "registry+https://github.com/rust-lang/crates.io-index" 4748 + checksum = "2adc5696bf5abf761081d7457d2bb82d0e3b28964f4214f63fd7e720ef462653" 4749 + dependencies = [ 4750 + "cc", 4751 + "tree-sitter", 4752 + ] 4753 + 4754 + [[package]] 4755 + name = "tree-sitter-kotlin" 4756 + version = "0.3.1" 4757 + source = "registry+https://github.com/rust-lang/crates.io-index" 4758 + checksum = "1b5f367466210220a194a2d8831fc12d15aa13305e7bcdf2dba47714aa328e86" 4759 + dependencies = [ 4760 + "cc", 4761 + "tree-sitter", 4762 + ] 4763 + 4764 + [[package]] 4765 + name = "tree-sitter-python" 4766 + version = "0.20.2" 4767 + source = "registry+https://github.com/rust-lang/crates.io-index" 4768 + checksum = "dda114f58048f5059dcf158aff691dffb8e113e6d2b50d94263fd68711975287" 4769 + dependencies = [ 4770 + "cc", 4771 + "tree-sitter", 4772 + ] 4773 + 4774 + [[package]] 4775 + name = "tree-sitter-ruby" 4776 + version = "0.20.0" 4777 + source = "registry+https://github.com/rust-lang/crates.io-index" 4778 + checksum = "0ac30cbb1560363ae76e1ccde543d6d99087421e228cc47afcec004b86bb711a" 4779 + dependencies = [ 4780 + "cc", 4781 + "tree-sitter", 4782 + ] 4783 + 4784 + [[package]] 4785 + name = "tree-sitter-rust" 4786 + version = "0.20.3" 4787 + source = "registry+https://github.com/rust-lang/crates.io-index" 4788 + checksum = "797842733e252dc11ae5d403a18060bf337b822fc2ae5ddfaa6ff4d9cc20bda6" 4789 + dependencies = [ 4790 + "cc", 4791 + "tree-sitter", 4792 + ] 4793 + 4794 + [[package]] 4795 + name = "tree-sitter-tags" 4796 + version = "0.20.2" 4797 + source = "registry+https://github.com/rust-lang/crates.io-index" 4798 + checksum = "ccb3f1376219530a37a809751ecf65aa35fd8b9c1c4ab6d4faf5f6a9eeda2c05" 4799 + dependencies = [ 4800 + "memchr", 4801 + "regex", 4802 + "thiserror", 4803 + "tree-sitter", 4804 + ] 4805 + 4806 + [[package]] 4807 + name = "tree-sitter-typescript" 4808 + version = "0.20.3" 4809 + source = "registry+https://github.com/rust-lang/crates.io-index" 4810 + checksum = "a75049f0aafabb2aac205d7bb24da162b53dcd0cfb326785f25a2f32efa8071a" 4811 + dependencies = [ 4812 + "cc", 4813 + "tree-sitter", 4814 + ] 4815 + 4816 + [[package]] 4817 + name = "try-lock" 4818 + version = "0.2.4" 4819 + source = "registry+https://github.com/rust-lang/crates.io-index" 4820 + checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" 4821 + 4822 + [[package]] 4823 + name = "tungstenite" 4824 + version = "0.20.1" 4825 + source = "registry+https://github.com/rust-lang/crates.io-index" 4826 + checksum = "9e3dac10fd62eaf6617d3a904ae222845979aec67c615d1c842b4002c7666fb9" 4827 + dependencies = [ 4828 + "byteorder", 4829 + "bytes", 4830 + "data-encoding", 4831 + "http", 4832 + "httparse", 4833 + "log", 4834 + "rand 0.8.5", 4835 + "sha1", 4836 + "thiserror", 4837 + "url", 4838 + "utf-8", 4839 + ] 4840 + 4841 + [[package]] 4842 + name = "typenum" 4843 + version = "1.16.0" 4844 + source = "registry+https://github.com/rust-lang/crates.io-index" 4845 + checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba" 4846 + 4847 + [[package]] 4848 + name = "ucd-trie" 4849 + version = "0.1.6" 4850 + source = "registry+https://github.com/rust-lang/crates.io-index" 4851 + checksum = "ed646292ffc8188ef8ea4d1e0e0150fb15a5c2e12ad9b8fc191ae7a8a7f3c4b9" 4852 + 4853 + [[package]] 4854 + name = "unicase" 4855 + version = "2.7.0" 4856 + source = "registry+https://github.com/rust-lang/crates.io-index" 4857 + checksum = "f7d2d4dafb69621809a81864c9c1b864479e1235c0dd4e199924b9742439ed89" 4858 + dependencies = [ 4859 + "version_check", 4860 + ] 4861 + 4862 + [[package]] 4863 + name = "unicode-bidi" 4864 + version = "0.3.13" 4865 + source = "registry+https://github.com/rust-lang/crates.io-index" 4866 + checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460" 4867 + 4868 + [[package]] 4869 + name = "unicode-ident" 4870 + version = "1.0.9" 4871 + source = "registry+https://github.com/rust-lang/crates.io-index" 4872 + checksum = "b15811caf2415fb889178633e7724bad2509101cde276048e013b9def5e51fa0" 4873 + 4874 + [[package]] 4875 + name = "unicode-normalization" 4876 + version = "0.1.22" 4877 + source = "registry+https://github.com/rust-lang/crates.io-index" 4878 + checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" 4879 + dependencies = [ 4880 + "tinyvec", 4881 + ] 4882 + 4883 + [[package]] 4884 + name = "unicode-width" 4885 + version = "0.1.10" 4886 + source = "registry+https://github.com/rust-lang/crates.io-index" 4887 + checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b" 4888 + 4889 + [[package]] 4890 + name = "unreachable" 4891 + version = "1.0.0" 4892 + source = "registry+https://github.com/rust-lang/crates.io-index" 4893 + checksum = "382810877fe448991dfc7f0dd6e3ae5d58088fd0ea5e35189655f84e6814fa56" 4894 + dependencies = [ 4895 + "void", 4896 + ] 4897 + 4898 + [[package]] 4899 + name = "untrusted" 4900 + version = "0.9.0" 4901 + source = "registry+https://github.com/rust-lang/crates.io-index" 4902 + checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" 4903 + 4904 + [[package]] 4905 + name = "url" 4906 + version = "2.5.0" 4907 + source = "registry+https://github.com/rust-lang/crates.io-index" 4908 + checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633" 4909 + dependencies = [ 4910 + "form_urlencoded", 4911 + "idna 0.5.0", 4912 + "percent-encoding", 4913 + ] 4914 + 4915 + [[package]] 4916 + name = "url-parse" 4917 + version = "1.0.7" 4918 + source = "registry+https://github.com/rust-lang/crates.io-index" 4919 + checksum = "0d375da66174ba9b3697f36468fb6b9a981074537569a87ad2dc43de2a598063" 4920 + dependencies = [ 4921 + "regex", 4922 + ] 4923 + 4924 + [[package]] 4925 + name = "utf-8" 4926 + version = "0.7.6" 4927 + source = "registry+https://github.com/rust-lang/crates.io-index" 4928 + checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" 4929 + 4930 + [[package]] 4931 + name = "utf8-ranges" 4932 + version = "1.0.5" 4933 + source = "registry+https://github.com/rust-lang/crates.io-index" 4934 + checksum = "7fcfc827f90e53a02eaef5e535ee14266c1d569214c6aa70133a624d8a3164ba" 4935 + 4936 + [[package]] 4937 + name = "utf8parse" 4938 + version = "0.2.1" 4939 + source = "registry+https://github.com/rust-lang/crates.io-index" 4940 + checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" 4941 + 4942 + [[package]] 4943 + name = "utoipa" 4944 + version = "3.3.0" 4945 + source = "registry+https://github.com/rust-lang/crates.io-index" 4946 + checksum = "68ae74ef183fae36d650f063ae7bde1cacbe1cd7e72b617cbe1e985551878b98" 4947 + dependencies = [ 4948 + "indexmap 1.9.3", 4949 + "serde", 4950 + "serde_json", 4951 + "utoipa-gen", 4952 + ] 4953 + 4954 + [[package]] 4955 + name = "utoipa-gen" 4956 + version = "3.3.0" 4957 + source = "registry+https://github.com/rust-lang/crates.io-index" 4958 + checksum = "7ea8ac818da7e746a63285594cce8a96f5e00ee31994e655bd827569cb8b137b" 4959 + dependencies = [ 4960 + "proc-macro-error", 4961 + "proc-macro2", 4962 + "quote", 4963 + "syn 2.0.32", 4964 + ] 4965 + 4966 + [[package]] 4967 + name = "utoipa-swagger-ui" 4968 + version = "3.1.3" 4969 + source = "registry+https://github.com/rust-lang/crates.io-index" 4970 + checksum = "062bba5a3568e126ac72049a63254f4cb1da2eb713db0c1ab2a4c76be191db8c" 4971 + dependencies = [ 4972 + "axum", 4973 + "mime_guess", 4974 + "regex", 4975 + "rust-embed 6.6.1", 4976 + "serde", 4977 + "serde_json", 4978 + "utoipa", 4979 + "zip", 4980 + ] 4981 + 4982 + [[package]] 4983 + name = "uuid" 4984 + version = "0.8.2" 4985 + source = "registry+https://github.com/rust-lang/crates.io-index" 4986 + checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7" 4987 + dependencies = [ 4988 + "getrandom 0.2.11", 4989 + ] 4990 + 4991 + [[package]] 4992 + name = "uuid" 4993 + version = "1.6.1" 4994 + source = "registry+https://github.com/rust-lang/crates.io-index" 4995 + checksum = "5e395fcf16a7a3d8127ec99782007af141946b4795001f876d54fb0d55978560" 4996 + dependencies = [ 4997 + "getrandom 0.2.11", 4998 + "rand 0.8.5", 4999 + "serde", 5000 + "uuid-macro-internal", 5001 + ] 5002 + 5003 + [[package]] 5004 + name = "uuid-macro-internal" 5005 + version = "1.6.1" 5006 + source = "registry+https://github.com/rust-lang/crates.io-index" 5007 + checksum = "f49e7f3f3db8040a100710a11932239fd30697115e2ba4107080d8252939845e" 5008 + dependencies = [ 5009 + "proc-macro2", 5010 + "quote", 5011 + "syn 2.0.32", 5012 + ] 5013 + 5014 + [[package]] 5015 + name = "validator" 5016 + version = "0.16.1" 5017 + source = "registry+https://github.com/rust-lang/crates.io-index" 5018 + checksum = "b92f40481c04ff1f4f61f304d61793c7b56ff76ac1469f1beb199b1445b253bd" 5019 + dependencies = [ 5020 + "idna 0.4.0", 5021 + "lazy_static", 5022 + "regex", 5023 + "serde", 5024 + "serde_derive", 5025 + "serde_json", 5026 + "url", 5027 + "validator_derive", 5028 + ] 5029 + 5030 + [[package]] 5031 + name = "validator_derive" 5032 + version = "0.16.0" 5033 + source = "registry+https://github.com/rust-lang/crates.io-index" 5034 + checksum = "bc44ca3088bb3ba384d9aecf40c6a23a676ce23e09bdaca2073d99c207f864af" 5035 + dependencies = [ 5036 + "if_chain", 5037 + "lazy_static", 5038 + "proc-macro-error", 5039 + "proc-macro2", 5040 + "quote", 5041 + "regex", 5042 + "syn 1.0.109", 5043 + "validator_types", 5044 + ] 5045 + 5046 + [[package]] 5047 + name = "validator_types" 5048 + version = "0.16.0" 5049 + source = "registry+https://github.com/rust-lang/crates.io-index" 5050 + checksum = "111abfe30072511849c5910134e8baf8dc05de4c0e5903d681cbd5c9c4d611e3" 5051 + dependencies = [ 5052 + "proc-macro2", 5053 + "syn 1.0.109", 5054 + ] 5055 + 5056 + [[package]] 5057 + name = "valuable" 5058 + version = "0.1.0" 5059 + source = "registry+https://github.com/rust-lang/crates.io-index" 5060 + checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d" 5061 + 5062 + [[package]] 5063 + name = "vcpkg" 5064 + version = "0.2.15" 5065 + source = "registry+https://github.com/rust-lang/crates.io-index" 5066 + checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 5067 + 5068 + [[package]] 5069 + name = "vergen" 5070 + version = "8.2.4" 5071 + source = "registry+https://github.com/rust-lang/crates.io-index" 5072 + checksum = "bbc5ad0d9d26b2c49a5ab7da76c3e79d3ee37e7821799f8223fcb8f2f391a2e7" 5073 + dependencies = [ 5074 + "anyhow", 5075 + "rustversion", 5076 + "time", 5077 + ] 5078 + 5079 + [[package]] 5080 + name = "version_check" 5081 + version = "0.9.4" 5082 + source = "registry+https://github.com/rust-lang/crates.io-index" 5083 + checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 5084 + 5085 + [[package]] 5086 + name = "void" 5087 + version = "1.0.2" 5088 + source = "registry+https://github.com/rust-lang/crates.io-index" 5089 + checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d" 5090 + 5091 + [[package]] 5092 + name = "walkdir" 5093 + version = "2.3.3" 5094 + source = "registry+https://github.com/rust-lang/crates.io-index" 5095 + checksum = "36df944cda56c7d8d8b7496af378e6b16de9284591917d307c9b4d313c44e698" 5096 + dependencies = [ 5097 + "same-file", 5098 + "winapi-util", 5099 + ] 5100 + 5101 + [[package]] 5102 + name = "want" 5103 + version = "0.3.0" 5104 + source = "registry+https://github.com/rust-lang/crates.io-index" 5105 + checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0" 5106 + dependencies = [ 5107 + "log", 5108 + "try-lock", 5109 + ] 5110 + 5111 + [[package]] 5112 + name = "wasi" 5113 + version = "0.9.0+wasi-snapshot-preview1" 5114 + source = "registry+https://github.com/rust-lang/crates.io-index" 5115 + checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" 5116 + 5117 + [[package]] 5118 + name = "wasi" 5119 + version = "0.11.0+wasi-snapshot-preview1" 5120 + source = "registry+https://github.com/rust-lang/crates.io-index" 5121 + checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 5122 + 5123 + [[package]] 5124 + name = "wasm-bindgen" 5125 + version = "0.2.87" 5126 + source = "registry+https://github.com/rust-lang/crates.io-index" 5127 + checksum = "7706a72ab36d8cb1f80ffbf0e071533974a60d0a308d01a5d0375bf60499a342" 5128 + dependencies = [ 5129 + "cfg-if", 5130 + "wasm-bindgen-macro", 5131 + ] 5132 + 5133 + [[package]] 5134 + name = "wasm-bindgen-backend" 5135 + version = "0.2.87" 5136 + source = "registry+https://github.com/rust-lang/crates.io-index" 5137 + checksum = "5ef2b6d3c510e9625e5fe6f509ab07d66a760f0885d858736483c32ed7809abd" 5138 + dependencies = [ 5139 + "bumpalo", 5140 + "log", 5141 + "once_cell", 5142 + "proc-macro2", 5143 + "quote", 5144 + "syn 2.0.32", 5145 + "wasm-bindgen-shared", 5146 + ] 5147 + 5148 + [[package]] 5149 + name = "wasm-bindgen-futures" 5150 + version = "0.4.37" 5151 + source = "registry+https://github.com/rust-lang/crates.io-index" 5152 + checksum = "c02dbc21516f9f1f04f187958890d7e6026df8d16540b7ad9492bc34a67cea03" 5153 + dependencies = [ 5154 + "cfg-if", 5155 + "js-sys", 5156 + "wasm-bindgen", 5157 + "web-sys", 5158 + ] 5159 + 5160 + [[package]] 5161 + name = "wasm-bindgen-macro" 5162 + version = "0.2.87" 5163 + source = "registry+https://github.com/rust-lang/crates.io-index" 5164 + checksum = "dee495e55982a3bd48105a7b947fd2a9b4a8ae3010041b9e0faab3f9cd028f1d" 5165 + dependencies = [ 5166 + "quote", 5167 + "wasm-bindgen-macro-support", 5168 + ] 5169 + 5170 + [[package]] 5171 + name = "wasm-bindgen-macro-support" 5172 + version = "0.2.87" 5173 + source = "registry+https://github.com/rust-lang/crates.io-index" 5174 + checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b" 5175 + dependencies = [ 5176 + "proc-macro2", 5177 + "quote", 5178 + "syn 2.0.32", 5179 + "wasm-bindgen-backend", 5180 + "wasm-bindgen-shared", 5181 + ] 5182 + 5183 + [[package]] 5184 + name = "wasm-bindgen-shared" 5185 + version = "0.2.87" 5186 + source = "registry+https://github.com/rust-lang/crates.io-index" 5187 + checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1" 5188 + 5189 + [[package]] 5190 + name = "wasm-streams" 5191 + version = "0.3.0" 5192 + source = "registry+https://github.com/rust-lang/crates.io-index" 5193 + checksum = "b4609d447824375f43e1ffbc051b50ad8f4b3ae8219680c94452ea05eb240ac7" 5194 + dependencies = [ 5195 + "futures-util", 5196 + "js-sys", 5197 + "wasm-bindgen", 5198 + "wasm-bindgen-futures", 5199 + "web-sys", 5200 + ] 5201 + 5202 + [[package]] 5203 + name = "web-sys" 5204 + version = "0.3.64" 5205 + source = "registry+https://github.com/rust-lang/crates.io-index" 5206 + checksum = "9b85cbef8c220a6abc02aefd892dfc0fc23afb1c6a426316ec33253a3877249b" 5207 + dependencies = [ 5208 + "js-sys", 5209 + "wasm-bindgen", 5210 + ] 5211 + 5212 + [[package]] 5213 + name = "which" 5214 + version = "4.4.0" 5215 + source = "registry+https://github.com/rust-lang/crates.io-index" 5216 + checksum = "2441c784c52b289a054b7201fc93253e288f094e2f4be9058343127c4226a269" 5217 + dependencies = [ 5218 + "either", 5219 + "libc", 5220 + "once_cell", 5221 + ] 5222 + 5223 + [[package]] 5224 + name = "winapi" 5225 + version = "0.3.9" 5226 + source = "registry+https://github.com/rust-lang/crates.io-index" 5227 + checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 5228 + dependencies = [ 5229 + "winapi-i686-pc-windows-gnu", 5230 + "winapi-x86_64-pc-windows-gnu", 5231 + ] 5232 + 5233 + [[package]] 5234 + name = "winapi-i686-pc-windows-gnu" 5235 + version = "0.4.0" 5236 + source = "registry+https://github.com/rust-lang/crates.io-index" 5237 + checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 5238 + 5239 + [[package]] 5240 + name = "winapi-util" 5241 + version = "0.1.5" 5242 + source = "registry+https://github.com/rust-lang/crates.io-index" 5243 + checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" 5244 + dependencies = [ 5245 + "winapi", 5246 + ] 5247 + 5248 + [[package]] 5249 + name = "winapi-x86_64-pc-windows-gnu" 5250 + version = "0.4.0" 5251 + source = "registry+https://github.com/rust-lang/crates.io-index" 5252 + checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 5253 + 5254 + [[package]] 5255 + name = "windows" 5256 + version = "0.48.0" 5257 + source = "registry+https://github.com/rust-lang/crates.io-index" 5258 + checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f" 5259 + dependencies = [ 5260 + "windows-targets 0.48.0", 5261 + ] 5262 + 5263 + [[package]] 5264 + name = "windows-sys" 5265 + version = "0.42.0" 5266 + source = "registry+https://github.com/rust-lang/crates.io-index" 5267 + checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7" 5268 + dependencies = [ 5269 + "windows_aarch64_gnullvm 0.42.2", 5270 + "windows_aarch64_msvc 0.42.2", 5271 + "windows_i686_gnu 0.42.2", 5272 + "windows_i686_msvc 0.42.2", 5273 + "windows_x86_64_gnu 0.42.2", 5274 + "windows_x86_64_gnullvm 0.42.2", 5275 + "windows_x86_64_msvc 0.42.2", 5276 + ] 5277 + 5278 + [[package]] 5279 + name = "windows-sys" 5280 + version = "0.45.0" 5281 + source = "registry+https://github.com/rust-lang/crates.io-index" 5282 + checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 5283 + dependencies = [ 5284 + "windows-targets 0.42.2", 5285 + ] 5286 + 5287 + [[package]] 5288 + name = "windows-sys" 5289 + version = "0.48.0" 5290 + source = "registry+https://github.com/rust-lang/crates.io-index" 5291 + checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 5292 + dependencies = [ 5293 + "windows-targets 0.48.0", 5294 + ] 5295 + 5296 + [[package]] 5297 + name = "windows-targets" 5298 + version = "0.42.2" 5299 + source = "registry+https://github.com/rust-lang/crates.io-index" 5300 + checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" 5301 + dependencies = [ 5302 + "windows_aarch64_gnullvm 0.42.2", 5303 + "windows_aarch64_msvc 0.42.2", 5304 + "windows_i686_gnu 0.42.2", 5305 + "windows_i686_msvc 0.42.2", 5306 + "windows_x86_64_gnu 0.42.2", 5307 + "windows_x86_64_gnullvm 0.42.2", 5308 + "windows_x86_64_msvc 0.42.2", 5309 + ] 5310 + 5311 + [[package]] 5312 + name = "windows-targets" 5313 + version = "0.48.0" 5314 + source = "registry+https://github.com/rust-lang/crates.io-index" 5315 + checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5" 5316 + dependencies = [ 5317 + "windows_aarch64_gnullvm 0.48.0", 5318 + "windows_aarch64_msvc 0.48.0", 5319 + "windows_i686_gnu 0.48.0", 5320 + "windows_i686_msvc 0.48.0", 5321 + "windows_x86_64_gnu 0.48.0", 5322 + "windows_x86_64_gnullvm 0.48.0", 5323 + "windows_x86_64_msvc 0.48.0", 5324 + ] 5325 + 5326 + [[package]] 5327 + name = "windows_aarch64_gnullvm" 5328 + version = "0.42.2" 5329 + source = "registry+https://github.com/rust-lang/crates.io-index" 5330 + checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" 5331 + 5332 + [[package]] 5333 + name = "windows_aarch64_gnullvm" 5334 + version = "0.48.0" 5335 + source = "registry+https://github.com/rust-lang/crates.io-index" 5336 + checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc" 5337 + 5338 + [[package]] 5339 + name = "windows_aarch64_msvc" 5340 + version = "0.42.2" 5341 + source = "registry+https://github.com/rust-lang/crates.io-index" 5342 + checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" 5343 + 5344 + [[package]] 5345 + name = "windows_aarch64_msvc" 5346 + version = "0.48.0" 5347 + source = "registry+https://github.com/rust-lang/crates.io-index" 5348 + checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3" 5349 + 5350 + [[package]] 5351 + name = "windows_i686_gnu" 5352 + version = "0.42.2" 5353 + source = "registry+https://github.com/rust-lang/crates.io-index" 5354 + checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" 5355 + 5356 + [[package]] 5357 + name = "windows_i686_gnu" 5358 + version = "0.48.0" 5359 + source = "registry+https://github.com/rust-lang/crates.io-index" 5360 + checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241" 5361 + 5362 + [[package]] 5363 + name = "windows_i686_msvc" 5364 + version = "0.42.2" 5365 + source = "registry+https://github.com/rust-lang/crates.io-index" 5366 + checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" 5367 + 5368 + [[package]] 5369 + name = "windows_i686_msvc" 5370 + version = "0.48.0" 5371 + source = "registry+https://github.com/rust-lang/crates.io-index" 5372 + checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00" 5373 + 5374 + [[package]] 5375 + name = "windows_x86_64_gnu" 5376 + version = "0.42.2" 5377 + source = "registry+https://github.com/rust-lang/crates.io-index" 5378 + checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" 5379 + 5380 + [[package]] 5381 + name = "windows_x86_64_gnu" 5382 + version = "0.48.0" 5383 + source = "registry+https://github.com/rust-lang/crates.io-index" 5384 + checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1" 5385 + 5386 + [[package]] 5387 + name = "windows_x86_64_gnullvm" 5388 + version = "0.42.2" 5389 + source = "registry+https://github.com/rust-lang/crates.io-index" 5390 + checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" 5391 + 5392 + [[package]] 5393 + name = "windows_x86_64_gnullvm" 5394 + version = "0.48.0" 5395 + source = "registry+https://github.com/rust-lang/crates.io-index" 5396 + checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953" 5397 + 5398 + [[package]] 5399 + name = "windows_x86_64_msvc" 5400 + version = "0.42.2" 5401 + source = "registry+https://github.com/rust-lang/crates.io-index" 5402 + checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" 5403 + 5404 + [[package]] 5405 + name = "windows_x86_64_msvc" 5406 + version = "0.48.0" 5407 + source = "registry+https://github.com/rust-lang/crates.io-index" 5408 + checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a" 5409 + 5410 + [[package]] 5411 + name = "winnow" 5412 + version = "0.4.6" 5413 + source = "registry+https://github.com/rust-lang/crates.io-index" 5414 + checksum = "61de7bac303dc551fe038e2b3cef0f571087a47571ea6e79a87692ac99b99699" 5415 + dependencies = [ 5416 + "memchr", 5417 + ] 5418 + 5419 + [[package]] 5420 + name = "winreg" 5421 + version = "0.50.0" 5422 + source = "registry+https://github.com/rust-lang/crates.io-index" 5423 + checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1" 5424 + dependencies = [ 5425 + "cfg-if", 5426 + "windows-sys 0.48.0", 5427 + ] 5428 + 5429 + [[package]] 5430 + name = "wrapcenum-derive" 5431 + version = "0.4.0" 5432 + source = "registry+https://github.com/rust-lang/crates.io-index" 5433 + checksum = "6bcc065c85ad2c3bd12aa4118bf164835712e25080c392557801a13292c60aec" 5434 + dependencies = [ 5435 + "darling 0.10.2", 5436 + "proc-macro2", 5437 + "quote", 5438 + "syn 1.0.109", 5439 + ] 5440 + 5441 + [[package]] 5442 + name = "yaml-rust" 5443 + version = "0.4.5" 5444 + source = "registry+https://github.com/rust-lang/crates.io-index" 5445 + checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85" 5446 + dependencies = [ 5447 + "linked-hash-map", 5448 + ] 5449 + 5450 + [[package]] 5451 + name = "zerocopy" 5452 + version = "0.7.32" 5453 + source = "registry+https://github.com/rust-lang/crates.io-index" 5454 + checksum = "74d4d3961e53fa4c9a25a8637fc2bfaf2595b3d3ae34875568a5cf64787716be" 5455 + dependencies = [ 5456 + "zerocopy-derive", 5457 + ] 5458 + 5459 + [[package]] 5460 + name = "zerocopy-derive" 5461 + version = "0.7.32" 5462 + source = "registry+https://github.com/rust-lang/crates.io-index" 5463 + checksum = "9ce1b18ccd8e73a9321186f97e46f9f04b778851177567b1975109d26a08d2a6" 5464 + dependencies = [ 5465 + "proc-macro2", 5466 + "quote", 5467 + "syn 2.0.32", 5468 + ] 5469 + 5470 + [[package]] 5471 + name = "zip" 5472 + version = "0.6.6" 5473 + source = "registry+https://github.com/rust-lang/crates.io-index" 5474 + checksum = "760394e246e4c28189f19d488c058bf16f564016aefac5d32bb1f3b51d5e9261" 5475 + dependencies = [ 5476 + "byteorder", 5477 + "crc32fast", 5478 + "crossbeam-utils", 5479 + "flate2", 5480 + ] 5481 + 5482 + [[package]] 5483 + name = "zstd" 5484 + version = "0.12.4" 5485 + source = "registry+https://github.com/rust-lang/crates.io-index" 5486 + checksum = "1a27595e173641171fc74a1232b7b1c7a7cb6e18222c11e9dfb9888fa424c53c" 5487 + dependencies = [ 5488 + "zstd-safe", 5489 + ] 5490 + 5491 + [[package]] 5492 + name = "zstd-safe" 5493 + version = "6.0.6" 5494 + source = "registry+https://github.com/rust-lang/crates.io-index" 5495 + checksum = "ee98ffd0b48ee95e6c5168188e44a54550b1564d9d530ee21d5f0eaed1069581" 5496 + dependencies = [ 5497 + "libc", 5498 + "zstd-sys", 5499 + ] 5500 + 5501 + [[package]] 5502 + name = "zstd-sys" 5503 + version = "2.0.8+zstd.1.5.5" 5504 + source = "registry+https://github.com/rust-lang/crates.io-index" 5505 + checksum = "5556e6ee25d32df2586c098bbfa278803692a20d0ab9565e049480d52707ec8c" 5506 + dependencies = [ 5507 + "cc", 5508 + "libc", 5509 + "pkg-config", 5510 + ]
+122 -24
pkgs/by-name/ta/tabby/package.nix
··· 1 - { lib 1 + { config 2 + , lib 3 + , rustPlatform 2 4 , fetchFromGitHub 3 - , gcc12 4 - , cmake 5 + , stdenv 6 + 5 7 , git 6 8 , openssl 7 9 , pkg-config 8 10 , protobuf 9 - , rustPlatform 10 - , addOpenGLRunpath 11 - , cudatoolkit 12 - , nvidia ? true 11 + 12 + , llama-cpp 13 + 14 + , cudaSupport ? config.cudaSupport 15 + , cudaPackages ? { } 16 + 17 + , rocmSupport ? config.rocmSupport 18 + 19 + , darwin 20 + , metalSupport ? stdenv.isDarwin && stdenv.isAarch64 21 + 22 + # one of [ null "cpu" "rocm" "cuda" "metal" ]; 23 + , acceleration ? null 13 24 }: 14 25 15 - rustPlatform.buildRustPackage rec { 16 - version = "0.7.0"; 26 + let 27 + inherit (lib) optional optionals flatten; 28 + # References: 29 + # https://github.com/NixOS/nixpkgs/blob/master/pkgs/by-name/ll/llama-cpp/package.nix 30 + # https://github.com/NixOS/nixpkgs/blob/master/pkgs/tools/misc/ollama/default.nix 31 + 17 32 pname = "tabby"; 33 + version = "0.8.3"; 34 + 35 + 36 + availableAccelerations = flatten [ 37 + (optional cudaSupport "cuda") 38 + (optional rocmSupport "rocm") 39 + (optional metalSupport "metal") 40 + ]; 41 + 42 + warnIfMultipleAccelerationMethods = configured: (let 43 + len = builtins.length configured; 44 + result = if len == 0 then "cpu" else (builtins.head configured); 45 + in 46 + lib.warnIf (len > 1) '' 47 + building tabby with multiple acceleration methods enabled is not 48 + supported; falling back to `${result}` 49 + '' 50 + result 51 + ); 52 + 53 + # If user did not not override the acceleration attribute, then try to use one of 54 + # - nixpkgs.config.cudaSupport 55 + # - nixpkgs.config.rocmSupport 56 + # - metal if (stdenv.isDarwin && stdenv.isAarch64) 57 + # !! warn if multiple acceleration methods are enabled and default to the first one in the list 58 + featureDevice = if (builtins.isNull acceleration) then (warnIfMultipleAccelerationMethods availableAccelerations) else acceleration; 59 + 60 + warnIfNotLinux = api: (lib.warnIfNot stdenv.isLinux 61 + "building tabby with `${api}` is only supported on linux; falling back to cpu" 62 + stdenv.isLinux); 63 + warnIfNotDarwinAarch64 = api: (lib.warnIfNot (stdenv.isDarwin && stdenv.isAarch64) 64 + "building tabby with `${api}` is only supported on Darwin-aarch64; falling back to cpu" 65 + (stdenv.isDarwin && stdenv.isAarch64)); 66 + 67 + validAccel = lib.assertOneOf "tabby.featureDevice" featureDevice [ "cpu" "rocm" "cuda" "metal" ]; 68 + 69 + # TODO(ghthor): there is a bug here where featureDevice could be cuda, but enableCuda is false 70 + # The would result in a startup failure of the service module. 71 + enableRocm = validAccel && (featureDevice == "rocm") && (warnIfNotLinux "rocm"); 72 + enableCuda = validAccel && (featureDevice == "cuda") && (warnIfNotLinux "cuda"); 73 + enableMetal = validAccel && (featureDevice == "metal") && (warnIfNotDarwinAarch64 "metal"); 74 + 75 + # We have to use override here because tabby doesn't actually tell llama-cpp 76 + # to use a specific device type as it is relying on llama-cpp only being 77 + # built to use one type of device. 78 + # 79 + # See: https://github.com/TabbyML/tabby/blob/v0.8.3/crates/llama-cpp-bindings/include/engine.h#L20 80 + # 81 + llamaccpPackage = llama-cpp.override { 82 + rocmSupport = enableRocm; 83 + cudaSupport = enableCuda; 84 + metalSupport = enableMetal; 85 + }; 86 + 87 + # TODO(ghthor): some of this can be removed 88 + darwinBuildInputs = [ llamaccpPackage ] 89 + ++ optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [ 90 + Foundation 91 + Accelerate 92 + CoreVideo 93 + CoreGraphics 94 + ] 95 + ++ optionals enableMetal [ Metal MetalKit ]); 96 + 97 + cudaBuildInputs = [ llamaccpPackage ]; 98 + rocmBuildInputs = [ llamaccpPackage ]; 99 + 100 + LLAMA_CPP_LIB = "${llamaccpPackage.outPath}/lib"; 101 + 102 + in 103 + rustPlatform.buildRustPackage { 104 + inherit pname version; 105 + inherit featureDevice; 18 106 19 107 src = fetchFromGitHub { 20 108 owner = "TabbyML"; 21 109 repo = "tabby"; 22 110 rev = "v${version}"; 23 - hash = "sha256-BTPJWvqO4IuQAiUEER9PYfu4aQsz5RI77WsA/gQu5Jc="; 111 + hash = "sha256-+5Q5XKfh7+g24y2hBqJC/jNEoRytDdcRdn838xc7c8w="; 24 112 fetchSubmodules = true; 25 113 }; 26 114 27 - cargoHash = "sha256-Du0ya9J+0tz72mSid5If0VFX2lLC7YtwNQ/MALpFv2M="; 115 + cargoLock = { 116 + lockFile = ./Cargo.lock; 117 + outputHashes = { 118 + "tree-sitter-c-0.20.6" = "sha256-Etl4s29YSOxiqPo4Z49N6zIYqNpIsdk/Qd0jR8jdvW4="; 119 + "tree-sitter-cpp-0.20.3" = "sha256-UrQ48CoUMSHmlHzOMu22c9N4hxJtHL2ZYRabYjf5byA="; 120 + }; 121 + }; 28 122 29 123 # https://github.com/TabbyML/tabby/blob/v0.7.0/.github/workflows/release.yml#L39 30 124 cargoBuildFlags = [ 31 125 "--release" 32 126 "--package" "tabby" 33 - ] ++ lib.optional nvidia [ 127 + ] ++ optionals enableRocm [ 128 + "--features" "rocm" 129 + ] ++ optionals enableCuda [ 34 130 "--features" "cuda" 35 131 ]; 36 132 ··· 40 136 pkg-config 41 137 protobuf 42 138 git 43 - cmake 44 - gcc12 45 - 46 - ] ++ lib.optional nvidia [ 47 - addOpenGLRunpath 139 + ] ++ optionals enableCuda [ 140 + # TODO: Replace with autoAddDriverRunpath 141 + # once https://github.com/NixOS/nixpkgs/pull/275241 has been merged 142 + cudaPackages.autoAddOpenGLRunpathHook 48 143 ]; 49 144 50 145 buildInputs = [ openssl ] 51 - ++ lib.optional nvidia cudatoolkit 146 + ++ optionals stdenv.isDarwin darwinBuildInputs 147 + ++ optionals enableCuda cudaBuildInputs 148 + ++ optionals enableRocm rocmBuildInputs 52 149 ; 53 150 54 - postInstall = '' 55 - ${if nvidia then '' 56 - addOpenGLRunpath "$out/bin/tabby" 57 - '' else '' 58 - ''} 59 - ''; 151 + env = lib.mergeAttrsList [ 152 + { inherit LLAMA_CPP_LIB; } 153 + # Work around https://github.com/NixOS/nixpkgs/issues/166205 154 + (lib.optionalAttrs stdenv.cc.isClang { NIX_LDFLAGS = "-l${stdenv.cc.libcxx.cxxabi.libName}"; }) 155 + ]; 156 + patches = [ ./0001-nix-build-use-nix-native-llama-cpp-package.patch ]; 60 157 61 158 # Fails with: 62 159 # file cannot create directory: /var/empty/local/lib64/cmake/Llama ··· 69 166 mainProgram = "tabby"; 70 167 license = licenses.asl20; 71 168 maintainers = [ maintainers.ghthor ]; 169 + broken = stdenv.isDarwin && !stdenv.isAarch64; 72 170 }; 73 171 }
+2 -2
pkgs/by-name/ti/tigerbeetle/package.nix
··· 14 14 in 15 15 stdenv.mkDerivation (finalAttrs: { 16 16 pname = "tigerbeetle"; 17 - version = "0.14.181"; 17 + version = "0.14.183"; 18 18 19 19 src = fetchFromGitHub { 20 20 owner = "tigerbeetle"; 21 21 repo = "tigerbeetle"; 22 22 rev = "refs/tags/${finalAttrs.version}"; 23 - hash = "sha256-BtaPSMQn6Rq6wiYQZb1f+vM9sjrV9HVrvQ9DAQFE+zk="; 23 + hash = "sha256-vyxuzSTwaXrQKVErxiwxjOQWUnHQMEl+PQGd/HU+noc="; 24 24 }; 25 25 26 26 nativeBuildInputs = [ custom_zig_hook ];
+39
pkgs/by-name/ws/wslu/fix-desktop-item.patch
··· 1 + From f63028c5712a89cb310165cde9701538fa85ce46 Mon Sep 17 00:00:00 2001 2 + From: =?UTF-8?q?=C3=A9clairevoyant?= 3 + <848000+eclairevoyant@users.noreply.github.com> 4 + Date: Wed, 6 Mar 2024 06:09:44 -0500 5 + Subject: [PATCH] fix desktop item 6 + 7 + --- 8 + Makefile | 1 - 9 + src/etc/wslview.desktop | 2 +- 10 + 2 files changed, 1 insertion(+), 2 deletions(-) 11 + 12 + diff --git a/Makefile b/Makefile 13 + index 2399009..e823882 100644 14 + --- a/Makefile 15 + +++ b/Makefile 16 + @@ -59,7 +59,6 @@ res_install: 17 + install -Dm 644 src/etc/*.ps1 -t $(DESTDIR)$(PREFIX)/share/wslu 18 + install -Dm 644 src/etc/*.ico -t $(DESTDIR)$(PREFIX)/share/wslu 19 + install -Dm 755 src/etc/*.sh -t $(DESTDIR)$(PREFIX)/share/wslu 20 + - install -Dm 644 src/etc/*.desktop $(DESTDIR)$(PREFIX)/share/wslu 21 + install -Dm 644 src/etc/conf $(DESTDIR)$(PREFIX)/share/wslu 22 + 23 + conf_install: 24 + diff --git a/src/etc/wslview.desktop b/src/etc/wslview.desktop 25 + index ebb84b6..235a365 100644 26 + --- a/src/etc/wslview.desktop 27 + +++ b/src/etc/wslview.desktop 28 + @@ -2,7 +2,7 @@ 29 + Name=WSLView 30 + Comment=Open files and addresses in Windows 31 + Icon=windows 32 + -Exec=/usr/bin/wslview %U 33 + +Exec=wslview %U 34 + Terminal=false 35 + Type=Application 36 + Categories=Utility; 37 + -- 38 + 2.43.1 39 +
+4 -4
pkgs/development/compilers/fpc/lazarus.nix
··· 9 9 # 1. the build date is embedded in the binary through `$I %DATE%` - we should dump that 10 10 11 11 let 12 - version = "2.2.2-0"; 12 + version = "3.2-0"; 13 13 14 14 # as of 2.0.10 a suffix is being added. That may or may not disappear and then 15 15 # come back, so just leave this here. 16 16 majorMinorPatch = v: 17 - builtins.concatStringsSep "." (lib.take 3 (lib.splitVersion v)); 17 + builtins.concatStringsSep "." (lib.take 2 (lib.splitVersion v)); 18 18 19 19 overrides = writeText "revision.inc" (lib.concatStringsSep "\n" (lib.mapAttrsToList (k: v: 20 20 "const ${k} = '${v}';") { ··· 30 30 31 31 src = fetchurl { 32 32 url = "mirror://sourceforge/lazarus/Lazarus%20Zip%20_%20GZip/Lazarus%20${majorMinorPatch version}/lazarus-${version}.tar.gz"; 33 - sha256 = "a9832004cffec8aca69de87290441d54772bf95d5d04372249d5a5491fb674c4"; 33 + sha256 = "69f43f0a10b9e09deea5f35094c73b84464b82d3f40d8a2fcfcb5a5ab03c6edf"; 34 34 }; 35 35 36 36 postPatch = '' ··· 87 87 preBuild = '' 88 88 mkdir -p $out/share "$out/lazarus" 89 89 tar xf ${fpc.src} --strip-components=1 -C $out/share -m 90 - substituteInPlace ide/include/unix/lazbaseconf.inc \ 90 + substituteInPlace ide/packages/ideconfig/include/unix/lazbaseconf.inc \ 91 91 --replace '/usr/fpcsrc' "$out/share/fpcsrc" 92 92 ''; 93 93
+2 -2
pkgs/development/interpreters/erlang/26.nix
··· 1 1 { mkDerivation }: 2 2 3 3 mkDerivation { 4 - version = "26.2.2"; 5 - sha256 = "sha256-7S+mC4pDcbXyhW2r5y8+VcX9JQXq5iEUJZiFmgVMPZ0="; 4 + version = "26.2.3"; 5 + sha256 = "sha256-nUvGLzZ1PFc3Z/kDb3jspCFWXxkGZrazvGIpxfFLcbc="; 6 6 }
+2 -2
pkgs/development/libraries/goffice/default.nix
··· 6 6 7 7 stdenv.mkDerivation rec { 8 8 pname = "goffice"; 9 - version = "0.10.56"; 9 + version = "0.10.57"; 10 10 11 11 outputs = [ "out" "dev" "devdoc" ]; 12 12 13 13 src = fetchurl { 14 14 url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 15 - sha256 = "uGQKL+4MCld4SypbkpRKKTLHidsQOd31ommtY0eW5+I="; 15 + hash = "sha256-Zr/X4x0vZ1bVpiw2cDg8u6ArPLTBBClQGSqAG3Kjyas="; 16 16 }; 17 17 18 18 nativeBuildInputs = [
+2 -2
pkgs/development/libraries/libqaccessibilityclient/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "libqaccessibilityclient"; 5 - version = "0.5.0"; 5 + version = "0.6.0"; 6 6 7 7 src = fetchurl { 8 8 url = "mirror://kde/stable/libqaccessibilityclient/libqaccessibilityclient-${version}.tar.xz"; 9 - hash = "sha256-cEdyVDo7AFuUBhpT6vn51klE5oGLBMWcD7ClA8gaxKA="; 9 + hash = "sha256-TFDESGItycUEHtENp9h7Pk5xzLSdSDGoSSEdQjxfXTM="; 10 10 }; 11 11 12 12 nativeBuildInputs = [ cmake extra-cmake-modules ];
+2 -2
pkgs/development/libraries/science/astronomy/cfitsio/default.nix
··· 8 8 9 9 stdenv.mkDerivation (finalAttrs: { 10 10 pname = "cfitsio"; 11 - version = "4.3.1"; 11 + version = "4.4.0"; 12 12 13 13 src = fetchurl { 14 14 url = "https://heasarc.gsfc.nasa.gov/FTP/software/fitsio/c/cfitsio-${finalAttrs.version}.tar.gz"; 15 - hash = "sha256-R6fI7gVoe+Hh2O7rlPuI8GD7882KTfUsy4jV6w9QYr4="; 15 + hash = "sha256-lZAM+VrnYIOefLlninsvrQhY1qwSI0+TS9HLa/wka6k="; 16 16 }; 17 17 18 18 patches = [
-36
pkgs/development/python-modules/Flask-PyMongo/default.nix
··· 1 - { buildPythonPackage 2 - , fetchPypi 3 - , flask 4 - , pymongo 5 - , vcversioner 6 - , lib 7 - , pytest 8 - }: 9 - 10 - buildPythonPackage rec { 11 - pname = "flask-pymongo"; 12 - version = "2.3.0"; 13 - 14 - src = fetchPypi { 15 - pname = "Flask-PyMongo"; 16 - inherit version; 17 - sha256 = "051kwdk07y4xm4yawcjhn6bz8swxp9nanv7jj35mz2l0r0nv03k2"; 18 - }; 19 - 20 - nativeCheckInputs = [ pytest ]; 21 - 22 - checkPhase = '' 23 - pytest 24 - ''; 25 - 26 - # Tests seem to hang 27 - doCheck = false; 28 - 29 - propagatedBuildInputs = [ flask pymongo vcversioner ]; 30 - 31 - meta = { 32 - homepage = "https://flask-pymongo.readthedocs.org/"; 33 - description = "PyMongo support for Flask applications"; 34 - license = lib.licenses.bsd2; 35 - }; 36 - }
+7 -6
pkgs/development/python-modules/aiogram/default.nix
··· 5 5 , pytestCheckHook 6 6 , aiohttp 7 7 , aiohttp-socks 8 - , aioredis 9 8 , aiofiles 10 9 , aresponses 11 10 , babel 12 11 , certifi 13 12 , magic-filter 13 + , pycryptodomex 14 + , pytest-aiohttp 14 15 , pytest-asyncio 15 16 , pytest-lazy-fixture 16 17 , redis ··· 49 50 50 51 nativeCheckInputs = [ 51 52 aiohttp-socks 52 - aioredis 53 53 aresponses 54 + pycryptodomex 55 + pytest-aiohttp 54 56 pytest-asyncio 55 57 pytest-lazy-fixture 56 58 pytestCheckHook ··· 58 60 redis 59 61 ]; 60 62 61 - # import failures 62 - disabledTests = [ 63 - "test_aiohtt_server" 64 - "test_deep_linking" 63 + pytestFlagsArray = [ 64 + "-W" "ignore::pluggy.PluggyTeardownRaisedWarning" 65 + "-W" "ignore::pytest.PytestDeprecationWarning" 65 66 ]; 66 67 67 68 pythonImportsCheck = [ "aiogram" ];
+4 -6
pkgs/development/python-modules/aiomisc/default.nix
··· 22 22 23 23 buildPythonPackage rec { 24 24 pname = "aiomisc"; 25 - version = "17.3.41"; 26 - format = "pyproject"; 25 + version = "17.3.48"; 26 + pyproject = true; 27 27 28 28 disabled = pythonOlder "3.7"; 29 29 30 30 src = fetchPypi { 31 31 inherit pname version; 32 - hash = "sha256-thJBptiwH3jLQIYw7ucCv4xwaGPXMpE+dUwRvsyURtw="; 32 + hash = "sha256-AVavnUsx/hUrT1gspfMNxtmyDLUty+ocPqRZAun036I="; 33 33 }; 34 34 35 35 nativeBuildInputs = [ ··· 49 49 pytestCheckHook 50 50 raven 51 51 setproctitle 52 - ] ++ passthru.optional-dependencies.aiohttp 53 - ++ passthru.optional-dependencies.cron 54 - ++ passthru.optional-dependencies.uvloop; 52 + ] ++ lib.flatten (builtins.attrValues passthru.optional-dependencies); 55 53 56 54 passthru.optional-dependencies = { 57 55 aiohttp = [
+2 -2
pkgs/development/python-modules/bokeh/default.nix
··· 48 48 buildPythonPackage rec { 49 49 pname = "bokeh"; 50 50 # update together with panel which is not straightforward 51 - version = "3.3.3"; 51 + version = "3.3.4"; 52 52 format = "pyproject"; 53 53 54 54 disabled = pythonOlder "3.9"; 55 55 56 56 src = fetchPypi { 57 57 inherit pname version; 58 - hash = "sha256-bs5vACY/LSBDok6vnbdab4YO/Ioflt9mMYb+PrJpLdM="; 58 + hash = "sha256-c7eYLcK43xW/Zgzd3I04JegpGVxDgBWl0Jgk8acCg2g="; 59 59 }; 60 60 61 61 src_test = fetchFromGitHub {
+2 -2
pkgs/development/python-modules/btrees/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "btrees"; 14 - version = "5.1"; 14 + version = "5.2"; 15 15 format = "setuptools"; 16 16 17 17 disabled = pythonOlder "3.7"; ··· 19 19 src = fetchPypi { 20 20 pname = "BTrees"; 21 21 inherit version; 22 - hash = "sha256-raDzHpMloEeV0dJOAn7ZsrZdpNZqz/i4eVWzUo1/w2k="; 22 + hash = "sha256-bkoK8BpLvslan5Mbr1xUWXn0NBoTp2Yf+KSXr089g4E="; 23 23 }; 24 24 25 25 propagatedBuildInputs = [
+3 -3
pkgs/development/python-modules/bx-python/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "bx-python"; 14 - version = "0.10.0"; 14 + version = "0.11.0"; 15 15 format = "setuptools"; 16 16 17 - disabled = pythonOlder "3.7"; 17 + disabled = pythonOlder "3.8"; 18 18 19 19 src = fetchFromGitHub { 20 20 owner = "bxlab"; 21 21 repo = "bx-python"; 22 22 rev = "refs/tags/v${version}"; 23 - hash = "sha256-j2GKj2IGDBk4LBnISRx6ZW/lh5VSdQBasC0gCRj0Fiw="; 23 + hash = "sha256-evhxh/cCZFSK6EgMu7fC9/ZrPd2S1fZz89ItGYrHQck="; 24 24 }; 25 25 26 26 nativeBuildInputs = [
+2
pkgs/development/python-modules/certipy-ad/default.nix
··· 14 14 , requests 15 15 , requests-ntlm 16 16 , unicrypto 17 + , setuptools 17 18 }: 18 19 19 20 buildPythonPackage rec { ··· 49 50 requests 50 51 requests-ntlm 51 52 unicrypto 53 + setuptools 52 54 ]; 53 55 54 56 # Project has no tests
+2 -2
pkgs/development/python-modules/cf-xarray/default.nix
··· 19 19 20 20 buildPythonPackage rec { 21 21 pname = "cf-xarray"; 22 - version = "0.8.8"; 22 + version = "0.9.0"; 23 23 pyproject = true; 24 24 25 25 disabled = pythonOlder "3.9"; ··· 28 28 owner = "xarray-contrib"; 29 29 repo = "cf-xarray"; 30 30 rev = "refs/tags/v${version}"; 31 - hash = "sha256-memz0VDhxnSHOFaEhFYy/sqRifcu905EGovGduS0YBQ="; 31 + hash = "sha256-MlI5Wx0GOcXPRb/p0sPyAtbf84g3LQKVxCZLBfEIGLo="; 32 32 }; 33 33 34 34 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/cx-freeze/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "cx-freeze"; 14 - version = "6.15.13"; 14 + version = "6.15.15"; 15 15 pyproject = true; 16 16 17 17 disabled = pythonOlder "3.8"; ··· 19 19 src = fetchPypi { 20 20 pname = "cx_Freeze"; 21 21 inherit version; 22 - hash = "sha256-VeOgoVrga9dPJ0W9S3Ye/9Ff5yEOlP2DlDf0sDUh1yo="; 22 + hash = "sha256-dMCr5ulaBBXLT79VxiW8JQEml4P6wt0tcetNeOk/Ihk="; 23 23 }; 24 24 25 25 nativeBuildInputs = [
+3 -5
pkgs/development/python-modules/dash/default.nix
··· 19 19 , typing-extensions 20 20 , requests 21 21 , retrying 22 - , ansi2html 23 22 , nest-asyncio 24 23 25 24 , celery ··· 37 36 38 37 buildPythonPackage rec { 39 38 pname = "dash"; 40 - version = "2.14.2"; 39 + version = "2.15.0"; 41 40 pyproject = true; 42 41 43 42 disabled = pythonOlder "3.6"; ··· 45 44 src = fetchFromGitHub { 46 45 owner = "plotly"; 47 46 repo = "dash"; 48 - rev = "v${version}"; 49 - hash = "sha256-EFEsFgd3VbzlIUiz1fBIsKHywgWrL74taDFx0yIM/Ks="; 47 + rev = "refs/tags/v${version}"; 48 + hash = "sha256-38BOw/CrauT/usVWCI735J0zRf9wzScUgbfGTy5B7ng="; 50 49 }; 51 50 52 51 nativeBuildInputs = [ ··· 90 89 typing-extensions 91 90 requests 92 91 retrying 93 - ansi2html 94 92 nest-asyncio 95 93 ]; 96 94
+2 -2
pkgs/development/python-modules/deepl/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "deepl"; 11 - version = "1.16.1"; 11 + version = "1.17.0"; 12 12 format = "pyproject"; 13 13 14 14 src = fetchPypi { 15 15 inherit pname version; 16 - hash = "sha256-s01KhkTJ5ip6nCSs/oCgdxe9Cjsr53tjOhDV1P50jc0="; 16 + hash = "sha256-IwBKgkfXXYAgat7E4pAS5f9UNOmY9yRj4ZP85wSt4cs="; 17 17 }; 18 18 19 19 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/django-debug-toolbar/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "django-debug-toolbar"; 15 - version = "4.2"; 15 + version = "4.3"; 16 16 format = "pyproject"; 17 17 18 18 disabled = pythonOlder "3.8"; ··· 21 21 owner = "jazzband"; 22 22 repo = pname; 23 23 rev = "refs/tags/${version}"; 24 - hash = "sha256-hPO2q3V69kpyahav4cgUHz/3WLxXnZYCyWGetyNS+2Q="; 24 + hash = "sha256-8rwEM+YSO9TtkC1UWS4JrzFH+TlGOHzL+WmxNwMJIWQ="; 25 25 }; 26 26 27 27 nativeBuildInputs = [
+3 -3
pkgs/development/python-modules/django-model-utils/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "django-model-utils"; 15 - version = "4.3.1"; 15 + version = "4.4.0"; 16 16 format = "setuptools"; 17 17 18 - disabled = pythonOlder "3.6"; 18 + disabled = pythonOlder "3.8"; 19 19 20 20 src = fetchFromGitHub { 21 21 owner = "jazzband"; 22 22 repo = "django-model-utils"; 23 23 rev = "refs/tags/${version}"; 24 - hash = "sha256-p3/JO6wNwZPYX7MIgMj/0caHt5s+uL51Sxa28/VITxo="; 24 + hash = "sha256-/9gLovZGUwdoz3o3LZBfQ7iWr95cpTWq2YqFKoQC9kY="; 25 25 }; 26 26 27 27 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/django-treebeard/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "django-treebeard"; 12 - version = "4.7"; 12 + version = "4.7.1"; 13 13 format = "setuptools"; 14 14 15 15 disabled = pythonOlder "3.8"; 16 16 17 17 src = fetchPypi { 18 18 inherit pname version; 19 - hash = "sha256-x1Gj+SQVjCiP6omvwlpxUZefrwG/Ef3HvjuFgJnfpW0="; 19 + hash = "sha256-hG5GKQS0NxVfduBJB7pOSEgHFoVfiLiY30Eivc+9bpg="; 20 20 }; 21 21 22 22 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/dogpile-cache/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "dogpile-cache"; 15 - version = "1.3.0"; 15 + version = "1.3.2"; 16 16 format = "pyproject"; 17 17 18 18 disabled = pythonOlder "3.6"; ··· 20 20 src = fetchPypi { 21 21 pname = "dogpile.cache"; 22 22 inherit version; 23 - hash = "sha256-Cjh/GTLAce6P2XHS/1H4q6EQbFWUOaUbjHSiB/QOIV0="; 23 + hash = "sha256-T3HcAzOtNRycb3BPW6Kje/Ucbu0EN9Gt9W4HWVmv5js="; 24 24 }; 25 25 26 26 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/dvc-studio-client/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "dvc-studio-client"; 14 - version = "0.18.0"; 14 + version = "0.20.0"; 15 15 format = "pyproject"; 16 16 17 17 disabled = pythonOlder "3.8"; ··· 20 20 owner = "iterative"; 21 21 repo = pname; 22 22 rev = "refs/tags/${version}"; 23 - hash = "sha256-ZgjNshF5UFOY5TewNMlJDOajjI1Bfd/a4v7HrAKwaMw="; 23 + hash = "sha256-JLrsbgifoUnN1Mwml9tO3/SkA6miE14AGjxrFwEcRks="; 24 24 }; 25 25 26 26 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/etils/default.nix
··· 28 28 29 29 buildPythonPackage rec { 30 30 pname = "etils"; 31 - version = "1.6.0"; 31 + version = "1.7.0"; 32 32 pyproject = true; 33 33 34 34 disabled = pythonOlder "3.10"; 35 35 36 36 src = fetchPypi { 37 37 inherit pname version; 38 - hash = "sha256-xjX70Cp5/tStdoJdMTBrWB0itAZxch2qi8J5z2Mz5Io="; 38 + hash = "sha256-l7aP0l4YVoMhUobvOlTjgZm2JF9f6L5r7cEYm+QlY1A="; 39 39 }; 40 40 41 41 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/fastai/default.nix
··· 18 18 19 19 buildPythonPackage rec { 20 20 pname = "fastai"; 21 - version = "2.7.13"; 21 + version = "2.7.14"; 22 22 format = "setuptools"; 23 23 24 24 disabled = pythonOlder "3.7"; 25 25 26 26 src = fetchPypi { 27 27 inherit pname version; 28 - hash = "sha256-q1KBBAAKrTzq6USRwBjvT23mXpjQT2gjBsxuZ4w54rY="; 28 + hash = "sha256-QiVyYojI/xs7wYl3umhky0j+xzptNS7Fv+fLMRy/4jc="; 29 29 }; 30 30 31 31 propagatedBuildInputs = [
+49
pkgs/development/python-modules/flask-pymongo/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , setuptools 5 + , vcversioner 6 + , flask 7 + , pymongo 8 + , six 9 + , pytestCheckHook 10 + }: 11 + 12 + buildPythonPackage rec { 13 + pname = "flask-pymongo"; 14 + version = "2.3.0"; 15 + pyproject = true; 16 + 17 + src = fetchPypi { 18 + pname = "Flask-PyMongo"; 19 + inherit version; 20 + hash = "sha256-Yg6wLciAil/LkPJsq2y6nWv0l7FQMq48qZ34A2bjMxQ="; 21 + }; 22 + 23 + nativeBuildInputs = [ 24 + setuptools 25 + vcversioner 26 + ]; 27 + 28 + propagatedBuildInputs = [ 29 + flask 30 + pymongo 31 + six 32 + ]; 33 + 34 + pythonImportsCheck = [ "flask_pymongo" ]; 35 + 36 + nativeCheckInputs = [ 37 + pytestCheckHook 38 + ]; 39 + 40 + # requires running MongoDB 41 + doCheck = false; 42 + 43 + meta = { 44 + homepage = "https://github.com/dcrosta/flask-pymongo"; 45 + description = "PyMongo support for Flask applications"; 46 + license = lib.licenses.bsd2; 47 + maintainers = [ ]; 48 + }; 49 + }
+3 -3
pkgs/development/python-modules/greynoise/default.nix
··· 19 19 20 20 buildPythonPackage rec { 21 21 pname = "greynoise"; 22 - version = "2.0.1"; 22 + version = "2.1.0"; 23 23 format = "setuptools"; 24 24 25 25 disabled = pythonOlder "3.6"; ··· 27 27 src = fetchFromGitHub { 28 28 owner = "GreyNoise-Intelligence"; 29 29 repo = "pygreynoise"; 30 - rev = "v${version}"; 31 - hash = "sha256-zevom7JqXnZuotXfGtfPOmQNh32dANS4Uc6tHUuq08s="; 30 + rev = "refs/tags/v${version}"; 31 + hash = "sha256-bMQfGkCjMBimNaYzSi78GaLiDiLdmxMB8RfFCVTxD5U="; 32 32 }; 33 33 34 34 propagatedBuildInputs = [
+11
pkgs/development/python-modules/hahomematic/default.nix
··· 2 2 , aiohttp 3 3 , buildPythonPackage 4 4 , fetchFromGitHub 5 + , fetchpatch 5 6 , freezegun 6 7 , orjson 7 8 , pydevccu ··· 29 30 rev = "refs/tags/${version}"; 30 31 hash = "sha256-zSGzdj51StlLMmFZzprQUn6Ry9ahJPUq/Z9hVlKn8oA="; 31 32 }; 33 + 34 + patches = [ 35 + # Update pydevccu, extend ruff usage 36 + # https://github.com/danielperna84/hahomematic/pull/1454 37 + (fetchpatch { 38 + url = "https://github.com/danielperna84/hahomematic/commit/81a9a1c9291e2271ac0b995e7dd4725cfe99c7fe.patch"; 39 + includes = [ "tests/test_central_pydevccu.py" ]; 40 + hash = "sha256-l/wNK0/nOZHyrFp+in3ozmMyN5ifo514esGPJVZlb1g="; 41 + }) 42 + ]; 32 43 33 44 __darwinAllowLocalNetworking = true; 34 45
+2 -2
pkgs/development/python-modules/holoviews/default.nix
··· 17 17 18 18 buildPythonPackage rec { 19 19 pname = "holoviews"; 20 - version = "1.18.1"; 20 + version = "1.18.3"; 21 21 format = "setuptools"; 22 22 23 23 disabled = pythonOlder "3.7"; 24 24 25 25 src = fetchPypi { 26 26 inherit pname version; 27 - hash = "sha256-gFxzU65S6XdT5/BmiwUaCGQQ4tLBPI/ilOu0zdArIyQ="; 27 + hash = "sha256-V44w6J1ydU+XqD6+CBmP7I6HzH5JslufMew5P5OcpQA="; 28 28 }; 29 29 30 30 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/huggingface-hub/default.nix
··· 14 14 15 15 buildPythonPackage rec { 16 16 pname = "huggingface-hub"; 17 - version = "0.21.3"; 17 + version = "0.21.4"; 18 18 pyproject = true; 19 19 20 20 disabled = pythonOlder "3.8"; ··· 23 23 owner = "huggingface"; 24 24 repo = "huggingface_hub"; 25 25 rev = "refs/tags/v${version}"; 26 - hash = "sha256-DtKb/mR01vifclDalZiZV4/A4XpTKBcT9bCiLZkRCZY="; 26 + hash = "sha256-SN0FDOuXvgDqxpK4RRRXQDTPG5/BV3DJsiEq2q5WvsY="; 27 27 }; 28 28 29 29 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/meshio/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "meshio"; 15 - version = "5.3.4"; 15 + version = "5.3.5"; 16 16 format = "pyproject"; 17 17 18 18 src = fetchPypi { 19 19 inherit pname version; 20 - hash = "sha256-4kBpLX/yecErE8bl17QDYpqGrStE6SMJWLPwDB7DafA="; 20 + hash = "sha256-8h8Bq9nym6BuoRkwSz055hBCHP6Tud0jNig0kZ+HWG0="; 21 21 }; 22 22 23 23 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/mitmproxy/default.nix
··· 45 45 46 46 buildPythonPackage rec { 47 47 pname = "mitmproxy"; 48 - version = "10.2.2"; 48 + version = "10.2.3"; 49 49 pyproject = true; 50 50 51 51 disabled = pythonOlder "3.9"; ··· 54 54 owner = "mitmproxy"; 55 55 repo = "mitmproxy"; 56 56 rev = "refs/tags/${version}"; 57 - hash = "sha256-oxhpaFW++on3eRXm0anXZDRo6g/X5IflTcZkFF8Kcps="; 57 + hash = "sha256-hlZ5d4J3SDQp80C8lhwZkms/rc0uj8LslRmBqB5eIEw="; 58 58 }; 59 59 60 60 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/mysqlclient/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "mysqlclient"; 10 - version = "2.2.3"; 10 + version = "2.2.4"; 11 11 format = "setuptools"; 12 12 13 13 nativeBuildInputs = [ ··· 23 23 24 24 src = fetchPypi { 25 25 inherit pname version; 26 - hash = "sha256-7lFlbjb8WpKSC4B+6Lnjc+Ow4mfInNyV1zsdvkaGNjE="; 26 + hash = "sha256-M7yfs0ZOfXwQser3M2xf+PKj07iLq0MhFq0kkL6zv0E="; 27 27 }; 28 28 29 29 meta = with lib; {
+3 -3
pkgs/development/python-modules/nilearn/default.nix
··· 17 17 18 18 buildPythonPackage rec { 19 19 pname = "nilearn"; 20 - version = "0.10.2"; 20 + version = "0.10.3"; 21 21 pyproject = true; 22 22 23 - disabled = pythonOlder "3.7"; 23 + disabled = pythonOlder "3.8"; 24 24 25 25 src = fetchPypi { 26 26 inherit pname version; 27 - hash = "sha256-A+9Npy0a6HsuPyi3cdx+BUZKoXliblfDAFlWJahlQnM="; 27 + hash = "sha256-d4GTMTFMTKXBXAdjT2n4Vfr9+a3QUbGILjpgCtUnV9g="; 28 28 }; 29 29 30 30 nativeBuildInputs = [ hatch-vcs ];
+39
pkgs/development/python-modules/osc-diagram/default.nix
··· 1 + { 2 + lib 3 + , buildPythonPackage 4 + , diagrams 5 + , fetchFromGitHub 6 + , osc-sdk-python 7 + , setuptools 8 + }: 9 + 10 + buildPythonPackage { 11 + pname = "osc-diagram"; 12 + version = "unstable-2023-08-07"; 13 + pyproject = true; 14 + 15 + src = fetchFromGitHub { 16 + owner = "outscale-mgo"; 17 + repo = "osc-diagram"; 18 + rev = "8531233b8a95da03aca9106064b91479197f888d"; 19 + hash = "sha256-2Iaar2twemw4xv1GGqHd3xiNCHrZLsZXtP7e9tNVpEU="; 20 + }; 21 + 22 + nativeBuildInputs = [ 23 + setuptools 24 + ]; 25 + 26 + propagatedBuildInputs = [ 27 + diagrams 28 + osc-sdk-python 29 + ]; 30 + 31 + pythonImportsCheck = [ "osc_diagram" ]; 32 + 33 + meta = with lib; { 34 + description = "Build Outscale cloud diagrams"; 35 + homepage = "https://github.com/outscale-mgo/osc-diagram"; 36 + license = licenses.free; 37 + maintainers = with maintainers; [ nicolas-goudry ]; 38 + }; 39 + }
+10 -5
pkgs/development/python-modules/osmnx/default.nix
··· 4 4 , folium 5 5 , gdal 6 6 , geopandas 7 + , hatchling 7 8 , matplotlib 8 9 , networkx 9 10 , numpy ··· 19 20 20 21 buildPythonPackage rec { 21 22 pname = "osmnx"; 22 - version = "1.3.0"; 23 - format = "setuptools"; 23 + version = "1.9.1"; 24 + pyproject = true; 24 25 25 26 disabled = pythonOlder "3.8"; 26 27 27 28 src = fetchFromGitHub { 28 29 owner = "gboeing"; 29 - repo = pname; 30 + repo = "osmnx"; 30 31 rev = "refs/tags/v${version}"; 31 - hash = "sha256-17duWrg48Qb4ojYYFX4HBpPLeVgHn1WV84KVATvBnzY="; 32 + hash = "sha256-od/0IuiK2CvrD0lfcTzkImK/5hcm6m61ULYzEtv/YeA="; 32 33 }; 34 + 35 + nativeBuildInputs = [ 36 + hatchling 37 + ]; 33 38 34 39 propagatedBuildInputs = [ 35 40 geopandas ··· 55 60 ]; 56 61 57 62 meta = with lib; { 58 - description = "A package to easily download, construct, project, visualize, and analyze complex street networks from OpenStreetMap with NetworkX."; 63 + description = "Package to easily download, construct, project, visualize, and analyze complex street networks from OpenStreetMap with NetworkX"; 59 64 homepage = "https://github.com/gboeing/osmnx"; 60 65 changelog = "https://github.com/gboeing/osmnx/blob/v${version}/CHANGELOG.md"; 61 66 license = licenses.mit;
+2 -2
pkgs/development/python-modules/peft/default.nix
··· 14 14 15 15 buildPythonPackage rec { 16 16 pname = "peft"; 17 - version = "0.7.1"; 17 + version = "0.9.0"; 18 18 format = "pyproject"; 19 19 20 20 disabled = pythonOlder "3.8"; ··· 23 23 owner = "huggingface"; 24 24 repo = pname; 25 25 rev = "refs/tags/v${version}"; 26 - hash = "sha256-sdv9rMj5Qh2/QtBVSxHMAP/Tk+ZyrHtNfX/4q8/Qw3A="; 26 + hash = "sha256-RdWCIR28OqmpA92/5OWA5sCCPQCAWpUzCZpkHvNMj6M="; 27 27 }; 28 28 29 29 nativeBuildInputs = [ setuptools ];
+2 -2
pkgs/development/python-modules/pontos/default.nix
··· 18 18 19 19 buildPythonPackage rec { 20 20 pname = "pontos"; 21 - version = "24.3.0"; 21 + version = "24.3.1"; 22 22 pyproject = true; 23 23 24 24 disabled = pythonOlder "3.9"; ··· 27 27 owner = "greenbone"; 28 28 repo = "pontos"; 29 29 rev = "refs/tags/v${version}"; 30 - hash = "sha256-FU0GQ+jpx3Th3397F4jJhiopaKHgdWMxy0bff2hfAa4="; 30 + hash = "sha256-EYfhbIFD2p6ZZ4i6NCA22LS6mAZoJCJSYlTmRExWgw4="; 31 31 }; 32 32 33 33 nativeBuildInputs = [
+3 -3
pkgs/development/python-modules/ppft/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "ppft"; 12 - version = "1.7.6.7"; 12 + version = "1.7.6.8"; 13 13 format = "setuptools"; 14 14 15 15 disabled = pythonOlder "3.7"; 16 16 17 17 src = fetchPypi { 18 18 inherit pname version; 19 - hash = "sha256-qzRDaBTi8YI481aI/YabJkGy0tjcoiuNJG9nAd/JVMg="; 19 + hash = "sha256-dqQpp9e3TE10P226g1HljWK2Qy7WXfn+IEeQFg2rmW0="; 20 20 }; 21 21 22 22 propagatedBuildInputs = [ ··· 39 39 meta = with lib; { 40 40 description = "Distributed and parallel Python"; 41 41 homepage = "https://ppft.readthedocs.io/"; 42 - changelog = "https://github.com/uqfoundation/ppft/releases/tag/ppft-${version}"; 42 + changelog = "https://github.com/uqfoundation/ppft/releases/tag/${version}"; 43 43 license = licenses.bsd3; 44 44 maintainers = with maintainers; [ ]; 45 45 };
+2 -2
pkgs/development/python-modules/py3status/default.nix
··· 24 24 25 25 buildPythonPackage rec { 26 26 pname = "py3status"; 27 - version = "3.55"; 27 + version = "3.56"; 28 28 pyproject = true; 29 29 30 30 src = fetchPypi { 31 31 inherit pname version; 32 - hash = "sha256-HGOHJQWEvTTL+GXVb8ZS8DlL9dHWuS0PioP1bZ32PhI="; 32 + hash = "sha256-dHc5t8QO4wtwFlLkiaSu5Ern/MsxNHZMd5aeqWdKwNo="; 33 33 }; 34 34 35 35 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/pyramid-jinja2/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "pyramid-jinja2"; 15 - version = "2.10"; 15 + version = "2.10.1"; 16 16 format = "setuptools"; 17 17 18 18 disabled = pythonOlder "3.7"; ··· 20 20 src = fetchPypi { 21 21 pname = "pyramid_jinja2"; 22 22 inherit version; 23 - hash = "sha256-8nEGnZ6ay6x622kSGQqEj2M49+V6+68+lSN/6DzI9NI="; 23 + hash = "sha256-jFCMs1wTX5UUnKI2EQ+ciHU0NXV0DRbFy3OlDvHCFnc="; 24 24 }; 25 25 26 26 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/pysim/default.nix
··· 5 5 , pytestCheckHook 6 6 , pytest-asyncio 7 7 , colorlog 8 - , smpp_pdu 8 + , smpp-pdu 9 9 , pyscard 10 10 , packaging 11 11 , gsm0338 ··· 53 53 pyserial 54 54 pytlv 55 55 pyyaml 56 - smpp_pdu 56 + smpp-pdu 57 57 termcolor 58 58 ]; 59 59
+2 -2
pkgs/development/python-modules/pytest-qt/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "pytest-qt"; 12 - version = "4.3.1"; 12 + version = "4.4.0"; 13 13 format = "setuptools"; 14 14 15 15 disabled = pythonOlder "3.8"; 16 16 17 17 src = fetchPypi { 18 18 inherit pname version; 19 - hash = "sha256-AlYEGveAgt/AjiLM+GCqqHjYApVX8D9L/CAH/CkbHmE="; 19 + hash = "sha256-dolhQqlApChTOQCNaSijbUvnSv7H5jRXfoQsnMXFaEQ="; 20 20 }; 21 21 22 22 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/python-utils/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "python-utils"; 14 - version = "3.8.1"; 14 + version = "3.8.2"; 15 15 format = "setuptools"; 16 16 17 17 disabled = pythonOlder "3.8"; ··· 20 20 owner = "WoLpH"; 21 21 repo = pname; 22 22 rev = "refs/tags/v${version}"; 23 - hash = "sha256-HoKdMDs67lsuVRb5d51wx6qyEjEM973yD6O6qMO+7MI="; 23 + hash = "sha256-2scWyj0Fz39Thu0T0+UirT+he6tPYKGsvmYzzpD+/ls="; 24 24 }; 25 25 26 26 postPatch = ''
+2 -2
pkgs/development/python-modules/pytorch-lightning/default.nix
··· 20 20 21 21 buildPythonPackage rec { 22 22 pname = "pytorch-lightning"; 23 - version = "2.1.3"; 23 + version = "2.2.1"; 24 24 format = "pyproject"; 25 25 26 26 src = fetchFromGitHub { 27 27 owner = "Lightning-AI"; 28 28 repo = "pytorch-lightning"; 29 29 rev = "refs/tags/${version}"; 30 - hash = "sha256-3ELx4ukYlmsWvzK+GxEXM/0xFPPcZZcMv566jOXfcMs="; 30 + hash = "sha256-H2gbVCvGKbeHZVlvz6SmKI8Gzw649DxcwYgfGcehsmg="; 31 31 }; 32 32 33 33 preConfigure = ''
+2 -2
pkgs/development/python-modules/rpy2/default.nix
··· 24 24 }: 25 25 26 26 buildPythonPackage rec { 27 - version = "3.5.14"; 27 + version = "3.5.15"; 28 28 format = "setuptools"; 29 29 pname = "rpy2"; 30 30 31 31 disabled = isPyPy; 32 32 src = fetchPypi { 33 33 inherit version pname; 34 - hash = "sha256-X0auMdNuEXvjZq1K4CSTwBWsa6WevjtM1yAAdTMvxIE="; 34 + hash = "sha256-RE+uSoTcfyM7cOqrCqgTmO4BR8ThrjjdRSTXedbyWys="; 35 35 }; 36 36 37 37 patches = [
+7 -2
pkgs/development/python-modules/sdkmanager/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchFromGitLab 4 4 , pythonOlder 5 + , pythonAtLeast 5 6 , argcomplete 6 7 , requests 8 + , looseversion 7 9 , gnupg 8 10 }: 9 11 10 12 buildPythonPackage rec { 11 13 pname = "sdkmanager"; 12 - version = "0.6.5"; 14 + version = "0.6.6"; 13 15 format = "setuptools"; 14 16 15 17 disabled = pythonOlder "3.5"; ··· 18 20 owner = "fdroid"; 19 21 repo = pname; 20 22 rev = version; 21 - hash = "sha256-EQ24OjQZr42C1PFtIXr4yFzYb/M4Tatqu8Zo+9dgtEE="; 23 + hash = "sha256-Vuht2gH9ivNG7PgG+XKtkdKoszkkoI91reQKg6D50xs="; 22 24 }; 23 25 24 26 propagatedBuildInputs = [ 25 27 argcomplete 26 28 requests 29 + ] ++ requests.optional-dependencies.socks 30 + ++ lib.optionals (pythonAtLeast "3.12") [ 31 + looseversion 27 32 ]; 28 33 29 34 postInstall = ''
+2 -2
pkgs/development/python-modules/snakemake-interface-storage-plugins/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "snakemake-interface-storage-plugins"; 14 - version = "3.1.0"; 14 + version = "3.1.1"; 15 15 format = "pyproject"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "snakemake"; 19 19 repo = pname; 20 20 rev = "refs/tags/v${version}"; 21 - hash = "sha256-S3+8u3U2o5FzUVSocR96zGbNL4Hof7yBqqSJIPdh3nQ="; 21 + hash = "sha256-5EWpfKpEATlEsw2VZGrGqS+WddVdtEKSgelBGud8kmI="; 22 22 }; 23 23 24 24 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/telepath/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "telepath"; 10 - version = "0.3"; 10 + version = "0.3.1"; 11 11 format = "setuptools"; 12 12 13 13 src = fetchFromGitHub { 14 14 repo = "telepath"; 15 15 owner = "wagtail"; 16 16 rev = "v${version}"; 17 - sha256 = "sha256-kfEAYCXbK0HTf1Gut/APkpw2krMa6C6mU/dJ0dsqzS0="; 17 + hash = "sha256-MS4Q41WVSrjFmFjv4fztyf0U2+5WkNU79aPEKv/CeUQ="; 18 18 }; 19 19 20 20 checkInputs = [ django ];
+2 -2
pkgs/development/python-modules/troposphere/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "troposphere"; 13 - version = "4.5.3"; 13 + version = "4.6.0"; 14 14 format = "setuptools"; 15 15 16 16 disabled = pythonOlder "3.7"; ··· 19 19 owner = "cloudtools"; 20 20 repo = pname; 21 21 rev = "refs/tags/${version}"; 22 - hash = "sha256-Kk4PvkUC1JB2MNyarq/cHhOOc+2Id7HlR/hSt/5JjlI="; 22 + hash = "sha256-DxLgAEuIfO8K42DbkOaPjE+MS6/WKnybDsszuCXwufM="; 23 23 }; 24 24 25 25 propagatedBuildInputs = [
+3 -3
pkgs/development/python-modules/tsfresh/default.nix
··· 26 26 27 27 buildPythonPackage rec { 28 28 pname = "tsfresh"; 29 - version = "0.20.1"; 29 + version = "0.20.2"; 30 30 pyproject = true; 31 31 32 32 disabled = pythonOlder "3.7"; ··· 34 34 src = fetchFromGitHub { 35 35 owner = "blue-yonder"; 36 36 repo = "tsfresh"; 37 - rev = "v${version}"; 38 - hash = "sha256-JmdP/6aTnuYsBRiRq9zZng3xNYhOdr9V8bp1trAv508="; 37 + rev = "refs/tags/v${version}"; 38 + hash = "sha256-UTra+RAQnrv61NQ86xGYrUVYiycUAWhN/45F6/0ZvPI="; 39 39 }; 40 40 41 41 patches = [
+2 -2
pkgs/development/python-modules/types-pillow/default.nix
··· 5 5 6 6 buildPythonPackage rec { 7 7 pname = "types-pillow"; 8 - version = "10.1.0.20240106"; 8 + version = "10.2.0.20240206"; 9 9 format = "setuptools"; 10 10 11 11 src = fetchPypi { 12 12 inherit version; 13 13 pname = "types-Pillow"; 14 - hash = "sha256-0sLtfs5rC+y02vFQ4jdMj02Xf+bv7GJe+VLiYldhkOc="; 14 + hash = "sha256-8N5RB/+DYv/bvVPsiWICrJBearIq54S0a82tFg6hQ7k="; 15 15 }; 16 16 17 17 # Modules doesn't have tests
+2 -2
pkgs/development/python-modules/virt-firmware/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "virt-firmware"; 12 - version = "24.1.1"; 12 + version = "24.2"; 13 13 14 14 pyproject = true; 15 15 16 16 src = fetchPypi { 17 17 inherit pname version; 18 - hash = "sha256-dUDfDQypP8hCo4eZcnUsOovgMksSX7hxMQI8mliCx2c="; 18 + hash = "sha256-bvk3MIgPY6DJ+y0eKQHLffClNjPAEP7AJ15rFObiMig="; 19 19 }; 20 20 21 21 pythonImportsCheck = [ "virt.firmware.efi" ];
+3 -3
pkgs/development/python-modules/weasyprint/default.nix
··· 24 24 25 25 buildPythonPackage rec { 26 26 pname = "weasyprint"; 27 - version = "60.2"; 27 + version = "61.1"; 28 28 format = "pyproject"; 29 29 30 - disabled = pythonOlder "3.7"; 30 + disabled = pythonOlder "3.8"; 31 31 32 32 src = fetchPypi { 33 33 inherit version; 34 34 pname = "weasyprint"; 35 - hash = "sha256-DAzdYXp4aZJiuAAm5n+haS44As+pZjlUNu6vb3h90SY="; 35 + hash = "sha256-fLyCTcQCbYKpc2Jkd1X4N90VeZlJY5zIpCjdM9OFAJo="; 36 36 }; 37 37 38 38 patches = [
+10 -4
pkgs/development/python-modules/xattr/default.nix
··· 3 3 , fetchPypi 4 4 , python 5 5 , cffi 6 + , setuptools 6 7 , pythonOlder 7 8 }: 8 9 9 10 buildPythonPackage rec { 10 11 pname = "xattr"; 11 - version = "1.0.0"; 12 - format = "setuptools"; 12 + version = "1.1.0"; 13 + pyproject = true; 13 14 14 15 disabled = pythonOlder "3.8"; 15 16 16 17 src = fetchPypi { 17 18 inherit pname version; 18 - hash = "sha256-osfLLvRBv2eeJAtl4gXwij7jFeGQ/qVnPmD9aBLmNKU="; 19 + hash = "sha256-/svzsFBD7TSHooGQ3sPkxNh5svzsDjC6/Y7F1LYENjA="; 19 20 }; 20 21 21 - propagatedBuildInputs = [ 22 + nativeBuildInputs = [ 22 23 cffi 24 + setuptools 23 25 ]; 24 26 25 27 # https://github.com/xattr/xattr/issues/43 26 28 doCheck = false; 29 + 30 + propagatedBuildInputs = [ 31 + cffi 32 + ]; 27 33 28 34 postBuild = '' 29 35 ${python.pythonOnBuildForHost.interpreter} -m compileall -f xattr
+2 -2
pkgs/development/python-modules/xml2rfc/default.nix
··· 27 27 28 28 buildPythonPackage rec { 29 29 pname = "xml2rfc"; 30 - version = "3.19.1"; 30 + version = "3.20.0"; 31 31 format = "setuptools"; 32 32 33 33 disabled = pythonOlder "3.8"; ··· 36 36 owner = "ietf-tools"; 37 37 repo = "xml2rfc"; 38 38 rev = "refs/tags/v${version}"; 39 - hash = "sha256-kKbetvJDzvsUUWEYgFb7G86v9/Iiy49Wyl25p/zzBHo="; 39 + hash = "sha256-w4wmjY+yA5Nc1roAXBRTqQxqaSI1vzdMhK9hGkbv7Rk="; 40 40 }; 41 41 42 42 postPatch = ''
+3 -3
pkgs/development/tools/dump_syms/default.nix
··· 16 16 17 17 let 18 18 pname = "dump_syms"; 19 - version = "2.2.2"; 19 + version = "2.3.0"; 20 20 in 21 21 rustPlatform.buildRustPackage { 22 22 inherit pname version; ··· 25 25 owner = "mozilla"; 26 26 repo = pname; 27 27 rev = "v${version}"; 28 - hash = "sha256-8kyicTtY7h1CDM4UGOHsppRRTraU6JLe24MKtoduiz0="; 28 + hash = "sha256-F+yXFT6PsHpluxyF+aUiuLTLqlsjfQ5tk/JjcHgJkQ8="; 29 29 }; 30 30 31 - cargoSha256 = "sha256-5WiGckh/jq7AHH3JWZL8tIsj1Gqr8iLX7IyppKsW96k="; 31 + cargoSha256 = "sha256-I5CfrLWVTUwOtZrje3eATFen5u9MEH79Rk30ZNhaG98="; 32 32 33 33 # Workaround for https://github.com/nixos/nixpkgs/issues/166205 34 34 env = lib.optionalAttrs stdenv.cc.isClang {
+3 -3
pkgs/development/tools/language-servers/vhdl-ls/default.nix
··· 5 5 6 6 rustPlatform.buildRustPackage rec { 7 7 pname = "vhdl-ls"; 8 - version = "0.78.0"; 8 + version = "0.78.1"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "VHDL-LS"; 12 12 repo = "rust_hdl"; 13 13 rev = "v${version}"; 14 - hash = "sha256-R1ACYsN2GxpWkUd8kocbv3tnBOiu7PzjtSG8hWbCYfE="; 14 + hash = "sha256-LY9lFZe8MFuDwtNbi9D4JiYY+xKb5bGBHGnH951oRiQ="; 15 15 }; 16 16 17 - cargoHash = "sha256-xt9v0QvHgej+YTIKGWfsEmLNy9RZp/mahPjKz3QWPrk="; 17 + cargoHash = "sha256-LcMAau6fJimcyf4Iru5AvrjsSV3nfLPvNqXtyzVHWgc="; 18 18 19 19 postPatch = '' 20 20 substituteInPlace vhdl_lang/src/config.rs \
+2 -2
pkgs/development/tools/minizinc/default.nix
··· 2 2 3 3 stdenv.mkDerivation (finalAttrs: { 4 4 pname = "minizinc"; 5 - version = "2.8.2"; 5 + version = "2.8.3"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "MiniZinc"; 9 9 repo = "libminizinc"; 10 10 rev = finalAttrs.version; 11 - sha256 = "sha256-p714jUegeaN7o9Ytjpx/9zkcodbyVcSKiJe3VQ0mIys="; 11 + sha256 = "sha256-/1rMrmwx8oYuiIoaS7YjDOey4jBCTJgzrPv6U0Vid8A="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ bison cmake flex jq ];
+3 -3
pkgs/servers/home-assistant/custom-lovelace-modules/mushroom/default.nix
··· 5 5 6 6 buildNpmPackage rec { 7 7 pname = "mushroom"; 8 - version = "3.5.0"; 8 + version = "3.5.2"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "piitaya"; 12 12 repo = "lovelace-mushroom"; 13 13 rev = "v${version}"; 14 - hash = "sha256-qLJQ4Mrngd6I3Y5iS4eZGPxla14pQaTnCNH+m69d+yY="; 14 + hash = "sha256-mVodC7IEk1Y9ppMdDRXK/8cxQkW+uaC2RzQFnMwNvTQ="; 15 15 }; 16 16 17 - npmDepsHash = "sha256-qO3FC+ONfAbEGPD76RBtJjoZ7vC33Bg3tGl4N7AZPzo="; 17 + npmDepsHash = "sha256-g8A8zm7GyASOpuoxuOYGcyUVa6RBc9LGoYLqcFcT64c="; 18 18 19 19 installPhase = '' 20 20 runHook preInstall
+3 -3
pkgs/tools/graphics/svg2pdf/default.nix
··· 5 5 6 6 rustPlatform.buildRustPackage rec { 7 7 pname = "svg2pdf"; 8 - version = "0.9.1"; 8 + version = "0.10.0"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "typst"; 12 12 repo = "svg2pdf"; 13 13 rev = "v${version}"; 14 - hash = "sha256-mWj9zWxqcJ+5VFYSaeNLxClWdOGd34JboZBwT8E75Ew="; 14 + hash = "sha256-4gCEm/E7lzd6pLyJnEEswtpZ45cCxAaHMxOWMY0I2Y8="; 15 15 }; 16 16 17 - cargoHash = "sha256-zP448dFnkoPca/GJA2kT5ht1fVGkWN0XdaKEePJaloQ="; 17 + cargoHash = "sha256-PBnOGXV9Q9BMxhzx/xs2hXsy0wzcCvrspee6M4WxqX0="; 18 18 19 19 cargoBuildFlags = [ 20 20 "-p=svg2pdf-cli"
+24
pkgs/tools/misc/bash_unit/default.nix
··· 13 13 sha256 = "sha256-sYs7b6I1VhO2TLLhMFuaV9AtLoavcoKvCRYfVNGAg20="; 14 14 }; 15 15 16 + patchPhase = '' 17 + runHook prePatch 18 + 19 + patchShebangs bash_unit 20 + 21 + for t in tests/test_*; do 22 + chmod +x "$t" # make test file visible to `patchShebangs` 23 + patchShebangs "$t" 24 + chmod -x "$t" 25 + done 26 + 27 + runHook postPatch 28 + ''; 29 + 30 + doCheck = true; 31 + 32 + checkPhase = '' 33 + runHook preCheck 34 + 35 + ./bash_unit ./tests/test_core.sh 36 + 37 + runHook postCheck 38 + ''; 39 + 16 40 installPhase = '' 17 41 mkdir -p $out/bin 18 42 cp bash_unit $out/bin/
+2 -2
pkgs/tools/misc/esphome/default.nix
··· 19 19 in 20 20 python.pkgs.buildPythonApplication rec { 21 21 pname = "esphome"; 22 - version = "2024.2.1"; 22 + version = "2024.2.2"; 23 23 pyproject = true; 24 24 25 25 src = fetchFromGitHub { 26 26 owner = pname; 27 27 repo = pname; 28 28 rev = "refs/tags/${version}"; 29 - hash = "sha256-MAyK8Wx/d7lJKEueeL7GhxxKu8EygwjylPGXB2Y3bWM="; 29 + hash = "sha256-SIp4hrllPgWNnrflUStSIcUB00eGU5pHoYveBPg7CVw="; 30 30 }; 31 31 32 32 nativeBuildInputs = with python.pkgs; [
+9 -6
pkgs/tools/networking/dnsproxy/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "dnsproxy"; 5 - version = "0.54.0"; 5 + version = "0.65.2"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "AdguardTeam"; 9 - repo = pname; 9 + repo = "dnsproxy"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-wA88v8zF5sq3NQwKh8g4k/COviuaegGn6bBTzBMcdGM="; 11 + hash = "sha256-+82dYFk5mN1p17++2Yg3GCLe8Ud4KbZIGgdfaTepEBw="; 12 12 }; 13 13 14 - vendorHash = null; 14 + vendorHash = "sha256-kBf32hXZ5fpu2ME30t5FmYwGMnD6Jp6owGnjUL9CViY="; 15 + 16 + ldflags = [ "-s" "-w" "-X" "github.com/AdguardTeam/dnsproxy/internal/version.version=${version}" ]; 15 17 16 - ldflags = [ "-s" "-w" "-X" "main.VersionString=${version}" ]; 18 + # Development tool dependencies; not part of the main project 19 + excludedPackages = [ "internal/tools" ]; 17 20 18 21 doCheck = false; 19 22 ··· 21 24 description = "Simple DNS proxy with DoH, DoT, and DNSCrypt support"; 22 25 homepage = "https://github.com/AdguardTeam/dnsproxy"; 23 26 license = licenses.asl20; 24 - maintainers = with maintainers; [ contrun ]; 27 + maintainers = with maintainers; [ contrun diogotcorreia ]; 25 28 mainProgram = "dnsproxy"; 26 29 }; 27 30 }
+3 -3
pkgs/tools/networking/frp/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "frp"; 5 - version = "0.53.2"; 5 + version = "0.54.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "fatedier"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-/z/pZgB4PepJXXjOBuuq1wHXI2pn/KCxY9cdfANdWGQ="; 11 + hash = "sha256-K/Yyu8J1PT+rs/lLxhOXxMQ4winZF1zfD2BOBepzXeM="; 12 12 }; 13 13 14 - vendorHash = "sha256-mcgHbwdqcIu4BceuQg+Es0dsIpWG0bsIpd056IOxuiY="; 14 + vendorHash = "sha256-jj0ViYBFxexgoBPzjDC/9i7lH0/ZdEH2u8offndIKSw="; 15 15 16 16 doCheck = false; 17 17
+3 -3
pkgs/tools/networking/minio-client/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "minio-client"; 5 - version = "2024-02-24T01-33-20Z"; 5 + version = "2024-03-07T00-31-49Z"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "minio"; 9 9 repo = "mc"; 10 10 rev = "RELEASE.${version}"; 11 - sha256 = "sha256-WWQwrrsYyJ96rVORSmxqid2bhYvkOREpP03uQ/Bbj9Q="; 11 + sha256 = "sha256-vrK3CjZWJp8Qs1GiTs3rcOYyrkBDVGspSLL63u9r/8Q="; 12 12 }; 13 13 14 - vendorHash = "sha256-yteWhm9GxNIiYhuCxrlLqP2OzZ1iv1UmpEj8GH8LIWY="; 14 + vendorHash = "sha256-T0NOik/KQ2j666BeHPuEyU2ngne2K+NIF8AVAoMXsaM="; 15 15 16 16 subPackages = [ "." ]; 17 17
+7 -1
pkgs/tools/system/wslu/default.nix pkgs/by-name/ws/wslu/package.nix
··· 1 1 { lib 2 2 , stdenv 3 3 , fetchFromGitHub 4 + , copyDesktopItems 4 5 }: 5 6 6 7 stdenv.mkDerivation rec { ··· 9 10 10 11 src = fetchFromGitHub { 11 12 owner = "wslutilities"; 12 - repo = pname; 13 + repo = "wslu"; 13 14 rev = "v${version}"; 14 15 hash = "sha256-yhugh836BoSISbTu19ubLOrz5X31Opu5QtCR0DXrbWc="; 15 16 }; 16 17 18 + nativeBuildInputs = [ copyDesktopItems ]; 19 + 17 20 patches = [ 18 21 ./fallback-conf-nix-store.diff 22 + ./fix-desktop-item.patch 19 23 ]; 20 24 21 25 postPatch = '' ··· 27 31 "DESTDIR=$(out)" 28 32 "PREFIX=" 29 33 ]; 34 + 35 + desktopItems = [ "src/etc/wslview.desktop" ]; 30 36 31 37 meta = with lib; { 32 38 description = "A collection of utilities for Windows Subsystem for Linux";
pkgs/tools/system/wslu/fallback-conf-nix-store.diff pkgs/by-name/ws/wslu/fallback-conf-nix-store.diff
+6 -2
pkgs/tools/text/ripgrep-all/default.nix
··· 9 9 , ripgrep 10 10 , Security 11 11 , zip 12 + , fzf 12 13 }: 13 14 14 15 let ··· 18 19 poppler_utils 19 20 ripgrep 20 21 zip 22 + fzf 21 23 ]; 22 24 in rustPlatform.buildRustPackage rec { 23 25 pname = "ripgrep-all"; ··· 43 45 nativeCheckInputs = path; 44 46 45 47 postInstall = '' 46 - wrapProgram $out/bin/rga \ 47 - --prefix PATH ":" "${lib.makeBinPath path}" 48 + for bin in $out/bin/*; do 49 + wrapProgram $bin \ 50 + --prefix PATH ":" "${lib.makeBinPath path}" 51 + done 48 52 ''; 49 53 50 54 meta = with lib; {
+1
pkgs/top-level/aliases.nix
··· 1098 1098 swift-im = throw "swift-im has been removed as it is unmaintained and depends on deprecated Python 2 / Qt WebKit"; # Added 2023-01-06 1099 1099 swtpm-tpm2 = swtpm; # Added 2021-02-26 1100 1100 syncthing-cli = syncthing; # Added 2021-04-06 1101 + syncthingtray-qt6 = syncthingtray; # Added 2024-03-06 1101 1102 1102 1103 ### T ### 1103 1104
+5 -8
pkgs/top-level/all-packages.nix
··· 14847 14847 14848 14848 woeusb-ng = callPackage ../tools/misc/woeusb-ng { }; 14849 14849 14850 - wslu = callPackage ../tools/system/wslu { }; 14851 - 14852 14850 chase = callPackage ../tools/system/chase { }; 14853 14851 14854 14852 wimlib = callPackage ../tools/archivers/wimlib { }; ··· 35238 35236 35239 35237 syncthing-tray = callPackage ../applications/misc/syncthing-tray { }; 35240 35238 35241 - syncthingtray = libsForQt5.callPackage ../applications/misc/syncthingtray { }; 35242 - syncthingtray-minimal = libsForQt5.callPackage ../applications/misc/syncthingtray { 35239 + syncthingtray = kdePackages.callPackage ../applications/misc/syncthingtray { 35240 + # renamed in KF5 -> KF6 35241 + plasma-framework = kdePackages.libplasma; 35242 + }; 35243 + syncthingtray-minimal = syncthingtray.override { 35243 35244 webviewSupport = false; 35244 35245 jsSupport = false; 35245 35246 kioPluginSupport = false; 35246 35247 plasmoidSupport = false; 35247 35248 systemdSupport = true; 35248 - }; 35249 - syncthingtray-qt6 = kdePackages.callPackage ../applications/misc/syncthingtray { 35250 - # renamed in KF5 -> KF6 35251 - plasma-framework = kdePackages.libplasma; 35252 35249 }; 35253 35250 35254 35251 synergy = libsForQt5.callPackage ../applications/misc/synergy {
+1
pkgs/top-level/python-aliases.nix
··· 470 470 ssh-mitm = throw "ssh-mitm was removed in favor of the top-level ssh-mitm"; # added 2023-05-09 471 471 smart_open = smart-open; # added 2021-03-14 472 472 smmap2 = throw "smmap2 has been deprecated, use smmap instead."; # added 2020-03-14 473 + smpp_pdu = smpp-pdu; # added 2024-03-05 473 474 somecomfort = throw "somecomfort was removed because Home Assistant switched to aiosomecomfort"; # added 2023-02-01 474 475 sorl_thumbnail = sorl-thumbnail; # added 2023-11-12 475 476 SPARQLWrapper = sparqlwrapper;
+4 -2
pkgs/top-level/python-packages.nix
··· 4215 4215 4216 4216 flask-principal = callPackage ../development/python-modules/flask-principal { }; 4217 4217 4218 - flask-pymongo = callPackage ../development/python-modules/Flask-PyMongo { }; 4218 + flask-pymongo = callPackage ../development/python-modules/flask-pymongo { }; 4219 4219 4220 4220 flask-restful = callPackage ../development/python-modules/flask-restful { }; 4221 4221 ··· 9046 9046 9047 9047 osc = callPackage ../development/python-modules/osc { }; 9048 9048 9049 + osc-diagram = callPackage ../development/python-modules/osc-diagram { }; 9050 + 9049 9051 osc-lib = callPackage ../development/python-modules/osc-lib { }; 9050 9052 9051 9053 osc-sdk-python = callPackage ../development/python-modules/osc-sdk-python { }; ··· 13676 13678 13677 13679 smpplib = callPackage ../development/python-modules/smpplib { }; 13678 13680 13679 - smpp_pdu = callPackage ../development/python-modules/smpp.pdu { }; 13681 + smpp-pdu = callPackage ../development/python-modules/smpp.pdu { }; 13680 13682 13681 13683 smtpdfix = callPackage ../development/python-modules/smtpdfix { }; 13682 13684