Merge staging-next into staging

authored by github-actions[bot] and committed by GitHub 81a57dc1 dd405cad

+3137 -1336
+2 -2
nixos/modules/programs/wayland/sway.nix
··· 119 119 extraPackages = mkOption { 120 120 type = with types; listOf package; 121 121 default = with pkgs; [ 122 - swaylock swayidle foot dmenu 122 + swaylock swayidle foot dmenu wmenu 123 123 ]; 124 124 defaultText = literalExpression '' 125 - with pkgs; [ swaylock swayidle foot dmenu ]; 125 + with pkgs; [ swaylock swayidle foot dmenu wmenu ]; 126 126 ''; 127 127 example = literalExpression '' 128 128 with pkgs; [
+3
nixos/modules/services/misc/paperless.nix
··· 307 307 Restart = "on-failure"; 308 308 }; 309 309 environment = env; 310 + # Allow the consumer to access the private /tmp directory of the server. 311 + # This is required to support consuming files via a local folder. 312 + unitConfig.JoinsNamespaceOf = "paperless-task-queue.service"; 310 313 }; 311 314 312 315 systemd.services.paperless-web = {
+2 -2
pkgs/applications/editors/emacs/elisp-packages/manual-packages.nix
··· 5 5 inherit (self) callPackage; 6 6 in 7 7 { 8 + inherit (pkgs) emacspeak; 9 + 8 10 acm = callPackage ./manual-packages/acm { }; 9 11 10 12 acm-terminal = callPackage ./manual-packages/acm-terminal { }; ··· 30 32 el-easydraw = callPackage ./manual-packages/el-easydraw { }; 31 33 32 34 elisp-ffi = callPackage ./manual-packages/elisp-ffi { }; 33 - 34 - emacspeak = callPackage ./manual-packages/emacspeak { }; 35 35 36 36 ess-R-object-popup = callPackage ./manual-packages/ess-R-object-popup { }; 37 37
+21 -14
pkgs/applications/editors/emacs/elisp-packages/manual-packages/emacspeak/default.nix pkgs/by-name/em/emacspeak/package.nix
··· 1 1 { lib 2 - , stdenv 2 + , emacs 3 + , espeak-ng 3 4 , fetchFromGitHub 4 5 , makeWrapper 5 - , emacs 6 + , stdenv 6 7 , tcl 7 8 , tclx 8 - , espeak-ng 9 9 }: 10 10 11 - stdenv.mkDerivation rec { 11 + stdenv.mkDerivation (finalAttrs: { 12 12 pname = "emacspeak"; 13 - version = "58.0"; 13 + version = "59.0"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "tvraman"; 17 - repo = pname; 18 - rev = version; 19 - hash= "sha256-5pWC17nvy3ZuG0bR//LqDVpKsH5hFSFf63Q33a1BfBk="; 17 + repo = "emacspeak"; 18 + rev = finalAttrs.version; 19 + hash = "sha256-npS/wlqI7nBde/2S/rzp79jdfYXIIhgsVs5VizxEDAQ="; 20 20 }; 21 21 22 22 nativeBuildInputs = [ 23 23 emacs 24 24 makeWrapper 25 25 ]; 26 + 26 27 buildInputs = [ 27 28 espeak-ng 28 29 tcl 29 30 tclx 30 31 ]; 31 32 33 + strictDeps = true; 34 + 32 35 preConfigure = '' 33 36 make config 34 37 ''; ··· 44 47 cp -a . "$d" 45 48 find "$d" \( -type d -or \( -type f -executable \) \) -execdir chmod 755 {} + 46 49 find "$d" -type f -not -executable -execdir chmod 644 {} + 47 - makeWrapper ${emacs}/bin/emacs $out/bin/emacspeak \ 50 + makeWrapper ${lib.getExe emacs} $out/bin/emacspeak \ 48 51 --set DTK_PROGRAM "${placeholder "out"}/share/emacs/site-lisp/emacspeak/servers/espeak" \ 49 52 --set TCLLIBPATH "${tclx}/lib" \ 50 53 --add-flags '-l "${placeholder "out"}/share/emacs/site-lisp/emacspeak/lisp/emacspeak-setup.elc"' 51 54 ''; 52 55 53 - meta = with lib; { 56 + meta = { 54 57 homepage = "https://github.com/tvraman/emacspeak/"; 55 58 description = "Emacs extension that provides spoken output"; 56 - license = licenses.gpl2Plus; 57 - maintainers = [ maintainers.AndersonTorres ]; 58 - platforms = platforms.linux; 59 + changelog = "https://github.com/tvraman/emacspeak/blob/${finalAttrs.src.rev}/etc/NEWS"; 60 + license = with lib.licenses; [ gpl2Plus ]; 61 + mainProgram = "emacspeak"; 62 + maintainers = with lib.maintainers; [ AndersonTorres ]; 63 + platforms = lib.platforms.linux; 64 + # Emacspeak requires a minimal Emacs version; let's use the broken flag 65 + broken = lib.versionOlder (lib.getVersion emacs) "29.1"; 59 66 }; 60 - } 67 + })
+409 -409
pkgs/applications/networking/browsers/firefox-bin/beta_sources.nix
··· 1 1 { 2 - version = "124.0b2"; 2 + version = "124.0b5"; 3 3 sources = [ 4 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/ach/firefox-124.0b2.tar.bz2"; 4 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/ach/firefox-124.0b5.tar.bz2"; 5 5 locale = "ach"; 6 6 arch = "linux-x86_64"; 7 - sha256 = "363c9f44bc94db125f38d5f64cc048db997324da3f6435f2584d2d88285b8bdf"; 7 + sha256 = "7d2bbc3802ad238953c9423f8023f9a1177712f56379fc69a180fd39f53388d9"; 8 8 } 9 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/af/firefox-124.0b2.tar.bz2"; 9 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/af/firefox-124.0b5.tar.bz2"; 10 10 locale = "af"; 11 11 arch = "linux-x86_64"; 12 - sha256 = "7e8b0874d35b0c42fcac1c037dd9be119479fbf3f62e8316f6dd3bfbbdeeae4f"; 12 + sha256 = "5f36ceebf06776170a20b4727b0859ceb4a26508d6d8707c5d492e1b4ce67975"; 13 13 } 14 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/an/firefox-124.0b2.tar.bz2"; 14 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/an/firefox-124.0b5.tar.bz2"; 15 15 locale = "an"; 16 16 arch = "linux-x86_64"; 17 - sha256 = "cbe139c6a7a333dcac56d0fa78bc653daea355a45a834de2e35a7192a3a17fc9"; 17 + sha256 = "5f82fc1cb4a458cf28a1f76383d6c1fe11d6f33a157f9247d524fadc5ea6759d"; 18 18 } 19 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/ar/firefox-124.0b2.tar.bz2"; 19 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/ar/firefox-124.0b5.tar.bz2"; 20 20 locale = "ar"; 21 21 arch = "linux-x86_64"; 22 - sha256 = "d50bc9d3d443bf2a90643ce5cdd6bc7d0e4198fab68ef14e1286504f4d18821c"; 22 + sha256 = "08680db79f744d864cba21f4795dc1b9a2af5bf8c3ddf5f7ea4c908022579028"; 23 23 } 24 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/ast/firefox-124.0b2.tar.bz2"; 24 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/ast/firefox-124.0b5.tar.bz2"; 25 25 locale = "ast"; 26 26 arch = "linux-x86_64"; 27 - sha256 = "2d2543dfdc9c14de05a1c62d088aa0617505b923b1dbb72f4b5e5d2cd9271e53"; 27 + sha256 = "8bbe8db78333dba3cac356b578a03dd3b77dddc7e63b2177236f6a3d0896f04d"; 28 28 } 29 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/az/firefox-124.0b2.tar.bz2"; 29 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/az/firefox-124.0b5.tar.bz2"; 30 30 locale = "az"; 31 31 arch = "linux-x86_64"; 32 - sha256 = "0379539663e7e48fa7893ada6df1e64e122ec2a14d5f3f76f813b45bbf59f586"; 32 + sha256 = "7a06cd17959904e49810ef220ec2ba713d4e16ac55eb64bdf74a8dc6ce9b0440"; 33 33 } 34 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/be/firefox-124.0b2.tar.bz2"; 34 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/be/firefox-124.0b5.tar.bz2"; 35 35 locale = "be"; 36 36 arch = "linux-x86_64"; 37 - sha256 = "f0dcffc2cb42b0a75261f9e16c1edb6b62edecd77a3d9e21f25565ba2ff234f6"; 37 + sha256 = "10fa657b60076eb048375cc7702edee3bf006c298308254be58a809904c153d0"; 38 38 } 39 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/bg/firefox-124.0b2.tar.bz2"; 39 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/bg/firefox-124.0b5.tar.bz2"; 40 40 locale = "bg"; 41 41 arch = "linux-x86_64"; 42 - sha256 = "91a3c7c3cfa6eb78a7b98c2441d71804437fc94ecbf8522613fa0060b19dd125"; 42 + sha256 = "ecde1dcb5479e5ca179fc09a090ac542b85287369f3b0d719b1b156c32ebd80e"; 43 43 } 44 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/bn/firefox-124.0b2.tar.bz2"; 44 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/bn/firefox-124.0b5.tar.bz2"; 45 45 locale = "bn"; 46 46 arch = "linux-x86_64"; 47 - sha256 = "215632319b46c5a1b88cc5936e547f5b5dbd8e28bbe66aeea86e1a362f85e82a"; 47 + sha256 = "6339cf64b10c1d31bef2d6fc95360653446ff76d2e169dd461bba543d60ff763"; 48 48 } 49 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/br/firefox-124.0b2.tar.bz2"; 49 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/br/firefox-124.0b5.tar.bz2"; 50 50 locale = "br"; 51 51 arch = "linux-x86_64"; 52 - sha256 = "8721df2ac60c218bb704148c3f392292d1dce848358b6972578aba6779475a2e"; 52 + sha256 = "3d3a1a26e4fbb44da3d354beb6d801a80d1ce20508d99fa794d182b8d536a744"; 53 53 } 54 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/bs/firefox-124.0b2.tar.bz2"; 54 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/bs/firefox-124.0b5.tar.bz2"; 55 55 locale = "bs"; 56 56 arch = "linux-x86_64"; 57 - sha256 = "583e8f0409e840a88736cd6f49b084e9927eb5ed2021d1bd0f9cd68318d620a2"; 57 + sha256 = "baed2b12d8d84ce5697320eebad87897b009bcac76e68ba0abda2582e24e88c9"; 58 58 } 59 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/ca-valencia/firefox-124.0b2.tar.bz2"; 59 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/ca-valencia/firefox-124.0b5.tar.bz2"; 60 60 locale = "ca-valencia"; 61 61 arch = "linux-x86_64"; 62 - sha256 = "f34b6bb30b4b8e4d0479ae8049b0439edf7a6bb6f1dda4ed5ab4fd026b9f1bbc"; 62 + sha256 = "fa7f53c7e56ef56b8fdb4a7e903bb51eb5447d97a0da2408a1be175bc5423f90"; 63 63 } 64 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/ca/firefox-124.0b2.tar.bz2"; 64 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/ca/firefox-124.0b5.tar.bz2"; 65 65 locale = "ca"; 66 66 arch = "linux-x86_64"; 67 - sha256 = "0561f69077245da627e1273268859a100a14c32ecc8822f35ab0c3f8d97e5d2f"; 67 + sha256 = "0310a427861ec5c2fb7a8dd2a285b591f36f11c90d84af47b5fa1cb52e2ad3b9"; 68 68 } 69 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/cak/firefox-124.0b2.tar.bz2"; 69 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/cak/firefox-124.0b5.tar.bz2"; 70 70 locale = "cak"; 71 71 arch = "linux-x86_64"; 72 - sha256 = "cf131a37e5f1df0acab0bc5d820dbbf9aacd79394e91f2e52a03ecf9d59e4dd8"; 72 + sha256 = "67573c77981d94a7aca7a9d6aa2093330b02f26f4710eff9e46b60f9fd8113f2"; 73 73 } 74 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/cs/firefox-124.0b2.tar.bz2"; 74 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/cs/firefox-124.0b5.tar.bz2"; 75 75 locale = "cs"; 76 76 arch = "linux-x86_64"; 77 - sha256 = "6d13e7144f50475a51bb044a92b2a5f94873ce454c5bbce3b97538d6498ec87f"; 77 + sha256 = "ee7d65efb0098765dfb498cf75cbe6555d20654c6fc00859e38204738661fd69"; 78 78 } 79 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/cy/firefox-124.0b2.tar.bz2"; 79 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/cy/firefox-124.0b5.tar.bz2"; 80 80 locale = "cy"; 81 81 arch = "linux-x86_64"; 82 - sha256 = "f126e9d3d5515048fc6936c8d917e0db16290183fafb1bc3f2dd73e657cb9490"; 82 + sha256 = "75ff470c4ade892f4f3f9fe1705000f7c628d6de6e86f6908ee56612bc075671"; 83 83 } 84 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/da/firefox-124.0b2.tar.bz2"; 84 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/da/firefox-124.0b5.tar.bz2"; 85 85 locale = "da"; 86 86 arch = "linux-x86_64"; 87 - sha256 = "f79b6a07401fcc04503970e9d3cf92c9a9487f5b78f576cbde7fdf550922d061"; 87 + sha256 = "48d77741b02f2e8fc2e040a84c18e1218ca61bd8e66c7cfefc79bc24bafc5bb3"; 88 88 } 89 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/de/firefox-124.0b2.tar.bz2"; 89 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/de/firefox-124.0b5.tar.bz2"; 90 90 locale = "de"; 91 91 arch = "linux-x86_64"; 92 - sha256 = "3ab1d86e2ecb631d1ef5e62ba96b9eecc1401e185b9a321616fecb315ee51f28"; 92 + sha256 = "2b1309a5f08980056fe3be624a6c75c05e39618d32153aee826e4b4a50ee15eb"; 93 93 } 94 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/dsb/firefox-124.0b2.tar.bz2"; 94 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/dsb/firefox-124.0b5.tar.bz2"; 95 95 locale = "dsb"; 96 96 arch = "linux-x86_64"; 97 - sha256 = "f63e77b38c6cf91351bac23257f3f24393fa6a2de2ccddec9c6b392aea781046"; 97 + sha256 = "570407536fb85f40dc7a872fed16b652b1d6db223ff46e557021233aa02a7a7d"; 98 98 } 99 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/el/firefox-124.0b2.tar.bz2"; 99 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/el/firefox-124.0b5.tar.bz2"; 100 100 locale = "el"; 101 101 arch = "linux-x86_64"; 102 - sha256 = "3b728d338586515822ca1ce165cd7aaee2c8a52e20522de4df36a77988d260fb"; 102 + sha256 = "fae76f0eed46924669128f56f97d3f2ac672bf5f33d4f1d48f5ab5a7b22d74af"; 103 103 } 104 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/en-CA/firefox-124.0b2.tar.bz2"; 104 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/en-CA/firefox-124.0b5.tar.bz2"; 105 105 locale = "en-CA"; 106 106 arch = "linux-x86_64"; 107 - sha256 = "db701d73b42e418175e527ed4b96796cd40ddf2176a4d796c45864f8274b1cff"; 107 + sha256 = "92f03b9f6d7a73411e94d69abbe375b3335302880320a3449571a0aee99eebdc"; 108 108 } 109 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/en-GB/firefox-124.0b2.tar.bz2"; 109 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/en-GB/firefox-124.0b5.tar.bz2"; 110 110 locale = "en-GB"; 111 111 arch = "linux-x86_64"; 112 - sha256 = "518c256ab304fb94556bc06cd6b924f2195d862e81b7b816c9bcf031715856da"; 112 + sha256 = "21f60b68d0c1239eaa16000c15e57357337682420bd55d3bfb4463c777cc31fd"; 113 113 } 114 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/en-US/firefox-124.0b2.tar.bz2"; 114 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/en-US/firefox-124.0b5.tar.bz2"; 115 115 locale = "en-US"; 116 116 arch = "linux-x86_64"; 117 - sha256 = "e14b4f9dab4ccbdda293e7808a101dcf90e231b5a90980a13dc7bf6d8fde8776"; 117 + sha256 = "22a8329ae9d5a493215761326cd472991f6f694a4d42eaf83628ab6d26fca83b"; 118 118 } 119 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/eo/firefox-124.0b2.tar.bz2"; 119 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/eo/firefox-124.0b5.tar.bz2"; 120 120 locale = "eo"; 121 121 arch = "linux-x86_64"; 122 - sha256 = "1bed1faff69ca8c4c5a9d213458455e61c8b6e4d9e7f7c7eb6862624fdd8a817"; 122 + sha256 = "5ecd98a7b5e2317abbaf6f5a9fb21c8a59be51715fb5a8c8cae3d64a0ab5fc48"; 123 123 } 124 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/es-AR/firefox-124.0b2.tar.bz2"; 124 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/es-AR/firefox-124.0b5.tar.bz2"; 125 125 locale = "es-AR"; 126 126 arch = "linux-x86_64"; 127 - sha256 = "7010d92cc5569e023cf3f669ffae011b6ef79a331083fce0f6efb0350df50c31"; 127 + sha256 = "40cb5d90564fb90025fc6b392582863e0bc724326cb36fde4dba6ad1406f6d94"; 128 128 } 129 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/es-CL/firefox-124.0b2.tar.bz2"; 129 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/es-CL/firefox-124.0b5.tar.bz2"; 130 130 locale = "es-CL"; 131 131 arch = "linux-x86_64"; 132 - sha256 = "16acae24bb87c2d2df00a597d559a6a621c8647c0de9c3c4ffc248974622f59e"; 132 + sha256 = "4f791d29b283ae6cd5873b4dbe500b6267b051e1ab2d0cff96c1a4440e6aff08"; 133 133 } 134 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/es-ES/firefox-124.0b2.tar.bz2"; 134 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/es-ES/firefox-124.0b5.tar.bz2"; 135 135 locale = "es-ES"; 136 136 arch = "linux-x86_64"; 137 - sha256 = "9c6f854e01300e2801255b18b7fcf1c31c1457267073ec00fe3cf1b295b30254"; 137 + sha256 = "2edc711c09c35cd8485343315ae5c2bc6bebb96159168d70cff22527165f58f3"; 138 138 } 139 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/es-MX/firefox-124.0b2.tar.bz2"; 139 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/es-MX/firefox-124.0b5.tar.bz2"; 140 140 locale = "es-MX"; 141 141 arch = "linux-x86_64"; 142 - sha256 = "8be367c4b918e2834da814723054f7c1bf32a3fefd6763ce5244985678284aad"; 142 + sha256 = "b8a2f655358cffc31b1fe2447db01eb7cf57f6bbb31563c012f7158f3c9d42e8"; 143 143 } 144 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/et/firefox-124.0b2.tar.bz2"; 144 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/et/firefox-124.0b5.tar.bz2"; 145 145 locale = "et"; 146 146 arch = "linux-x86_64"; 147 - sha256 = "09bb7e3b2ac065613a8d9ebbf7e914b0e1f7ee55938b735e4279441e6b6fcb12"; 147 + sha256 = "c395fc81add76c9d275d25a8de3a4fb26e4f0415e98de5add80a6bd0e999a01a"; 148 148 } 149 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/eu/firefox-124.0b2.tar.bz2"; 149 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/eu/firefox-124.0b5.tar.bz2"; 150 150 locale = "eu"; 151 151 arch = "linux-x86_64"; 152 - sha256 = "12ce3b0532812e9adcd3ec3196f798d5e3f91cb83ab0ef601aa329cd7ddf2977"; 152 + sha256 = "e0851b8ea76f800d9427c217477b94a61de6c274353b4b4cdd47cc8b0d4aaa70"; 153 153 } 154 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/fa/firefox-124.0b2.tar.bz2"; 154 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/fa/firefox-124.0b5.tar.bz2"; 155 155 locale = "fa"; 156 156 arch = "linux-x86_64"; 157 - sha256 = "bd7782a2d5a925c3ad41781bcf828e95724f3a82f2ccc5ed2082bc655cce38cc"; 157 + sha256 = "8e12aa67666b55b919e4e81cad3380e0851797a13548f3dcbdc3c227c69da8d6"; 158 158 } 159 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/ff/firefox-124.0b2.tar.bz2"; 159 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/ff/firefox-124.0b5.tar.bz2"; 160 160 locale = "ff"; 161 161 arch = "linux-x86_64"; 162 - sha256 = "b7da1ca6e9e06db0095da2da79f972ef5dd71da3f9f3ba99ced8edc7a83724d5"; 162 + sha256 = "c04ff0a8b62793ffcbf4d1d0a5111693cee1b35ba3fb1dd0adbaf03ba66bcdf8"; 163 163 } 164 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/fi/firefox-124.0b2.tar.bz2"; 164 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/fi/firefox-124.0b5.tar.bz2"; 165 165 locale = "fi"; 166 166 arch = "linux-x86_64"; 167 - sha256 = "6c028c8e15fbf784d084c7f50fe7260939b2c1b5ae8e45b483265dffbfdcc305"; 167 + sha256 = "12ba9ea088fb6d17a826c30967ab7b3443aeff2a3f740a4df3ca7ebbd8b45ced"; 168 168 } 169 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/fr/firefox-124.0b2.tar.bz2"; 169 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/fr/firefox-124.0b5.tar.bz2"; 170 170 locale = "fr"; 171 171 arch = "linux-x86_64"; 172 - sha256 = "67062d7de084985e8493be8691e50687def2ad630322caf484850cb8372ddcf7"; 172 + sha256 = "e91929a98ae40d1ef43b11c3c22d8ed0cb19c6e3e07bb04741090fad53b98607"; 173 173 } 174 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/fur/firefox-124.0b2.tar.bz2"; 174 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/fur/firefox-124.0b5.tar.bz2"; 175 175 locale = "fur"; 176 176 arch = "linux-x86_64"; 177 - sha256 = "5f63297d83984aee6adff522c7cea24c5724a6f6d2f965782ffcd16e41dc5547"; 177 + sha256 = "99b88c86eb2013b5f07e6f14e71c2c97352dcc1acc02aff90ab42d13410ff2a5"; 178 178 } 179 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/fy-NL/firefox-124.0b2.tar.bz2"; 179 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/fy-NL/firefox-124.0b5.tar.bz2"; 180 180 locale = "fy-NL"; 181 181 arch = "linux-x86_64"; 182 - sha256 = "24ba249b084764e96a13b6a9336d6dbe7d1eff04847c9e924c53087ca1fede30"; 182 + sha256 = "b9c9b522a065f64d6cf40b96dff6526313e2dca401a9008f03083b2812b6167b"; 183 183 } 184 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/ga-IE/firefox-124.0b2.tar.bz2"; 184 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/ga-IE/firefox-124.0b5.tar.bz2"; 185 185 locale = "ga-IE"; 186 186 arch = "linux-x86_64"; 187 - sha256 = "eaa9b0bc0929e1b51027250f5a840f13f77a91ddf10b9278147ee41212bc82c8"; 187 + sha256 = "bca74cf277bd25d5066df857846be1dd8f6c310d301f49b2961f439949571b28"; 188 188 } 189 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/gd/firefox-124.0b2.tar.bz2"; 189 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/gd/firefox-124.0b5.tar.bz2"; 190 190 locale = "gd"; 191 191 arch = "linux-x86_64"; 192 - sha256 = "6f62732e5f83dcea1a537cfacc9698b8e3b2aab0953103038ab774ea6bbc716a"; 192 + sha256 = "47d553028a1a64259877fdfee83d70a46b866afa3b2457660d2a44067b37061d"; 193 193 } 194 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/gl/firefox-124.0b2.tar.bz2"; 194 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/gl/firefox-124.0b5.tar.bz2"; 195 195 locale = "gl"; 196 196 arch = "linux-x86_64"; 197 - sha256 = "97657e3beec01ef69d119379a32758fb41816de8bd58d9deb004a88b7c3326fe"; 197 + sha256 = "130886578c83d2eff99209c4d14c05e68acbdd37564edeac079648740fc7bf0b"; 198 198 } 199 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/gn/firefox-124.0b2.tar.bz2"; 199 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/gn/firefox-124.0b5.tar.bz2"; 200 200 locale = "gn"; 201 201 arch = "linux-x86_64"; 202 - sha256 = "f6f05d156c7316cd9baf939309abce7912350c71d409aada45f211ba76409100"; 202 + sha256 = "23ac53dd3b9a2d18d60a59e2d734fd0c44a5291fee943c902f18cf599d63c16c"; 203 203 } 204 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/gu-IN/firefox-124.0b2.tar.bz2"; 204 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/gu-IN/firefox-124.0b5.tar.bz2"; 205 205 locale = "gu-IN"; 206 206 arch = "linux-x86_64"; 207 - sha256 = "a81b71bd14054cd82332ec091a292d456c848db2f9daba89965d513bf8f38b87"; 207 + sha256 = "77689877b0d5e877d3be81f02a040e3120a9dd1b40a4367c5a92a40f4c494919"; 208 208 } 209 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/he/firefox-124.0b2.tar.bz2"; 209 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/he/firefox-124.0b5.tar.bz2"; 210 210 locale = "he"; 211 211 arch = "linux-x86_64"; 212 - sha256 = "cd3ff8efdad04b12f92d14eb387bd68c3d3a06d81d2a363c3685ca4f5457f18e"; 212 + sha256 = "8a1f1ac0b23cbf62e47ee29b679ab6c48cd89c4bd77a6d295f6ed0fe69711499"; 213 213 } 214 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/hi-IN/firefox-124.0b2.tar.bz2"; 214 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/hi-IN/firefox-124.0b5.tar.bz2"; 215 215 locale = "hi-IN"; 216 216 arch = "linux-x86_64"; 217 - sha256 = "cfd147bc30a081268545d38c38ecf959b7848648b124a3f2fa9f0ac6277a35fa"; 217 + sha256 = "18957db7e86db0a0d0b823b68d1e377f85aaa5b14e6092e24310ab8ad10a343b"; 218 218 } 219 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/hr/firefox-124.0b2.tar.bz2"; 219 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/hr/firefox-124.0b5.tar.bz2"; 220 220 locale = "hr"; 221 221 arch = "linux-x86_64"; 222 - sha256 = "eea6bcb7747900ba6f0b764890074c6a88506094c8a3e383441a49e164f63dec"; 222 + sha256 = "3625253e0f9a634270af8f70d1c81b61dadb8102fb2c81b81507f8fdb7b1d250"; 223 223 } 224 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/hsb/firefox-124.0b2.tar.bz2"; 224 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/hsb/firefox-124.0b5.tar.bz2"; 225 225 locale = "hsb"; 226 226 arch = "linux-x86_64"; 227 - sha256 = "ff5d2011e6e2f20481fd76a04f1f72e9d5bbb29253d2e47a75317dfc13e5c16b"; 227 + sha256 = "40e040f1231c88af9090a2fac4001ab8f1d69a1e3734ed6c89bf51e4ff21b206"; 228 228 } 229 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/hu/firefox-124.0b2.tar.bz2"; 229 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/hu/firefox-124.0b5.tar.bz2"; 230 230 locale = "hu"; 231 231 arch = "linux-x86_64"; 232 - sha256 = "6ceb6098abd49f062c86be8e06cec9e4fc8fd04fbcab43c52318d60ac66f9e93"; 232 + sha256 = "377fe6254302dd396bdb560a44c138983e2c02eae06c427ff5cf94bc434c61ab"; 233 233 } 234 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/hy-AM/firefox-124.0b2.tar.bz2"; 234 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/hy-AM/firefox-124.0b5.tar.bz2"; 235 235 locale = "hy-AM"; 236 236 arch = "linux-x86_64"; 237 - sha256 = "706500ead0a117e63ffabd84105f2ae4293fd3550e2237379ab3069ae3e94f98"; 237 + sha256 = "2e4b3a4044d0297f9d9c87f1624f672d0d27b21f5012baa2ca60f45885d8ce79"; 238 238 } 239 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/ia/firefox-124.0b2.tar.bz2"; 239 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/ia/firefox-124.0b5.tar.bz2"; 240 240 locale = "ia"; 241 241 arch = "linux-x86_64"; 242 - sha256 = "b3ebdf158d37bb338a3c242acba42ab102e23d3616f5fa74b6c7ebbab16f9099"; 242 + sha256 = "160aa92ea1168487ecc925ade7cbd2e117da72319a9ceccdc59507e4e8fc8764"; 243 243 } 244 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/id/firefox-124.0b2.tar.bz2"; 244 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/id/firefox-124.0b5.tar.bz2"; 245 245 locale = "id"; 246 246 arch = "linux-x86_64"; 247 - sha256 = "104ad7b721466bdb923b9490545425392dc76e5c74b3eb7ead26cb177f4c1f16"; 247 + sha256 = "7bd38f8c8b4953db16c1916ed4b2df49b0f840b81949dc4676f2f71c40008948"; 248 248 } 249 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/is/firefox-124.0b2.tar.bz2"; 249 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/is/firefox-124.0b5.tar.bz2"; 250 250 locale = "is"; 251 251 arch = "linux-x86_64"; 252 - sha256 = "e974076e947af7599cee9ace49430c3ee651b853965caaf2663c5f2517a8a62a"; 252 + sha256 = "3424522524ca6388a7e2637dfc5452998b7d6dcad2514f48f518be63e5b45c6f"; 253 253 } 254 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/it/firefox-124.0b2.tar.bz2"; 254 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/it/firefox-124.0b5.tar.bz2"; 255 255 locale = "it"; 256 256 arch = "linux-x86_64"; 257 - sha256 = "ecced41cdcb280c2e018a1cdcfe1b403ef6468de8e0470789c3227bcbcea2b1d"; 257 + sha256 = "0c7ee36605aac12acc542c9481852d39b1b0f0f3c18256cec2ff38811cb1f3eb"; 258 258 } 259 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/ja/firefox-124.0b2.tar.bz2"; 259 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/ja/firefox-124.0b5.tar.bz2"; 260 260 locale = "ja"; 261 261 arch = "linux-x86_64"; 262 - sha256 = "0d662890d8fd7e3e617fe8e63cd04d3d6505a8817a17b3552f284e42e536ef44"; 262 + sha256 = "abe8f35fe044928615fe6cfc947d4153509f88882fb94f06eb78f36ac8a5e30d"; 263 263 } 264 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/ka/firefox-124.0b2.tar.bz2"; 264 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/ka/firefox-124.0b5.tar.bz2"; 265 265 locale = "ka"; 266 266 arch = "linux-x86_64"; 267 - sha256 = "7f13f053f74ccdb33216446668f20f37626e37f830680aa8250071522e73be6f"; 267 + sha256 = "cb697fdd6f9ea00ce308f1c060d91bbdfc5aff20f2992a78e2e342c0c7fabb6d"; 268 268 } 269 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/kab/firefox-124.0b2.tar.bz2"; 269 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/kab/firefox-124.0b5.tar.bz2"; 270 270 locale = "kab"; 271 271 arch = "linux-x86_64"; 272 - sha256 = "bdcf5b0f64b03504329f0af0827d14499a203bde799584c707261f6397d9b3f8"; 272 + sha256 = "06984b0b178fd6ed37673e8d41670223377ad77fff6ef8a4a7f0bb09fb4836fe"; 273 273 } 274 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/kk/firefox-124.0b2.tar.bz2"; 274 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/kk/firefox-124.0b5.tar.bz2"; 275 275 locale = "kk"; 276 276 arch = "linux-x86_64"; 277 - sha256 = "0f647e6096b245ef9c7329f5aa6c897f301060542ce8043e80384c22233e4a1e"; 277 + sha256 = "b0184afa67d0102eec7b58749dd3ede7790346b963a52643a0b7e7c838a51357"; 278 278 } 279 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/km/firefox-124.0b2.tar.bz2"; 279 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/km/firefox-124.0b5.tar.bz2"; 280 280 locale = "km"; 281 281 arch = "linux-x86_64"; 282 - sha256 = "143f5595132bf337fcf34fddf3ec215a7846c00247f3d920e68321f4f57b30ed"; 282 + sha256 = "d5a344551d654e27a05483bb6fe05c878a2f1e726455b9e8cd2bda5ed98a3539"; 283 283 } 284 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/kn/firefox-124.0b2.tar.bz2"; 284 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/kn/firefox-124.0b5.tar.bz2"; 285 285 locale = "kn"; 286 286 arch = "linux-x86_64"; 287 - sha256 = "cc9a91fd7809daa3d5bcbd5fe0ad5f5cc3717c9d7b5ce53dbe1c7377e15fa107"; 287 + sha256 = "b91561544bb249e22e01912acd473404b181cacb6ce1f181a8714416d049ae21"; 288 288 } 289 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/ko/firefox-124.0b2.tar.bz2"; 289 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/ko/firefox-124.0b5.tar.bz2"; 290 290 locale = "ko"; 291 291 arch = "linux-x86_64"; 292 - sha256 = "9c6d8c6a41de599eb8652ae2c3f5df83a70b7f1ebcb9582c60e66ffb10ab88e4"; 292 + sha256 = "9ee5565b3f09dfd5ae9475211ae610c58ad0884759f18c643afd8e4db5187e11"; 293 293 } 294 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/lij/firefox-124.0b2.tar.bz2"; 294 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/lij/firefox-124.0b5.tar.bz2"; 295 295 locale = "lij"; 296 296 arch = "linux-x86_64"; 297 - sha256 = "b7260ed32256d2082fe052b3eaf367ad5a14a8d6d7c357aa9719185bc81917a8"; 297 + sha256 = "d42e2636a2773df593f4534bf039e8c54db2e7deee1ad1ca7352902b71b551e1"; 298 298 } 299 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/lt/firefox-124.0b2.tar.bz2"; 299 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/lt/firefox-124.0b5.tar.bz2"; 300 300 locale = "lt"; 301 301 arch = "linux-x86_64"; 302 - sha256 = "436b0381d25b939f63607d15d261f3ec4d639cf3c6bf8e4118427d037f19f38b"; 302 + sha256 = "d4a80127dc135125f39863ee6b6e59b3aa5c8f5e73df7adddb227e995a5634b5"; 303 303 } 304 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/lv/firefox-124.0b2.tar.bz2"; 304 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/lv/firefox-124.0b5.tar.bz2"; 305 305 locale = "lv"; 306 306 arch = "linux-x86_64"; 307 - sha256 = "cb508a4b712cef1e62f23237efa55f3c8ce539796f6aa301551d42d47f25a80b"; 307 + sha256 = "3f312f2a8744b84a6543e26b08d4ea20891f0e62e1aa8430e272b0580b736db6"; 308 308 } 309 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/mk/firefox-124.0b2.tar.bz2"; 309 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/mk/firefox-124.0b5.tar.bz2"; 310 310 locale = "mk"; 311 311 arch = "linux-x86_64"; 312 - sha256 = "7bc0348cd0cc869b472c3db2f815ff83e84bdaf58f143775abd122c306918870"; 312 + sha256 = "ea8c18c9a74d6108eaca2aa4e0ba42ef6452b6a96e2bb6f1ec73baaa8b661c3a"; 313 313 } 314 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/mr/firefox-124.0b2.tar.bz2"; 314 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/mr/firefox-124.0b5.tar.bz2"; 315 315 locale = "mr"; 316 316 arch = "linux-x86_64"; 317 - sha256 = "b8fc3177bf00739e18d4ff53cf7adde07e1f763db90c12ba94771962c4ae936d"; 317 + sha256 = "c501119c27b95406b81e93b41aa50088c1c87031469fdf891d35d89d09d5489e"; 318 318 } 319 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/ms/firefox-124.0b2.tar.bz2"; 319 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/ms/firefox-124.0b5.tar.bz2"; 320 320 locale = "ms"; 321 321 arch = "linux-x86_64"; 322 - sha256 = "d4ed92cf6d38f0c63631d462ea6ea4ba51dadf2d0b36b08aafc23d31c3661b9d"; 322 + sha256 = "e39693bd45283c19b583848302dd405f0003b7caef939128f8c2f3dc2d5f6988"; 323 323 } 324 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/my/firefox-124.0b2.tar.bz2"; 324 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/my/firefox-124.0b5.tar.bz2"; 325 325 locale = "my"; 326 326 arch = "linux-x86_64"; 327 - sha256 = "b99b30402ab8071b4cfc1cc565ce8cf06dc8d116e673f9349e529ce03a5b7fed"; 327 + sha256 = "d8a7e54d74eb3e743f9057838e0abf73def6697fbe5f9474947e08ba810e4bc8"; 328 328 } 329 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/nb-NO/firefox-124.0b2.tar.bz2"; 329 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/nb-NO/firefox-124.0b5.tar.bz2"; 330 330 locale = "nb-NO"; 331 331 arch = "linux-x86_64"; 332 - sha256 = "126574e1ea081fa5ce526a411d224024c6357e7b74e383038034d40f73e6b781"; 332 + sha256 = "a63953feb54e1ec1570f5dee716eda162d56b76cc31951513e9076108935aad1"; 333 333 } 334 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/ne-NP/firefox-124.0b2.tar.bz2"; 334 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/ne-NP/firefox-124.0b5.tar.bz2"; 335 335 locale = "ne-NP"; 336 336 arch = "linux-x86_64"; 337 - sha256 = "2b8953f7df629c59da03be91366d5a3f88779245d747678a20f9969477421588"; 337 + sha256 = "629e529489a676d536b72a97523e4343ddfa0ce2d7356a5bf8eefe0238bcb666"; 338 338 } 339 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/nl/firefox-124.0b2.tar.bz2"; 339 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/nl/firefox-124.0b5.tar.bz2"; 340 340 locale = "nl"; 341 341 arch = "linux-x86_64"; 342 - sha256 = "99abc838e32ba697fba11426ab5c890f98fe58bba0f8e8f828dfabe15c005c3e"; 342 + sha256 = "12ea68d71847b815ad65d7a665b2a557a083a1c607b3f8cb18ff5fabf0002636"; 343 343 } 344 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/nn-NO/firefox-124.0b2.tar.bz2"; 344 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/nn-NO/firefox-124.0b5.tar.bz2"; 345 345 locale = "nn-NO"; 346 346 arch = "linux-x86_64"; 347 - sha256 = "d68c301016afbfb31d9dbce6f1440f89e5b51d19a22a45ecfb1b39d15545a997"; 347 + sha256 = "ca8a111ecde3bd454ed111c55eae69da4fee13504a94c9df3a93c45550905036"; 348 348 } 349 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/oc/firefox-124.0b2.tar.bz2"; 349 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/oc/firefox-124.0b5.tar.bz2"; 350 350 locale = "oc"; 351 351 arch = "linux-x86_64"; 352 - sha256 = "988bdc93d6f7e4a6810491476cdb98339fb6997e873f594260e58841b36e3cc5"; 352 + sha256 = "902fc9328255bebf6773358103e06ccb9b585638ebaf5eb32505d867c5ecbfe6"; 353 353 } 354 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/pa-IN/firefox-124.0b2.tar.bz2"; 354 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/pa-IN/firefox-124.0b5.tar.bz2"; 355 355 locale = "pa-IN"; 356 356 arch = "linux-x86_64"; 357 - sha256 = "2204323a7c11b847227e776b4ec21339663476a08a07e63ea1e304bec6bad34d"; 357 + sha256 = "75ed8b95ab613ea714fd646b1ee84371ebf873ede8a28b6c8e5e96b41749f755"; 358 358 } 359 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/pl/firefox-124.0b2.tar.bz2"; 359 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/pl/firefox-124.0b5.tar.bz2"; 360 360 locale = "pl"; 361 361 arch = "linux-x86_64"; 362 - sha256 = "489fe92b3fb075bcc11e3c0281d2ad3ec29105353251f427d49aa79a6c207410"; 362 + sha256 = "cee1409e398d803dd4fe3050fa12b75bc996bbe553b9ffeef18ea0a085b6ee80"; 363 363 } 364 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/pt-BR/firefox-124.0b2.tar.bz2"; 364 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/pt-BR/firefox-124.0b5.tar.bz2"; 365 365 locale = "pt-BR"; 366 366 arch = "linux-x86_64"; 367 - sha256 = "88fd36ef9b83743736a5a3c23db70a395ae1fc4801296c3ec5f66a92198acf98"; 367 + sha256 = "448890c7616dc46e381d621df13a28ccb2ce721df244a26742652c846db4593c"; 368 368 } 369 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/pt-PT/firefox-124.0b2.tar.bz2"; 369 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/pt-PT/firefox-124.0b5.tar.bz2"; 370 370 locale = "pt-PT"; 371 371 arch = "linux-x86_64"; 372 - sha256 = "afaa32392f30f3d28b7f636fcd4aade8236b2b4de43b197f914842b757bb37b8"; 372 + sha256 = "05a961a4d1130472fad818ac29ef473b5fefa075f86848033c6624305c59ca2b"; 373 373 } 374 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/rm/firefox-124.0b2.tar.bz2"; 374 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/rm/firefox-124.0b5.tar.bz2"; 375 375 locale = "rm"; 376 376 arch = "linux-x86_64"; 377 - sha256 = "cb7f2493ca54d79aee3ac60ad0565a573d55b7d814521cff453fd68f60964592"; 377 + sha256 = "c7df75c5758d198070d6d978413e3196d42a18b061509d27b3092a003fbd4c4b"; 378 378 } 379 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/ro/firefox-124.0b2.tar.bz2"; 379 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/ro/firefox-124.0b5.tar.bz2"; 380 380 locale = "ro"; 381 381 arch = "linux-x86_64"; 382 - sha256 = "2588e0761f102f81b7e195dbf48727e86f38356100f07848422025f3d0e778b9"; 382 + sha256 = "26f47dfc912a1cd2558b060932973f2a1f690f6a7ea8eb96d36787f638341a5a"; 383 383 } 384 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/ru/firefox-124.0b2.tar.bz2"; 384 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/ru/firefox-124.0b5.tar.bz2"; 385 385 locale = "ru"; 386 386 arch = "linux-x86_64"; 387 - sha256 = "7e26d22eca5f65cdff96ff0156ca120047dd2f0de3c5aa1cc52d4f991722c339"; 387 + sha256 = "942c198c60dc78de58319a3b5138e573b44bc1f99d7e4d2b1325577c9bcc0896"; 388 388 } 389 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/sat/firefox-124.0b2.tar.bz2"; 389 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/sat/firefox-124.0b5.tar.bz2"; 390 390 locale = "sat"; 391 391 arch = "linux-x86_64"; 392 - sha256 = "14f77b1a92f7b7359b80c3a6d1b4ecc0b2d88666ee23342bb5f9bab7f9876901"; 392 + sha256 = "48510782780d5af7b0a1b6c6a86639c00312f066c69abc32bc447451d72ae8cb"; 393 393 } 394 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/sc/firefox-124.0b2.tar.bz2"; 394 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/sc/firefox-124.0b5.tar.bz2"; 395 395 locale = "sc"; 396 396 arch = "linux-x86_64"; 397 - sha256 = "cd6c90b95f06d305c9860084da7a12318d033acdc21ecccf2f485514f7acf9d5"; 397 + sha256 = "46d9cc6b9e5c47ef64c37e77cffea12f83e64d1460253ff4cb75ed94b3e4367a"; 398 398 } 399 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/sco/firefox-124.0b2.tar.bz2"; 399 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/sco/firefox-124.0b5.tar.bz2"; 400 400 locale = "sco"; 401 401 arch = "linux-x86_64"; 402 - sha256 = "5e11949fd6c144922e128a9322bab335ecc361ea2d29fc595cfe6a7325aa8ef0"; 402 + sha256 = "7e037a7fb4c5c99557039cb1ae7618d724f3da2258d047881cdd7147d1174d81"; 403 403 } 404 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/si/firefox-124.0b2.tar.bz2"; 404 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/si/firefox-124.0b5.tar.bz2"; 405 405 locale = "si"; 406 406 arch = "linux-x86_64"; 407 - sha256 = "22f4a449eae9ae27cc586718308ad9c09c96603cd6fec917be7c1e007c90ecc6"; 407 + sha256 = "5b012871da0bf06f38bf1c26975999914e1fe8ef9824efc49f22c1fbfb6b89ca"; 408 408 } 409 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/sk/firefox-124.0b2.tar.bz2"; 409 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/sk/firefox-124.0b5.tar.bz2"; 410 410 locale = "sk"; 411 411 arch = "linux-x86_64"; 412 - sha256 = "b186826c9adf273db6eb3180f2972149f2e417770a683764bc7403d00a89e169"; 412 + sha256 = "16a8afc43b6d44ab7c29b753b1a500c6106c8c7bd54c3e8320626b77e2979eb7"; 413 413 } 414 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/sl/firefox-124.0b2.tar.bz2"; 414 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/sl/firefox-124.0b5.tar.bz2"; 415 415 locale = "sl"; 416 416 arch = "linux-x86_64"; 417 - sha256 = "b08c8a2032d110985f4959321b5c42d099d8ba057931ba8a2aba9d473b024581"; 417 + sha256 = "70c0cc00bf44f4d64a39c2c13ec01f9111c859190a2ca15137f21b2c1ab591a3"; 418 418 } 419 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/son/firefox-124.0b2.tar.bz2"; 419 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/son/firefox-124.0b5.tar.bz2"; 420 420 locale = "son"; 421 421 arch = "linux-x86_64"; 422 - sha256 = "24a07144a22cf5af81f250ada72bea887394989fad69340005f516e770a42177"; 422 + sha256 = "d94707e16ca52af39bbec9b7d527274441e090d54652dfa5c9abc16821225839"; 423 423 } 424 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/sq/firefox-124.0b2.tar.bz2"; 424 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/sq/firefox-124.0b5.tar.bz2"; 425 425 locale = "sq"; 426 426 arch = "linux-x86_64"; 427 - sha256 = "47211e50ee162f4cc450ae3e43969ddc9ff3fdf42a4b5dc65dc0ff82b409e3a7"; 427 + sha256 = "642b971d675f9262e19402f47580f3b811240d3dad3c32b2f4f6e87b4135f2f6"; 428 428 } 429 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/sr/firefox-124.0b2.tar.bz2"; 429 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/sr/firefox-124.0b5.tar.bz2"; 430 430 locale = "sr"; 431 431 arch = "linux-x86_64"; 432 - sha256 = "628d23b0584188a1c77abe1400a3cfb80309bc8fee004fa4b9edaea3c0d4cdbd"; 432 + sha256 = "23928c430e1db120e84b530b0d3503b2e62036fa8849d9c46b6b1819ea76af64"; 433 433 } 434 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/sv-SE/firefox-124.0b2.tar.bz2"; 434 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/sv-SE/firefox-124.0b5.tar.bz2"; 435 435 locale = "sv-SE"; 436 436 arch = "linux-x86_64"; 437 - sha256 = "ca97e41c25b873294953f1b0d1aedbc063469dcf3ed36f19623ee46935255249"; 437 + sha256 = "617add83937a3ea14002fe41c736137c8011d635e78a246a3f5002562b97f48d"; 438 438 } 439 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/szl/firefox-124.0b2.tar.bz2"; 439 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/szl/firefox-124.0b5.tar.bz2"; 440 440 locale = "szl"; 441 441 arch = "linux-x86_64"; 442 - sha256 = "7606531cf236e2e6a00627c6b698e1156ae27a4eac064c362ea0e96b9451df3d"; 442 + sha256 = "50e63481383364d50954f5bef8781c125b0f51a876a0377adb399eda00227ed1"; 443 443 } 444 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/ta/firefox-124.0b2.tar.bz2"; 444 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/ta/firefox-124.0b5.tar.bz2"; 445 445 locale = "ta"; 446 446 arch = "linux-x86_64"; 447 - sha256 = "adfa846371635fdd08da383383400127b122ac077af8a1c7c7608e9b6426dddb"; 447 + sha256 = "16f2ce13302bea290af292f74d5c48d8db73ccd6ebea1ce2dc441848c233f533"; 448 448 } 449 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/te/firefox-124.0b2.tar.bz2"; 449 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/te/firefox-124.0b5.tar.bz2"; 450 450 locale = "te"; 451 451 arch = "linux-x86_64"; 452 - sha256 = "8b5aa3dd89603a8310c27a49b79221e869a1002d6ddd369c3de5e46222fb2ccd"; 452 + sha256 = "1fbdd511f501b4b3be1933c424c315051079a3ca0d5670c8b88438266843ad27"; 453 453 } 454 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/tg/firefox-124.0b2.tar.bz2"; 454 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/tg/firefox-124.0b5.tar.bz2"; 455 455 locale = "tg"; 456 456 arch = "linux-x86_64"; 457 - sha256 = "ef133a701695437aad0ebf3883236a82792f374d94252595df88a7ce73fe68b7"; 457 + sha256 = "ef5d6491de252486f5b10708b0c0ea5357a2c5d6e0684047ba08949c19ba8651"; 458 458 } 459 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/th/firefox-124.0b2.tar.bz2"; 459 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/th/firefox-124.0b5.tar.bz2"; 460 460 locale = "th"; 461 461 arch = "linux-x86_64"; 462 - sha256 = "29a62fbef1145649ce6b4e85b7f48abe6880136b3547369a5c745f674d0623e5"; 462 + sha256 = "1228222e854286521596d3add7ed91668643f8c243c385f90adcb12cd1b0e332"; 463 463 } 464 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/tl/firefox-124.0b2.tar.bz2"; 464 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/tl/firefox-124.0b5.tar.bz2"; 465 465 locale = "tl"; 466 466 arch = "linux-x86_64"; 467 - sha256 = "94b7ca81a9f27bc2581e637d95e0096b8a58f9a982e1b8497fa2d432239df6a1"; 467 + sha256 = "7e55d29a61209982dc3a607d761e6c802ab82c8ca1027b4bbf4b47a403c42872"; 468 468 } 469 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/tr/firefox-124.0b2.tar.bz2"; 469 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/tr/firefox-124.0b5.tar.bz2"; 470 470 locale = "tr"; 471 471 arch = "linux-x86_64"; 472 - sha256 = "7d8d340ed83c350661e43805a8caf132ca570b6b29dbf81795772539109b9e43"; 472 + sha256 = "627441565a2500c1c3bad1da306e4f5d618656d9533c89fef4e99977ccd27ab4"; 473 473 } 474 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/trs/firefox-124.0b2.tar.bz2"; 474 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/trs/firefox-124.0b5.tar.bz2"; 475 475 locale = "trs"; 476 476 arch = "linux-x86_64"; 477 - sha256 = "548b12d3476f7daa951559c171ebd174e26ae69f6ca4ebf096d78f4efd3744ea"; 477 + sha256 = "7418475cd4b2d3ae8540f0caf11c8dc81cc6aae0583bffdb7f46e643422c7e77"; 478 478 } 479 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/uk/firefox-124.0b2.tar.bz2"; 479 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/uk/firefox-124.0b5.tar.bz2"; 480 480 locale = "uk"; 481 481 arch = "linux-x86_64"; 482 - sha256 = "127f304121949104deaeb92fa763c0cf6e64033d15fbe6c54b646e7b74cc2701"; 482 + sha256 = "492c3a21757e7b10644d3fa70e9f1e244a2d27e8807628088d4ade45ba41cb36"; 483 483 } 484 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/ur/firefox-124.0b2.tar.bz2"; 484 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/ur/firefox-124.0b5.tar.bz2"; 485 485 locale = "ur"; 486 486 arch = "linux-x86_64"; 487 - sha256 = "1f219d9f3fca66b099b3e1870e70f55a253ca62df455cf8d05f768c1135f95ae"; 487 + sha256 = "e4d7126211a34d0bc17cdbe026554fb3cbea722c2f56d1926698104d78e7207b"; 488 488 } 489 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/uz/firefox-124.0b2.tar.bz2"; 489 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/uz/firefox-124.0b5.tar.bz2"; 490 490 locale = "uz"; 491 491 arch = "linux-x86_64"; 492 - sha256 = "4cb8f30caf29e108d7054db00eed27fdb1a9ec3ce512480f88b8a462f60975f0"; 492 + sha256 = "d8eb419cb6e4d1e86f68ddedbd42cedff86d6156ae832a32ac5806152f279a6b"; 493 493 } 494 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/vi/firefox-124.0b2.tar.bz2"; 494 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/vi/firefox-124.0b5.tar.bz2"; 495 495 locale = "vi"; 496 496 arch = "linux-x86_64"; 497 - sha256 = "3fccf94bf7c4605e3c2ae45cd688a90f18bd9219bf600b9397c038c21fcac584"; 497 + sha256 = "d64cfe0c88935ed7e40099473c25a9e56002926ecbdcc29d8ced6432b0236a7c"; 498 498 } 499 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/xh/firefox-124.0b2.tar.bz2"; 499 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/xh/firefox-124.0b5.tar.bz2"; 500 500 locale = "xh"; 501 501 arch = "linux-x86_64"; 502 - sha256 = "74b6121bf5bb1f010141ff5de9e8c3c9ffa037146752baff3b8667cf79e9bd7b"; 502 + sha256 = "7252e30e3656ff20dbafd9c53d5f56844997ae1e02745f59b69a9091260a9035"; 503 503 } 504 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/zh-CN/firefox-124.0b2.tar.bz2"; 504 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/zh-CN/firefox-124.0b5.tar.bz2"; 505 505 locale = "zh-CN"; 506 506 arch = "linux-x86_64"; 507 - sha256 = "9c6d151d68183d84b8c68a3bfb070709c7606c4a3e844db7db5fda8e0d3e7a94"; 507 + sha256 = "6af38bf66fb726a6b59986bf563f6f18f50a8732a342bf2fe305a0b3e9c2226d"; 508 508 } 509 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-x86_64/zh-TW/firefox-124.0b2.tar.bz2"; 509 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-x86_64/zh-TW/firefox-124.0b5.tar.bz2"; 510 510 locale = "zh-TW"; 511 511 arch = "linux-x86_64"; 512 - sha256 = "d29f8f77e4662695566c02e6307b36e6d7b8f3945ad3eb64f2b7e99ca0d3c804"; 512 + sha256 = "2979bd2b956475ccb6f6de52c7669ee59351bcfbb4a8d9be139edfd044558b9b"; 513 513 } 514 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/ach/firefox-124.0b2.tar.bz2"; 514 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/ach/firefox-124.0b5.tar.bz2"; 515 515 locale = "ach"; 516 516 arch = "linux-i686"; 517 - sha256 = "4fe8bfeec4a8c3504c2c39f16d878f567c4882d70573c5a3c0e801e0792e31ce"; 517 + sha256 = "c72c8fff286e4ff8d51bf6475a1dfbe2be4676eb30777b093457bcb3346fd818"; 518 518 } 519 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/af/firefox-124.0b2.tar.bz2"; 519 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/af/firefox-124.0b5.tar.bz2"; 520 520 locale = "af"; 521 521 arch = "linux-i686"; 522 - sha256 = "bba30e236e18a645b3f13b283f39eab426ed5d8cbf44277d18d8bc8ceca2980d"; 522 + sha256 = "7f604659f0cc938c54df6ede433514107bf787c9e06debb7fd475ab050cb67c7"; 523 523 } 524 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/an/firefox-124.0b2.tar.bz2"; 524 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/an/firefox-124.0b5.tar.bz2"; 525 525 locale = "an"; 526 526 arch = "linux-i686"; 527 - sha256 = "e9cb8fb9bab58fb16938605e8a955585bcc1bf3469184a54c5c579f1a24a2ffb"; 527 + sha256 = "7707076fdcbb8cae6eff8efa1fd0dac40dab0fa7d51486a108161dd8439202c3"; 528 528 } 529 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/ar/firefox-124.0b2.tar.bz2"; 529 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/ar/firefox-124.0b5.tar.bz2"; 530 530 locale = "ar"; 531 531 arch = "linux-i686"; 532 - sha256 = "f9cebbb247b9d75eae4c85430dcd939471496776637619233c9333a36384a2f0"; 532 + sha256 = "945f180d474b967c5297c73dd52726967fa337d326d044436cf4869e34db88a3"; 533 533 } 534 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/ast/firefox-124.0b2.tar.bz2"; 534 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/ast/firefox-124.0b5.tar.bz2"; 535 535 locale = "ast"; 536 536 arch = "linux-i686"; 537 - sha256 = "a54e80da8bf3f4ef8141f687a95f3b9d094a0ba68c5316e1b57a9096321262ed"; 537 + sha256 = "fa6b0152749881c13f8979b0611b9dbaf8d878f68b8439f21bc88b34c7d580bd"; 538 538 } 539 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/az/firefox-124.0b2.tar.bz2"; 539 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/az/firefox-124.0b5.tar.bz2"; 540 540 locale = "az"; 541 541 arch = "linux-i686"; 542 - sha256 = "32bb9a71a02dfc99ffd94a28be0fd5e3f1c372b776588a234c6259fd7393a335"; 542 + sha256 = "9bb66edacd8eaf8c990f0a36a7547e6256a715dcfe7888ad15059ffc89b70984"; 543 543 } 544 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/be/firefox-124.0b2.tar.bz2"; 544 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/be/firefox-124.0b5.tar.bz2"; 545 545 locale = "be"; 546 546 arch = "linux-i686"; 547 - sha256 = "15fdee527c4a51092101ac96b63752b9d382afefdb0f9b71f3f6f30ea3fde8b4"; 547 + sha256 = "cb1cc8ef5798630117016afbd3f8fdddc66d1a191fa85bedde763e2793a998e8"; 548 548 } 549 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/bg/firefox-124.0b2.tar.bz2"; 549 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/bg/firefox-124.0b5.tar.bz2"; 550 550 locale = "bg"; 551 551 arch = "linux-i686"; 552 - sha256 = "4422f0404e9f45ad4708d5b5050792fadd32cf28273fea44f1e9bdc654cbab00"; 552 + sha256 = "683c069d5da161b02f54255a9c7a62732fe02764d8ca1ad4233f989f09ef52ad"; 553 553 } 554 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/bn/firefox-124.0b2.tar.bz2"; 554 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/bn/firefox-124.0b5.tar.bz2"; 555 555 locale = "bn"; 556 556 arch = "linux-i686"; 557 - sha256 = "19733ad48c15419d9b976f5b7fdc189328e2769ecebf441536d8c0a4a5e5bc9e"; 557 + sha256 = "65caa543af3ecc5d8d4119516c57898c7644aecc988e45d59c5fd4fe2c631e28"; 558 558 } 559 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/br/firefox-124.0b2.tar.bz2"; 559 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/br/firefox-124.0b5.tar.bz2"; 560 560 locale = "br"; 561 561 arch = "linux-i686"; 562 - sha256 = "fc0fb718b019be2cdb3f5c445f0ccb21f2362572754a9cd0bdbe3bc56539043e"; 562 + sha256 = "19cf0bf608bea24c1c0758e07d1af6ca98d7cde3a27f838c4d9811e59bc6f7c3"; 563 563 } 564 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/bs/firefox-124.0b2.tar.bz2"; 564 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/bs/firefox-124.0b5.tar.bz2"; 565 565 locale = "bs"; 566 566 arch = "linux-i686"; 567 - sha256 = "79b110f0e8d6f5eb330eb1fcfbd590ac6cf9e3e94f877be3c0b376aaf6ea6fbb"; 567 + sha256 = "5a5ae9daedd8e961542c6a81c5909a18a128f7a389f2441fb95be559a83d9f28"; 568 568 } 569 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/ca-valencia/firefox-124.0b2.tar.bz2"; 569 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/ca-valencia/firefox-124.0b5.tar.bz2"; 570 570 locale = "ca-valencia"; 571 571 arch = "linux-i686"; 572 - sha256 = "964ad7a1da5b4becb917438d6fb3f821957bf0e216e941c46882c6dc16f642bb"; 572 + sha256 = "51bff7837d421d1a6e431cb75ce04727dca12d6034d1e919d54409cc4c375023"; 573 573 } 574 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/ca/firefox-124.0b2.tar.bz2"; 574 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/ca/firefox-124.0b5.tar.bz2"; 575 575 locale = "ca"; 576 576 arch = "linux-i686"; 577 - sha256 = "713a920628fde9099dae30d9574d4b9fca557e1d996bdcc859a061a802692ecf"; 577 + sha256 = "28af0576ae0e4fef698e701560a1152264cdab0e2aec01581d8eb7cbbcbc4499"; 578 578 } 579 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/cak/firefox-124.0b2.tar.bz2"; 579 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/cak/firefox-124.0b5.tar.bz2"; 580 580 locale = "cak"; 581 581 arch = "linux-i686"; 582 - sha256 = "94cc969237012f7368c892acf2872a366a14f8738f88e41542e9dee81e5ee6ec"; 582 + sha256 = "12e49ac2213e35825928f585d6c0dea8eea1da8ce5b5533049d2fbfb188b193e"; 583 583 } 584 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/cs/firefox-124.0b2.tar.bz2"; 584 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/cs/firefox-124.0b5.tar.bz2"; 585 585 locale = "cs"; 586 586 arch = "linux-i686"; 587 - sha256 = "e690f07b0dc7a97ec9cc144e9f3d604ea9ccac52700ec5af8b100c55bdd585d9"; 587 + sha256 = "2256f53d918bc5dbae5064a1c79d828fc2f3731caa9e4b24ebf3f321ecd752cd"; 588 588 } 589 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/cy/firefox-124.0b2.tar.bz2"; 589 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/cy/firefox-124.0b5.tar.bz2"; 590 590 locale = "cy"; 591 591 arch = "linux-i686"; 592 - sha256 = "c75f5c9702a8c22de5899ad40a7753c1ad6426fa4c8af34a9f420a3d604701ab"; 592 + sha256 = "cb4eba3e523ee5adf085d0d1b989f26873ac0ccff0bfd560dbb25222c74262b2"; 593 593 } 594 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/da/firefox-124.0b2.tar.bz2"; 594 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/da/firefox-124.0b5.tar.bz2"; 595 595 locale = "da"; 596 596 arch = "linux-i686"; 597 - sha256 = "606391ffe609b458dbcbbc859092f57bf4e25886ebbe7fd86c3bd7a90e7dab99"; 597 + sha256 = "5f1568a418b84d226061d43e1ba59a2f3965308da9c9929e28e7d3118f241559"; 598 598 } 599 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/de/firefox-124.0b2.tar.bz2"; 599 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/de/firefox-124.0b5.tar.bz2"; 600 600 locale = "de"; 601 601 arch = "linux-i686"; 602 - sha256 = "3b09c5c61788f2d62e853bf59c7a67ba362505d67a0b8eeaf84217d0b4f18744"; 602 + sha256 = "2d278f63a5b88792951e3c9cc71984ae60d6df63cd1ba626edf11fb7d6daa72b"; 603 603 } 604 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/dsb/firefox-124.0b2.tar.bz2"; 604 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/dsb/firefox-124.0b5.tar.bz2"; 605 605 locale = "dsb"; 606 606 arch = "linux-i686"; 607 - sha256 = "9a495dfccbc1912f947ef1f31aa843d07214efa9820eaa91fbf3c40910b8ff68"; 607 + sha256 = "067d0b71cc09b6b11d87d2538410ed010f5d8315c4e1cd0209ac56f8d7292b23"; 608 608 } 609 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/el/firefox-124.0b2.tar.bz2"; 609 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/el/firefox-124.0b5.tar.bz2"; 610 610 locale = "el"; 611 611 arch = "linux-i686"; 612 - sha256 = "0610b38698998866f9a5c063bb5f44ee87c7c15bc154155a9ed22d701028e2ab"; 612 + sha256 = "8753f6e8a208d7d9b08925230ff0c34dc38680831de15e0842e7f943b958f495"; 613 613 } 614 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/en-CA/firefox-124.0b2.tar.bz2"; 614 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/en-CA/firefox-124.0b5.tar.bz2"; 615 615 locale = "en-CA"; 616 616 arch = "linux-i686"; 617 - sha256 = "ed1911bdb239e19791563e6705dc1b70eefa169898b96775bdaaf0aa7bf3dd29"; 617 + sha256 = "e1c3b136a9923e7f723599e4c41e2242709f93a137388c7a55c2fa01b0f8d66f"; 618 618 } 619 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/en-GB/firefox-124.0b2.tar.bz2"; 619 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/en-GB/firefox-124.0b5.tar.bz2"; 620 620 locale = "en-GB"; 621 621 arch = "linux-i686"; 622 - sha256 = "12a3191edae0f6ccb4c85494e0f0040d9bf925442c10a69c894da1712461ef0f"; 622 + sha256 = "4f231c143426cf73efae5ef599621fdc4378983058b582efb2276fecf9c4d741"; 623 623 } 624 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/en-US/firefox-124.0b2.tar.bz2"; 624 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/en-US/firefox-124.0b5.tar.bz2"; 625 625 locale = "en-US"; 626 626 arch = "linux-i686"; 627 - sha256 = "940bb46e4248c2a9071f4fb3d71b9586e86626297b969bef4e5ff528615554aa"; 627 + sha256 = "e327a18633e26e6a2f2c3339ca20bbc3439186ac8623d5ecc62a6229e11d73d7"; 628 628 } 629 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/eo/firefox-124.0b2.tar.bz2"; 629 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/eo/firefox-124.0b5.tar.bz2"; 630 630 locale = "eo"; 631 631 arch = "linux-i686"; 632 - sha256 = "10c70332248aa9018d887403f5c1092d6d98022132708b3e0e3943399b04b883"; 632 + sha256 = "b6914d14bfcd0cb9ca6753d3d73118914c76a6c1578415e6bda627f5ec60e817"; 633 633 } 634 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/es-AR/firefox-124.0b2.tar.bz2"; 634 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/es-AR/firefox-124.0b5.tar.bz2"; 635 635 locale = "es-AR"; 636 636 arch = "linux-i686"; 637 - sha256 = "35f97454fefa3b9a0ef3f9a9fa9e63a40d22787c6eb9d5095d5e34c30911a13d"; 637 + sha256 = "5106309277a0bdc496fdc1bf6d038664b390706821d8d16b82b9a5e844793a48"; 638 638 } 639 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/es-CL/firefox-124.0b2.tar.bz2"; 639 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/es-CL/firefox-124.0b5.tar.bz2"; 640 640 locale = "es-CL"; 641 641 arch = "linux-i686"; 642 - sha256 = "92ffe8ac01913b065b4032cb1094cc2a9260b1667b8a05c401c70c1b3bf3e17a"; 642 + sha256 = "920a6743d3c2589f0eed4fcb5db347dd451aea9ea692e41848f2571df04ed39a"; 643 643 } 644 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/es-ES/firefox-124.0b2.tar.bz2"; 644 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/es-ES/firefox-124.0b5.tar.bz2"; 645 645 locale = "es-ES"; 646 646 arch = "linux-i686"; 647 - sha256 = "a79e36d36869571f4478b91ef650a5d0b13a43e4f86961d426cf33e3743a0f81"; 647 + sha256 = "1e17d715730b510ddc39e1946da41221b68f157feef8b22fa93518afc035d268"; 648 648 } 649 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/es-MX/firefox-124.0b2.tar.bz2"; 649 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/es-MX/firefox-124.0b5.tar.bz2"; 650 650 locale = "es-MX"; 651 651 arch = "linux-i686"; 652 - sha256 = "fc950fa09d21889a75e234c4e23246e31ed30dfc50c0515ec19c511d4b481bfe"; 652 + sha256 = "8bb595e7f1b5487dc797583b1c72e53f67e978eb40afa8092fc8b9df22139e29"; 653 653 } 654 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/et/firefox-124.0b2.tar.bz2"; 654 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/et/firefox-124.0b5.tar.bz2"; 655 655 locale = "et"; 656 656 arch = "linux-i686"; 657 - sha256 = "089f99c63bade52974215cb1e57f98fec7ed324e62679843a4f9c393c0be1bc6"; 657 + sha256 = "afb7e22590c3ec2b2bc577f783c6121a0312041dfa983a4042ce1880299bd739"; 658 658 } 659 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/eu/firefox-124.0b2.tar.bz2"; 659 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/eu/firefox-124.0b5.tar.bz2"; 660 660 locale = "eu"; 661 661 arch = "linux-i686"; 662 - sha256 = "95f9056932a8c40cca3f90bdb8af0550c1ee9aa4318f17be467f603ff14cef6b"; 662 + sha256 = "5a054d18e7b80f3a3e0e38f8f65d726b2f7f71fd8641d10cb7b2a99ce2d40761"; 663 663 } 664 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/fa/firefox-124.0b2.tar.bz2"; 664 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/fa/firefox-124.0b5.tar.bz2"; 665 665 locale = "fa"; 666 666 arch = "linux-i686"; 667 - sha256 = "60e6d6954163029c7d7876b419fad35c87eca170b15fe6080b481aadb952180d"; 667 + sha256 = "37e9e4103ad71843732012b4f9576acb1e538404ad8b1f246a60a898598b94f5"; 668 668 } 669 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/ff/firefox-124.0b2.tar.bz2"; 669 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/ff/firefox-124.0b5.tar.bz2"; 670 670 locale = "ff"; 671 671 arch = "linux-i686"; 672 - sha256 = "c7bfe5a9b2050403f3608c54e824b2954fc2a2090eeda513179a1152e62b2b92"; 672 + sha256 = "4ef6ea7c74531085f295c4c24da699a903e862b93966effbc1ba788946c94514"; 673 673 } 674 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/fi/firefox-124.0b2.tar.bz2"; 674 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/fi/firefox-124.0b5.tar.bz2"; 675 675 locale = "fi"; 676 676 arch = "linux-i686"; 677 - sha256 = "454ac7290795b45a29c7394261d0c92caad9caa4220252c955c7c53634a77ec4"; 677 + sha256 = "aff1047d05b4fc1557a4a1a0913fb109f9a9ac913e1055dd3d83c84456a1ad11"; 678 678 } 679 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/fr/firefox-124.0b2.tar.bz2"; 679 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/fr/firefox-124.0b5.tar.bz2"; 680 680 locale = "fr"; 681 681 arch = "linux-i686"; 682 - sha256 = "7e2ea1d14a919e8f482ccb9376201aca19022ee55b5a31f05e4d296e7b6e41bc"; 682 + sha256 = "bf27f573772c6f4604ffd8b231c741bbbdf6f6f550d7a7e815c80c25448d68c2"; 683 683 } 684 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/fur/firefox-124.0b2.tar.bz2"; 684 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/fur/firefox-124.0b5.tar.bz2"; 685 685 locale = "fur"; 686 686 arch = "linux-i686"; 687 - sha256 = "1819d23e008886916fb5069413000e447809cc5928ad4d149552f4502aaa2c1b"; 687 + sha256 = "ce90c58dcda5735f20ce6d8cd6de600e3317c9b61bdaeb9cf906d835bc71cd34"; 688 688 } 689 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/fy-NL/firefox-124.0b2.tar.bz2"; 689 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/fy-NL/firefox-124.0b5.tar.bz2"; 690 690 locale = "fy-NL"; 691 691 arch = "linux-i686"; 692 - sha256 = "990afb6a57de950a0fb70a0ccfe5bdf162b1c899183e3adad97fdac146161870"; 692 + sha256 = "d8e9dec1c6ee2d2e9c7088d2667ead8bd5c25dff121945df79d1485858d46237"; 693 693 } 694 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/ga-IE/firefox-124.0b2.tar.bz2"; 694 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/ga-IE/firefox-124.0b5.tar.bz2"; 695 695 locale = "ga-IE"; 696 696 arch = "linux-i686"; 697 - sha256 = "09fa1efb59b8ad7de307f6b610b33455d6cc7a0337f34a8f129301654ab66388"; 697 + sha256 = "1019ed02595beccf552b06d966c2becf58c52bf63bf8bbfa7631c5467060a77d"; 698 698 } 699 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/gd/firefox-124.0b2.tar.bz2"; 699 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/gd/firefox-124.0b5.tar.bz2"; 700 700 locale = "gd"; 701 701 arch = "linux-i686"; 702 - sha256 = "8478a92590fac43ff43324b548d7ae259c5de605f4ce4e9ae1c7ba8e18b19ff3"; 702 + sha256 = "7e2b5c1f80810df8e22252321e0c87f62da5bf673d4d2bf7e32c4c235b6f8ba9"; 703 703 } 704 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/gl/firefox-124.0b2.tar.bz2"; 704 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/gl/firefox-124.0b5.tar.bz2"; 705 705 locale = "gl"; 706 706 arch = "linux-i686"; 707 - sha256 = "7f7433a74921f744500ac7db11df73705f5d852de8f98f87993b6cbc22064e55"; 707 + sha256 = "6080f23fa5ed30ecc29203be9b46722962605b4c6782636f8276b6d09812074c"; 708 708 } 709 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/gn/firefox-124.0b2.tar.bz2"; 709 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/gn/firefox-124.0b5.tar.bz2"; 710 710 locale = "gn"; 711 711 arch = "linux-i686"; 712 - sha256 = "56fb8e346604092e04959b2c81c7aa400ccdbb1ddd10d3f9e74b73dad40d45d5"; 712 + sha256 = "771aba5bf954301b0bd8a1f28fc5b21be380f044d663182db4da5c58a9811498"; 713 713 } 714 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/gu-IN/firefox-124.0b2.tar.bz2"; 714 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/gu-IN/firefox-124.0b5.tar.bz2"; 715 715 locale = "gu-IN"; 716 716 arch = "linux-i686"; 717 - sha256 = "b7e6e79418fdaf5cda925294f231e2fd53e1b0d37087691d2bf3beb5e76489ab"; 717 + sha256 = "c15d1bf95686b1c61b120c9dd68abcc82bb96f06e7053de38491bea049b7870e"; 718 718 } 719 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/he/firefox-124.0b2.tar.bz2"; 719 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/he/firefox-124.0b5.tar.bz2"; 720 720 locale = "he"; 721 721 arch = "linux-i686"; 722 - sha256 = "1de395bbf21428c64f32db852171f67d9ac45da9d16d29bfd8f5dab0a97cb6a5"; 722 + sha256 = "704db19843bd8aed88485b13e65e0ad81afb934a50264139bf4b0c78f0c7ac49"; 723 723 } 724 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/hi-IN/firefox-124.0b2.tar.bz2"; 724 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/hi-IN/firefox-124.0b5.tar.bz2"; 725 725 locale = "hi-IN"; 726 726 arch = "linux-i686"; 727 - sha256 = "7fb06025747de1c564c0ec13dc2fde96905cc0dfe97bcd85b38b4589047ed933"; 727 + sha256 = "9584a60e7eca3bc87c2d49c48dfeddbb910f5a5e8bd5250208095e9ded2c5a94"; 728 728 } 729 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/hr/firefox-124.0b2.tar.bz2"; 729 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/hr/firefox-124.0b5.tar.bz2"; 730 730 locale = "hr"; 731 731 arch = "linux-i686"; 732 - sha256 = "2fec6480adb336eed80e9be291ed15c9ea32827cabffae13e783588e43d660a2"; 732 + sha256 = "52b147f44dad1494b3460e37470656325d83866143071e4e4795a9d7ca5ffbd2"; 733 733 } 734 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/hsb/firefox-124.0b2.tar.bz2"; 734 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/hsb/firefox-124.0b5.tar.bz2"; 735 735 locale = "hsb"; 736 736 arch = "linux-i686"; 737 - sha256 = "fef4012c9bf37b4ce11297334f09b54bae25f569da60a10a1db6e40343ae2a95"; 737 + sha256 = "e2b6f044600d71cda816078e75d378df4145255eced332ead017fcf6795212ea"; 738 738 } 739 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/hu/firefox-124.0b2.tar.bz2"; 739 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/hu/firefox-124.0b5.tar.bz2"; 740 740 locale = "hu"; 741 741 arch = "linux-i686"; 742 - sha256 = "764029d04bd9833239d6649e1551807261ec9bbfa62baf679b2b268806bd2fb1"; 742 + sha256 = "8a61b35c4ff40fbaa8bd09597e33ebb5cd9d3291f7df3d160c46745d4cc39505"; 743 743 } 744 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/hy-AM/firefox-124.0b2.tar.bz2"; 744 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/hy-AM/firefox-124.0b5.tar.bz2"; 745 745 locale = "hy-AM"; 746 746 arch = "linux-i686"; 747 - sha256 = "97c7d35f406587904eca44981c2786273e1ca9d27396ed8e3328889935803e06"; 747 + sha256 = "19ab45664ebf3160ef71762df32f3ab61ba8e8d3facbf9219858f67cd669a2fe"; 748 748 } 749 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/ia/firefox-124.0b2.tar.bz2"; 749 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/ia/firefox-124.0b5.tar.bz2"; 750 750 locale = "ia"; 751 751 arch = "linux-i686"; 752 - sha256 = "73e55883abb72c9903c75cf6fd83d9501b209c91863faff4a6f5dd86ab2691e3"; 752 + sha256 = "8130c47f85fdf7c889fd264972ec3873cd824ab51aff1a786e909448d2cd8901"; 753 753 } 754 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/id/firefox-124.0b2.tar.bz2"; 754 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/id/firefox-124.0b5.tar.bz2"; 755 755 locale = "id"; 756 756 arch = "linux-i686"; 757 - sha256 = "8235188b0756edf63d9c49b7b078b9254a4f902cab8dc1b88d477bd86b6f4cf1"; 757 + sha256 = "e36e080403eee96f3b85c1516f9e0d95fa433f19bff038ef5b8d562139878378"; 758 758 } 759 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/is/firefox-124.0b2.tar.bz2"; 759 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/is/firefox-124.0b5.tar.bz2"; 760 760 locale = "is"; 761 761 arch = "linux-i686"; 762 - sha256 = "2b288009c99b66ab115be16159fb7f13c92af2a7076b16c029efe220c2cb7068"; 762 + sha256 = "0af7afa8188463b150bd0bb5a6d70280563a32fba63064238eb99ebd914dae43"; 763 763 } 764 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/it/firefox-124.0b2.tar.bz2"; 764 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/it/firefox-124.0b5.tar.bz2"; 765 765 locale = "it"; 766 766 arch = "linux-i686"; 767 - sha256 = "c752c720c292124f06dbb70dfcdd67a146fa2cc8ae874668218b72dd4ef1b65c"; 767 + sha256 = "39d4bb3eb6d4f332478dfd7151f681f912c48c9dace7fc5dad0684f114611e73"; 768 768 } 769 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/ja/firefox-124.0b2.tar.bz2"; 769 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/ja/firefox-124.0b5.tar.bz2"; 770 770 locale = "ja"; 771 771 arch = "linux-i686"; 772 - sha256 = "34c43c7800927fc6973b1f16aa54170634a487ebe125312e2055ba19bc080009"; 772 + sha256 = "04a1c82420b4bd333d49c4937a721a5bfd9c01479c975885ec12d6dce5646601"; 773 773 } 774 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/ka/firefox-124.0b2.tar.bz2"; 774 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/ka/firefox-124.0b5.tar.bz2"; 775 775 locale = "ka"; 776 776 arch = "linux-i686"; 777 - sha256 = "a2033551b1bbff58c31bacf696286937b1f64d14a0f31d03ae07313d29af0e47"; 777 + sha256 = "b3b9f59d8a0b8fb940edcf4ab2d9f68e59e20335410c93c362995739a58a0fcc"; 778 778 } 779 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/kab/firefox-124.0b2.tar.bz2"; 779 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/kab/firefox-124.0b5.tar.bz2"; 780 780 locale = "kab"; 781 781 arch = "linux-i686"; 782 - sha256 = "4acec4cedd4a381e256418e5fe437cc173a6383d7653d37c1e9e5d2394b10463"; 782 + sha256 = "b5632bc5575a1ddfcff3db4b92da6d9aad578170e491f55158f203225f74ef89"; 783 783 } 784 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/kk/firefox-124.0b2.tar.bz2"; 784 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/kk/firefox-124.0b5.tar.bz2"; 785 785 locale = "kk"; 786 786 arch = "linux-i686"; 787 - sha256 = "d25eac34b55bfbf2d3e07fa84063a7ec4f2c8b2001b4adf029bf30d55f40a5ca"; 787 + sha256 = "7228c374b1b3589dbe1b72be1c108e92b5d5b1482b211eb0920f0fe5eb8109ec"; 788 788 } 789 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/km/firefox-124.0b2.tar.bz2"; 789 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/km/firefox-124.0b5.tar.bz2"; 790 790 locale = "km"; 791 791 arch = "linux-i686"; 792 - sha256 = "d03a636b04c142350003363bb517288b2e89b662e8aebb57d14f1922594bf361"; 792 + sha256 = "4f33c09de0b2bfabad01aadb3a599606ccda4408aaca1f46b850c6d3b0cfc89a"; 793 793 } 794 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/kn/firefox-124.0b2.tar.bz2"; 794 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/kn/firefox-124.0b5.tar.bz2"; 795 795 locale = "kn"; 796 796 arch = "linux-i686"; 797 - sha256 = "687725ac097bcf14a9a8827feb3b8f349a88c6af73d8d3ead28e762dc59bbeb2"; 797 + sha256 = "1019326622395185993433b442246fe4f0cfff513b58143c0e8073c888dd8bd9"; 798 798 } 799 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/ko/firefox-124.0b2.tar.bz2"; 799 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/ko/firefox-124.0b5.tar.bz2"; 800 800 locale = "ko"; 801 801 arch = "linux-i686"; 802 - sha256 = "f3a2175461a7a80e24ce3039ec4df728a91ff22beb8931467ce729911d845abb"; 802 + sha256 = "3ef4b7bc685aad7c95c85fea9c66bb708fed3619233ceb99ae838d856988bb0f"; 803 803 } 804 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/lij/firefox-124.0b2.tar.bz2"; 804 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/lij/firefox-124.0b5.tar.bz2"; 805 805 locale = "lij"; 806 806 arch = "linux-i686"; 807 - sha256 = "94c927b3a6fc1fdf045669a7e99a5fafa9d41237d16a14ae4f9a1bf447be8da4"; 807 + sha256 = "6bb1069a877d6e70af29e47cc924e182e403ef6cd741272a4fb40c35a7661a1d"; 808 808 } 809 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/lt/firefox-124.0b2.tar.bz2"; 809 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/lt/firefox-124.0b5.tar.bz2"; 810 810 locale = "lt"; 811 811 arch = "linux-i686"; 812 - sha256 = "20365acd6a1336265faadb1e91dcab7543471b6d4084e2ba6d5771058462fdad"; 812 + sha256 = "4ab9105cedeae72c8bbed0ab3ef445d3aef9aa1da200e8011249d39193584bd0"; 813 813 } 814 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/lv/firefox-124.0b2.tar.bz2"; 814 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/lv/firefox-124.0b5.tar.bz2"; 815 815 locale = "lv"; 816 816 arch = "linux-i686"; 817 - sha256 = "68e886e4aa30387c658aa5b68b21188a7b89210a1cd6aa79b7fc3bf7dae8aac8"; 817 + sha256 = "66a9833d26660984ca37fb09b321bacd11882333eb416558d46854ac213f5d5c"; 818 818 } 819 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/mk/firefox-124.0b2.tar.bz2"; 819 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/mk/firefox-124.0b5.tar.bz2"; 820 820 locale = "mk"; 821 821 arch = "linux-i686"; 822 - sha256 = "c34e3272ab90c76794e770322b9d6fb76715e249c8f114c1dcc941fb4c5a2168"; 822 + sha256 = "3d5deb04c79687e5d364c734c30707980417dd478edacf83dc915103c8df1fff"; 823 823 } 824 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/mr/firefox-124.0b2.tar.bz2"; 824 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/mr/firefox-124.0b5.tar.bz2"; 825 825 locale = "mr"; 826 826 arch = "linux-i686"; 827 - sha256 = "24dabf9589f3d82dba29fc219513df7841ab4d039d4a3b5235c45aee2a7d4142"; 827 + sha256 = "217a6667c7ca77dc9225bbb5d590149dda4df4c50f8c367010bc1967d1de885c"; 828 828 } 829 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/ms/firefox-124.0b2.tar.bz2"; 829 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/ms/firefox-124.0b5.tar.bz2"; 830 830 locale = "ms"; 831 831 arch = "linux-i686"; 832 - sha256 = "b7b251b723ea0bc4545516172d29c6ee7de36c06c4de8a3850be0500384ec859"; 832 + sha256 = "2c4a574b86ebb09770174adc1906f036b4cd9a1047dbab2470503c27b8bf8c34"; 833 833 } 834 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/my/firefox-124.0b2.tar.bz2"; 834 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/my/firefox-124.0b5.tar.bz2"; 835 835 locale = "my"; 836 836 arch = "linux-i686"; 837 - sha256 = "7fac3b633b65d20d9c55fd38565797c14ce94403553accc2c41dae206395f293"; 837 + sha256 = "889185eac6e208029c98f32ab360d5d5d6706a6a9b74c8d0d6c223408b276bc3"; 838 838 } 839 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/nb-NO/firefox-124.0b2.tar.bz2"; 839 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/nb-NO/firefox-124.0b5.tar.bz2"; 840 840 locale = "nb-NO"; 841 841 arch = "linux-i686"; 842 - sha256 = "44855c63f4a7c133d0a8b3ecd2ad80a2671caf558fd97bf3001692028126ef7e"; 842 + sha256 = "54b3ebb3e3765edc5fda8dd16e77b0e64dc6f8c62062780f43fc31082b185dc2"; 843 843 } 844 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/ne-NP/firefox-124.0b2.tar.bz2"; 844 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/ne-NP/firefox-124.0b5.tar.bz2"; 845 845 locale = "ne-NP"; 846 846 arch = "linux-i686"; 847 - sha256 = "4e2a34d3c0fe86016b2f01a35b2617af3735b28bb7873aabf8668ed26ced2745"; 847 + sha256 = "d30e24a98bedba69ed1435dbd198e2cb581334df6bdab799e5a522808a111d78"; 848 848 } 849 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/nl/firefox-124.0b2.tar.bz2"; 849 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/nl/firefox-124.0b5.tar.bz2"; 850 850 locale = "nl"; 851 851 arch = "linux-i686"; 852 - sha256 = "09b618d19c9a3ffbcafaf4b9a75741d04de328d721a065526df8e95ea1c2de4f"; 852 + sha256 = "04d65559f5741c4546ae74645c32b8ffe26a72581e845c41a13485d8cfe30e21"; 853 853 } 854 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/nn-NO/firefox-124.0b2.tar.bz2"; 854 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/nn-NO/firefox-124.0b5.tar.bz2"; 855 855 locale = "nn-NO"; 856 856 arch = "linux-i686"; 857 - sha256 = "92bb2fa51f920c42addd1c8f3f93d887375baedcfb29d3915c86ff51a7a1af75"; 857 + sha256 = "b2691a3729afee02ab3b9eba68c08798950e912552d75723436914b4efa34919"; 858 858 } 859 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/oc/firefox-124.0b2.tar.bz2"; 859 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/oc/firefox-124.0b5.tar.bz2"; 860 860 locale = "oc"; 861 861 arch = "linux-i686"; 862 - sha256 = "e0042d9449a799094aa5f2c28cffbaf633807d56343ec403f497bcababa0979a"; 862 + sha256 = "fc78773fa0f6667a5685cfb641523df9996d25d3fd325d5c145ee533ad668a47"; 863 863 } 864 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/pa-IN/firefox-124.0b2.tar.bz2"; 864 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/pa-IN/firefox-124.0b5.tar.bz2"; 865 865 locale = "pa-IN"; 866 866 arch = "linux-i686"; 867 - sha256 = "af84162a056a60ec1677b17a91587e87e9b62c1d238a613b1fbb07e5cce214a8"; 867 + sha256 = "e7722d661ecb1bb90fcd3aaa74dc180e9f7319c7f291ccacdfd8b8bf7b47f3ca"; 868 868 } 869 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/pl/firefox-124.0b2.tar.bz2"; 869 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/pl/firefox-124.0b5.tar.bz2"; 870 870 locale = "pl"; 871 871 arch = "linux-i686"; 872 - sha256 = "6781465486cd966af11443e3df450979eb25753420160ef5fef98dc121d43c79"; 872 + sha256 = "b776220d9d296f62f6a73f6f6b8c48d681e6d51f06072d8fe18224ead2727e89"; 873 873 } 874 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/pt-BR/firefox-124.0b2.tar.bz2"; 874 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/pt-BR/firefox-124.0b5.tar.bz2"; 875 875 locale = "pt-BR"; 876 876 arch = "linux-i686"; 877 - sha256 = "8b338e9ef4fa42fb6d2f36d9dba1642f95267b645e7ef84f6fa4d395f895ac43"; 877 + sha256 = "31ab39129ac43049ee04baf7862a8f37f31eb5475474c3242d4bb65069ed05be"; 878 878 } 879 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/pt-PT/firefox-124.0b2.tar.bz2"; 879 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/pt-PT/firefox-124.0b5.tar.bz2"; 880 880 locale = "pt-PT"; 881 881 arch = "linux-i686"; 882 - sha256 = "490903e862af703908e340ff5a619a076534e66cb033fb505b9d484b933402bb"; 882 + sha256 = "051f0dc8f2d9673e9998f567e68c5d93192cf868998f9ee1c8480695c868abfe"; 883 883 } 884 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/rm/firefox-124.0b2.tar.bz2"; 884 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/rm/firefox-124.0b5.tar.bz2"; 885 885 locale = "rm"; 886 886 arch = "linux-i686"; 887 - sha256 = "5c7534786f2d4c2682b2a512babcfd1ee5eaf1c1f2ac5787b0f8081c4eefcba7"; 887 + sha256 = "ab7933e544de5d6302911970fa52af650c85ab3de3a1da40eb137463273c92c7"; 888 888 } 889 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/ro/firefox-124.0b2.tar.bz2"; 889 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/ro/firefox-124.0b5.tar.bz2"; 890 890 locale = "ro"; 891 891 arch = "linux-i686"; 892 - sha256 = "a783b0921654573f134a8635dca1274d89dc93453ae5efbdb78c3c1d7591b3cb"; 892 + sha256 = "ee617771912c1c0ae3bcff35a431dfb4409cfe6f4e7f4498fc6cc9402e57d9f6"; 893 893 } 894 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/ru/firefox-124.0b2.tar.bz2"; 894 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/ru/firefox-124.0b5.tar.bz2"; 895 895 locale = "ru"; 896 896 arch = "linux-i686"; 897 - sha256 = "c4d687be2850404fa1720adf9815b86d9b36c40eb30fd370567bbccfd49f0298"; 897 + sha256 = "26b2a86099de12870d55407a3742681b7a3ca1595b596355208c540728a6aa8c"; 898 898 } 899 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/sat/firefox-124.0b2.tar.bz2"; 899 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/sat/firefox-124.0b5.tar.bz2"; 900 900 locale = "sat"; 901 901 arch = "linux-i686"; 902 - sha256 = "a010c02ea3f4ec76f7de71f743faa728ef450c49a5a5aa9a14f2b9387beeea77"; 902 + sha256 = "dd2ccdb96290275332c1cc3c72c393b293d0fd2ba13248c92af3faeaf2fcb7f0"; 903 903 } 904 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/sc/firefox-124.0b2.tar.bz2"; 904 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/sc/firefox-124.0b5.tar.bz2"; 905 905 locale = "sc"; 906 906 arch = "linux-i686"; 907 - sha256 = "dfff4f0c69623696f482ae4be7153b1c8f45bab486729c06497d556c1764b564"; 907 + sha256 = "a802cf0fc342eb63ad6330dd75f28cb2a437a701b2e06128a2e1ad08d4622496"; 908 908 } 909 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/sco/firefox-124.0b2.tar.bz2"; 909 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/sco/firefox-124.0b5.tar.bz2"; 910 910 locale = "sco"; 911 911 arch = "linux-i686"; 912 - sha256 = "762c2a782d4558e175a947c9dda553baa6b72d8de9d5fe7a5492fcc1beb5a9a8"; 912 + sha256 = "56b0b4bd0db2e6c47e384e3c095a39fa0c70aa1a2a1710105ad99003c0ec7955"; 913 913 } 914 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/si/firefox-124.0b2.tar.bz2"; 914 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/si/firefox-124.0b5.tar.bz2"; 915 915 locale = "si"; 916 916 arch = "linux-i686"; 917 - sha256 = "1be1fbb87d7cf1fad185946932e3fdfcaa1763e959d3abd126c0cb880e3e4351"; 917 + sha256 = "4033b4b774bbc9fb7839dc1557b3ded270ee14deb70a116b111021ee7d22e3e7"; 918 918 } 919 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/sk/firefox-124.0b2.tar.bz2"; 919 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/sk/firefox-124.0b5.tar.bz2"; 920 920 locale = "sk"; 921 921 arch = "linux-i686"; 922 - sha256 = "dbe63db23c726e0c42390d57c57b87d1ad9af98bbd2a1dce95de66481e509e96"; 922 + sha256 = "d90ca875fb4d5aaf5ae2a2d9f26a62b3e78107eb900e570d54b1dca405b724ab"; 923 923 } 924 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/sl/firefox-124.0b2.tar.bz2"; 924 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/sl/firefox-124.0b5.tar.bz2"; 925 925 locale = "sl"; 926 926 arch = "linux-i686"; 927 - sha256 = "97f76716051e61faa9148e75608f0103dc3132b5f33021de90b59f0b2d22e421"; 927 + sha256 = "896acd6535ce42f8fb1ee66dd39137de3cf18d4439ec10dcb1d28ce45923d9d8"; 928 928 } 929 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/son/firefox-124.0b2.tar.bz2"; 929 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/son/firefox-124.0b5.tar.bz2"; 930 930 locale = "son"; 931 931 arch = "linux-i686"; 932 - sha256 = "370633a2800ca6dbe8bac859dd93663cb0491713e17f84d157f28e78eed71393"; 932 + sha256 = "2516376b0843971ffd6aef0ca14022835c963eb0f1360137a941189eca4ca273"; 933 933 } 934 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/sq/firefox-124.0b2.tar.bz2"; 934 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/sq/firefox-124.0b5.tar.bz2"; 935 935 locale = "sq"; 936 936 arch = "linux-i686"; 937 - sha256 = "911e0a6e6be7cf0bcb28914dfdcf936b0b50bdee74750faf383cafb13947d811"; 937 + sha256 = "ece99d294565c787b94cadd992aa9ae3596df5a3e0d79214606bf5115e962eed"; 938 938 } 939 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/sr/firefox-124.0b2.tar.bz2"; 939 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/sr/firefox-124.0b5.tar.bz2"; 940 940 locale = "sr"; 941 941 arch = "linux-i686"; 942 - sha256 = "dbe160780eb8e36e12dff33987a4433d40712691f9ae80e365671e4a7cf9500b"; 942 + sha256 = "0907bb87d06a9cdc7393953fc528f1aa01493520889c68cae81be1b1fcd0a4b9"; 943 943 } 944 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/sv-SE/firefox-124.0b2.tar.bz2"; 944 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/sv-SE/firefox-124.0b5.tar.bz2"; 945 945 locale = "sv-SE"; 946 946 arch = "linux-i686"; 947 - sha256 = "6aba4e8af1db24a463b899003e2d3dff4da71d48127712add142bdd7d970c0bd"; 947 + sha256 = "cec1b86e3f87680f95183090d08206271910ce13beacf0681d56497fba937228"; 948 948 } 949 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/szl/firefox-124.0b2.tar.bz2"; 949 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/szl/firefox-124.0b5.tar.bz2"; 950 950 locale = "szl"; 951 951 arch = "linux-i686"; 952 - sha256 = "81d293a8e72c4045c4d743bd1aa264d3f5e5523f98fbebee170328625f3c1cbf"; 952 + sha256 = "c28f2cdde800e3dc6acae4e257fc1c7466568294adf06e96ef26b66ed9786530"; 953 953 } 954 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/ta/firefox-124.0b2.tar.bz2"; 954 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/ta/firefox-124.0b5.tar.bz2"; 955 955 locale = "ta"; 956 956 arch = "linux-i686"; 957 - sha256 = "84f74f475ba05a3a96eba87c0fe003b4789e0c850fe0ffae9a7f0cb67ed43609"; 957 + sha256 = "f5b421495a032d3a584ebe43638bf2721f1400e5d5714140344301744d3cb6a7"; 958 958 } 959 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/te/firefox-124.0b2.tar.bz2"; 959 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/te/firefox-124.0b5.tar.bz2"; 960 960 locale = "te"; 961 961 arch = "linux-i686"; 962 - sha256 = "e60b27e7e101b13f014e56948bf30f4ab25f9bafa2a8a0f35c0feaa36c77d1dc"; 962 + sha256 = "9601c95bd9d8660b7c862370233b710e99ea2d789702a6d7812d75fe59ceb84d"; 963 963 } 964 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/tg/firefox-124.0b2.tar.bz2"; 964 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/tg/firefox-124.0b5.tar.bz2"; 965 965 locale = "tg"; 966 966 arch = "linux-i686"; 967 - sha256 = "b5dbb5049b6cfae7af1577bf44ce62ea229d92446b2e6cd0b00091b95949b3ce"; 967 + sha256 = "96837fd4aafeb63b54097193c776c798f03c86aeeb1f952a4bbb38ee37641db0"; 968 968 } 969 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/th/firefox-124.0b2.tar.bz2"; 969 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/th/firefox-124.0b5.tar.bz2"; 970 970 locale = "th"; 971 971 arch = "linux-i686"; 972 - sha256 = "5d97e3b51a1611908f13ce7eb3f7b5fad7bb6376dce5543b0220c953ea0d04d0"; 972 + sha256 = "c0fcaef5e94b5357747486c61088b5379da9fa76ebdf2da12ee47e7938f8012b"; 973 973 } 974 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/tl/firefox-124.0b2.tar.bz2"; 974 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/tl/firefox-124.0b5.tar.bz2"; 975 975 locale = "tl"; 976 976 arch = "linux-i686"; 977 - sha256 = "36820e779c310fd865a28d0e0dfec9b7a4bd82028731c78312c82bccfc4d61de"; 977 + sha256 = "9a78df48ab64fc9bfd58a770570abc75b3ece5295e483c87bd4b80b676699084"; 978 978 } 979 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/tr/firefox-124.0b2.tar.bz2"; 979 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/tr/firefox-124.0b5.tar.bz2"; 980 980 locale = "tr"; 981 981 arch = "linux-i686"; 982 - sha256 = "227e15b346d6eda324c2945cb9bb287130bb932415ee4acdbd20b898b957be42"; 982 + sha256 = "ba817e3b99ffb7f25005164ab5faf505896a526d2f6a3cdabac4ca9d5388d0a1"; 983 983 } 984 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/trs/firefox-124.0b2.tar.bz2"; 984 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/trs/firefox-124.0b5.tar.bz2"; 985 985 locale = "trs"; 986 986 arch = "linux-i686"; 987 - sha256 = "c75690dd665415b7b45b7160affe9134cf8e6181a6f0d3c818785e7f89cfd421"; 987 + sha256 = "d4d98090131f4222a89908dcd96ad723734187bfa12078df2cdde2eb88a42b80"; 988 988 } 989 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/uk/firefox-124.0b2.tar.bz2"; 989 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/uk/firefox-124.0b5.tar.bz2"; 990 990 locale = "uk"; 991 991 arch = "linux-i686"; 992 - sha256 = "a2c892a3611af4708356d49939bca3045c4a28c0e96edde50b293671a7e7778a"; 992 + sha256 = "0a89b2feb31cdb9b96f8576b53bb38188b78e3a225c75b5cc549d40f84239912"; 993 993 } 994 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/ur/firefox-124.0b2.tar.bz2"; 994 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/ur/firefox-124.0b5.tar.bz2"; 995 995 locale = "ur"; 996 996 arch = "linux-i686"; 997 - sha256 = "bb506bf2acdc9f6bc1781f859b2758ed6faf08326d8bfd5b2fbd5acc41111dfd"; 997 + sha256 = "a1f8bc32290d3b7c36796aa8d969e75346bbeb5f315cf38c143c0ca172bf171e"; 998 998 } 999 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/uz/firefox-124.0b2.tar.bz2"; 999 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/uz/firefox-124.0b5.tar.bz2"; 1000 1000 locale = "uz"; 1001 1001 arch = "linux-i686"; 1002 - sha256 = "d1d2c71fdb55630413c80a820fea6f3269bc4612af6a5c4b9ffa11dbe051dadf"; 1002 + sha256 = "43aa551a19e051e3e30ea2a36f66cdaf8136f51b3f8b3d59a22b8ffbe81111c1"; 1003 1003 } 1004 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/vi/firefox-124.0b2.tar.bz2"; 1004 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/vi/firefox-124.0b5.tar.bz2"; 1005 1005 locale = "vi"; 1006 1006 arch = "linux-i686"; 1007 - sha256 = "e681801883e39fc89a919eba6a0c73ccb8e341d0a0c900832e7b49a78c57454d"; 1007 + sha256 = "22c298ab967d7c3a54b1282890e15cc6fea5c8917281473eb623a0cf0f506255"; 1008 1008 } 1009 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/xh/firefox-124.0b2.tar.bz2"; 1009 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/xh/firefox-124.0b5.tar.bz2"; 1010 1010 locale = "xh"; 1011 1011 arch = "linux-i686"; 1012 - sha256 = "f68e316a11012f12c90a0b028f0e539e484b7f34d1e4cd693d943adf2c7ee198"; 1012 + sha256 = "de923b5cd70637072481a3f7807bff050c46271ade9be688a52bb4f37581478b"; 1013 1013 } 1014 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/zh-CN/firefox-124.0b2.tar.bz2"; 1014 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/zh-CN/firefox-124.0b5.tar.bz2"; 1015 1015 locale = "zh-CN"; 1016 1016 arch = "linux-i686"; 1017 - sha256 = "973d0dd3c052d41f15b4705e3948f761b7727b5ea7bf3fbd221ae9e5c55d7af8"; 1017 + sha256 = "a54545509427e22187e8da4f1aaffae25a727e9e82ae41a141d7dbe3c5f08a46"; 1018 1018 } 1019 - { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b2/linux-i686/zh-TW/firefox-124.0b2.tar.bz2"; 1019 + { url = "https://archive.mozilla.org/pub/firefox/releases/124.0b5/linux-i686/zh-TW/firefox-124.0b5.tar.bz2"; 1020 1020 locale = "zh-TW"; 1021 1021 arch = "linux-i686"; 1022 - sha256 = "dde83ed0876b328fca4a36fd430890c470cc2846226114f9d51221264065600f"; 1022 + sha256 = "ffb6a8b9041761bc2b77a1d5ab74c6fc4b973dbfd6e46b8967d20f52b8769b7b"; 1023 1023 } 1024 1024 ]; 1025 1025 }
+409 -409
pkgs/applications/networking/browsers/firefox-bin/developer-edition_sources.nix
··· 1 1 { 2 - version = "124.0b2"; 2 + version = "124.0b5"; 3 3 sources = [ 4 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/ach/firefox-124.0b2.tar.bz2"; 4 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/ach/firefox-124.0b5.tar.bz2"; 5 5 locale = "ach"; 6 6 arch = "linux-x86_64"; 7 - sha256 = "74793cf9f40a8417cd139a8a5c1eca067d775a1e68c86440ad81db2d84497cb2"; 7 + sha256 = "3a9d427227b0e507d013b8339c945736bc39d7360c12528017e2c46cd712b74b"; 8 8 } 9 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/af/firefox-124.0b2.tar.bz2"; 9 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/af/firefox-124.0b5.tar.bz2"; 10 10 locale = "af"; 11 11 arch = "linux-x86_64"; 12 - sha256 = "74c505164e6a0d8b175e3b2199b70547d4bdbccef020bc7fcbe257c069608c44"; 12 + sha256 = "f9389fcad849bc271805a4f6d646bf928c94b7cb848c87599397b0f6e03a5665"; 13 13 } 14 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/an/firefox-124.0b2.tar.bz2"; 14 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/an/firefox-124.0b5.tar.bz2"; 15 15 locale = "an"; 16 16 arch = "linux-x86_64"; 17 - sha256 = "3f9527cfdcd3f4b08f2fd78d377b1a837d7217576601b962ea20592041a0480b"; 17 + sha256 = "e021bd8a0c1c6c8f2df3a009586b31ce45f61e3cf38719ddef8166248d9fbd28"; 18 18 } 19 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/ar/firefox-124.0b2.tar.bz2"; 19 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/ar/firefox-124.0b5.tar.bz2"; 20 20 locale = "ar"; 21 21 arch = "linux-x86_64"; 22 - sha256 = "8a00ad9daa6c1c7ccf66b79b797a5d0a882859ad78fa37e9fd345fdb28f220ed"; 22 + sha256 = "49d099742322b2b263c27c1d86686f76b1fb8130a53b67080d1d616ffbcd4328"; 23 23 } 24 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/ast/firefox-124.0b2.tar.bz2"; 24 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/ast/firefox-124.0b5.tar.bz2"; 25 25 locale = "ast"; 26 26 arch = "linux-x86_64"; 27 - sha256 = "428328be0dabebb838c00492f35c9b3fd0fcaa97c8d42c9f1013fe8b1bad417d"; 27 + sha256 = "e0396631de1322a7a707451e12157101dbab304e2850300a3d49d4d4dfa54ba0"; 28 28 } 29 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/az/firefox-124.0b2.tar.bz2"; 29 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/az/firefox-124.0b5.tar.bz2"; 30 30 locale = "az"; 31 31 arch = "linux-x86_64"; 32 - sha256 = "c4db6c6aa1a290bc53aa62c40a4103ddf6de99bafa853a5abbe888213dbca475"; 32 + sha256 = "8e49721bb354ee02c773682fa955a7f6a6b39fa7a1deb5531bddfc6b65d9cac4"; 33 33 } 34 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/be/firefox-124.0b2.tar.bz2"; 34 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/be/firefox-124.0b5.tar.bz2"; 35 35 locale = "be"; 36 36 arch = "linux-x86_64"; 37 - sha256 = "e514ce12bb22492858f0656921239e787c712ac00194fce29569a529c3fdb4d1"; 37 + sha256 = "5e47c784631398d3fbcdeff8c7472b63491c6a762953ed737475d001c3f237cd"; 38 38 } 39 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/bg/firefox-124.0b2.tar.bz2"; 39 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/bg/firefox-124.0b5.tar.bz2"; 40 40 locale = "bg"; 41 41 arch = "linux-x86_64"; 42 - sha256 = "ff16975b2740bf9de9e791c9348aecbec9d100b67e31a117d86d27644a7c9c87"; 42 + sha256 = "efffce83ea3619b5370c765d1c56841c5da3139ede76f9cf1bb73990df6dc630"; 43 43 } 44 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/bn/firefox-124.0b2.tar.bz2"; 44 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/bn/firefox-124.0b5.tar.bz2"; 45 45 locale = "bn"; 46 46 arch = "linux-x86_64"; 47 - sha256 = "4c6940071a7c6f13edfc3d8c91866b95b36d7c3f0a3c01de3a4608812533282b"; 47 + sha256 = "20deb64cc3881e1ff7300db626088cda56447a90b28725bd0d86d5e600e924ea"; 48 48 } 49 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/br/firefox-124.0b2.tar.bz2"; 49 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/br/firefox-124.0b5.tar.bz2"; 50 50 locale = "br"; 51 51 arch = "linux-x86_64"; 52 - sha256 = "9a89d3f72df6ac42e75de85e5283fd7fa603a22043037efd291c176834abd26f"; 52 + sha256 = "79c05c6ced75184d302cbaa0f3a11c9560fc444f7cdc869426067e0e97e06f29"; 53 53 } 54 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/bs/firefox-124.0b2.tar.bz2"; 54 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/bs/firefox-124.0b5.tar.bz2"; 55 55 locale = "bs"; 56 56 arch = "linux-x86_64"; 57 - sha256 = "d5365e33356f207099880879c7d9acadd9161365ce47a64a6016dc572aa7e54c"; 57 + sha256 = "fa437eefe4b569f3271ee4feabe0f7636e3311a1b90ee08e59100a9603a92bc9"; 58 58 } 59 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/ca-valencia/firefox-124.0b2.tar.bz2"; 59 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/ca-valencia/firefox-124.0b5.tar.bz2"; 60 60 locale = "ca-valencia"; 61 61 arch = "linux-x86_64"; 62 - sha256 = "1d975036e67594bf488e0376e2cec3ed35860e343979d307ad41b079707d093c"; 62 + sha256 = "d134e16646ed46d894350d8758101aded28e94a203ea6380ddb708f63973fa0b"; 63 63 } 64 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/ca/firefox-124.0b2.tar.bz2"; 64 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/ca/firefox-124.0b5.tar.bz2"; 65 65 locale = "ca"; 66 66 arch = "linux-x86_64"; 67 - sha256 = "305a55e1ffbbcaf6a9dd7e22e860c2f93df0d22a76a8513398643cae12576201"; 67 + sha256 = "5620a53acc236bd3aea1e325936134e8f0743acf08aae617d24fa4496cf39f06"; 68 68 } 69 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/cak/firefox-124.0b2.tar.bz2"; 69 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/cak/firefox-124.0b5.tar.bz2"; 70 70 locale = "cak"; 71 71 arch = "linux-x86_64"; 72 - sha256 = "4e0879c0d4ea48250bdc957e9fa54d2de1f0710c35ce6955e12a3f8ce3b2f66b"; 72 + sha256 = "69700283c291f63e16e47a7a1a1074a2cae64708ce5fd2c0b2e2232829a6acb7"; 73 73 } 74 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/cs/firefox-124.0b2.tar.bz2"; 74 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/cs/firefox-124.0b5.tar.bz2"; 75 75 locale = "cs"; 76 76 arch = "linux-x86_64"; 77 - sha256 = "40d1cc5b9c5dfa0d368c5c1c3c078774883463d13414641135abd8b77d4d5f85"; 77 + sha256 = "efd6574b6a27aa77525edc3d1789b86a4ce3b39024670a3703ba652e8ac3252d"; 78 78 } 79 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/cy/firefox-124.0b2.tar.bz2"; 79 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/cy/firefox-124.0b5.tar.bz2"; 80 80 locale = "cy"; 81 81 arch = "linux-x86_64"; 82 - sha256 = "e177ea044ddfa85e6963c21d5fea6295f983a1ad03ebb3b5cf1d0e3c82234961"; 82 + sha256 = "4f13852f795a6ecce2cce51537412a7cfc820d95627548b136c9f63fde959dbf"; 83 83 } 84 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/da/firefox-124.0b2.tar.bz2"; 84 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/da/firefox-124.0b5.tar.bz2"; 85 85 locale = "da"; 86 86 arch = "linux-x86_64"; 87 - sha256 = "ef0acbe342ca124a02bce32bdb67f534dbc3965c794d60c878c1e412bb20ddd8"; 87 + sha256 = "bd1c60b9026e168d704c4effa522dd944f159abf3bcb839a9f50620e281c0eb5"; 88 88 } 89 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/de/firefox-124.0b2.tar.bz2"; 89 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/de/firefox-124.0b5.tar.bz2"; 90 90 locale = "de"; 91 91 arch = "linux-x86_64"; 92 - sha256 = "9fdaccea1990185581d6b004ca59044af49c2c9a559bce6ac3f2322a9f006978"; 92 + sha256 = "a0d9a1d95f802c1bd2251e96bbb694582acf69b4c63ec14f0f7ebe3201f8c55b"; 93 93 } 94 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/dsb/firefox-124.0b2.tar.bz2"; 94 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/dsb/firefox-124.0b5.tar.bz2"; 95 95 locale = "dsb"; 96 96 arch = "linux-x86_64"; 97 - sha256 = "a5aae339dd95e857b6c4c3e94c2a43379b711c2cff16c68f83290a94aa90c706"; 97 + sha256 = "be38971a053252fc897ad1c16165b991e4b94a5edaa1d1aa358c26c6cd47055c"; 98 98 } 99 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/el/firefox-124.0b2.tar.bz2"; 99 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/el/firefox-124.0b5.tar.bz2"; 100 100 locale = "el"; 101 101 arch = "linux-x86_64"; 102 - sha256 = "acee82b0e2b41350a3bf457d002653d2b4631c5453696d25c78f10b0d9fb5a75"; 102 + sha256 = "9be3cc3c4299e2ef1da36eb8b432b9afca72a103cc0e0c8d921147c003421e6e"; 103 103 } 104 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/en-CA/firefox-124.0b2.tar.bz2"; 104 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/en-CA/firefox-124.0b5.tar.bz2"; 105 105 locale = "en-CA"; 106 106 arch = "linux-x86_64"; 107 - sha256 = "fb04adbfb97fecb86d4508f9f3d30b534c055dd676bb440aeda9e2e6b14ca63f"; 107 + sha256 = "53edf88fa6281f86fd59e29aed42672488c217df9ee7cb610fe6823f38daefa2"; 108 108 } 109 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/en-GB/firefox-124.0b2.tar.bz2"; 109 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/en-GB/firefox-124.0b5.tar.bz2"; 110 110 locale = "en-GB"; 111 111 arch = "linux-x86_64"; 112 - sha256 = "326c1c63e361e1c5bdeea0b8522e2a73f333a3fb32cd3f4838ab6eb0243d1c63"; 112 + sha256 = "b1cf43d40fa62dc43c049be0f53b27c93412be3363e4f1b87e3edfc2b5b0a568"; 113 113 } 114 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/en-US/firefox-124.0b2.tar.bz2"; 114 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/en-US/firefox-124.0b5.tar.bz2"; 115 115 locale = "en-US"; 116 116 arch = "linux-x86_64"; 117 - sha256 = "e11b490aaede14535fcac0cf05410a8125002fdb8a0eb5fadc40f70059a2edfd"; 117 + sha256 = "a3a6ee9756e0a49675129cf9a82e24e55df476a68ecc7cf23e7d38ba16549b85"; 118 118 } 119 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/eo/firefox-124.0b2.tar.bz2"; 119 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/eo/firefox-124.0b5.tar.bz2"; 120 120 locale = "eo"; 121 121 arch = "linux-x86_64"; 122 - sha256 = "5bb6103b01d81b159a60dae76b327e943c394e73472299ae25a97cc611394595"; 122 + sha256 = "0ad69137b8befc8f472b0f39022842747b28a22f29695b0cced487ed7050a49c"; 123 123 } 124 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/es-AR/firefox-124.0b2.tar.bz2"; 124 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/es-AR/firefox-124.0b5.tar.bz2"; 125 125 locale = "es-AR"; 126 126 arch = "linux-x86_64"; 127 - sha256 = "39367f994b4c9fd4a72475bb0da452b9030fe71d044b9788a4cd68f43419c031"; 127 + sha256 = "70f7f24ede7387e4f3f1a16e06d5ad1eaed16cd20c07eb80f690ddd9a7f28d57"; 128 128 } 129 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/es-CL/firefox-124.0b2.tar.bz2"; 129 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/es-CL/firefox-124.0b5.tar.bz2"; 130 130 locale = "es-CL"; 131 131 arch = "linux-x86_64"; 132 - sha256 = "4dfceffc0bb03e5aaeba7d9277f2dd5fd95ea82673ef434ddcfe302376c227a0"; 132 + sha256 = "7dc56ac573ba34c358abd8e626a93524b5af09a83f0bc12ce1ffbc3bdbe9e138"; 133 133 } 134 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/es-ES/firefox-124.0b2.tar.bz2"; 134 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/es-ES/firefox-124.0b5.tar.bz2"; 135 135 locale = "es-ES"; 136 136 arch = "linux-x86_64"; 137 - sha256 = "3c806fc1b6da7358b7d7f35534c1004e8830cc3497016e357b28f3bb15b8bfbe"; 137 + sha256 = "77ecf7b33d05498ec6681f6248f2eb8d00869a3ac67a1f1d6e2ca4023cc03e4c"; 138 138 } 139 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/es-MX/firefox-124.0b2.tar.bz2"; 139 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/es-MX/firefox-124.0b5.tar.bz2"; 140 140 locale = "es-MX"; 141 141 arch = "linux-x86_64"; 142 - sha256 = "bfcd34c6cd99416cfa3072715a43bd657ef4724e7bb63cd072a56a259b8a7ce4"; 142 + sha256 = "85f2cb1788ff01356f3177973c7764ea8d6ce125c1fca1604f2273d8f0507627"; 143 143 } 144 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/et/firefox-124.0b2.tar.bz2"; 144 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/et/firefox-124.0b5.tar.bz2"; 145 145 locale = "et"; 146 146 arch = "linux-x86_64"; 147 - sha256 = "27e692508de1fa7101f34de598e13a8f351d8a780e7cf59b354e575fbf0e154e"; 147 + sha256 = "d409c5f2f299282f4196ff781bd906ea3c002aeab894b99fe12587ac2fcbfa2b"; 148 148 } 149 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/eu/firefox-124.0b2.tar.bz2"; 149 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/eu/firefox-124.0b5.tar.bz2"; 150 150 locale = "eu"; 151 151 arch = "linux-x86_64"; 152 - sha256 = "96afbd4330b0163da79cfdeb0c270db0fd82602599815ddaed0ef60f72d6273d"; 152 + sha256 = "b64a0c98d5153a0ba06f423f891a6b1c4aa573e973be974dba9a566dd891b6bd"; 153 153 } 154 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/fa/firefox-124.0b2.tar.bz2"; 154 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/fa/firefox-124.0b5.tar.bz2"; 155 155 locale = "fa"; 156 156 arch = "linux-x86_64"; 157 - sha256 = "73962b7aab17dddb853216336dab491168e95b84ee1788a3193c81b4c3357121"; 157 + sha256 = "6eae66efab9e9ce65e3f31f22de36f3b5aa9a5617dc12f4ac1c523edd54f4f24"; 158 158 } 159 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/ff/firefox-124.0b2.tar.bz2"; 159 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/ff/firefox-124.0b5.tar.bz2"; 160 160 locale = "ff"; 161 161 arch = "linux-x86_64"; 162 - sha256 = "37bec00b5277f237d28542d0eeba7706cd762de4f3e1909ea04e364230aaaf72"; 162 + sha256 = "e31a40ad54a2cb84ab43cf5341b73518508cf584d02c783f1f3259de1d06421e"; 163 163 } 164 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/fi/firefox-124.0b2.tar.bz2"; 164 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/fi/firefox-124.0b5.tar.bz2"; 165 165 locale = "fi"; 166 166 arch = "linux-x86_64"; 167 - sha256 = "cd7ad1f0073bc94d628c1e9c143a4bf1fae17617a3737f98bfbba5d94bff36c5"; 167 + sha256 = "5d3a3e5f1ffae23de87db266c00e8d2ed1f8a4bc4e304aa0ecc48fa46d6a5371"; 168 168 } 169 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/fr/firefox-124.0b2.tar.bz2"; 169 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/fr/firefox-124.0b5.tar.bz2"; 170 170 locale = "fr"; 171 171 arch = "linux-x86_64"; 172 - sha256 = "a40e2f8ea24bc1e5631f15e57dc4f5b9a4a9ecffe8795d267375d13d472a5322"; 172 + sha256 = "8bc969e514fe1e5108682a04e196b83f4ef13145b9f64a1b151517fb8f452f28"; 173 173 } 174 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/fur/firefox-124.0b2.tar.bz2"; 174 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/fur/firefox-124.0b5.tar.bz2"; 175 175 locale = "fur"; 176 176 arch = "linux-x86_64"; 177 - sha256 = "d79e52696e06c842ebacce9186f9de96a017df1403bef8ddf0f84c066691fc72"; 177 + sha256 = "0e3b1d41f195253d04bf809d533412448f8e8bd78aee1052c0c4400618422801"; 178 178 } 179 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/fy-NL/firefox-124.0b2.tar.bz2"; 179 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/fy-NL/firefox-124.0b5.tar.bz2"; 180 180 locale = "fy-NL"; 181 181 arch = "linux-x86_64"; 182 - sha256 = "a23b70e03540eae7d7c286cdf62d24fe92ec8723d70227728edeb1403d7e0e76"; 182 + sha256 = "ab9ebe35521aa3fb8d8685bbb0f21912435cd9cfa6c2d9e5e3d8a3287036d96f"; 183 183 } 184 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/ga-IE/firefox-124.0b2.tar.bz2"; 184 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/ga-IE/firefox-124.0b5.tar.bz2"; 185 185 locale = "ga-IE"; 186 186 arch = "linux-x86_64"; 187 - sha256 = "1f39f3ece2190a2bb0e7fda54b158e68245ab916f6ce625eb204677781ffdf37"; 187 + sha256 = "0f1435551e0d3c35b6a83d56e6df3d053fd10df28c154b13b307b032f17124de"; 188 188 } 189 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/gd/firefox-124.0b2.tar.bz2"; 189 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/gd/firefox-124.0b5.tar.bz2"; 190 190 locale = "gd"; 191 191 arch = "linux-x86_64"; 192 - sha256 = "21fa9fa6958d1bc2e6d2e0cb505e168dd86e16abf154d4a1c7d924fda46ec988"; 192 + sha256 = "a6eacbbd51c4b9effe1dce31fc51692d65ead167dcac1504c9005e4e006ca58a"; 193 193 } 194 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/gl/firefox-124.0b2.tar.bz2"; 194 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/gl/firefox-124.0b5.tar.bz2"; 195 195 locale = "gl"; 196 196 arch = "linux-x86_64"; 197 - sha256 = "20d8dc988e9c05c0df4b76bdf18c6fc84eca4d248375ededb2af4a08887e369a"; 197 + sha256 = "1ec59dd6e003582ca6b1f41fc99ae6ae31a8e36405a8a0a9d0f07916ed6f1cdf"; 198 198 } 199 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/gn/firefox-124.0b2.tar.bz2"; 199 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/gn/firefox-124.0b5.tar.bz2"; 200 200 locale = "gn"; 201 201 arch = "linux-x86_64"; 202 - sha256 = "3dd5677e7a1eb9edcd34a5041ac455bc53cc810649c0d9ee583ec8763d8c1239"; 202 + sha256 = "469f42a54fc30b9e16d1e2b077a6947f9abc4a2bb8538865d570fb6317a0a943"; 203 203 } 204 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/gu-IN/firefox-124.0b2.tar.bz2"; 204 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/gu-IN/firefox-124.0b5.tar.bz2"; 205 205 locale = "gu-IN"; 206 206 arch = "linux-x86_64"; 207 - sha256 = "13995938baf5da66bb67dbdfde6d1e7b5fc8d352a16e6d9acbaf38440660fcbf"; 207 + sha256 = "85ec6fe399c612a6816e5b9825af670b90b3f6964cecf9dcdd1e998edae29cd3"; 208 208 } 209 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/he/firefox-124.0b2.tar.bz2"; 209 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/he/firefox-124.0b5.tar.bz2"; 210 210 locale = "he"; 211 211 arch = "linux-x86_64"; 212 - sha256 = "45c6b2e365949e802e2884fddf8618848f3faeb7d41b4a7220832a2633d25e24"; 212 + sha256 = "c7b9af532375a0af8fd31704984c0f47a047e5b1a9217023b4568cb9a74fa3e9"; 213 213 } 214 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/hi-IN/firefox-124.0b2.tar.bz2"; 214 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/hi-IN/firefox-124.0b5.tar.bz2"; 215 215 locale = "hi-IN"; 216 216 arch = "linux-x86_64"; 217 - sha256 = "2368682cf5aff958474da85edcf157319ff5e11e80bbaaf79ecb4ed366e97dce"; 217 + sha256 = "687111147ec150675e64314c4d81c90052f1b0c66bdd0a02d8ff539dc51deeec"; 218 218 } 219 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/hr/firefox-124.0b2.tar.bz2"; 219 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/hr/firefox-124.0b5.tar.bz2"; 220 220 locale = "hr"; 221 221 arch = "linux-x86_64"; 222 - sha256 = "bd33c9148a93486468703bb01e63b2082b7786145e14bf2e4fdb9ff970e4bfab"; 222 + sha256 = "18e2657ab0b1cc94e8643d5398401584de29d1e13542712b0359ef05b28cdaf2"; 223 223 } 224 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/hsb/firefox-124.0b2.tar.bz2"; 224 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/hsb/firefox-124.0b5.tar.bz2"; 225 225 locale = "hsb"; 226 226 arch = "linux-x86_64"; 227 - sha256 = "8a821c32ecacb18528051d2158394aba7fccadb3baf32756faa6dd5e4afbac8e"; 227 + sha256 = "e741820dc9066a89292d6b741726590d2a14bd1664ccd553fb458f44e6379157"; 228 228 } 229 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/hu/firefox-124.0b2.tar.bz2"; 229 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/hu/firefox-124.0b5.tar.bz2"; 230 230 locale = "hu"; 231 231 arch = "linux-x86_64"; 232 - sha256 = "36870f34e7aa4e94ca4421e69b229e2564d07dedad0a7bae3969fe6a783eb823"; 232 + sha256 = "cbcce410d1ec563434ea44a26584ba655c26f6b41df8ecad97f41432e5f1f66d"; 233 233 } 234 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/hy-AM/firefox-124.0b2.tar.bz2"; 234 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/hy-AM/firefox-124.0b5.tar.bz2"; 235 235 locale = "hy-AM"; 236 236 arch = "linux-x86_64"; 237 - sha256 = "6954d49ff67257138e840da704e7a669d7a990aebf3045e3fb78bc5a4416713e"; 237 + sha256 = "2ebd55a1f5bb40702e63488666d4399e9b1ce128d04baf2397f6d4746c66decc"; 238 238 } 239 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/ia/firefox-124.0b2.tar.bz2"; 239 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/ia/firefox-124.0b5.tar.bz2"; 240 240 locale = "ia"; 241 241 arch = "linux-x86_64"; 242 - sha256 = "5e224701cd57c3df645d73735f900819d49e66533dc9927f087c48d615f58cef"; 242 + sha256 = "bd3451b27fe2fe2f1ffaff7fbce982a88f8be73da57fa86be15f3a6aefb4e6bd"; 243 243 } 244 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/id/firefox-124.0b2.tar.bz2"; 244 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/id/firefox-124.0b5.tar.bz2"; 245 245 locale = "id"; 246 246 arch = "linux-x86_64"; 247 - sha256 = "b745177d586c74e63d59b12f27609a870f27a7f2ff7db2d0e60fadd23fec044a"; 247 + sha256 = "ca292956567115be6867630c5c446a1133f7a9f92c0b8530758527faf13fd742"; 248 248 } 249 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/is/firefox-124.0b2.tar.bz2"; 249 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/is/firefox-124.0b5.tar.bz2"; 250 250 locale = "is"; 251 251 arch = "linux-x86_64"; 252 - sha256 = "536390a98b8adade9fbbeca2aea91544afc75a681f9ae602d1bba33d20e53148"; 252 + sha256 = "18261dd49c760210691c5f19e69df72c5db5b68334bccebc5b89e23d30feb97e"; 253 253 } 254 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/it/firefox-124.0b2.tar.bz2"; 254 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/it/firefox-124.0b5.tar.bz2"; 255 255 locale = "it"; 256 256 arch = "linux-x86_64"; 257 - sha256 = "367f690d57b8c95c30f967635ddfae8a8d397a55633b08b159d793c352873cf4"; 257 + sha256 = "a9a9f81a9b2802d5c9e35a665a20cc1bd94e95a1e7d428d3c5c7e51f92fd5025"; 258 258 } 259 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/ja/firefox-124.0b2.tar.bz2"; 259 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/ja/firefox-124.0b5.tar.bz2"; 260 260 locale = "ja"; 261 261 arch = "linux-x86_64"; 262 - sha256 = "d1c60935841e3e695c2469139c7f4b3fcc4229532ac4a32662110888952a2f25"; 262 + sha256 = "bf9cb77cb0fe54f5db5765ce921db21e6e5cb010a685e318af6c01399658be04"; 263 263 } 264 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/ka/firefox-124.0b2.tar.bz2"; 264 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/ka/firefox-124.0b5.tar.bz2"; 265 265 locale = "ka"; 266 266 arch = "linux-x86_64"; 267 - sha256 = "35735728917d747bda8f79f108aeacba7b8db5c7c5d8c77bb492f63d71cc6c58"; 267 + sha256 = "5d9d9147731060c7a4c6a3cb11778b8373ff05e31468b2a3b139627a851d3db1"; 268 268 } 269 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/kab/firefox-124.0b2.tar.bz2"; 269 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/kab/firefox-124.0b5.tar.bz2"; 270 270 locale = "kab"; 271 271 arch = "linux-x86_64"; 272 - sha256 = "98a4041993477d02dd1d4b3c9c992226428727cad7ced4ad6f47345f75474c21"; 272 + sha256 = "7ed1d9bec42b2a96531483c584f251a47894cde8b63fe6b2e916172309ef00b7"; 273 273 } 274 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/kk/firefox-124.0b2.tar.bz2"; 274 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/kk/firefox-124.0b5.tar.bz2"; 275 275 locale = "kk"; 276 276 arch = "linux-x86_64"; 277 - sha256 = "a8ffed7991f367ceb30ccbc9970f2d4b7bf7dec91835b7c5f798cec381261117"; 277 + sha256 = "3566f38898ba1e20e07063b330bcd629013ce428cf27d64f8b02e2e60e425fca"; 278 278 } 279 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/km/firefox-124.0b2.tar.bz2"; 279 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/km/firefox-124.0b5.tar.bz2"; 280 280 locale = "km"; 281 281 arch = "linux-x86_64"; 282 - sha256 = "1e6cfb179b95c37a8f9add7c0d078b8338ed8825e3f941a5828a70de81718858"; 282 + sha256 = "f3badaef42cb4d56f72913377d02ca28bf6e60d1637b807d1d5c9eea18db687a"; 283 283 } 284 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/kn/firefox-124.0b2.tar.bz2"; 284 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/kn/firefox-124.0b5.tar.bz2"; 285 285 locale = "kn"; 286 286 arch = "linux-x86_64"; 287 - sha256 = "262ccc79e9c54a2f9f292a1efff141693a58b4ef52e3edf21234c79d9cc6353d"; 287 + sha256 = "9f72af81ae057f491bb6d550790b10a7b98acdb1f39a9daded9fb62f06f531e7"; 288 288 } 289 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/ko/firefox-124.0b2.tar.bz2"; 289 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/ko/firefox-124.0b5.tar.bz2"; 290 290 locale = "ko"; 291 291 arch = "linux-x86_64"; 292 - sha256 = "79bba7be23599dcec75529d92f7be71372be60c884c6bfb14ff6291f6859283f"; 292 + sha256 = "85eb0c3787fc9c32f050cfdb735486769d5ec06c2162931c0a68a6c40d1caf54"; 293 293 } 294 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/lij/firefox-124.0b2.tar.bz2"; 294 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/lij/firefox-124.0b5.tar.bz2"; 295 295 locale = "lij"; 296 296 arch = "linux-x86_64"; 297 - sha256 = "c10b95b64b016c5c87117fdeeafa640fc61d47c35fb27f81cd75d5ca6e0f7862"; 297 + sha256 = "79e926bfed5f351f331142467740acee235389fd42d64d7d6f26b3fd7b2284b5"; 298 298 } 299 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/lt/firefox-124.0b2.tar.bz2"; 299 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/lt/firefox-124.0b5.tar.bz2"; 300 300 locale = "lt"; 301 301 arch = "linux-x86_64"; 302 - sha256 = "2f154e352db3400cd68bb2001a771e371ae6b584fbc108a586221438ed84a7db"; 302 + sha256 = "095526aca901b9a727a83b72568db9f98341d00c84f787b6cfe132af463ea570"; 303 303 } 304 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/lv/firefox-124.0b2.tar.bz2"; 304 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/lv/firefox-124.0b5.tar.bz2"; 305 305 locale = "lv"; 306 306 arch = "linux-x86_64"; 307 - sha256 = "65f9e00c03745576566244c3a0ce530f9cb838553110018371154f7a7e788e40"; 307 + sha256 = "00de227c3224da10b45ee7832d559faaa025d8a4ca0cfb554e28a93a1d89dbb3"; 308 308 } 309 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/mk/firefox-124.0b2.tar.bz2"; 309 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/mk/firefox-124.0b5.tar.bz2"; 310 310 locale = "mk"; 311 311 arch = "linux-x86_64"; 312 - sha256 = "f022d406e098f5fa20ee6fc4d81f4ad880c17607ba17afe51825f4702cd42992"; 312 + sha256 = "5975da0df9e6b2e12945d6e1d28a15b31764711481e9477cf71d464c64415c61"; 313 313 } 314 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/mr/firefox-124.0b2.tar.bz2"; 314 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/mr/firefox-124.0b5.tar.bz2"; 315 315 locale = "mr"; 316 316 arch = "linux-x86_64"; 317 - sha256 = "755f319023a6a921f599780cef447f50a777a6713a12abe28756392ba417eafc"; 317 + sha256 = "7164e8fab3e7a47f3da722bb7b91afc3dcbd895c0c06082ae0ed658bd56c1a29"; 318 318 } 319 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/ms/firefox-124.0b2.tar.bz2"; 319 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/ms/firefox-124.0b5.tar.bz2"; 320 320 locale = "ms"; 321 321 arch = "linux-x86_64"; 322 - sha256 = "517f9062ff8315e43d4f210272b86567e03492ca92316b6d8a77d879c0d2b77c"; 322 + sha256 = "a8850f422d6ee664a6c35e364bdde11cb6c057447354978a0ba16ba69366f885"; 323 323 } 324 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/my/firefox-124.0b2.tar.bz2"; 324 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/my/firefox-124.0b5.tar.bz2"; 325 325 locale = "my"; 326 326 arch = "linux-x86_64"; 327 - sha256 = "840388b97bab51613d75d345668cc7adff16bcff970a89bf014d1ba0ad9d713c"; 327 + sha256 = "bbb2dd78a54472b759fe3cc55658bdf5aa7dc020b6c108785fbee037aa4d60b2"; 328 328 } 329 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/nb-NO/firefox-124.0b2.tar.bz2"; 329 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/nb-NO/firefox-124.0b5.tar.bz2"; 330 330 locale = "nb-NO"; 331 331 arch = "linux-x86_64"; 332 - sha256 = "762b93199192c1f152b5d287a4419c940f58292d5121ecf165b0fef0e46cff9e"; 332 + sha256 = "b938a616d1d797663022891234875c8b11d08849420b2035841e2f9923ee98f7"; 333 333 } 334 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/ne-NP/firefox-124.0b2.tar.bz2"; 334 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/ne-NP/firefox-124.0b5.tar.bz2"; 335 335 locale = "ne-NP"; 336 336 arch = "linux-x86_64"; 337 - sha256 = "e8fae1d9e6633b940c88fa7560ea98201445e02943bd93a851978d34c920280a"; 337 + sha256 = "059c02e5ac4436d5b2335936986130bf798178950c34bf0761772eddbc0b290d"; 338 338 } 339 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/nl/firefox-124.0b2.tar.bz2"; 339 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/nl/firefox-124.0b5.tar.bz2"; 340 340 locale = "nl"; 341 341 arch = "linux-x86_64"; 342 - sha256 = "a3ab4ebd5d56bef06b996a17bb1f8a2a19c0d0957221c07127b338c610f702f5"; 342 + sha256 = "5f4aca4a2a5b6ef331bb8cdd011663e3b07197ec7a9acfad0ab72001d833a8d9"; 343 343 } 344 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/nn-NO/firefox-124.0b2.tar.bz2"; 344 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/nn-NO/firefox-124.0b5.tar.bz2"; 345 345 locale = "nn-NO"; 346 346 arch = "linux-x86_64"; 347 - sha256 = "1b57e17813998644c90f0e67055bef23d2fa99f7866c58c0e24e31b5c154c10b"; 347 + sha256 = "71f055e95e1f20ef687f0399c7c1c6130af4a156055e2330d6b8e41fb82f384d"; 348 348 } 349 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/oc/firefox-124.0b2.tar.bz2"; 349 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/oc/firefox-124.0b5.tar.bz2"; 350 350 locale = "oc"; 351 351 arch = "linux-x86_64"; 352 - sha256 = "8ea031ae317c5180fdec4024923913a34a9fbe91b6325f895adebae303989507"; 352 + sha256 = "b9e23ebc113bce19c0e792f544c2b83354a4c95982d541e86d5a140877d3ffdb"; 353 353 } 354 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/pa-IN/firefox-124.0b2.tar.bz2"; 354 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/pa-IN/firefox-124.0b5.tar.bz2"; 355 355 locale = "pa-IN"; 356 356 arch = "linux-x86_64"; 357 - sha256 = "a949438ea00b1e81a7e6c1bc0c0c482c27641c568b19bf5ec9bbb11e00a94bf3"; 357 + sha256 = "a10f44ae3f4fe85aa8885e8ff9c8b6b412e2922760cecd7cf92fcd623606512e"; 358 358 } 359 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/pl/firefox-124.0b2.tar.bz2"; 359 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/pl/firefox-124.0b5.tar.bz2"; 360 360 locale = "pl"; 361 361 arch = "linux-x86_64"; 362 - sha256 = "973c774fa1ed32d6a60cd45a285369735dd1a6e97f69369be1ceec621068d4f4"; 362 + sha256 = "8cb1458f0df89a59aef33d6c35ffc0d267f3ed0fe09ba3c9d4bb4e73c2594c65"; 363 363 } 364 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/pt-BR/firefox-124.0b2.tar.bz2"; 364 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/pt-BR/firefox-124.0b5.tar.bz2"; 365 365 locale = "pt-BR"; 366 366 arch = "linux-x86_64"; 367 - sha256 = "21b16694ddd7fd9419f60d3ed133df088b473b0c315153ae3e1d4d29fd728d62"; 367 + sha256 = "3d4d6fd8f2c79b7953ae3fff5d8a9a3e6b0b90c700205640648db351fcd9ade9"; 368 368 } 369 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/pt-PT/firefox-124.0b2.tar.bz2"; 369 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/pt-PT/firefox-124.0b5.tar.bz2"; 370 370 locale = "pt-PT"; 371 371 arch = "linux-x86_64"; 372 - sha256 = "52278307a464713fb118d7a04b8f5c9719dff4d06fec0c50d83e74a944c76328"; 372 + sha256 = "ea42d3b23a30f7052b4ffc019ba6ffa082d5d685ede24654908ab03c8c8db318"; 373 373 } 374 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/rm/firefox-124.0b2.tar.bz2"; 374 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/rm/firefox-124.0b5.tar.bz2"; 375 375 locale = "rm"; 376 376 arch = "linux-x86_64"; 377 - sha256 = "0d8a6e0eada48e70d38cd280936e51e8d4f02eff0b3331d3ec7a8376336f0b9a"; 377 + sha256 = "50094bff240efd4c49d4247827a50a85ccb8cf025217b486d85fdf35656eea83"; 378 378 } 379 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/ro/firefox-124.0b2.tar.bz2"; 379 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/ro/firefox-124.0b5.tar.bz2"; 380 380 locale = "ro"; 381 381 arch = "linux-x86_64"; 382 - sha256 = "1ac3741d0b14741ddb58515077787dbb642a20a6ee4077ae54eb6da6e70e10b6"; 382 + sha256 = "707b878228df1ca1e9f05570a7633575dda66bfb2be2e1b2a92194e101e0c124"; 383 383 } 384 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/ru/firefox-124.0b2.tar.bz2"; 384 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/ru/firefox-124.0b5.tar.bz2"; 385 385 locale = "ru"; 386 386 arch = "linux-x86_64"; 387 - sha256 = "609971dd8611e956e702ccf5a77e89fde0f371cabc047093859e2dce5da8a00d"; 387 + sha256 = "de342f890331beaaf1d9f2809baf454940edfa7a5cd9364b4ccf884ca4cf5be0"; 388 388 } 389 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/sat/firefox-124.0b2.tar.bz2"; 389 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/sat/firefox-124.0b5.tar.bz2"; 390 390 locale = "sat"; 391 391 arch = "linux-x86_64"; 392 - sha256 = "be01ee3d3747fba34058c827b202551363cce2ae8281dab3fe80b90f7fab389a"; 392 + sha256 = "52c1c9476158d2d497faf8abc9e3beb883abd951214f04daf8696cac84806dc7"; 393 393 } 394 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/sc/firefox-124.0b2.tar.bz2"; 394 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/sc/firefox-124.0b5.tar.bz2"; 395 395 locale = "sc"; 396 396 arch = "linux-x86_64"; 397 - sha256 = "243dcd83e58b358f48dddc1532166b2c86c576da3d0dac663e220ff22c402c4c"; 397 + sha256 = "a4bf499bd0eb3e4b084b63725f2d1cacf51992218429d593e68564ed3400ede5"; 398 398 } 399 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/sco/firefox-124.0b2.tar.bz2"; 399 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/sco/firefox-124.0b5.tar.bz2"; 400 400 locale = "sco"; 401 401 arch = "linux-x86_64"; 402 - sha256 = "9f8fd14b7025ae1dcb7ea118225577f8c51fa3084d84c38b88b7b252fb79e29c"; 402 + sha256 = "210e023054d80f11043861bd5c866d607ab275ee2bcdbc26695d63c3a6dbcfb8"; 403 403 } 404 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/si/firefox-124.0b2.tar.bz2"; 404 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/si/firefox-124.0b5.tar.bz2"; 405 405 locale = "si"; 406 406 arch = "linux-x86_64"; 407 - sha256 = "4d80f8bc1f0a39938d51f0db0f06fecf76fba9ff88e3f894a2dc2bbbdc50b013"; 407 + sha256 = "92734b3ede3cad670987a741504c88c967bffbad342c6019342f62344a967e6f"; 408 408 } 409 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/sk/firefox-124.0b2.tar.bz2"; 409 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/sk/firefox-124.0b5.tar.bz2"; 410 410 locale = "sk"; 411 411 arch = "linux-x86_64"; 412 - sha256 = "6faea76d228a88c4973d220ce571b4f992496aa7026018dad4350114d5fe0db3"; 412 + sha256 = "23170691d560359be0b92e3f43d468bbdae3df8b92a3fa3e56289dbe4b79a0d4"; 413 413 } 414 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/sl/firefox-124.0b2.tar.bz2"; 414 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/sl/firefox-124.0b5.tar.bz2"; 415 415 locale = "sl"; 416 416 arch = "linux-x86_64"; 417 - sha256 = "2edb42c9aef0670b50acc2beace6f26210567b1efb43c2030e950d38f851a7bf"; 417 + sha256 = "99b6aff6d04cde61fe4341c332a047c8d72ed47891b8d7b5b5f3300cfa24adea"; 418 418 } 419 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/son/firefox-124.0b2.tar.bz2"; 419 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/son/firefox-124.0b5.tar.bz2"; 420 420 locale = "son"; 421 421 arch = "linux-x86_64"; 422 - sha256 = "30546cdaa39d46ef8f1396fed2cb06cf2d550045ebc03e7f8f5557b689cf74ec"; 422 + sha256 = "7cfb51266358c6ccefd8be658074652be522f9dd08afa4fbd66c66ea6e1c301c"; 423 423 } 424 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/sq/firefox-124.0b2.tar.bz2"; 424 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/sq/firefox-124.0b5.tar.bz2"; 425 425 locale = "sq"; 426 426 arch = "linux-x86_64"; 427 - sha256 = "7d4efd553a2e28aa4c853c6a1596139fafe67198d8f85afb47fceba7661e95ac"; 427 + sha256 = "36c2549c2866c02fe7439fb0aab22472a1fe08499ef903c4d100d6fc5a5382ae"; 428 428 } 429 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/sr/firefox-124.0b2.tar.bz2"; 429 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/sr/firefox-124.0b5.tar.bz2"; 430 430 locale = "sr"; 431 431 arch = "linux-x86_64"; 432 - sha256 = "37d42cd9317ae0ec236c2cf2979247391be9787080dfa625888e7d215b47e141"; 432 + sha256 = "72d68fc9b2c27208ee82dc0b12a36c2c830dc0dd8371002f65e83d2fa9bfc580"; 433 433 } 434 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/sv-SE/firefox-124.0b2.tar.bz2"; 434 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/sv-SE/firefox-124.0b5.tar.bz2"; 435 435 locale = "sv-SE"; 436 436 arch = "linux-x86_64"; 437 - sha256 = "16ab2cb27e787e8981f7af527ddda5b85f384cb893eddf2d9ab064f667843aa1"; 437 + sha256 = "e404bfbec892bad57b8c4214476ab24154bb364f4bf417711e108b924cb1a0ef"; 438 438 } 439 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/szl/firefox-124.0b2.tar.bz2"; 439 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/szl/firefox-124.0b5.tar.bz2"; 440 440 locale = "szl"; 441 441 arch = "linux-x86_64"; 442 - sha256 = "945b54ed7c810e95be63a58d651c7fbf4e7c8fce820d3ae1a8994b79c90e8fc3"; 442 + sha256 = "396e3a91b623084fb01e5cfeb54b31265f64b2d40220c825013358ce6e91c086"; 443 443 } 444 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/ta/firefox-124.0b2.tar.bz2"; 444 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/ta/firefox-124.0b5.tar.bz2"; 445 445 locale = "ta"; 446 446 arch = "linux-x86_64"; 447 - sha256 = "81d685c7d67d5d78ef6338524ddf49c4701b0eb4f3170b292b3738672f8f434d"; 447 + sha256 = "3aee12fd06ed6e297c51a7f896ec6c2b6c9d9976963a3b7be38e15ee2f417363"; 448 448 } 449 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/te/firefox-124.0b2.tar.bz2"; 449 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/te/firefox-124.0b5.tar.bz2"; 450 450 locale = "te"; 451 451 arch = "linux-x86_64"; 452 - sha256 = "b06432c05a9a9af720a0d3fb13d4bdf2f0b911aacfd1b4be0262551f04bd21cd"; 452 + sha256 = "879b11760080f552185afdfa7d85e97ec3de1582325c365db8e706a2479d952e"; 453 453 } 454 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/tg/firefox-124.0b2.tar.bz2"; 454 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/tg/firefox-124.0b5.tar.bz2"; 455 455 locale = "tg"; 456 456 arch = "linux-x86_64"; 457 - sha256 = "004214989af19e056281be2e8117fa3df84fd289038b40428ceff0f8927cd13e"; 457 + sha256 = "142fa013b4c9c25cb3cefaa0c505867abc9f6a740436596c8c71eff2b2c89b0c"; 458 458 } 459 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/th/firefox-124.0b2.tar.bz2"; 459 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/th/firefox-124.0b5.tar.bz2"; 460 460 locale = "th"; 461 461 arch = "linux-x86_64"; 462 - sha256 = "021711b103a1598662ca158625285042ac56493afe4f85fba06247af4cf204c3"; 462 + sha256 = "9b6433258f1c78b91ba027a185a393683679087d6a718bfa72dff6b29230937a"; 463 463 } 464 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/tl/firefox-124.0b2.tar.bz2"; 464 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/tl/firefox-124.0b5.tar.bz2"; 465 465 locale = "tl"; 466 466 arch = "linux-x86_64"; 467 - sha256 = "963935bde9203ca934606bdb4541b5163766102dd4bd061b92675d1d4bd18e9f"; 467 + sha256 = "4995d72b2c6f7c36df2bec5d7d6d43db2ab486a4666c8c494c3980ab05b28f58"; 468 468 } 469 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/tr/firefox-124.0b2.tar.bz2"; 469 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/tr/firefox-124.0b5.tar.bz2"; 470 470 locale = "tr"; 471 471 arch = "linux-x86_64"; 472 - sha256 = "b3921594d76954ffd291093a1ab9be568660f764ab21aca56be6b045f9860eb4"; 472 + sha256 = "d69e754cd73a7160ab165cc2e9ac9152c7ce21c1f1c80b770505055dc12758b8"; 473 473 } 474 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/trs/firefox-124.0b2.tar.bz2"; 474 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/trs/firefox-124.0b5.tar.bz2"; 475 475 locale = "trs"; 476 476 arch = "linux-x86_64"; 477 - sha256 = "9669b9047cb3216b43beb1e2fcbce26db8ddef3246c110ba721ecacc6217ef8a"; 477 + sha256 = "e7b548bcccb1fb1dd667db515b3de7b434d8ec2f6b240bfb9d2abb546fd64352"; 478 478 } 479 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/uk/firefox-124.0b2.tar.bz2"; 479 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/uk/firefox-124.0b5.tar.bz2"; 480 480 locale = "uk"; 481 481 arch = "linux-x86_64"; 482 - sha256 = "1763a89bc98245ae10fdaeabea46edfeb883c77eacfcb60ea32d98e4165bde9c"; 482 + sha256 = "6b8e56538a29bd538312fda7e423e151dbf7f9818583cc855c9c6532f05012e7"; 483 483 } 484 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/ur/firefox-124.0b2.tar.bz2"; 484 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/ur/firefox-124.0b5.tar.bz2"; 485 485 locale = "ur"; 486 486 arch = "linux-x86_64"; 487 - sha256 = "d27b5ca78b6cc65bfc4dac1fb634e984cf5d6276f27a2ae6292fe990ee54d686"; 487 + sha256 = "94f69b4181bfa72981a844f133fdbd6e9ca7e82688c7c75a0ceb8a1a3b3b4962"; 488 488 } 489 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/uz/firefox-124.0b2.tar.bz2"; 489 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/uz/firefox-124.0b5.tar.bz2"; 490 490 locale = "uz"; 491 491 arch = "linux-x86_64"; 492 - sha256 = "76f0b7572315a740d2618bb9c4535a53079c96b467cd949b89f7de19e3eb27d5"; 492 + sha256 = "2c110757681fa6bbb568cb4a73cec0dda794215a78c0bc497327aa69c558e56d"; 493 493 } 494 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/vi/firefox-124.0b2.tar.bz2"; 494 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/vi/firefox-124.0b5.tar.bz2"; 495 495 locale = "vi"; 496 496 arch = "linux-x86_64"; 497 - sha256 = "24034052bc94a736491adc5b66671108c9534411322a51681465e2797609c8ae"; 497 + sha256 = "a737e018da186db9d368d9db84f96874b66d211de7dfe6f6c96c51d71296418c"; 498 498 } 499 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/xh/firefox-124.0b2.tar.bz2"; 499 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/xh/firefox-124.0b5.tar.bz2"; 500 500 locale = "xh"; 501 501 arch = "linux-x86_64"; 502 - sha256 = "a26013df15666d3a41a7fe246264e61e8870ae57f6a3b7801debae83fee22b53"; 502 + sha256 = "ca7c53e1ad88430cfa59a8f818ced58ab211ea50da640202692857a86487a4b9"; 503 503 } 504 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/zh-CN/firefox-124.0b2.tar.bz2"; 504 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/zh-CN/firefox-124.0b5.tar.bz2"; 505 505 locale = "zh-CN"; 506 506 arch = "linux-x86_64"; 507 - sha256 = "e3c268df2ad614ef363c7fbbdf40ed2843d7893f618e0dee1f600431959445bb"; 507 + sha256 = "7f221cb142947db55f1bcd8bfc3951372ee99319f2cffbe92ac6e2c95d1ff30f"; 508 508 } 509 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-x86_64/zh-TW/firefox-124.0b2.tar.bz2"; 509 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-x86_64/zh-TW/firefox-124.0b5.tar.bz2"; 510 510 locale = "zh-TW"; 511 511 arch = "linux-x86_64"; 512 - sha256 = "9be0da58e8ce4f2c803e8525f14f2c0bde65646de4786ad1e394519a2b772e8f"; 512 + sha256 = "25c10e07d9257649253d8acdbf17a8e7f743c7365cebec1d33a4324e57730463"; 513 513 } 514 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/ach/firefox-124.0b2.tar.bz2"; 514 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/ach/firefox-124.0b5.tar.bz2"; 515 515 locale = "ach"; 516 516 arch = "linux-i686"; 517 - sha256 = "2f490132f46d7911618257f7cee0acee78639dc3d956695bf90d9f941deca8fc"; 517 + sha256 = "6410b114a2c5daf887ac9a38acb844b711bba3f3ea91019711a72bc92a9e6fb8"; 518 518 } 519 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/af/firefox-124.0b2.tar.bz2"; 519 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/af/firefox-124.0b5.tar.bz2"; 520 520 locale = "af"; 521 521 arch = "linux-i686"; 522 - sha256 = "9aafc0d5e31d4a2b66eb073f55a9e4fd7f42472f5547b527db5cb6a1c1bcce2a"; 522 + sha256 = "b36bc55464796fb51652eab114df0684d9ff6a24eed76e94d5646f34b62ce801"; 523 523 } 524 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/an/firefox-124.0b2.tar.bz2"; 524 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/an/firefox-124.0b5.tar.bz2"; 525 525 locale = "an"; 526 526 arch = "linux-i686"; 527 - sha256 = "d983a30c6b00e606a871004186dffe3ea030c54274c3dfae29a10115388705c0"; 527 + sha256 = "9943120acfe5fc1f3c002bad9e594a53b3b0eb94873de3853d8f875faff79280"; 528 528 } 529 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/ar/firefox-124.0b2.tar.bz2"; 529 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/ar/firefox-124.0b5.tar.bz2"; 530 530 locale = "ar"; 531 531 arch = "linux-i686"; 532 - sha256 = "0d3799364eef781abef7649947a53c5f4545f79baf934f47563615b4b112f2b7"; 532 + sha256 = "753de19d7c7b6035a72829f99b77577857b0aa4da196a7925d0c8123679c4755"; 533 533 } 534 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/ast/firefox-124.0b2.tar.bz2"; 534 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/ast/firefox-124.0b5.tar.bz2"; 535 535 locale = "ast"; 536 536 arch = "linux-i686"; 537 - sha256 = "644c4170f7efc88fbdacb74ce1d679fe38551fc22eee6bf914f230d5b9980456"; 537 + sha256 = "c804f9873eb9e9d03ad0814c541656a8391af36183f98047bb739e9d32751479"; 538 538 } 539 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/az/firefox-124.0b2.tar.bz2"; 539 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/az/firefox-124.0b5.tar.bz2"; 540 540 locale = "az"; 541 541 arch = "linux-i686"; 542 - sha256 = "d573b888d6541af8cc00e3429c9a0cc8af0e5036e61ed45c53aed0c3e18719f7"; 542 + sha256 = "b0039d1c965c957f99b262611d79c751c34b0e65710e336fa258d4621f5bbcb1"; 543 543 } 544 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/be/firefox-124.0b2.tar.bz2"; 544 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/be/firefox-124.0b5.tar.bz2"; 545 545 locale = "be"; 546 546 arch = "linux-i686"; 547 - sha256 = "e59510204f159b62ec7503a7e11e15b2fcde48844f59bbca777e8e4a4a95e18c"; 547 + sha256 = "648d859b8b19c5b5aad1260436752537534008c668b3e6fbfd99760fe0159a75"; 548 548 } 549 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/bg/firefox-124.0b2.tar.bz2"; 549 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/bg/firefox-124.0b5.tar.bz2"; 550 550 locale = "bg"; 551 551 arch = "linux-i686"; 552 - sha256 = "5913894496ef63830920478ac7bc736942ddf4a18723b5ca3c608045e7346bab"; 552 + sha256 = "1df511632cef19795f1f1dbd4d9162654f3ad7fb6f82f8f0042f31692decb3e0"; 553 553 } 554 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/bn/firefox-124.0b2.tar.bz2"; 554 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/bn/firefox-124.0b5.tar.bz2"; 555 555 locale = "bn"; 556 556 arch = "linux-i686"; 557 - sha256 = "2c06c054d4af08bb6016111e23f5acc175f48dc66fe806d200315dd61513ff57"; 557 + sha256 = "12eebe199a907506e279bb13ecbca0648acb610370e55b45337f21c62b779fbd"; 558 558 } 559 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/br/firefox-124.0b2.tar.bz2"; 559 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/br/firefox-124.0b5.tar.bz2"; 560 560 locale = "br"; 561 561 arch = "linux-i686"; 562 - sha256 = "ed4912612518db7f25ec9ab23857b917b5e15922d25b82e1cd9df5c8dfc62ca7"; 562 + sha256 = "4fe652739af9415f50117112fae884cc8965092772c6394916f593144e232096"; 563 563 } 564 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/bs/firefox-124.0b2.tar.bz2"; 564 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/bs/firefox-124.0b5.tar.bz2"; 565 565 locale = "bs"; 566 566 arch = "linux-i686"; 567 - sha256 = "0e2a80167239a6f52c7c219020423360a7fa7507776d63885b4313d5673e7bc5"; 567 + sha256 = "e1c53f84cbdcb0e54885c95bfabcea4e3af385ef2aa7be97e90ff900ba90225e"; 568 568 } 569 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/ca-valencia/firefox-124.0b2.tar.bz2"; 569 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/ca-valencia/firefox-124.0b5.tar.bz2"; 570 570 locale = "ca-valencia"; 571 571 arch = "linux-i686"; 572 - sha256 = "401f65c35aad581550a71b9e23d75fd315c78706baccef239575315aa6cd7691"; 572 + sha256 = "cdae0f83ab760f8799f1059d9b0bb7ad9f9c30366ac0bacb7f7666baaf87dacb"; 573 573 } 574 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/ca/firefox-124.0b2.tar.bz2"; 574 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/ca/firefox-124.0b5.tar.bz2"; 575 575 locale = "ca"; 576 576 arch = "linux-i686"; 577 - sha256 = "01cdab31cfc7d7cb9c3dd546772086653c4857f7fb5483938555c24e79b2dd82"; 577 + sha256 = "f604aeb476b0c244dc0d8da499f2da74d0637320794d8b74c8a1ca05839fe6f3"; 578 578 } 579 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/cak/firefox-124.0b2.tar.bz2"; 579 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/cak/firefox-124.0b5.tar.bz2"; 580 580 locale = "cak"; 581 581 arch = "linux-i686"; 582 - sha256 = "7285403b994369d50b91fd0461966fd135575484f0f5b410dac8e30612a33d67"; 582 + sha256 = "9f13a7c93fc8aebee8b819db09dd8a9275c3c2b87771e1f784e6332ac00384d2"; 583 583 } 584 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/cs/firefox-124.0b2.tar.bz2"; 584 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/cs/firefox-124.0b5.tar.bz2"; 585 585 locale = "cs"; 586 586 arch = "linux-i686"; 587 - sha256 = "4ad37942080837b6cb455020dcc5ea00b50701f0487f8b71b645510f5bf1bdeb"; 587 + sha256 = "c2b40d89374e1b25dd304795a490d4eb8b6a4d55a5feba8d1a8fd5be19842e5a"; 588 588 } 589 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/cy/firefox-124.0b2.tar.bz2"; 589 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/cy/firefox-124.0b5.tar.bz2"; 590 590 locale = "cy"; 591 591 arch = "linux-i686"; 592 - sha256 = "8494202bd1e6a60f6ce6d028ed9a4a427e85346ad87e13c722fd1c69cb7621da"; 592 + sha256 = "4f36c761acebf9799ddad960d08c6af0918de0c76b3138475b4f41a3678a8718"; 593 593 } 594 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/da/firefox-124.0b2.tar.bz2"; 594 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/da/firefox-124.0b5.tar.bz2"; 595 595 locale = "da"; 596 596 arch = "linux-i686"; 597 - sha256 = "a3842b0e02ee84283a70c83b2e63e0b2287690c3f34377c0a7ce1404f93d65a7"; 597 + sha256 = "05855ff0a054dccca46f05dbd024858f2cb6b79597a3aad8d1002ff56965be05"; 598 598 } 599 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/de/firefox-124.0b2.tar.bz2"; 599 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/de/firefox-124.0b5.tar.bz2"; 600 600 locale = "de"; 601 601 arch = "linux-i686"; 602 - sha256 = "671f5c1fe8b93ee4bbe10c51d9ffd0cecec3fab45abb182da50e09658da08f92"; 602 + sha256 = "23b266875bbbfa3b71ef3fee60c57ca44a2c27328377c667102642366ff9a290"; 603 603 } 604 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/dsb/firefox-124.0b2.tar.bz2"; 604 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/dsb/firefox-124.0b5.tar.bz2"; 605 605 locale = "dsb"; 606 606 arch = "linux-i686"; 607 - sha256 = "e5ea18682d880e758d7883d3915463e4e88e4c6add0dcd081732562c7197076b"; 607 + sha256 = "80c14d7befeda8010c510f561b0fb3c7b5ea372bcb5e125c1d7c3f8102a41f2d"; 608 608 } 609 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/el/firefox-124.0b2.tar.bz2"; 609 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/el/firefox-124.0b5.tar.bz2"; 610 610 locale = "el"; 611 611 arch = "linux-i686"; 612 - sha256 = "a4d3054d8d45e1a176580b030f98896ba2beed05f93f0b544deb66964a86af68"; 612 + sha256 = "ad9614d1917167408d615a733793f8c3205b8e139207ffacd2db86b6a31e86b0"; 613 613 } 614 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/en-CA/firefox-124.0b2.tar.bz2"; 614 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/en-CA/firefox-124.0b5.tar.bz2"; 615 615 locale = "en-CA"; 616 616 arch = "linux-i686"; 617 - sha256 = "48e4068e735464a592d7a9d831792f336dfc4ee512fdd7b89adb9c9219e38b2e"; 617 + sha256 = "3eb6464f3a221bc467d745eea949cca12252cab79ffa14f632ed2a9fe146b685"; 618 618 } 619 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/en-GB/firefox-124.0b2.tar.bz2"; 619 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/en-GB/firefox-124.0b5.tar.bz2"; 620 620 locale = "en-GB"; 621 621 arch = "linux-i686"; 622 - sha256 = "e742bbf40bde8445b6f704e7902049353a73880eb8a8a5ac6df288f4d91f9c90"; 622 + sha256 = "e3fc3a80db2f9512a19e812b5187afe409331a9f94e27a10a1b975821235db94"; 623 623 } 624 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/en-US/firefox-124.0b2.tar.bz2"; 624 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/en-US/firefox-124.0b5.tar.bz2"; 625 625 locale = "en-US"; 626 626 arch = "linux-i686"; 627 - sha256 = "391d04b1fcd686e1e14456be2db84660ad5b59c13bc0160de89a4d546e2470ce"; 627 + sha256 = "e3a0ab34e853d7be3372fb02ebd926eaa1bb73198fb2ad51c166b10804659073"; 628 628 } 629 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/eo/firefox-124.0b2.tar.bz2"; 629 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/eo/firefox-124.0b5.tar.bz2"; 630 630 locale = "eo"; 631 631 arch = "linux-i686"; 632 - sha256 = "00d18aec871fcb0f0041564977ccccd0c9a98fb3db9032dbb8b70d5a984ab308"; 632 + sha256 = "74a3a78037ed2c808a3d646444339e719bc898c527bbbd4a7389f91aa1a843db"; 633 633 } 634 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/es-AR/firefox-124.0b2.tar.bz2"; 634 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/es-AR/firefox-124.0b5.tar.bz2"; 635 635 locale = "es-AR"; 636 636 arch = "linux-i686"; 637 - sha256 = "0398e1bfed77cc284f3e92dc69d542b450f3b061de2053e5063f75051b822f42"; 637 + sha256 = "5c19c4f750be69c7ece72ac5897f138942cbaadba03cbc17a9cb2e91168e9181"; 638 638 } 639 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/es-CL/firefox-124.0b2.tar.bz2"; 639 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/es-CL/firefox-124.0b5.tar.bz2"; 640 640 locale = "es-CL"; 641 641 arch = "linux-i686"; 642 - sha256 = "9cdfac7dd3c6c6351dc59a7c21a3c6c8db53cfef73cc0e84f1a419a01e34516f"; 642 + sha256 = "63684f89ec146eb2fe41b7a6e3931695cacf3db223b93b93c7bccdbf518a081d"; 643 643 } 644 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/es-ES/firefox-124.0b2.tar.bz2"; 644 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/es-ES/firefox-124.0b5.tar.bz2"; 645 645 locale = "es-ES"; 646 646 arch = "linux-i686"; 647 - sha256 = "f88e67ea4b4f995621da4d9c76638bd3c5e0f82f5a9c47143c960b0e0988ae57"; 647 + sha256 = "90cfdd1d7bd9a9bd7c3ea8725deeb6343e0d0197725efc5b1ee5b7b3b0c3dea4"; 648 648 } 649 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/es-MX/firefox-124.0b2.tar.bz2"; 649 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/es-MX/firefox-124.0b5.tar.bz2"; 650 650 locale = "es-MX"; 651 651 arch = "linux-i686"; 652 - sha256 = "e4065fad28630ade4885ff22f42e64182cae5e26b50a4b67035e16c90a9fdb94"; 652 + sha256 = "e76ba7f2f5616113b43a4d3dd969cc017cf31d236d8e2a839d6cd342888561dd"; 653 653 } 654 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/et/firefox-124.0b2.tar.bz2"; 654 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/et/firefox-124.0b5.tar.bz2"; 655 655 locale = "et"; 656 656 arch = "linux-i686"; 657 - sha256 = "6e813b73d9b17d591f69afd931bd9c4498b04d0a17a6bfe45fd940b4d020a0c2"; 657 + sha256 = "29d98c7699973ada05a80bbcc1affdbe172f84d094f4ed12c2be729c84f58037"; 658 658 } 659 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/eu/firefox-124.0b2.tar.bz2"; 659 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/eu/firefox-124.0b5.tar.bz2"; 660 660 locale = "eu"; 661 661 arch = "linux-i686"; 662 - sha256 = "21e284904eae18ae89909b7e46eb1ccc11266a098f2ff073cb5f0b3c57c96683"; 662 + sha256 = "a99a7bf071b65bbe82d16374abbb154f728ccd22db79c312c25b87fcc12fbb7b"; 663 663 } 664 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/fa/firefox-124.0b2.tar.bz2"; 664 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/fa/firefox-124.0b5.tar.bz2"; 665 665 locale = "fa"; 666 666 arch = "linux-i686"; 667 - sha256 = "df2c33c57df3013892987a55a0d4faecfd302ca108e13e80bb7bd2b2c7b15622"; 667 + sha256 = "fb87bfeda0969dec943dd7da47f31cd416aab800a30c0ae00737b25044dbc9ba"; 668 668 } 669 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/ff/firefox-124.0b2.tar.bz2"; 669 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/ff/firefox-124.0b5.tar.bz2"; 670 670 locale = "ff"; 671 671 arch = "linux-i686"; 672 - sha256 = "e0b1b7b5de2959f1355b1a87de17b8b41b84ee1265feab5f988891323c1726d9"; 672 + sha256 = "cda78f95e3124ab8efb09c6c39043e144441cea8fdea9c7bde2631a29d008a21"; 673 673 } 674 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/fi/firefox-124.0b2.tar.bz2"; 674 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/fi/firefox-124.0b5.tar.bz2"; 675 675 locale = "fi"; 676 676 arch = "linux-i686"; 677 - sha256 = "a981c34179dc6e769eb0936675c525029f167bf99a087e29d0ab04feef4bd757"; 677 + sha256 = "534d4cf6a962369e0d55bebb2ccc411df8b875c5bf4848cf5bdfeb5420239934"; 678 678 } 679 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/fr/firefox-124.0b2.tar.bz2"; 679 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/fr/firefox-124.0b5.tar.bz2"; 680 680 locale = "fr"; 681 681 arch = "linux-i686"; 682 - sha256 = "42c2543ad92772e3c2c3720a90cdb63f4f88b7d4132d5655aca73078b69f0ca9"; 682 + sha256 = "16b76ccb164f7572530631e242b696f01174d1460510403a29be8f23e42ed083"; 683 683 } 684 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/fur/firefox-124.0b2.tar.bz2"; 684 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/fur/firefox-124.0b5.tar.bz2"; 685 685 locale = "fur"; 686 686 arch = "linux-i686"; 687 - sha256 = "2868c9444b6631aa56dea35315f380a9697479d6c64290506f42083a81b7329b"; 687 + sha256 = "75d5dec03f0f4c9ff481a7068853f4f07a9c5dab12df2014c67a52fcf5ee41a4"; 688 688 } 689 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/fy-NL/firefox-124.0b2.tar.bz2"; 689 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/fy-NL/firefox-124.0b5.tar.bz2"; 690 690 locale = "fy-NL"; 691 691 arch = "linux-i686"; 692 - sha256 = "3afaddfeb8f29d5d058b4056f26f16def134a2408eb8d932f2f940acce851eae"; 692 + sha256 = "8b62e81fb83c91958bd4b4a1a64eb6e80f6300a071d2713e1a9fe366e9de6212"; 693 693 } 694 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/ga-IE/firefox-124.0b2.tar.bz2"; 694 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/ga-IE/firefox-124.0b5.tar.bz2"; 695 695 locale = "ga-IE"; 696 696 arch = "linux-i686"; 697 - sha256 = "56110b537eac661b85cf0c50a32e71864a32d1c01339acb82f516d3c85e73f98"; 697 + sha256 = "62842170dc94f350ca4cf5fa53d29e8bceda1b1ad05ea1f900a8aa559ce84a2e"; 698 698 } 699 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/gd/firefox-124.0b2.tar.bz2"; 699 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/gd/firefox-124.0b5.tar.bz2"; 700 700 locale = "gd"; 701 701 arch = "linux-i686"; 702 - sha256 = "f1798d5a500d0893a55fa4aae5d30c9d364f8774f090931d166dfacbd0e85fea"; 702 + sha256 = "6244f889f9b7403bb6566943ff7d35c6ff24bbdaea65b8b666e93578c4191c32"; 703 703 } 704 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/gl/firefox-124.0b2.tar.bz2"; 704 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/gl/firefox-124.0b5.tar.bz2"; 705 705 locale = "gl"; 706 706 arch = "linux-i686"; 707 - sha256 = "0319d0f24937adc317883130656a00d5ea18366446accff61fa527819fc29536"; 707 + sha256 = "912d1fb10dde72c84d6d91a51190b10be45b12df6504285c1f94a1faf28aca7f"; 708 708 } 709 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/gn/firefox-124.0b2.tar.bz2"; 709 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/gn/firefox-124.0b5.tar.bz2"; 710 710 locale = "gn"; 711 711 arch = "linux-i686"; 712 - sha256 = "1fc303d04f6328e183c964d8f4427a2ad694bc070d00405df27458ccd7fb4636"; 712 + sha256 = "afc27f6985a2e206a856ff36c9f9c1237ccc9044c6295142116e582041ffd13b"; 713 713 } 714 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/gu-IN/firefox-124.0b2.tar.bz2"; 714 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/gu-IN/firefox-124.0b5.tar.bz2"; 715 715 locale = "gu-IN"; 716 716 arch = "linux-i686"; 717 - sha256 = "dcf8aade2bd2a8385668e48d2884ae851da10e270cdb49d620a55058dd55b927"; 717 + sha256 = "18352071ffd3c219108553882452a07ee1d85ca33e7e4f03bd77bb01f19fa44d"; 718 718 } 719 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/he/firefox-124.0b2.tar.bz2"; 719 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/he/firefox-124.0b5.tar.bz2"; 720 720 locale = "he"; 721 721 arch = "linux-i686"; 722 - sha256 = "4895a163d923ff8f065d161c1bfc863511bce93cab5047b37f3c5b511a419030"; 722 + sha256 = "33964ef4c4f2b5c108663c60a970d7b6166ae0289fed71d67c427cbb5ee5529e"; 723 723 } 724 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/hi-IN/firefox-124.0b2.tar.bz2"; 724 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/hi-IN/firefox-124.0b5.tar.bz2"; 725 725 locale = "hi-IN"; 726 726 arch = "linux-i686"; 727 - sha256 = "be2f4266b4ee48b25fe66798a70a15ad56db89f65b91c68227d282d151d1e063"; 727 + sha256 = "c9d2df146e0647ee63c9110ae35cd0a377d0ec2683d211a424d73f9aebfc2fec"; 728 728 } 729 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/hr/firefox-124.0b2.tar.bz2"; 729 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/hr/firefox-124.0b5.tar.bz2"; 730 730 locale = "hr"; 731 731 arch = "linux-i686"; 732 - sha256 = "6ccdb5b56711569c0f233923bae6a79829e1822309053da38f4757946ff959c6"; 732 + sha256 = "7a28b5e5f8651037094e76d638cc06d8ec0f5cede39b3dd1dbbebfec6af90fd6"; 733 733 } 734 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/hsb/firefox-124.0b2.tar.bz2"; 734 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/hsb/firefox-124.0b5.tar.bz2"; 735 735 locale = "hsb"; 736 736 arch = "linux-i686"; 737 - sha256 = "7c53c0f87f5030c5cb04148cfd0bd50f7622ca96a5db723045ac82ac2543c1e3"; 737 + sha256 = "627b1ec567e4d8227385002ecca1369a0c8b1746d570ff5c5019e8cc3af40514"; 738 738 } 739 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/hu/firefox-124.0b2.tar.bz2"; 739 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/hu/firefox-124.0b5.tar.bz2"; 740 740 locale = "hu"; 741 741 arch = "linux-i686"; 742 - sha256 = "579893603bc1db650111a1ebb09bd5e244e503a87b2c6ef24f7a66732afaca09"; 742 + sha256 = "aceec21e56f24f59e57ebbef1e826e1b5c8bae38ffd249e27dd4645a0b4559b1"; 743 743 } 744 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/hy-AM/firefox-124.0b2.tar.bz2"; 744 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/hy-AM/firefox-124.0b5.tar.bz2"; 745 745 locale = "hy-AM"; 746 746 arch = "linux-i686"; 747 - sha256 = "c1ef3a69e66a8204cbbff3481af995708d361385903771bb9d5eb5babc935c8d"; 747 + sha256 = "e45653c2f3d8e276d9a321aec0b148bc6f254f4e583f6a4b594e6cd48ff3c977"; 748 748 } 749 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/ia/firefox-124.0b2.tar.bz2"; 749 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/ia/firefox-124.0b5.tar.bz2"; 750 750 locale = "ia"; 751 751 arch = "linux-i686"; 752 - sha256 = "04f415ed7e4b603e2264e8afd37a9d2634b76e65dc83c5c6b8dc18deb7da86c2"; 752 + sha256 = "63efce2c4ae7bebc130745b123b73e6d7ddc620b1aca6b50271cfbc24319cb9f"; 753 753 } 754 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/id/firefox-124.0b2.tar.bz2"; 754 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/id/firefox-124.0b5.tar.bz2"; 755 755 locale = "id"; 756 756 arch = "linux-i686"; 757 - sha256 = "d08d629c30e45ea94ea181561448e85de8508f469e55bbd0b6790bc1f99f5899"; 757 + sha256 = "ce6af3a7fddb9ba6520e186ef647b4ace04e6e7b7b5bdee0888b440b115297ae"; 758 758 } 759 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/is/firefox-124.0b2.tar.bz2"; 759 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/is/firefox-124.0b5.tar.bz2"; 760 760 locale = "is"; 761 761 arch = "linux-i686"; 762 - sha256 = "447e8950ef4ecdad169cef93cc9e390520705b3ea4d088bda589fddbef7bf0f5"; 762 + sha256 = "c904ead6b576bbb42b39689263ff83197e851a90abd3e824b79315f6c830e593"; 763 763 } 764 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/it/firefox-124.0b2.tar.bz2"; 764 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/it/firefox-124.0b5.tar.bz2"; 765 765 locale = "it"; 766 766 arch = "linux-i686"; 767 - sha256 = "8742d55eaeb26db063af9475658a3be865f2c378e04096b7d9c080099afeb71b"; 767 + sha256 = "5db33151f0819a8af41aa73077c4e825f52044bc629ce644ef8b80873aefcc19"; 768 768 } 769 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/ja/firefox-124.0b2.tar.bz2"; 769 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/ja/firefox-124.0b5.tar.bz2"; 770 770 locale = "ja"; 771 771 arch = "linux-i686"; 772 - sha256 = "f40016e013e548ddc39934cda2cbf48f51e99bc76e4e0ce1796f014a96cdc3ae"; 772 + sha256 = "73b5d2622f067d74c1f3322ffd2df3c9db5e27ac7edc24e8b3d5b5483d89b02a"; 773 773 } 774 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/ka/firefox-124.0b2.tar.bz2"; 774 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/ka/firefox-124.0b5.tar.bz2"; 775 775 locale = "ka"; 776 776 arch = "linux-i686"; 777 - sha256 = "7409e7e24397c07e5cbff93ea301025bbf0a8b422a8ee4cf5c59ddfa453c8977"; 777 + sha256 = "7930341f03147d7149883a91e1c1e588daebfe4f9548314c6fdfdc3c2209e137"; 778 778 } 779 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/kab/firefox-124.0b2.tar.bz2"; 779 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/kab/firefox-124.0b5.tar.bz2"; 780 780 locale = "kab"; 781 781 arch = "linux-i686"; 782 - sha256 = "048a9d86af755665fc5fa35c44e960a37aac0b2a9d7dff54bb0bcc8d02bbc8b5"; 782 + sha256 = "39fc9f26498bbf98c4636dc71bd66053de766b1652dacced0b257da37efba818"; 783 783 } 784 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/kk/firefox-124.0b2.tar.bz2"; 784 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/kk/firefox-124.0b5.tar.bz2"; 785 785 locale = "kk"; 786 786 arch = "linux-i686"; 787 - sha256 = "6d6ec919f2ed19b5ec34d430ec49acc573e93fb3b79b2df534345b90f9d2ca76"; 787 + sha256 = "f4af02bdb106533f991b2a279781461ebb64115996fb45a37b4e4888583a8325"; 788 788 } 789 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/km/firefox-124.0b2.tar.bz2"; 789 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/km/firefox-124.0b5.tar.bz2"; 790 790 locale = "km"; 791 791 arch = "linux-i686"; 792 - sha256 = "fd4fe4d3f77f10966e9f2c929d34fe2c7afc814dbce174bb4e948ce76024d6a3"; 792 + sha256 = "5ae42af8950275d2d8ce097db1791982ae52c1cb9f4e77a08e8e95a52211708b"; 793 793 } 794 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/kn/firefox-124.0b2.tar.bz2"; 794 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/kn/firefox-124.0b5.tar.bz2"; 795 795 locale = "kn"; 796 796 arch = "linux-i686"; 797 - sha256 = "ffe6972c03c655c2970bb930e169e79e46603423d1772f37350692cee68dcc5b"; 797 + sha256 = "fb34672b970fa04b93573b699e69e2ad6517996d685e041c41ac9409f97f1e8e"; 798 798 } 799 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/ko/firefox-124.0b2.tar.bz2"; 799 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/ko/firefox-124.0b5.tar.bz2"; 800 800 locale = "ko"; 801 801 arch = "linux-i686"; 802 - sha256 = "a96fab95ee01c126cca70ee2d8a95ac88abf732a45a63435e3e5238990950597"; 802 + sha256 = "1bee075f512ab94e99252a55645300151c979e5797ece8cc6f60e7c3e2941979"; 803 803 } 804 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/lij/firefox-124.0b2.tar.bz2"; 804 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/lij/firefox-124.0b5.tar.bz2"; 805 805 locale = "lij"; 806 806 arch = "linux-i686"; 807 - sha256 = "3eb2987fe59d9b065d2495931a0dd53bfda24ac05e9b387b6258bcac6e002664"; 807 + sha256 = "598d283a34daf9273349de71bfbf25f842149273aad136285d88edce83a19b9e"; 808 808 } 809 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/lt/firefox-124.0b2.tar.bz2"; 809 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/lt/firefox-124.0b5.tar.bz2"; 810 810 locale = "lt"; 811 811 arch = "linux-i686"; 812 - sha256 = "5c93e34fc5f4b662d911c81762fc6c281ed78ebead0f605168bea23408b5f785"; 812 + sha256 = "126df1404e11bb44864903879eba9a0eddd942248519b17352dff8487c9737c8"; 813 813 } 814 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/lv/firefox-124.0b2.tar.bz2"; 814 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/lv/firefox-124.0b5.tar.bz2"; 815 815 locale = "lv"; 816 816 arch = "linux-i686"; 817 - sha256 = "c052e0d40cbf4a067235419ccfb5b105f7de0caacb0bf4e7dd6be4bd03b8fd79"; 817 + sha256 = "d4064f65336d206258b2e2298bdc8cc966e9ea747fa172bf393553f2ad9bf4cd"; 818 818 } 819 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/mk/firefox-124.0b2.tar.bz2"; 819 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/mk/firefox-124.0b5.tar.bz2"; 820 820 locale = "mk"; 821 821 arch = "linux-i686"; 822 - sha256 = "726f45cc51c5824ca1abbb67d8f23776c9473fac985cef4dcfdf5e27fd23ea06"; 822 + sha256 = "d01ff8b6f392c9d20eba744df9cbea1f424d3be8a2b225301506813c24626ed9"; 823 823 } 824 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/mr/firefox-124.0b2.tar.bz2"; 824 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/mr/firefox-124.0b5.tar.bz2"; 825 825 locale = "mr"; 826 826 arch = "linux-i686"; 827 - sha256 = "634a8f904f23ab6bb91287aa7762515d0171bc38f7e83ad66e9fcf47fce9bd21"; 827 + sha256 = "a3032ebd70ba506c5380faaee3df946df840b9eafde5a3c889e675fd4bda6d93"; 828 828 } 829 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/ms/firefox-124.0b2.tar.bz2"; 829 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/ms/firefox-124.0b5.tar.bz2"; 830 830 locale = "ms"; 831 831 arch = "linux-i686"; 832 - sha256 = "bfbec91b976f8378c8d7842d386110f3a228cf490350984b357a3b959ab98b2b"; 832 + sha256 = "01124e88f41088d3af50d627b3f60e92a392561b0bc8a376e19b90e5d9532a68"; 833 833 } 834 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/my/firefox-124.0b2.tar.bz2"; 834 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/my/firefox-124.0b5.tar.bz2"; 835 835 locale = "my"; 836 836 arch = "linux-i686"; 837 - sha256 = "df8469de96f97b0edd8918fd785b0956a9b83d8942e363c0fd2cb3c43c62a3a3"; 837 + sha256 = "e8cdcc7d9b37275ce14a592126e2ed9ebca9b6b61862a11d543deb40292ca3d2"; 838 838 } 839 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/nb-NO/firefox-124.0b2.tar.bz2"; 839 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/nb-NO/firefox-124.0b5.tar.bz2"; 840 840 locale = "nb-NO"; 841 841 arch = "linux-i686"; 842 - sha256 = "c056e5a9dbd4c96099c17027218f854d42a6e3e0d73327adcdd03e6b541a7b2a"; 842 + sha256 = "2706dffb755d8f9f1bc3322f8c81ba0fca6ff614e2b722a4f157a2ba5f131427"; 843 843 } 844 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/ne-NP/firefox-124.0b2.tar.bz2"; 844 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/ne-NP/firefox-124.0b5.tar.bz2"; 845 845 locale = "ne-NP"; 846 846 arch = "linux-i686"; 847 - sha256 = "7809cc887d241eaf20ca9b740d2031a54def43272b17559d773b66d54d48b414"; 847 + sha256 = "ae07fb682309cfc7a9b3bac71f01deb5f99da5f4959552af27f929cece49fb91"; 848 848 } 849 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/nl/firefox-124.0b2.tar.bz2"; 849 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/nl/firefox-124.0b5.tar.bz2"; 850 850 locale = "nl"; 851 851 arch = "linux-i686"; 852 - sha256 = "95730506bb5bcdfecbcc8eb1172fbdb627d62830d9ad8335036d9e66505ec974"; 852 + sha256 = "e5aabf8ddfb7ce8aa1ee23976646879a29fe75aa67a685a23a92267bc82efa31"; 853 853 } 854 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/nn-NO/firefox-124.0b2.tar.bz2"; 854 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/nn-NO/firefox-124.0b5.tar.bz2"; 855 855 locale = "nn-NO"; 856 856 arch = "linux-i686"; 857 - sha256 = "51cea63f339b978b7474270fcf64e0ef4a6671f06fe48df0759a47f5f13b2574"; 857 + sha256 = "df00b85e4c0617c9a79d3c1f7d879b4426f2d86a2fb90a9e0854a227438f1223"; 858 858 } 859 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/oc/firefox-124.0b2.tar.bz2"; 859 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/oc/firefox-124.0b5.tar.bz2"; 860 860 locale = "oc"; 861 861 arch = "linux-i686"; 862 - sha256 = "8e63ce6010475676ba92382e30cbe02abb933a94da9ae68a6151bc794df66b8f"; 862 + sha256 = "c087ba2df8b1629ae2a9b7db9c48ed43fdb2721cac5a5560e479f48a4e6026e1"; 863 863 } 864 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/pa-IN/firefox-124.0b2.tar.bz2"; 864 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/pa-IN/firefox-124.0b5.tar.bz2"; 865 865 locale = "pa-IN"; 866 866 arch = "linux-i686"; 867 - sha256 = "20bc49df1206b6f5a97d0a7bf359582df7340bda5bc207fd8d200fa9a4488607"; 867 + sha256 = "016724e6aa1ce48a5402ed2e70fd51ab02c3c9540c8157560eb4d9718b75c46e"; 868 868 } 869 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/pl/firefox-124.0b2.tar.bz2"; 869 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/pl/firefox-124.0b5.tar.bz2"; 870 870 locale = "pl"; 871 871 arch = "linux-i686"; 872 - sha256 = "03d6515ff506ff2319a877f00b9b6549e8e33ff420b2c751657d6e721eb5f05a"; 872 + sha256 = "5fc308cd53fb059626a035193bd9e60b36f932e22a3110ac3860d9721bfb0f67"; 873 873 } 874 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/pt-BR/firefox-124.0b2.tar.bz2"; 874 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/pt-BR/firefox-124.0b5.tar.bz2"; 875 875 locale = "pt-BR"; 876 876 arch = "linux-i686"; 877 - sha256 = "b612c139651654e38dfe2d49f499bdb31f862b837e6b1d359f98b4723762da30"; 877 + sha256 = "ce7c0b1faed4b1d98c470e9ff34795f97e93f2b77f01a11499bb449cbb914001"; 878 878 } 879 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/pt-PT/firefox-124.0b2.tar.bz2"; 879 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/pt-PT/firefox-124.0b5.tar.bz2"; 880 880 locale = "pt-PT"; 881 881 arch = "linux-i686"; 882 - sha256 = "8f0c7467a22e76021027795b64922e8f3e5e6d82349ed9c74d30e3ddc2e9ffc5"; 882 + sha256 = "b30e8a87937bdeb6c95b17db5d514851219c4a83f3995c27a73ece8a732c1b74"; 883 883 } 884 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/rm/firefox-124.0b2.tar.bz2"; 884 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/rm/firefox-124.0b5.tar.bz2"; 885 885 locale = "rm"; 886 886 arch = "linux-i686"; 887 - sha256 = "32aefa9e3f69c455f881ecbe2bd0779792e3d5fad94f32d435e98bf4753c19a6"; 887 + sha256 = "fc9f24869aa998ff0e49659b338661164727d4e1411e7750afd34a9b32e4fa58"; 888 888 } 889 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/ro/firefox-124.0b2.tar.bz2"; 889 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/ro/firefox-124.0b5.tar.bz2"; 890 890 locale = "ro"; 891 891 arch = "linux-i686"; 892 - sha256 = "28776a0c93e3e8533210e55ee3a01a2d1f52efe552b81512cbe4281ece80dd1d"; 892 + sha256 = "7a8224a90221d9ffe9a243c051c05327610755f11ecdecd2b5d3f30e04fc13b4"; 893 893 } 894 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/ru/firefox-124.0b2.tar.bz2"; 894 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/ru/firefox-124.0b5.tar.bz2"; 895 895 locale = "ru"; 896 896 arch = "linux-i686"; 897 - sha256 = "fbae655a52ca3faf2b4651379451225b4a112c3cee127a28bbcc3f33ed0d260a"; 897 + sha256 = "184c7301bce1429f2eb03de2752ac0d4488f90351a40e4a1b1a591f256609dca"; 898 898 } 899 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/sat/firefox-124.0b2.tar.bz2"; 899 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/sat/firefox-124.0b5.tar.bz2"; 900 900 locale = "sat"; 901 901 arch = "linux-i686"; 902 - sha256 = "f70a998b30d92986a8e3531e9cb39485449a42760be3e5fb89b33ef3cc9c2ffb"; 902 + sha256 = "57f605d927b765595d702c5a21022d06c29979594ff4c3a0b2490beb49aebbc3"; 903 903 } 904 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/sc/firefox-124.0b2.tar.bz2"; 904 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/sc/firefox-124.0b5.tar.bz2"; 905 905 locale = "sc"; 906 906 arch = "linux-i686"; 907 - sha256 = "0f340bf270e6a251a487951bffe67e47192e2aab8ffca5c896f05844dfc9d63e"; 907 + sha256 = "d45fbd0ec436d2b3a404a8ebb4a2953d94672cd58d547fec7b37c9dd9a880cf0"; 908 908 } 909 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/sco/firefox-124.0b2.tar.bz2"; 909 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/sco/firefox-124.0b5.tar.bz2"; 910 910 locale = "sco"; 911 911 arch = "linux-i686"; 912 - sha256 = "329f7751ca82903ffbc97e81f598ed8c96781b0db1586a2d369358642150651e"; 912 + sha256 = "ca5080dd24a1728596ee9f18622b8f472a38794dddcf502f94cdea322a5c2ea0"; 913 913 } 914 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/si/firefox-124.0b2.tar.bz2"; 914 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/si/firefox-124.0b5.tar.bz2"; 915 915 locale = "si"; 916 916 arch = "linux-i686"; 917 - sha256 = "c06620fc41f2268055ce9478c9e7d05a5b748a88153c39a207e62d46dae1874c"; 917 + sha256 = "7619c96af6694e39b4facd42e8e99d7b8efe716372b7241b6f411c5c887ceec1"; 918 918 } 919 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/sk/firefox-124.0b2.tar.bz2"; 919 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/sk/firefox-124.0b5.tar.bz2"; 920 920 locale = "sk"; 921 921 arch = "linux-i686"; 922 - sha256 = "f490a187c9758e614268eef2dd66ced62f2eb3ce93d7deec8844e7c767d3b6dd"; 922 + sha256 = "299383f3da74c81153bc828506fed4f2a3ce312b49420fb992e847710e87b5d9"; 923 923 } 924 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/sl/firefox-124.0b2.tar.bz2"; 924 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/sl/firefox-124.0b5.tar.bz2"; 925 925 locale = "sl"; 926 926 arch = "linux-i686"; 927 - sha256 = "8c1f937a974a014be66367bc05afd222dff3dc81c5042570769546973b1d1b8a"; 927 + sha256 = "dbf5b58e315ab2723ed5408c290c527261c1f2780dc54baeca55c3ad092c5167"; 928 928 } 929 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/son/firefox-124.0b2.tar.bz2"; 929 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/son/firefox-124.0b5.tar.bz2"; 930 930 locale = "son"; 931 931 arch = "linux-i686"; 932 - sha256 = "66ae427e708e6968b64097b309a73457aeaa8c0623a8f91d54e294bf783e3e8a"; 932 + sha256 = "8e61c851cbcc497b73770a6ecb6281dbe59fb6059c33b29906c29bec1d0887af"; 933 933 } 934 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/sq/firefox-124.0b2.tar.bz2"; 934 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/sq/firefox-124.0b5.tar.bz2"; 935 935 locale = "sq"; 936 936 arch = "linux-i686"; 937 - sha256 = "372b55d37112ae472ed045a8358957f7009d17f9888ded2b11e3552e3f6b91c6"; 937 + sha256 = "bf2fd515b30e3dff7ac7b796a66098b6dcf026e5329521c08e5d2966e97c8a9c"; 938 938 } 939 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/sr/firefox-124.0b2.tar.bz2"; 939 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/sr/firefox-124.0b5.tar.bz2"; 940 940 locale = "sr"; 941 941 arch = "linux-i686"; 942 - sha256 = "2ca00e2f6dad1d5ba446a8315bca8f2ea104d1de7e60c29dc0e4b3d2f68dcfa0"; 942 + sha256 = "1102ed90f5af1feccef6ee6d891c378260fa83356b7e5c10df0e812ee199ba0f"; 943 943 } 944 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/sv-SE/firefox-124.0b2.tar.bz2"; 944 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/sv-SE/firefox-124.0b5.tar.bz2"; 945 945 locale = "sv-SE"; 946 946 arch = "linux-i686"; 947 - sha256 = "d138f355fd5577c8ce52bc38b6cac51a244f5590697dab8cec784d90e04f374f"; 947 + sha256 = "08deb15679412a19305b447b5623a01cd85fa640904eeb83fb00cd7878b34d8b"; 948 948 } 949 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/szl/firefox-124.0b2.tar.bz2"; 949 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/szl/firefox-124.0b5.tar.bz2"; 950 950 locale = "szl"; 951 951 arch = "linux-i686"; 952 - sha256 = "4a8934473d63c375f36fc647a394da269c89d834257bc29e5cffbc03e87ebb99"; 952 + sha256 = "7f9bc22f10d3e775c5a6f1e1db2d477fb4fe2cf7fdfa340dcf36cec4aa8842e2"; 953 953 } 954 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/ta/firefox-124.0b2.tar.bz2"; 954 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/ta/firefox-124.0b5.tar.bz2"; 955 955 locale = "ta"; 956 956 arch = "linux-i686"; 957 - sha256 = "4028f5b708736d406676fc17417c848845c137173a44ce7be64d8075b88ed284"; 957 + sha256 = "0fc213731dc9a04c3f83f936eb138a0da768c577e65d688b5bfc4a5b6340a2aa"; 958 958 } 959 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/te/firefox-124.0b2.tar.bz2"; 959 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/te/firefox-124.0b5.tar.bz2"; 960 960 locale = "te"; 961 961 arch = "linux-i686"; 962 - sha256 = "de933dd9666175b0caf67190a4ef201862ac124123d34ca07d286272d34ade7b"; 962 + sha256 = "08f380bef43660c672cdd604cdcc871894810db738cc808f65713d4af5116031"; 963 963 } 964 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/tg/firefox-124.0b2.tar.bz2"; 964 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/tg/firefox-124.0b5.tar.bz2"; 965 965 locale = "tg"; 966 966 arch = "linux-i686"; 967 - sha256 = "fb1cb98912782b54728c3dd8d2175961ec086bbfbc17de8501409e5fe4738e61"; 967 + sha256 = "2e8b90a30b37889814aaa76bc9984fae85265c8b991e0847661d5485d5ac75cf"; 968 968 } 969 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/th/firefox-124.0b2.tar.bz2"; 969 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/th/firefox-124.0b5.tar.bz2"; 970 970 locale = "th"; 971 971 arch = "linux-i686"; 972 - sha256 = "6a1adb355aa8c8f968828b405198e8900a1d862a1a45c4ebb14395e33eca80d3"; 972 + sha256 = "07684ca053f6321c5ea5c4307ea1e1ba1ac13eb45c519e83d5c6b4515e7db324"; 973 973 } 974 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/tl/firefox-124.0b2.tar.bz2"; 974 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/tl/firefox-124.0b5.tar.bz2"; 975 975 locale = "tl"; 976 976 arch = "linux-i686"; 977 - sha256 = "448182e041cb358aa020da1dc395caa96b8aa490a2e0a9ac178f260d88add18a"; 977 + sha256 = "d58a6d63ca1d2d161b85c78660a303f91875ba6f69a2ef66e36e393688b02a3e"; 978 978 } 979 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/tr/firefox-124.0b2.tar.bz2"; 979 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/tr/firefox-124.0b5.tar.bz2"; 980 980 locale = "tr"; 981 981 arch = "linux-i686"; 982 - sha256 = "1d956f6078d801880ed4b436b2505a1f419356891814a1e3144eaa1aa8d1af91"; 982 + sha256 = "b1f71d7961f2cc9a025f65e4f6ddd3c28acd3e11f9aed981bef38dcdf5191b68"; 983 983 } 984 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/trs/firefox-124.0b2.tar.bz2"; 984 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/trs/firefox-124.0b5.tar.bz2"; 985 985 locale = "trs"; 986 986 arch = "linux-i686"; 987 - sha256 = "f9821d95b6d289c54ce03202e4421ea9e25355d290d90ea2298d1ec2d3ccd8fb"; 987 + sha256 = "d17daf00437ffcdaca30e7b085f12d0e18850e42cc9974349738e6f53d7d8077"; 988 988 } 989 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/uk/firefox-124.0b2.tar.bz2"; 989 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/uk/firefox-124.0b5.tar.bz2"; 990 990 locale = "uk"; 991 991 arch = "linux-i686"; 992 - sha256 = "38820181b0ad6303631f3b1931ec865eb59b014dfebdf7a63189b061ced81f16"; 992 + sha256 = "c3e8c5fe1c6ed73a9b66ad4f6785929c183a1333588b1d288a481f8abf52bb4f"; 993 993 } 994 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/ur/firefox-124.0b2.tar.bz2"; 994 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/ur/firefox-124.0b5.tar.bz2"; 995 995 locale = "ur"; 996 996 arch = "linux-i686"; 997 - sha256 = "3b525d9c2de9674da96e84621ac980888b4389de247a30c830fd3d5ec94bc446"; 997 + sha256 = "653473c33c8eafe638c83089ba9f99ffc81b20f13d0b6d15bfbc2ebee5bb1931"; 998 998 } 999 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/uz/firefox-124.0b2.tar.bz2"; 999 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/uz/firefox-124.0b5.tar.bz2"; 1000 1000 locale = "uz"; 1001 1001 arch = "linux-i686"; 1002 - sha256 = "a7b1f2817995b4e7398f2dab855d0025dc024128cb519d073541be1deb89ecf3"; 1002 + sha256 = "7ca4cd55d2d48aef1c80f26c9e0c7edd8db4f2945d5fb8bd3466cd61d3917965"; 1003 1003 } 1004 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/vi/firefox-124.0b2.tar.bz2"; 1004 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/vi/firefox-124.0b5.tar.bz2"; 1005 1005 locale = "vi"; 1006 1006 arch = "linux-i686"; 1007 - sha256 = "acc6cc725737ccc7fe0b1a1a802a687c4e86db5fcdeac364375a6503ea9933c6"; 1007 + sha256 = "2c45af4e5a789bb7a2ec03322987e83c249b18006126c0cb6a2036678092c244"; 1008 1008 } 1009 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/xh/firefox-124.0b2.tar.bz2"; 1009 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/xh/firefox-124.0b5.tar.bz2"; 1010 1010 locale = "xh"; 1011 1011 arch = "linux-i686"; 1012 - sha256 = "f2e2afc654efd280bb1daf47afdd2e503ef762d39f13ae70bbaa76847c96882c"; 1012 + sha256 = "8b4d414f92a3f1368d2eef8cfccb17ee9bba5c86fdf705281020f140d60fe5ee"; 1013 1013 } 1014 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/zh-CN/firefox-124.0b2.tar.bz2"; 1014 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/zh-CN/firefox-124.0b5.tar.bz2"; 1015 1015 locale = "zh-CN"; 1016 1016 arch = "linux-i686"; 1017 - sha256 = "6bcec8e98dd9ac57d214a84b8fe87f3acfbc6339f0484394039e1a64af68d0c7"; 1017 + sha256 = "79a67eefcf5655b1de108f6d14f42ed34167e5556637c34f41a1093e6a18561f"; 1018 1018 } 1019 - { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b2/linux-i686/zh-TW/firefox-124.0b2.tar.bz2"; 1019 + { url = "https://archive.mozilla.org/pub/devedition/releases/124.0b5/linux-i686/zh-TW/firefox-124.0b5.tar.bz2"; 1020 1020 locale = "zh-TW"; 1021 1021 arch = "linux-i686"; 1022 - sha256 = "bc8ca622e452d69c0d5e371f2ba89a5947c1fa7492f91a791c4250b3ca945cc9"; 1022 + sha256 = "f14023c75ee13fc10e05db2110bf4e9541f2cda889715e6e499122fb698d40a7"; 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.0b2"; 36 + version = "124.0b5"; 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 = "a98bedcf2bb6e58a20b4ab49d53db0899ed7c6589b20266522521c3db5c583807be1d536a580a1b42dd5783c0d81d95c4f42be6a157fb08a588447ca4fa21dde"; 40 + sha512 = "a232d5f8d3118ef37166ef8706ab17d4cceaf67f0b12da4780c52253eec297c79e95ab42fe15165fdda62cda045ac923a53550c3525e9fd94ea3dca586510637"; 41 41 }; 42 42 43 43 meta = { ··· 62 62 63 63 firefox-devedition = buildMozillaMach rec { 64 64 pname = "firefox-devedition"; 65 - version = "124.0b2"; 65 + version = "124.0b5"; 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 = "a65a522130d95ef5ffd4ee351c79a64517abdd60a80a74e66b147f6b179613240ab2abd6eb9cd939dfe31dd5b971773e882eb234a358e9546ab0272d8ed94145"; 71 + sha512 = "bea92dcf8703dab99cc8248a0d205b8613f74efa81cbe789aa3ef863093fa78ac4e362956dfd57186954389cd87cd97bc0b077d3f80bfe5b7dd3b6435874fa98"; 72 72 }; 73 73 74 74 meta = {
+3 -3
pkgs/by-name/ez/eza/package.nix
··· 17 17 18 18 rustPlatform.buildRustPackage rec { 19 19 pname = "eza"; 20 - version = "0.18.4"; 20 + version = "0.18.5"; 21 21 22 22 src = fetchFromGitHub { 23 23 owner = "eza-community"; 24 24 repo = "eza"; 25 25 rev = "v${version}"; 26 - hash = "sha256-G8Ow38vNSMMYINYhGp33rls5AV4EFZDEJhkNn5H64LA="; 26 + hash = "sha256-L0FF9pN4WGCFpg2MPAvrKC/DwyWK6BWGxwYEpQBl9Rw="; 27 27 }; 28 28 29 - cargoHash = "sha256-A/EIkWSdMqSdrnjMTfIdg0scSBK/xsI5PPsOn+cRogA="; 29 + cargoHash = "sha256-bZ2NzFpB9vpT0mB2LsETdmtzYAwNrpzBRoqmm4+13+0="; 30 30 31 31 nativeBuildInputs = [ cmake pkg-config installShellFiles pandoc ]; 32 32 buildInputs = [ zlib ]
+94 -85
pkgs/by-name/ll/llama-cpp/package.nix
··· 15 15 , openclSupport ? false 16 16 , clblast 17 17 18 - , blasSupport ? !rocmSupport && !cudaSupport 19 - , openblas 18 + , blasSupport ? builtins.all (x: !x) [ cudaSupport metalSupport openclSupport rocmSupport vulkanSupport ] 20 19 , pkg-config 21 20 , metalSupport ? stdenv.isDarwin && stdenv.isAarch64 && !openclSupport 22 - , patchelf 23 - , static ? true # if false will build the shared objects as well 21 + , vulkanSupport ? false 22 + , mpiSupport ? false # Increases the runtime closure by ~700M 23 + , vulkan-headers 24 + , vulkan-loader 25 + , ninja 26 + , git 27 + , mpi 24 28 }: 25 29 26 30 let ··· 28 32 # otherwise we get libstdc++ errors downstream. 29 33 # cuda imposes an upper bound on the gcc version, e.g. the latest gcc compatible with cudaPackages_11 is gcc11 30 34 effectiveStdenv = if cudaSupport then cudaPackages.backendStdenv else stdenv; 35 + inherit (lib) cmakeBool cmakeFeature optionals; 36 + 37 + darwinBuildInputs = 38 + with darwin.apple_sdk.frameworks; 39 + [ 40 + Accelerate 41 + CoreVideo 42 + CoreGraphics 43 + ] 44 + ++ optionals metalSupport [ MetalKit ]; 45 + 46 + cudaBuildInputs = with cudaPackages; [ 47 + cuda_cccl.dev # <nv/target> 48 + 49 + # A temporary hack for reducing the closure size, remove once cudaPackages 50 + # have stopped using lndir: https://github.com/NixOS/nixpkgs/issues/271792 51 + cuda_cudart.dev 52 + cuda_cudart.lib 53 + cuda_cudart.static 54 + libcublas.dev 55 + libcublas.lib 56 + libcublas.static 57 + ]; 58 + 59 + rocmBuildInputs = with rocmPackages; [ 60 + clr 61 + hipblas 62 + rocblas 63 + ]; 64 + 65 + vulkanBuildInputs = [ 66 + vulkan-headers 67 + vulkan-loader 68 + ]; 31 69 in 32 70 effectiveStdenv.mkDerivation (finalAttrs: { 33 71 pname = "llama-cpp"; 34 - version = "2249"; 72 + version = "2294"; 35 73 36 74 src = fetchFromGitHub { 37 75 owner = "ggerganov"; 38 76 repo = "llama.cpp"; 39 77 rev = "refs/tags/b${finalAttrs.version}"; 40 - hash = "sha256-ikJUToUbA60u/8azR6dPmPyodq/nQe5L2aotlYBclaE="; 78 + hash = "sha256-uZi4Bj03PgfFV+jS5M+A1sMCWC/GMY5IyyrlR1b4Sh4="; 41 79 }; 42 80 43 81 postPatch = '' ··· 45 83 --replace '[bundle pathForResource:@"ggml-metal" ofType:@"metal"];' "@\"$out/bin/ggml-metal.metal\";" 46 84 ''; 47 85 48 - nativeBuildInputs = [ cmake ] ++ lib.optionals blasSupport [ pkg-config ] ++ lib.optionals cudaSupport [ 86 + nativeBuildInputs = [ cmake ninja pkg-config git ] 87 + ++ optionals cudaSupport [ 49 88 cudaPackages.cuda_nvcc 50 89 51 90 # TODO: Replace with autoAddDriverRunpath ··· 53 92 cudaPackages.autoAddOpenGLRunpathHook 54 93 ]; 55 94 56 - buildInputs = lib.optionals effectiveStdenv.isDarwin 57 - (with darwin.apple_sdk.frameworks; [ 58 - Accelerate 59 - CoreGraphics 60 - CoreVideo 61 - Foundation 62 - ]) 63 - ++ lib.optionals metalSupport (with darwin.apple_sdk.frameworks; [ 64 - MetalKit 65 - ]) 66 - ++ lib.optionals cudaSupport (with cudaPackages; [ 67 - cuda_cccl.dev # <nv/target> 68 - 69 - # A temporary hack for reducing the closure size, remove once cudaPackages 70 - # have stopped using lndir: https://github.com/NixOS/nixpkgs/issues/271792 71 - cuda_cudart.dev 72 - cuda_cudart.lib 73 - cuda_cudart.static 74 - libcublas.dev 75 - libcublas.lib 76 - libcublas.static 77 - ]) ++ lib.optionals rocmSupport [ 78 - rocmPackages.clr 79 - rocmPackages.hipblas 80 - rocmPackages.rocblas 81 - ] ++ lib.optionals openclSupport [ 82 - clblast 83 - ] ++ lib.optionals blasSupport [ 84 - openblas 85 - ]; 95 + buildInputs = optionals effectiveStdenv.isDarwin darwinBuildInputs 96 + ++ optionals cudaSupport cudaBuildInputs 97 + ++ optionals mpiSupport mpi 98 + ++ optionals openclSupport [ clblast ] 99 + ++ optionals rocmSupport rocmBuildInputs 100 + ++ optionals vulkanSupport vulkanBuildInputs; 86 101 87 102 cmakeFlags = [ 88 - "-DLLAMA_NATIVE=OFF" 89 - "-DLLAMA_BUILD_SERVER=ON" 103 + # -march=native is non-deterministic; override with platform-specific flags if needed 104 + (cmakeBool "LLAMA_NATIVE" false) 105 + (cmakeBool "BUILD_SHARED_SERVER" true) 106 + (cmakeBool "BUILD_SHARED_LIBS" true) 107 + (cmakeBool "BUILD_SHARED_LIBS" true) 108 + (cmakeBool "LLAMA_BLAS" blasSupport) 109 + (cmakeBool "LLAMA_CLBLAST" openclSupport) 110 + (cmakeBool "LLAMA_CUBLAS" cudaSupport) 111 + (cmakeBool "LLAMA_HIPBLAS" rocmSupport) 112 + (cmakeBool "LLAMA_METAL" metalSupport) 113 + (cmakeBool "LLAMA_MPI" mpiSupport) 114 + (cmakeBool "LLAMA_VULKAN" vulkanSupport) 90 115 ] 91 - ++ lib.optionals metalSupport [ 92 - "-DCMAKE_C_FLAGS=-D__ARM_FEATURE_DOTPROD=1" 93 - "-DLLAMA_METAL=ON" 94 - ] 95 - ++ lib.optionals cudaSupport [ 96 - "-DLLAMA_CUBLAS=ON" 97 - ] 98 - ++ lib.optionals rocmSupport [ 99 - "-DLLAMA_HIPBLAS=1" 100 - "-DCMAKE_C_COMPILER=hipcc" 101 - "-DCMAKE_CXX_COMPILER=hipcc" 102 - "-DCMAKE_POSITION_INDEPENDENT_CODE=ON" 103 - ] 104 - ++ lib.optionals openclSupport [ 105 - "-DLLAMA_CLBLAST=ON" 106 - ] 107 - ++ lib.optionals blasSupport [ 108 - "-DLLAMA_BLAS=ON" 109 - "-DLLAMA_BLAS_VENDOR=OpenBLAS" 110 - ] 111 - ++ lib.optionals (!static) [ 112 - (lib.cmakeBool "BUILD_SHARED_LIBS" true) 113 - ]; 116 + ++ optionals cudaSupport [ 117 + ( 118 + with cudaPackages.flags; 119 + cmakeFeature "CMAKE_CUDA_ARCHITECTURES" ( 120 + builtins.concatStringsSep ";" (map dropDot cudaCapabilities) 121 + ) 122 + ) 123 + ] 124 + ++ optionals rocmSupport [ 125 + (cmakeFeature "CMAKE_C_COMPILER" "hipcc") 126 + (cmakeFeature "CMAKE_CXX_COMPILER" "hipcc") 114 127 115 - installPhase = '' 116 - runHook preInstall 117 - 118 - mkdir -p $out/bin 119 - ${lib.optionalString (!static) '' 120 - mkdir $out/lib 121 - cp libggml_shared.so $out/lib 122 - cp libllama.so $out/lib 123 - ''} 124 - 125 - for f in bin/*; do 126 - test -x "$f" || continue 127 - ${lib.optionalString (!static) '' 128 - ${patchelf}/bin/patchelf "$f" --set-rpath "$out/lib" 129 - ''} 130 - cp "$f" $out/bin/llama-cpp-"$(basename "$f")" 131 - done 132 - 133 - ${lib.optionalString metalSupport "cp ./bin/ggml-metal.metal $out/bin/ggml-metal.metal"} 128 + # Build all targets supported by rocBLAS. When updating search for TARGET_LIST_ROCM 129 + # in https://github.com/ROCmSoftwarePlatform/rocBLAS/blob/develop/CMakeLists.txt 130 + # and select the line that matches the current nixpkgs version of rocBLAS. 131 + # Should likely use `rocmPackages.clr.gpuTargets`. 132 + "-DAMDGPU_TARGETS=gfx803;gfx900;gfx906:xnack-;gfx908:xnack-;gfx90a:xnack+;gfx90a:xnack-;gfx940;gfx941;gfx942;gfx1010;gfx1012;gfx1030;gfx1100;gfx1101;gfx1102" 133 + ] 134 + ++ optionals metalSupport [ (cmakeFeature "CMAKE_C_FLAGS" "-D__ARM_FEATURE_DOTPROD=1") ] 135 + ++ optionals blasSupport [ (cmakeFeature "LLAMA_BLAS_VENDOR" "OpenBLAS") ]; 134 136 135 - runHook postInstall 137 + # upstream plans on adding targets at the cmakelevel, remove those 138 + # additional steps after that 139 + postInstall = '' 140 + mv $out/bin/main $out/bin/llama 141 + mv $out/bin/server $out/bin/llama-server 142 + mkdir -p $out/include 143 + cp $src/llama.h $out/include/ 136 144 ''; 137 145 138 146 passthru.updateScript = nix-update-script { ··· 144 152 description = "Port of Facebook's LLaMA model in C/C++"; 145 153 homepage = "https://github.com/ggerganov/llama.cpp/"; 146 154 license = licenses.mit; 147 - mainProgram = "llama-cpp-main"; 148 - maintainers = with maintainers; [ dit7ya elohmeier ]; 149 - broken = (effectiveStdenv.isDarwin && effectiveStdenv.isx86_64) || lib.count lib.id [openclSupport blasSupport rocmSupport cudaSupport] == 0; 155 + mainProgram = "llama"; 156 + maintainers = with maintainers; [ dit7ya elohmeier philiptaron ]; 150 157 platforms = platforms.unix; 158 + badPlatforms = optionals (cudaSupport || openclSupport) lib.platforms.darwin; 159 + broken = (metalSupport && !effectiveStdenv.isDarwin); 151 160 }; 152 161 })
+449 -139
pkgs/by-name/ni/niri/Cargo.lock
··· 64 64 checksum = "fc7eb209b1518d6bb87b283c20095f5228ecda460da70b44f0802523dea6da04" 65 65 66 66 [[package]] 67 + name = "annotate-snippets" 68 + version = "0.9.2" 69 + source = "registry+https://github.com/rust-lang/crates.io-index" 70 + checksum = "ccaf7e9dfbb6ab22c82e473cd1a8a7bd313c19a5b7e40970f3d89ef5a5c9e81e" 71 + dependencies = [ 72 + "unicode-width", 73 + "yansi-term", 74 + ] 75 + 76 + [[package]] 67 77 name = "anstream" 68 78 version = "0.6.11" 69 79 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 79 89 80 90 [[package]] 81 91 name = "anstyle" 82 - version = "1.0.5" 92 + version = "1.0.6" 83 93 source = "registry+https://github.com/rust-lang/crates.io-index" 84 - checksum = "2faccea4cc4ab4a667ce676a30e8ec13922a692c99bb8f5b11f1502c72e04220" 94 + checksum = "8901269c6307e8d93993578286ac0edf7f195079ffff5ebdeea6a59ffb7e36bc" 85 95 86 96 [[package]] 87 97 name = "anstyle-parse" ··· 156 166 157 167 [[package]] 158 168 name = "async-channel" 159 - version = "2.1.1" 169 + version = "2.2.0" 160 170 source = "registry+https://github.com/rust-lang/crates.io-index" 161 - checksum = "1ca33f4bc4ed1babef42cad36cc1f51fa88be00420404e5b1e80ab1b18f7678c" 171 + checksum = "f28243a43d821d11341ab73c80bed182dc015c514b951616cf79bd4af39af0c3" 162 172 dependencies = [ 163 173 "concurrent-queue", 164 - "event-listener 4.0.3", 165 - "event-listener-strategy", 174 + "event-listener 5.0.0", 175 + "event-listener-strategy 0.5.0", 166 176 "futures-core", 167 177 "pin-project-lite", 168 178 ] ··· 225 235 "futures-io", 226 236 "futures-lite 2.2.0", 227 237 "parking", 228 - "polling 3.3.2", 238 + "polling 3.4.0", 229 239 "rustix 0.38.31", 230 240 "slab", 231 241 "tracing", ··· 248 258 checksum = "d034b430882f8381900d3fe6f0aaa3ad94f2cb4ac519b429692a1bc2dda4ae7b" 249 259 dependencies = [ 250 260 "event-listener 4.0.3", 251 - "event-listener-strategy", 261 + "event-listener-strategy 0.4.0", 252 262 "pin-project-lite", 253 263 ] 254 264 ··· 335 345 336 346 [[package]] 337 347 name = "bindgen" 338 - version = "0.66.1" 348 + version = "0.69.4" 339 349 source = "registry+https://github.com/rust-lang/crates.io-index" 340 - checksum = "f2b84e06fc203107bfbad243f4aba2af864eb7db3b1cf46ea0a023b0b433d2a7" 350 + checksum = "a00dc851838a2120612785d195287475a3ac45514741da670b735818822129a0" 341 351 dependencies = [ 352 + "annotate-snippets", 342 353 "bitflags 2.4.2", 343 354 "cexpr", 344 355 "clang-sys", 356 + "itertools", 345 357 "lazy_static", 346 358 "lazycell", 347 - "peeking_take_while", 348 359 "proc-macro2", 349 360 "quote", 350 361 "regex", ··· 438 449 439 450 [[package]] 440 451 name = "bytemuck" 441 - version = "1.14.1" 452 + version = "1.14.3" 442 453 source = "registry+https://github.com/rust-lang/crates.io-index" 443 - checksum = "ed2490600f404f2b94c167e31d3ed1d5f3c225a0f3b80230053b3e0b7b962bd9" 454 + checksum = "a2ef034f05691a48569bd920a96c81b9d91bbad1ab5ac7c4616c1f6ef36cb79f" 444 455 dependencies = [ 445 456 "bytemuck_derive", 446 457 ] ··· 470 481 471 482 [[package]] 472 483 name = "cairo-rs" 473 - version = "0.18.5" 484 + version = "0.19.1" 474 485 source = "registry+https://github.com/rust-lang/crates.io-index" 475 - checksum = "8ca26ef0159422fb77631dc9d17b102f253b876fe1586b03b803e63a309b4ee2" 486 + checksum = "bc1c415b7088381c53c575420899c34c9e6312df5ac5defd05614210e9fd6e1b" 476 487 dependencies = [ 477 488 "bitflags 2.4.2", 478 489 "cairo-sys-rs", 479 490 "glib", 480 491 "libc", 481 - "once_cell", 482 492 "thiserror", 483 493 ] 484 494 485 495 [[package]] 486 496 name = "cairo-sys-rs" 487 - version = "0.18.2" 497 + version = "0.19.1" 488 498 source = "registry+https://github.com/rust-lang/crates.io-index" 489 - checksum = "685c9fa8e590b8b3d678873528d83411db17242a73fccaed827770ea0fedda51" 499 + checksum = "75b6a5fefce2eadb8333e3c604ac964ba6573ec4f28bdd17f67032c4a2831831" 490 500 dependencies = [ 491 501 "glib-sys", 492 502 "libc", ··· 503 513 "bitflags 2.4.2", 504 514 "futures-io", 505 515 "log", 506 - "polling 3.3.2", 516 + "polling 3.4.0", 507 517 "rustix 0.38.31", 508 518 "slab", 509 519 "thiserror", ··· 548 558 549 559 [[package]] 550 560 name = "cfg-expr" 551 - version = "0.15.6" 561 + version = "0.15.7" 552 562 source = "registry+https://github.com/rust-lang/crates.io-index" 553 - checksum = "6100bc57b6209840798d95cb2775684849d332f7bd788db2a8c8caf7ef82a41a" 563 + checksum = "fa50868b64a9a6fda9d593ce778849ea8715cd2a3d2cc17ffdb4a2f2f2f1961d" 554 564 dependencies = [ 555 565 "smallvec", 556 566 "target-lexicon", ··· 897 907 checksum = "2ab5fa33485cd85ac354df485819a63360fefa312fe04cffe65e6f175be1522c" 898 908 899 909 [[package]] 910 + name = "either" 911 + version = "1.10.0" 912 + source = "registry+https://github.com/rust-lang/crates.io-index" 913 + checksum = "11157ac094ffbdde99aa67b23417ebdd801842852b500e395a45a9c0aac03e4a" 914 + 915 + [[package]] 900 916 name = "enumflags2" 901 917 version = "0.7.8" 902 918 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 962 978 ] 963 979 964 980 [[package]] 981 + name = "event-listener" 982 + version = "5.0.0" 983 + source = "registry+https://github.com/rust-lang/crates.io-index" 984 + checksum = "b72557800024fabbaa2449dd4bf24e37b93702d457a4d4f2b0dd1f0f039f20c1" 985 + dependencies = [ 986 + "concurrent-queue", 987 + "parking", 988 + "pin-project-lite", 989 + ] 990 + 991 + [[package]] 965 992 name = "event-listener-strategy" 966 993 version = "0.4.0" 967 994 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 972 999 ] 973 1000 974 1001 [[package]] 1002 + name = "event-listener-strategy" 1003 + version = "0.5.0" 1004 + source = "registry+https://github.com/rust-lang/crates.io-index" 1005 + checksum = "feedafcaa9b749175d5ac357452a9d41ea2911da598fde46ce1fe02c37751291" 1006 + dependencies = [ 1007 + "event-listener 5.0.0", 1008 + "pin-project-lite", 1009 + ] 1010 + 1011 + [[package]] 975 1012 name = "fastrand" 976 1013 version = "1.9.0" 977 1014 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 993 1030 checksum = "4f9bfee30e4dedf0ab8b422f03af778d9612b63f502710fc500a334ebe2de645" 994 1031 dependencies = [ 995 1032 "simd-adler32", 1033 + ] 1034 + 1035 + [[package]] 1036 + name = "field-offset" 1037 + version = "0.3.6" 1038 + source = "registry+https://github.com/rust-lang/crates.io-index" 1039 + checksum = "38e2275cc4e4fc009b0669731a1e5ab7ebf11f469eaede2bab9309a5b4d6057f" 1040 + dependencies = [ 1041 + "memoffset 0.9.0", 1042 + "rustc_version", 996 1043 ] 997 1044 998 1045 [[package]] ··· 1149 1196 1150 1197 [[package]] 1151 1198 name = "gbm" 1152 - version = "0.14.0" 1199 + version = "0.14.1" 1153 1200 source = "registry+https://github.com/rust-lang/crates.io-index" 1154 - checksum = "65dffaf38d96aa22cb748ccd9b1ffe624931e899f54c0225815ef7ac757a409f" 1201 + checksum = "f177420f6650dcd50042121adf7ff7ab265abdaf4862fe2624066e36e3a9ef34" 1155 1202 dependencies = [ 1156 1203 "bitflags 1.3.2", 1157 1204 "drm", ··· 1172 1219 ] 1173 1220 1174 1221 [[package]] 1222 + name = "gdk-pixbuf" 1223 + version = "0.19.0" 1224 + source = "registry+https://github.com/rust-lang/crates.io-index" 1225 + checksum = "c311c47800051b87de1335e8792774d7cec551c91a0a3d109ab21d76b36f208f" 1226 + dependencies = [ 1227 + "gdk-pixbuf-sys", 1228 + "gio", 1229 + "glib", 1230 + "libc", 1231 + ] 1232 + 1233 + [[package]] 1234 + name = "gdk-pixbuf-sys" 1235 + version = "0.19.0" 1236 + source = "registry+https://github.com/rust-lang/crates.io-index" 1237 + checksum = "3dcbd04c1b2c4834cc008b4828bc917d062483b88d26effde6342e5622028f96" 1238 + dependencies = [ 1239 + "gio-sys", 1240 + "glib-sys", 1241 + "gobject-sys", 1242 + "libc", 1243 + "system-deps", 1244 + ] 1245 + 1246 + [[package]] 1247 + name = "gdk4" 1248 + version = "0.8.0" 1249 + source = "registry+https://github.com/rust-lang/crates.io-index" 1250 + checksum = "6771942f85a2beaa220c64739395e4401b9fab4a52aba9b503fa1e6ed4d4d806" 1251 + dependencies = [ 1252 + "cairo-rs", 1253 + "gdk-pixbuf", 1254 + "gdk4-sys", 1255 + "gio", 1256 + "glib", 1257 + "libc", 1258 + "pango", 1259 + ] 1260 + 1261 + [[package]] 1262 + name = "gdk4-sys" 1263 + version = "0.8.0" 1264 + source = "registry+https://github.com/rust-lang/crates.io-index" 1265 + checksum = "1eb95854fab65072023a7814434f003db571d6e45c287c0b0c540c1c78bdf6ae" 1266 + dependencies = [ 1267 + "cairo-sys-rs", 1268 + "gdk-pixbuf-sys", 1269 + "gio-sys", 1270 + "glib-sys", 1271 + "gobject-sys", 1272 + "libc", 1273 + "pango-sys", 1274 + "pkg-config", 1275 + "system-deps", 1276 + ] 1277 + 1278 + [[package]] 1175 1279 name = "generator" 1176 1280 version = "0.7.5" 1177 1281 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1217 1321 1218 1322 [[package]] 1219 1323 name = "gio" 1220 - version = "0.18.4" 1324 + version = "0.19.0" 1221 1325 source = "registry+https://github.com/rust-lang/crates.io-index" 1222 - checksum = "d4fc8f532f87b79cbc51a79748f16a6828fb784be93145a322fa14d06d354c73" 1326 + checksum = "b3d1aaa2d926710a27f3b35822806b1513b393b71174dd2601c9d02fdab0cb82" 1223 1327 dependencies = [ 1224 1328 "futures-channel", 1225 1329 "futures-core", ··· 1228 1332 "gio-sys", 1229 1333 "glib", 1230 1334 "libc", 1231 - "once_cell", 1232 1335 "pin-project-lite", 1233 1336 "smallvec", 1234 1337 "thiserror", ··· 1236 1339 1237 1340 [[package]] 1238 1341 name = "gio-sys" 1239 - version = "0.18.1" 1342 + version = "0.19.0" 1240 1343 source = "registry+https://github.com/rust-lang/crates.io-index" 1241 - checksum = "37566df850baf5e4cb0dfb78af2e4b9898d817ed9263d1090a2df958c64737d2" 1344 + checksum = "bcf8e1d9219bb294636753d307b030c1e8a032062cba74f493c431a5c8b81ce4" 1242 1345 dependencies = [ 1243 1346 "glib-sys", 1244 1347 "gobject-sys", 1245 1348 "libc", 1246 1349 "system-deps", 1247 - "winapi", 1350 + "windows-sys 0.52.0", 1248 1351 ] 1249 1352 1250 1353 [[package]] ··· 1280 1383 1281 1384 [[package]] 1282 1385 name = "glib" 1283 - version = "0.18.5" 1386 + version = "0.19.0" 1284 1387 source = "registry+https://github.com/rust-lang/crates.io-index" 1285 - checksum = "233daaf6e83ae6a12a52055f568f9d7cf4671dabb78ff9560ab6da230ce00ee5" 1388 + checksum = "170ee82b9b44b3b5fd1cf4971d6cf0eadec38303bb84c7bcc4e6b95a18934e71" 1286 1389 dependencies = [ 1287 1390 "bitflags 2.4.2", 1288 1391 "futures-channel", ··· 1296 1399 "gobject-sys", 1297 1400 "libc", 1298 1401 "memchr", 1299 - "once_cell", 1300 1402 "smallvec", 1301 1403 "thiserror", 1302 1404 ] 1303 1405 1304 1406 [[package]] 1305 1407 name = "glib-macros" 1306 - version = "0.18.5" 1408 + version = "0.19.0" 1307 1409 source = "registry+https://github.com/rust-lang/crates.io-index" 1308 - checksum = "0bb0228f477c0900c880fd78c8759b95c7636dbd7842707f49e132378aa2acdc" 1410 + checksum = "2ff52fff7e4d1bb8598ae744e9bb90c8c76271712483c3f0ce931bee9814de85" 1309 1411 dependencies = [ 1310 1412 "heck", 1311 - "proc-macro-crate 2.0.2", 1312 - "proc-macro-error", 1413 + "proc-macro-crate 3.1.0", 1313 1414 "proc-macro2", 1314 1415 "quote", 1315 1416 "syn 2.0.48", ··· 1317 1418 1318 1419 [[package]] 1319 1420 name = "glib-sys" 1320 - version = "0.18.1" 1421 + version = "0.19.0" 1321 1422 source = "registry+https://github.com/rust-lang/crates.io-index" 1322 - checksum = "063ce2eb6a8d0ea93d2bf8ba1957e78dbab6be1c2220dd3daca57d5a9d869898" 1423 + checksum = "630f097773d7c7a0bb3258df4e8157b47dc98bbfa0e60ad9ab56174813feced4" 1323 1424 dependencies = [ 1324 1425 "libc", 1325 1426 "system-deps", ··· 1333 1434 1334 1435 [[package]] 1335 1436 name = "gobject-sys" 1336 - version = "0.18.0" 1437 + version = "0.19.0" 1438 + source = "registry+https://github.com/rust-lang/crates.io-index" 1439 + checksum = "c85e2b1080b9418dd0c58b498da3a5c826030343e0ef07bde6a955d28de54979" 1440 + dependencies = [ 1441 + "glib-sys", 1442 + "libc", 1443 + "system-deps", 1444 + ] 1445 + 1446 + [[package]] 1447 + name = "graphene-rs" 1448 + version = "0.19.0" 1449 + source = "registry+https://github.com/rust-lang/crates.io-index" 1450 + checksum = "147827e4f506f8073ac3ec5b28cc2255bdf3abc30f5b4e101a80506eebe11d2c" 1451 + dependencies = [ 1452 + "glib", 1453 + "graphene-sys", 1454 + "libc", 1455 + ] 1456 + 1457 + [[package]] 1458 + name = "graphene-sys" 1459 + version = "0.19.0" 1460 + source = "registry+https://github.com/rust-lang/crates.io-index" 1461 + checksum = "236ed66cc9b18d8adf233716f75de803d0bf6fc806f60d14d948974a12e240d0" 1462 + dependencies = [ 1463 + "glib-sys", 1464 + "libc", 1465 + "pkg-config", 1466 + "system-deps", 1467 + ] 1468 + 1469 + [[package]] 1470 + name = "gsk4" 1471 + version = "0.8.0" 1472 + source = "registry+https://github.com/rust-lang/crates.io-index" 1473 + checksum = "0e8ce8dee0fd87a11002214b1204ff18c9272fbd530408f0884a0f9b25dc31de" 1474 + dependencies = [ 1475 + "cairo-rs", 1476 + "gdk4", 1477 + "glib", 1478 + "graphene-rs", 1479 + "gsk4-sys", 1480 + "libc", 1481 + "pango", 1482 + ] 1483 + 1484 + [[package]] 1485 + name = "gsk4-sys" 1486 + version = "0.8.0" 1487 + source = "registry+https://github.com/rust-lang/crates.io-index" 1488 + checksum = "2660a652da5b662d43924df19ba40d73f015ed427329ef51d2b1360a4e0dc0e4" 1489 + dependencies = [ 1490 + "cairo-sys-rs", 1491 + "gdk4-sys", 1492 + "glib-sys", 1493 + "gobject-sys", 1494 + "graphene-sys", 1495 + "libc", 1496 + "pango-sys", 1497 + "system-deps", 1498 + ] 1499 + 1500 + [[package]] 1501 + name = "gtk4" 1502 + version = "0.8.0" 1503 + source = "registry+https://github.com/rust-lang/crates.io-index" 1504 + checksum = "7d26ffa3ec6316ccaa1df62d3e7f5bae1637c0acbb43f250fabef38319f73c64" 1505 + dependencies = [ 1506 + "cairo-rs", 1507 + "field-offset", 1508 + "futures-channel", 1509 + "gdk-pixbuf", 1510 + "gdk4", 1511 + "gio", 1512 + "glib", 1513 + "graphene-rs", 1514 + "gsk4", 1515 + "gtk4-macros", 1516 + "gtk4-sys", 1517 + "libc", 1518 + "pango", 1519 + ] 1520 + 1521 + [[package]] 1522 + name = "gtk4-macros" 1523 + version = "0.8.0" 1337 1524 source = "registry+https://github.com/rust-lang/crates.io-index" 1338 - checksum = "0850127b514d1c4a4654ead6dedadb18198999985908e6ffe4436f53c785ce44" 1525 + checksum = "c8b86439e9896f6f3f47c3d8077c5c8205174078760afdabd9098a8e9e937d97" 1339 1526 dependencies = [ 1527 + "anyhow", 1528 + "proc-macro-crate 3.1.0", 1529 + "proc-macro-error", 1530 + "proc-macro2", 1531 + "quote", 1532 + "syn 1.0.109", 1533 + ] 1534 + 1535 + [[package]] 1536 + name = "gtk4-sys" 1537 + version = "0.8.0" 1538 + source = "registry+https://github.com/rust-lang/crates.io-index" 1539 + checksum = "2abc0a6d356d59a3806021829ce6ed3e70bba3509b41a535fedcb09fae13fbc0" 1540 + dependencies = [ 1541 + "cairo-sys-rs", 1542 + "gdk-pixbuf-sys", 1543 + "gdk4-sys", 1544 + "gio-sys", 1340 1545 "glib-sys", 1546 + "gobject-sys", 1547 + "graphene-sys", 1548 + "gsk4-sys", 1341 1549 "libc", 1550 + "pango-sys", 1342 1551 "system-deps", 1343 1552 ] 1344 1553 ··· 1363 1572 1364 1573 [[package]] 1365 1574 name = "hermit-abi" 1366 - version = "0.3.4" 1575 + version = "0.3.5" 1367 1576 source = "registry+https://github.com/rust-lang/crates.io-index" 1368 - checksum = "5d3d0e0f38255e7fa3cf31335b3a56f05febd18025f4db5ef7a0cfb4f8da651f" 1577 + checksum = "d0c62115964e08cb8039170eb33c1d0e2388a256930279edca206fff675f82c3" 1369 1578 1370 1579 [[package]] 1371 1580 name = "hex" ··· 1414 1623 "input-sys", 1415 1624 "io-lifetimes 1.0.11", 1416 1625 "libc", 1626 + "log", 1417 1627 "udev", 1418 1628 ] 1419 1629 ··· 1450 1660 checksum = "5a611371471e98973dbcab4e0ec66c31a10bc356eeb4d54a0e05eac8158fe38c" 1451 1661 1452 1662 [[package]] 1663 + name = "itertools" 1664 + version = "0.12.1" 1665 + source = "registry+https://github.com/rust-lang/crates.io-index" 1666 + checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569" 1667 + dependencies = [ 1668 + "either", 1669 + ] 1670 + 1671 + [[package]] 1453 1672 name = "itoa" 1454 1673 version = "1.0.10" 1455 1674 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1479 1698 1480 1699 [[package]] 1481 1700 name = "jobserver" 1482 - version = "0.1.27" 1701 + version = "0.1.28" 1483 1702 source = "registry+https://github.com/rust-lang/crates.io-index" 1484 - checksum = "8c37f63953c4c63420ed5fd3d6d398c719489b9f872b9fa683262f8edd363c7d" 1703 + checksum = "ab46a6e9526ddef3ae7f787c06f0f2600639ba80ea3eade3d8e670a2230f51d6" 1485 1704 dependencies = [ 1486 1705 "libc", 1487 1706 ] 1488 1707 1489 1708 [[package]] 1490 1709 name = "js-sys" 1491 - version = "0.3.67" 1710 + version = "0.3.68" 1492 1711 source = "registry+https://github.com/rust-lang/crates.io-index" 1493 - checksum = "9a1d36f1235bc969acba30b7f5990b864423a6068a10f7c90ae8f0112e3a59d1" 1712 + checksum = "406cda4b368d531c842222cf9d2600a9a4acce8d29423695379c6868a143a9ee" 1494 1713 dependencies = [ 1495 1714 "wasm-bindgen", 1496 1715 ] ··· 1550 1769 checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" 1551 1770 1552 1771 [[package]] 1772 + name = "libadwaita" 1773 + version = "0.6.0" 1774 + source = "registry+https://github.com/rust-lang/crates.io-index" 1775 + checksum = "91b4990248b9e1ec5e72094a2ccaea70ec3809f88f6fd52192f2af306b87c5d9" 1776 + dependencies = [ 1777 + "gdk-pixbuf", 1778 + "gdk4", 1779 + "gio", 1780 + "glib", 1781 + "gtk4", 1782 + "libadwaita-sys", 1783 + "libc", 1784 + "pango", 1785 + ] 1786 + 1787 + [[package]] 1788 + name = "libadwaita-sys" 1789 + version = "0.6.0" 1790 + source = "registry+https://github.com/rust-lang/crates.io-index" 1791 + checksum = "23a748e4e92be1265cd9e93d569c0b5dfc7814107985aa6743d670ab281ea1a8" 1792 + dependencies = [ 1793 + "gdk4-sys", 1794 + "gio-sys", 1795 + "glib-sys", 1796 + "gobject-sys", 1797 + "gtk4-sys", 1798 + "libc", 1799 + "pango-sys", 1800 + "system-deps", 1801 + ] 1802 + 1803 + [[package]] 1553 1804 name = "libc" 1554 1805 version = "0.2.153" 1555 1806 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1615 1866 1616 1867 [[package]] 1617 1868 name = "libspa" 1618 - version = "0.7.2" 1869 + version = "0.8.0" 1619 1870 source = "registry+https://github.com/rust-lang/crates.io-index" 1620 - checksum = "0434617020ddca18b86067912970c55410ca654cdafd775480322f50b857a8c4" 1871 + checksum = "65f3a4b81b2a2d8c7f300643676202debd1b7c929dbf5c9bb89402ea11d19810" 1621 1872 dependencies = [ 1622 1873 "bitflags 2.4.2", 1623 1874 "cc", ··· 1625 1876 "cookie-factory", 1626 1877 "libc", 1627 1878 "libspa-sys", 1628 - "nix", 1879 + "nix 0.27.1", 1629 1880 "nom", 1630 1881 "system-deps", 1631 1882 ] 1632 1883 1633 1884 [[package]] 1634 1885 name = "libspa-sys" 1635 - version = "0.7.2" 1886 + version = "0.8.0" 1636 1887 source = "registry+https://github.com/rust-lang/crates.io-index" 1637 - checksum = "b3e70ca3f3e70f858ef363046d06178c427b4e0b63d210c95fd87d752679d345" 1888 + checksum = "bf0d9716420364790e85cbb9d3ac2c950bde16a7dd36f3209b7dfdfc4a24d01f" 1638 1889 dependencies = [ 1639 1890 "bindgen", 1640 1891 "cc", ··· 1674 1925 version = "0.4.20" 1675 1926 source = "registry+https://github.com/rust-lang/crates.io-index" 1676 1927 checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" 1677 - 1678 - [[package]] 1679 - name = "logind-zbus" 1680 - version = "3.1.2" 1681 - source = "registry+https://github.com/rust-lang/crates.io-index" 1682 - checksum = "c07a2542f6e91ea92780158654852190edb2ba0b232d9d00d649d0c691cb7eb3" 1683 - dependencies = [ 1684 - "serde", 1685 - "zbus", 1686 - ] 1687 1928 1688 1929 [[package]] 1689 1930 name = "loom" ··· 1802 2043 1803 2044 [[package]] 1804 2045 name = "miniz_oxide" 1805 - version = "0.7.1" 2046 + version = "0.7.2" 1806 2047 source = "registry+https://github.com/rust-lang/crates.io-index" 1807 - checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" 2048 + checksum = "9d811f3e15f28568be3407c8e7fdb6514c1cda3cb30683f15b6a1a1dc4ea14a7" 1808 2049 dependencies = [ 1809 2050 "adler", 1810 2051 "simd-adler32", ··· 1842 2083 1843 2084 [[package]] 1844 2085 name = "niri" 1845 - version = "0.1.1" 2086 + version = "0.1.2" 1846 2087 dependencies = [ 1847 2088 "anyhow", 1848 2089 "arrayvec", ··· 1854 2095 "directories", 1855 2096 "futures-util", 1856 2097 "git-version", 2098 + "input", 1857 2099 "keyframe", 1858 2100 "libc", 1859 2101 "log", 1860 - "logind-zbus", 1861 2102 "niri-config", 1862 2103 "niri-ipc", 1863 2104 "notify-rust", ··· 1878 2119 "tracy-client", 1879 2120 "url", 1880 2121 "xcursor", 2122 + "xshell", 1881 2123 "zbus", 1882 2124 ] 1883 2125 1884 2126 [[package]] 1885 2127 name = "niri-config" 1886 - version = "0.1.1" 2128 + version = "0.1.2" 1887 2129 dependencies = [ 1888 2130 "bitflags 2.4.2", 1889 2131 "knuffel", 1890 2132 "miette", 2133 + "niri-ipc", 2134 + "regex", 1891 2135 "smithay", 1892 2136 "tracing", 1893 2137 "tracy-client", ··· 1895 2139 1896 2140 [[package]] 1897 2141 name = "niri-ipc" 1898 - version = "0.1.1" 2142 + version = "0.1.2" 1899 2143 dependencies = [ 2144 + "clap", 1900 2145 "serde", 1901 2146 ] 1902 2147 1903 2148 [[package]] 2149 + name = "niri-visual-tests" 2150 + version = "0.1.2" 2151 + dependencies = [ 2152 + "anyhow", 2153 + "gtk4", 2154 + "libadwaita", 2155 + "niri", 2156 + "niri-config", 2157 + "smithay", 2158 + "tracing", 2159 + "tracing-subscriber", 2160 + ] 2161 + 2162 + [[package]] 1904 2163 name = "nix" 1905 2164 version = "0.26.4" 1906 2165 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1910 2169 "cfg-if", 1911 2170 "libc", 1912 2171 "memoffset 0.7.1", 1913 - "pin-utils", 2172 + ] 2173 + 2174 + [[package]] 2175 + name = "nix" 2176 + version = "0.27.1" 2177 + source = "registry+https://github.com/rust-lang/crates.io-index" 2178 + checksum = "2eb04e9c688eff1c89d72b407f168cf79bb9e867a9d3323ed6c01519eb9cc053" 2179 + dependencies = [ 2180 + "bitflags 2.4.2", 2181 + "cfg-if", 2182 + "libc", 1914 2183 ] 1915 2184 1916 2185 [[package]] ··· 1954 2223 1955 2224 [[package]] 1956 2225 name = "num-traits" 1957 - version = "0.2.17" 2226 + version = "0.2.18" 1958 2227 source = "registry+https://github.com/rust-lang/crates.io-index" 1959 - checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c" 2228 + checksum = "da0df0e5185db44f69b44f26786fe401b6c293d1907744beaa7fa62b2e5a517a" 1960 2229 dependencies = [ 1961 2230 "autocfg", 1962 2231 "libm", ··· 1977 2246 source = "registry+https://github.com/rust-lang/crates.io-index" 1978 2247 checksum = "681030a937600a36906c185595136d26abfebb4aa9c65701cefcaf8578bb982b" 1979 2248 dependencies = [ 1980 - "proc-macro-crate 2.0.2", 2249 + "proc-macro-crate 3.1.0", 1981 2250 "proc-macro2", 1982 2251 "quote", 1983 2252 "syn 2.0.48", ··· 2073 2342 2074 2343 [[package]] 2075 2344 name = "pango" 2076 - version = "0.18.3" 2345 + version = "0.19.0" 2077 2346 source = "registry+https://github.com/rust-lang/crates.io-index" 2078 - checksum = "7ca27ec1eb0457ab26f3036ea52229edbdb74dee1edd29063f5b9b010e7ebee4" 2347 + checksum = "78d7f779b957728c74fd1a060dfa6d89a0bea792ebc50cc2da80e4e87282d69e" 2079 2348 dependencies = [ 2080 2349 "gio", 2081 2350 "glib", 2082 2351 "libc", 2083 - "once_cell", 2084 2352 "pango-sys", 2085 2353 ] 2086 2354 2087 2355 [[package]] 2088 2356 name = "pango-sys" 2089 - version = "0.18.0" 2357 + version = "0.19.0" 2090 2358 source = "registry+https://github.com/rust-lang/crates.io-index" 2091 - checksum = "436737e391a843e5933d6d9aa102cb126d501e815b83601365a948a518555dc5" 2359 + checksum = "f52ef6a881c19fbfe3b1484df5cad411acaaba29dbec843941c3110d19f340ea" 2092 2360 dependencies = [ 2093 2361 "glib-sys", 2094 2362 "gobject-sys", ··· 2098 2366 2099 2367 [[package]] 2100 2368 name = "pangocairo" 2101 - version = "0.18.0" 2369 + version = "0.19.1" 2102 2370 source = "registry+https://github.com/rust-lang/crates.io-index" 2103 - checksum = "57036589a9cfcacf83f9e606d15813fc6bf03f0e9e69aa2b5e3bb85af86b38a5" 2371 + checksum = "9615c6294903a6ea26fa63984b18e51275354d1fa91bbde68eeb7fa3ab61a72f" 2104 2372 dependencies = [ 2105 2373 "cairo-rs", 2106 2374 "glib", ··· 2111 2379 2112 2380 [[package]] 2113 2381 name = "pangocairo-sys" 2114 - version = "0.18.0" 2382 + version = "0.19.0" 2115 2383 source = "registry+https://github.com/rust-lang/crates.io-index" 2116 - checksum = "fc3c8ff676a37e7a72ec1d5fc029f91c407278083d2752784ff9f5188c108833" 2384 + checksum = "01bd0597ae45983f9e8b7f73afc42238426cd3fbb44a9cf14fd881a4ae08f1e4" 2117 2385 dependencies = [ 2118 2386 "cairo-sys-rs", 2119 2387 "glib-sys", ··· 2135 2403 checksum = "de3145af08024dea9fa9914f381a17b8fc6034dfb00f3a84013f7ff43f29ed4c" 2136 2404 2137 2405 [[package]] 2138 - name = "peeking_take_while" 2139 - version = "0.1.2" 2140 - source = "registry+https://github.com/rust-lang/crates.io-index" 2141 - checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099" 2142 - 2143 - [[package]] 2144 2406 name = "percent-encoding" 2145 2407 version = "2.3.1" 2146 2408 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2171 2433 2172 2434 [[package]] 2173 2435 name = "pipewire" 2174 - version = "0.7.2" 2436 + version = "0.8.0" 2175 2437 source = "registry+https://github.com/rust-lang/crates.io-index" 2176 - checksum = "a2d009c8dd65e890b515a71950f7e4c801523b8894ff33863a40830bf762e9e9" 2438 + checksum = "08e645ba5c45109106d56610b3ee60eb13a6f2beb8b74f8dc8186cf261788dda" 2177 2439 dependencies = [ 2178 2440 "anyhow", 2179 2441 "bitflags 2.4.2", 2180 2442 "libc", 2181 2443 "libspa", 2182 2444 "libspa-sys", 2183 - "nix", 2445 + "nix 0.27.1", 2184 2446 "once_cell", 2185 2447 "pipewire-sys", 2186 2448 "thiserror", ··· 2188 2450 2189 2451 [[package]] 2190 2452 name = "pipewire-sys" 2191 - version = "0.7.2" 2453 + version = "0.8.0" 2192 2454 source = "registry+https://github.com/rust-lang/crates.io-index" 2193 - checksum = "890c084e7b737246cb4799c86b71a0e4da536031ff7473dd639eba9f95039f64" 2455 + checksum = "849e188f90b1dda88fe2bfe1ad31fe5f158af2c98f80fb5d13726c44f3f01112" 2194 2456 dependencies = [ 2195 2457 "bindgen", 2196 2458 "libspa-sys", ··· 2252 2514 2253 2515 [[package]] 2254 2516 name = "polling" 2255 - version = "3.3.2" 2517 + version = "3.4.0" 2256 2518 source = "registry+https://github.com/rust-lang/crates.io-index" 2257 - checksum = "545c980a3880efd47b2e262f6a4bb6daad6555cf3367aa9c4e52895f69537a41" 2519 + checksum = "30054e72317ab98eddd8561db0f6524df3367636884b7b21b703e4b280a84a14" 2258 2520 dependencies = [ 2259 2521 "cfg-if", 2260 2522 "concurrent-queue", ··· 2294 2556 2295 2557 [[package]] 2296 2558 name = "proc-macro-crate" 2297 - version = "2.0.2" 2559 + version = "3.1.0" 2298 2560 source = "registry+https://github.com/rust-lang/crates.io-index" 2299 - checksum = "b00f26d3400549137f92511a46ac1cd8ce37cb5598a96d382381458b992a5d24" 2561 + checksum = "6d37c51ca738a55da99dc0c4a34860fd675453b8b36209178c2249bb13651284" 2300 2562 dependencies = [ 2301 - "toml_datetime", 2302 - "toml_edit 0.20.2", 2563 + "toml_edit 0.21.1", 2303 2564 ] 2304 2565 2305 2566 [[package]] ··· 2544 2805 checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" 2545 2806 2546 2807 [[package]] 2808 + name = "rustc_version" 2809 + version = "0.4.0" 2810 + source = "registry+https://github.com/rust-lang/crates.io-index" 2811 + checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" 2812 + dependencies = [ 2813 + "semver", 2814 + ] 2815 + 2816 + [[package]] 2547 2817 name = "rustix" 2548 2818 version = "0.37.27" 2549 2819 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2622 2892 checksum = "621e3680f3e07db4c9c2c3fb07c6223ab2fab2e54bd3c04c3ae037990f428c32" 2623 2893 2624 2894 [[package]] 2895 + name = "semver" 2896 + version = "1.0.21" 2897 + source = "registry+https://github.com/rust-lang/crates.io-index" 2898 + checksum = "b97ed7a9823b74f99c7742f5336af7be5ecd3eeafcb1507d1fa93347b1d589b0" 2899 + 2900 + [[package]] 2625 2901 name = "serde" 2626 2902 version = "1.0.196" 2627 2903 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 2731 3007 [[package]] 2732 3008 name = "smithay" 2733 3009 version = "0.3.0" 2734 - source = "git+https://github.com/Smithay/smithay.git#0eac415ba2d9409cbc201955dc0fd306c116ae05" 3010 + source = "git+https://github.com/Smithay/smithay.git#832dee8586d783d4c60a162ef8aabca2ba7fd499" 2735 3011 dependencies = [ 2736 3012 "appendlist", 2737 3013 "bitflags 2.4.2", ··· 2777 3053 2778 3054 [[package]] 2779 3055 name = "smithay-client-toolkit" 2780 - version = "0.18.0" 3056 + version = "0.18.1" 2781 3057 source = "registry+https://github.com/rust-lang/crates.io-index" 2782 - checksum = "60e3d9941fa3bacf7c2bf4b065304faa14164151254cd16ce1b1bc8fc381600f" 3058 + checksum = "922fd3eeab3bd820d76537ce8f582b1cf951eceb5475c28500c7457d9d17f53a" 2783 3059 dependencies = [ 2784 3060 "bitflags 2.4.2", 2785 3061 "calloop", ··· 2803 3079 [[package]] 2804 3080 name = "smithay-drm-extras" 2805 3081 version = "0.1.0" 2806 - source = "git+https://github.com/Smithay/smithay.git#0eac415ba2d9409cbc201955dc0fd306c116ae05" 3082 + source = "git+https://github.com/Smithay/smithay.git#832dee8586d783d4c60a162ef8aabca2ba7fd499" 2807 3083 dependencies = [ 2808 3084 "drm", 2809 3085 "edid-rs", ··· 2893 3169 2894 3170 [[package]] 2895 3171 name = "tempfile" 2896 - version = "3.9.0" 3172 + version = "3.10.0" 2897 3173 source = "registry+https://github.com/rust-lang/crates.io-index" 2898 - checksum = "01ce4141aa927a6d1bd34a041795abd0db1cccba5d5f24b009f694bdf3a1f3fa" 3174 + checksum = "a365e8cd18e44762ef95d87f284f4b5cd04107fec2ff3052bd6a3e6069669e67" 2899 3175 dependencies = [ 2900 3176 "cfg-if", 2901 3177 "fastrand 2.0.1", 2902 - "redox_syscall 0.4.1", 2903 3178 "rustix 0.38.31", 2904 3179 "windows-sys 0.52.0", 2905 3180 ] ··· 2936 3211 2937 3212 [[package]] 2938 3213 name = "time" 2939 - version = "0.3.32" 3214 + version = "0.3.34" 2940 3215 source = "registry+https://github.com/rust-lang/crates.io-index" 2941 - checksum = "fe80ced77cbfb4cb91a94bf72b378b4b6791a0d9b7f09d0be747d1bdff4e68bd" 3216 + checksum = "c8248b6521bb14bc45b4067159b9b6ad792e2d6d754d6c41fb50e29fefe38749" 2942 3217 dependencies = [ 2943 3218 "deranged", 2944 3219 "num-conv", ··· 2970 3245 2971 3246 [[package]] 2972 3247 name = "toml" 2973 - version = "0.8.2" 3248 + version = "0.8.10" 2974 3249 source = "registry+https://github.com/rust-lang/crates.io-index" 2975 - checksum = "185d8ab0dfbb35cf1399a6344d8484209c088f75f8f68230da55d48d95d43e3d" 3250 + checksum = "9a9aad4a3066010876e8dcf5a8a06e70a558751117a145c6ce2b82c2e2054290" 2976 3251 dependencies = [ 2977 3252 "serde", 2978 3253 "serde_spanned", 2979 3254 "toml_datetime", 2980 - "toml_edit 0.20.2", 3255 + "toml_edit 0.22.4", 2981 3256 ] 2982 3257 2983 3258 [[package]] 2984 3259 name = "toml_datetime" 2985 - version = "0.6.3" 3260 + version = "0.6.5" 2986 3261 source = "registry+https://github.com/rust-lang/crates.io-index" 2987 - checksum = "7cda73e2f1397b1262d6dfdcef8aafae14d1de7748d66822d3bfeeb6d03e5e4b" 3262 + checksum = "3550f4e9685620ac18a50ed434eb3aec30db8ba93b0287467bca5826ea25baf1" 2988 3263 dependencies = [ 2989 3264 "serde", 2990 3265 ] ··· 3002 3277 3003 3278 [[package]] 3004 3279 name = "toml_edit" 3005 - version = "0.20.2" 3280 + version = "0.21.1" 3281 + source = "registry+https://github.com/rust-lang/crates.io-index" 3282 + checksum = "6a8534fd7f78b5405e860340ad6575217ce99f38d4d5c8f2442cb5ecb50090e1" 3283 + dependencies = [ 3284 + "indexmap", 3285 + "toml_datetime", 3286 + "winnow", 3287 + ] 3288 + 3289 + [[package]] 3290 + name = "toml_edit" 3291 + version = "0.22.4" 3006 3292 source = "registry+https://github.com/rust-lang/crates.io-index" 3007 - checksum = "396e4d48bbb2b7554c944bde63101b5ae446cff6ec4a24227428f15eb72ef338" 3293 + checksum = "0c9ffdf896f8daaabf9b66ba8e77ea1ed5ed0f72821b398aba62352e95062951" 3008 3294 dependencies = [ 3009 3295 "indexmap", 3010 3296 "serde", ··· 3152 3438 3153 3439 [[package]] 3154 3440 name = "unicode-segmentation" 3155 - version = "1.10.1" 3441 + version = "1.11.0" 3156 3442 source = "registry+https://github.com/rust-lang/crates.io-index" 3157 - checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36" 3443 + checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202" 3158 3444 3159 3445 [[package]] 3160 3446 name = "unicode-width" ··· 3230 3516 3231 3517 [[package]] 3232 3518 name = "wasm-bindgen" 3233 - version = "0.2.90" 3519 + version = "0.2.91" 3234 3520 source = "registry+https://github.com/rust-lang/crates.io-index" 3235 - checksum = "b1223296a201415c7fad14792dbefaace9bd52b62d33453ade1c5b5f07555406" 3521 + checksum = "c1e124130aee3fb58c5bdd6b639a0509486b0338acaaae0c84a5124b0f588b7f" 3236 3522 dependencies = [ 3237 3523 "cfg-if", 3238 3524 "wasm-bindgen-macro", ··· 3240 3526 3241 3527 [[package]] 3242 3528 name = "wasm-bindgen-backend" 3243 - version = "0.2.90" 3529 + version = "0.2.91" 3244 3530 source = "registry+https://github.com/rust-lang/crates.io-index" 3245 - checksum = "fcdc935b63408d58a32f8cc9738a0bffd8f05cc7c002086c6ef20b7312ad9dcd" 3531 + checksum = "c9e7e1900c352b609c8488ad12639a311045f40a35491fb69ba8c12f758af70b" 3246 3532 dependencies = [ 3247 3533 "bumpalo", 3248 3534 "log", ··· 3255 3541 3256 3542 [[package]] 3257 3543 name = "wasm-bindgen-futures" 3258 - version = "0.4.40" 3544 + version = "0.4.41" 3259 3545 source = "registry+https://github.com/rust-lang/crates.io-index" 3260 - checksum = "bde2032aeb86bdfaecc8b261eef3cba735cc426c1f3a3416d1e0791be95fc461" 3546 + checksum = "877b9c3f61ceea0e56331985743b13f3d25c406a7098d45180fb5f09bc19ed97" 3261 3547 dependencies = [ 3262 3548 "cfg-if", 3263 3549 "js-sys", ··· 3267 3553 3268 3554 [[package]] 3269 3555 name = "wasm-bindgen-macro" 3270 - version = "0.2.90" 3556 + version = "0.2.91" 3271 3557 source = "registry+https://github.com/rust-lang/crates.io-index" 3272 - checksum = "3e4c238561b2d428924c49815533a8b9121c664599558a5d9ec51f8a1740a999" 3558 + checksum = "b30af9e2d358182b5c7449424f017eba305ed32a7010509ede96cdc4696c46ed" 3273 3559 dependencies = [ 3274 3560 "quote", 3275 3561 "wasm-bindgen-macro-support", ··· 3277 3563 3278 3564 [[package]] 3279 3565 name = "wasm-bindgen-macro-support" 3280 - version = "0.2.90" 3566 + version = "0.2.91" 3281 3567 source = "registry+https://github.com/rust-lang/crates.io-index" 3282 - checksum = "bae1abb6806dc1ad9e560ed242107c0f6c84335f1749dd4e8ddb012ebd5e25a7" 3568 + checksum = "642f325be6301eb8107a83d12a8ac6c1e1c54345a7ef1a9261962dfefda09e66" 3283 3569 dependencies = [ 3284 3570 "proc-macro2", 3285 3571 "quote", ··· 3290 3576 3291 3577 [[package]] 3292 3578 name = "wasm-bindgen-shared" 3293 - version = "0.2.90" 3579 + version = "0.2.91" 3294 3580 source = "registry+https://github.com/rust-lang/crates.io-index" 3295 - checksum = "4d91413b1c31d7539ba5ef2451af3f0b833a005eb27a631cec32bc0635a8602b" 3581 + checksum = "4f186bd2dcf04330886ce82d6f33dd75a7bfcf69ecf5763b89fcde53b6ac9838" 3296 3582 3297 3583 [[package]] 3298 3584 name = "wayland-backend" ··· 3446 3732 3447 3733 [[package]] 3448 3734 name = "web-sys" 3449 - version = "0.3.67" 3735 + version = "0.3.68" 3450 3736 source = "registry+https://github.com/rust-lang/crates.io-index" 3451 - checksum = "58cd2333b6e0be7a39605f0e255892fd7418a682d8da8fe042fe25128794d2ed" 3737 + checksum = "96565907687f7aceb35bc5fc03770a8a0471d82e479f25832f54a0e3f4b28446" 3452 3738 dependencies = [ 3453 3739 "js-sys", 3454 3740 "wasm-bindgen", ··· 3770 4056 3771 4057 [[package]] 3772 4058 name = "winnow" 3773 - version = "0.5.36" 4059 + version = "0.5.39" 3774 4060 source = "registry+https://github.com/rust-lang/crates.io-index" 3775 - checksum = "818ce546a11a9986bc24f93d0cdf38a8a1a400f1473ea8c82e59f6e0ffab9249" 4061 + checksum = "5389a154b01683d28c77f8f68f49dea75f0a4da32557a58f68ee51ebba472d29" 3776 4062 dependencies = [ 3777 4063 "memchr", 3778 4064 ] ··· 3817 4103 3818 4104 [[package]] 3819 4105 name = "xdg-home" 3820 - version = "1.0.0" 4106 + version = "1.1.0" 3821 4107 source = "registry+https://github.com/rust-lang/crates.io-index" 3822 - checksum = "2769203cd13a0c6015d515be729c526d041e9cf2c0cc478d57faee85f40c6dcd" 4108 + checksum = "21e5a325c3cb8398ad6cf859c1135b25dd29e186679cf2da7581d9679f63b38e" 3823 4109 dependencies = [ 3824 - "nix", 4110 + "libc", 3825 4111 "winapi", 3826 4112 ] 3827 4113 ··· 3862 4148 checksum = "0fcb9cbac069e033553e8bb871be2fbdffcab578eb25bd0f7c508cedc6dcd75a" 3863 4149 3864 4150 [[package]] 4151 + name = "xshell" 4152 + version = "0.2.5" 4153 + source = "registry+https://github.com/rust-lang/crates.io-index" 4154 + checksum = "ce2107fe03e558353b4c71ad7626d58ed82efaf56c54134228608893c77023ad" 4155 + dependencies = [ 4156 + "xshell-macros", 4157 + ] 4158 + 4159 + [[package]] 4160 + name = "xshell-macros" 4161 + version = "0.2.5" 4162 + source = "registry+https://github.com/rust-lang/crates.io-index" 4163 + checksum = "7e2c411759b501fb9501aac2b1b2d287a6e93e5bdcf13c25306b23e1b716dd0e" 4164 + 4165 + [[package]] 4166 + name = "yansi-term" 4167 + version = "0.1.2" 4168 + source = "registry+https://github.com/rust-lang/crates.io-index" 4169 + checksum = "fe5c30ade05e61656247b2e334a031dfd0cc466fadef865bdcdea8d537951bf1" 4170 + dependencies = [ 4171 + "winapi", 4172 + ] 4173 + 4174 + [[package]] 3865 4175 name = "zbus" 3866 - version = "3.14.1" 4176 + version = "3.15.0" 3867 4177 source = "registry+https://github.com/rust-lang/crates.io-index" 3868 - checksum = "31de390a2d872e4cd04edd71b425e29853f786dc99317ed72d73d6fcf5ebb948" 4178 + checksum = "c45d06ae3b0f9ba1fb2671268b975557d8f5a84bb5ec6e43964f87e763d8bca8" 3869 4179 dependencies = [ 3870 4180 "async-broadcast", 3871 4181 "async-executor", ··· 3885 4195 "futures-sink", 3886 4196 "futures-util", 3887 4197 "hex", 3888 - "nix", 4198 + "nix 0.26.4", 3889 4199 "once_cell", 3890 4200 "ordered-stream", 3891 4201 "rand", ··· 3904 4214 3905 4215 [[package]] 3906 4216 name = "zbus_macros" 3907 - version = "3.14.1" 4217 + version = "3.15.0" 3908 4218 source = "registry+https://github.com/rust-lang/crates.io-index" 3909 - checksum = "41d1794a946878c0e807f55a397187c11fc7a038ba5d868e7db4f3bd7760bc9d" 4219 + checksum = "b4a1ba45ed0ad344b85a2bb5a1fe9830aed23d67812ea39a586e7d0136439c7d" 3910 4220 dependencies = [ 3911 4221 "proc-macro-crate 1.3.1", 3912 4222 "proc-macro2",
+19 -3
pkgs/by-name/ni/niri/package.nix
··· 20 20 21 21 rustPlatform.buildRustPackage rec { 22 22 pname = "niri"; 23 - version = "0.1.1"; 23 + version = "0.1.2"; 24 24 25 25 src = fetchFromGitHub { 26 26 owner = "YaLTeR"; 27 27 repo = "niri"; 28 28 rev = "v${version}"; 29 - hash = "sha256-+Y7dnq8gwVxefwvRnamqGneCTI4uUXgAo0SEffIvNB0="; 29 + hash = "sha256-vO6ak5rT6ntBC20vYC36zcEcHv7Cki9y8A+c7ThfsUg="; 30 30 }; 31 31 32 32 cargoLock = { 33 33 lockFile = ./Cargo.lock; 34 34 outputHashes = { 35 - "smithay-0.3.0" = "sha256-TWq4L7Pe4/s0+hGjvTixoOFQ3P6tJXzV4/VgKcJ0tWU="; 35 + "smithay-0.3.0" = "sha256-ZEWamojE5ZRlhPVv/DK2Mj+QIz7zudw9+AxFD7Onr9Q="; 36 36 }; 37 37 }; 38 38 ··· 63 63 ]; 64 64 65 65 LIBCLANG_PATH = "${libclang.lib}/lib"; 66 + 67 + passthru.providedSessions = ["niri"]; 68 + 69 + postInstall = '' 70 + mkdir -p $out/share/{systemd/user,wayland-sessions,xdg-desktop-portal} 71 + 72 + cp ./resources/niri-session $out/bin/niri-session 73 + cp ./resources/niri.service $out/share/systemd/user/niri.service 74 + cp ./resources/niri-shutdown.target $out/share/systemd/user/niri-shutdown.target 75 + cp ./resources/niri.desktop $out/share/wayland-sessions/niri.desktop 76 + cp ./resources/niri-portals.conf $out/share/xdg-desktop-portal/niri-portals.conf 77 + ''; 78 + 79 + postFixup = '' 80 + sed -i "s#/usr#$out#" $out/share/systemd/user/niri.service 81 + ''; 66 82 67 83 meta = with lib; { 68 84 description = "A scrollable-tiling Wayland compositor";
+3 -11
pkgs/by-name/sw/sway-unwrapped/package.nix
··· 2 2 , meson, ninja, pkg-config, wayland-scanner, scdoc 3 3 , libGL, wayland, libxkbcommon, pcre2, json_c, libevdev 4 4 , pango, cairo, libinput, gdk-pixbuf, librsvg 5 - , wlroots_0_16, wayland-protocols, libdrm 5 + , wlroots, wayland-protocols, libdrm 6 6 , nixosTests 7 7 # Used by the NixOS module: 8 8 , isNixOS ? false ··· 11 11 , trayEnabled ? systemdSupport 12 12 }: 13 13 14 - let 15 - wlroots = wlroots_0_16; 16 - in 17 14 stdenv.mkDerivation (finalAttrs: { 18 15 pname = "sway-unwrapped"; 19 - version = "1.8.1"; 16 + version = "1.9"; 20 17 21 18 inherit enableXWayland isNixOS systemdSupport trayEnabled; 22 19 src = fetchFromGitHub { 23 20 owner = "swaywm"; 24 21 repo = "sway"; 25 22 rev = finalAttrs.version; 26 - hash = "sha256-WxnT+le9vneQLFPz2KoBduOI+zfZPhn1fKlaqbPL6/g="; 23 + hash = "sha256-/6+iDkQfdLcL/pTJaqNc6QdP4SRVOYLjfOItEu/bZtg="; 27 24 }; 28 25 29 26 patches = [ ··· 34 31 inherit swaybg; 35 32 }) 36 33 37 - (fetchpatch { 38 - name = "LIBINPUT_CONFIG_ACCEL_PROFILE_CUSTOM.patch"; 39 - url = "https://github.com/swaywm/sway/commit/dee032d0a0ecd958c902b88302dc59703d703c7f.diff"; 40 - hash = "sha256-dx+7MpEiAkxTBnJcsT3/1BO8rYRfNLecXmpAvhqGMD0="; 41 - }) 42 34 ] ++ lib.optionals (!finalAttrs.isNixOS) [ 43 35 # References to /nix/store/... will get GC'ed which causes problems when 44 36 # copying the default configuration:
+3 -12
pkgs/by-name/sw/swayfx-unwrapped/package.nix
··· 4 4 sway-unwrapped, 5 5 stdenv, 6 6 systemd, 7 + wlroots_0_16, 7 8 # Used by the NixOS module: 8 9 isNixOS ? false, 9 10 enableXWayland ? true, ··· 18 19 systemdSupport 19 20 trayEnabled 20 21 ; 22 + 23 + wlroots = wlroots_0_16; 21 24 }).overrideAttrs (oldAttrs: rec { 22 25 pname = "swayfx-unwrapped"; 23 26 version = "0.3.2"; ··· 28 31 rev = version; 29 32 sha256 = "sha256-Gwewb0yDVhEBrefSSGDf1hLtpWcntzifPCPJQhqLqI0="; 30 33 }; 31 - 32 - # This patch was backported into SwayFX 33 - # remove when next release is rebased on Sway 1.9 34 - patches = 35 - let 36 - removePatches = [ 37 - "LIBINPUT_CONFIG_ACCEL_PROFILE_CUSTOM.patch" 38 - ]; 39 - in 40 - builtins.filter 41 - (patch: !builtins.elem (patch.name or null) removePatches) 42 - (oldAttrs.patches or [ ]); 43 34 44 35 meta = with lib; { 45 36 description = "Sway, but with eye candy!";
+2 -2
pkgs/development/python-modules/adafruit-platformdetect/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "adafruit-platformdetect"; 10 - version = "3.60.0"; 10 + version = "3.61.0"; 11 11 pyproject = true; 12 12 13 13 disabled = pythonOlder "3.7"; ··· 15 15 src = fetchPypi { 16 16 pname = "Adafruit-PlatformDetect"; 17 17 inherit version; 18 - hash = "sha256-ZE3rETwAuhv7pHA/zYDKtStWONShFG8tWDeN9K8JdG8="; 18 + hash = "sha256-hA10t/ZtMH2MjyHJJdJeOZLOF5NNTCOgGqxU6CCkZlQ="; 19 19 }; 20 20 21 21 nativeBuildInputs = [
+3 -4
pkgs/development/python-modules/aioboto3/default.nix
··· 18 18 19 19 buildPythonPackage rec { 20 20 pname = "aioboto3"; 21 - version = "12.1.0"; 21 + version = "12.3.0"; 22 22 pyproject = true; 23 23 24 24 disabled = pythonOlder "3.8"; ··· 27 27 owner = "terrycain"; 28 28 repo = "aioboto3"; 29 29 rev = "refs/tags/v${version}"; 30 - hash = "sha256-CVRDQhymQRi5dyVBLJYTnF3RI4jPBB966dVMT4lOd8g="; 30 + hash = "sha256-GDuxy/V+j0LRJ2lbcRHMEAga+pdCbYIWhEt3ItrHMB4="; 31 31 }; 32 32 33 33 nativeBuildInputs = [ ··· 37 37 38 38 propagatedBuildInputs = [ 39 39 aiobotocore 40 - boto3 41 - ]; 40 + ] ++ aiobotocore.optional-dependencies.boto3; 42 41 43 42 passthru.optional-dependencies = { 44 43 chalice = [
+20 -4
pkgs/development/python-modules/aiobotocore/default.nix
··· 7 7 , fetchFromGitHub 8 8 , flask 9 9 , flask-cors 10 + , awscli 10 11 , moto 12 + , boto3 13 + , setuptools 11 14 , pytest-asyncio 12 15 , pytestCheckHook 13 16 , pythonOlder ··· 16 19 17 20 buildPythonPackage rec { 18 21 pname = "aiobotocore"; 19 - version = "2.9.1"; 20 - format = "setuptools"; 22 + version = "2.11.2"; 23 + pyproject = true; 21 24 22 25 disabled = pythonOlder "3.8"; 23 26 24 27 src = fetchFromGitHub { 25 28 owner = "aio-libs"; 26 - repo = pname; 29 + repo = "aiobotocore"; 27 30 rev = "refs/tags/${version}"; 28 - hash = "sha256-cODdmP/O24fNIugzl4AYdf3g4Gzwx3JseYKbZKgEPbc="; 31 + hash = "sha256-H9nsLPxjv3H5y6+5piBt6Pb+Wks4vwOitM+WQtyViPs="; 29 32 }; 30 33 31 34 # Relax version constraints: aiobotocore works with newer botocore versions ··· 34 37 sed -i "s/'botocore>=.*'/'botocore'/" setup.py 35 38 ''; 36 39 40 + nativeBuildInputs = [ 41 + setuptools 42 + ]; 43 + 37 44 propagatedBuildInputs = [ 38 45 aiohttp 39 46 aioitertools 40 47 botocore 41 48 wrapt 42 49 ]; 50 + 51 + passthru.optional-dependencies = { 52 + awscli = [ 53 + awscli 54 + ]; 55 + boto3 = [ 56 + boto3 57 + ]; 58 + }; 43 59 44 60 nativeCheckInputs = [ 45 61 dill
+2 -2
pkgs/development/python-modules/aiocsv/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "aiocsv"; 14 - version = "1.3.0"; 14 + version = "1.3.1"; 15 15 pyproject = true; 16 16 17 17 disabled = pythonOlder "3.7"; ··· 20 20 owner = "MKuranowski"; 21 21 repo = "aiocsv"; 22 22 rev = "refs/tags/v${version}"; 23 - hash = "sha256-5jMmT7XY+1VNbDNciZS6B/oQJFj4XmGvhDITKWHCuOQ="; 23 + hash = "sha256-zHU9NfxiRUOAk0kwsKmvxd01UtNXZTnb700Wlm9DUz4="; 24 24 }; 25 25 26 26 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/aioshelly/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "aioshelly"; 15 - version = "8.0.2"; 15 + version = "8.1.1"; 16 16 pyproject = true; 17 17 18 18 disabled = pythonOlder "3.10"; ··· 21 21 owner = "home-assistant-libs"; 22 22 repo = pname; 23 23 rev = "refs/tags/${version}"; 24 - hash = "sha256-wDEHHc+TFlrp2X2/03NNxZut1bn1Sn7y4Sk5nGYBvEs="; 24 + hash = "sha256-i2dlcparDQlwM7Wk/HwlBz0mmI38ZRwxVM6jLY0rI+0="; 25 25 }; 26 26 27 27 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/aiounifi/default.nix
··· 15 15 16 16 buildPythonPackage rec { 17 17 pname = "aiounifi"; 18 - version = "71"; 18 + version = "72"; 19 19 pyproject = true; 20 20 21 21 disabled = pythonOlder "3.11"; ··· 24 24 owner = "Kane610"; 25 25 repo = "aiounifi"; 26 26 rev = "refs/tags/v${version}"; 27 - hash = "sha256-KmxwCjmvDByCtsSQ+fQtdLS4ZDxtUaqc5zoOF9dsSq8="; 27 + hash = "sha256-PrFI5ncHW4r2Re1BIqRZlz8ns6d5p6y6PASCleSmyNc="; 28 28 }; 29 29 30 30 postPatch = ''
+20 -12
pkgs/development/python-modules/aws-encryption-sdk/default.nix
··· 1 1 { lib 2 - , buildPythonPackage 3 - , fetchPypi 4 2 , attrs 5 3 , boto3 4 + , buildPythonPackage 6 5 , cryptography 7 - , setuptools 8 - , wrapt 6 + , fetchPypi 9 7 , mock 10 - , pytest 11 8 , pytest-mock 12 9 , pytestCheckHook 10 + , pythonAtLeast 11 + , pythonOlder 12 + , setuptools 13 + , wrapt 13 14 }: 14 15 15 16 buildPythonPackage rec { 16 17 pname = "aws-encryption-sdk"; 17 18 version = "3.1.1"; 18 - format = "setuptools"; 19 + pyproject = true; 20 + 21 + disabled = pythonOlder "3.7"; 19 22 20 23 src = fetchPypi { 21 24 inherit pname version; 22 25 hash = "sha256-jV+/AY/GjWscrL5N0Df9gFKWx3Nqn+RX62hNBT9/lWM="; 23 26 }; 24 27 28 + nativeBuildInputs = [ 29 + setuptools 30 + ]; 31 + 25 32 propagatedBuildInputs = [ 26 33 attrs 27 34 boto3 28 35 cryptography 29 - setuptools 30 36 wrapt 31 37 ]; 32 38 33 - doCheck = true; 34 - 35 39 nativeCheckInputs = [ 36 40 mock 37 - pytest 38 41 pytest-mock 39 42 pytestCheckHook 40 43 ]; 41 44 42 45 disabledTestPaths = [ 43 - # requires networking 46 + # Tests require networking 44 47 "examples" 45 48 "test/integration" 46 49 ]; 47 50 51 + disabledTests = lib.optionals (pythonAtLeast "3.12") [ 52 + # AssertionError: Regex pattern did not match, https://github.com/aws/aws-encryption-sdk-python/issues/644 53 + "test_abstracts" 54 + ]; 55 + 48 56 meta = with lib; { 57 + description = "Python implementation of the AWS Encryption SDK"; 49 58 homepage = "https://aws-encryption-sdk-python.readthedocs.io/"; 50 59 changelog = "https://github.com/aws/aws-encryption-sdk-python/blob/v${version}/CHANGELOG.rst"; 51 - description = "Fully compliant, native Python implementation of the AWS Encryption SDK."; 52 60 license = licenses.asl20; 53 61 maintainers = with maintainers; [ anthonyroussel ]; 54 62 };
+34 -17
pkgs/development/python-modules/aws-secretsmanager-caching/default.nix
··· 1 1 { lib 2 + , botocore 2 3 , buildPythonPackage 4 + , fetchPypi 5 + , pytestCheckHook 6 + , pythonAtLeast 3 7 , pythonOlder 4 - , fetchPypi 5 8 , setuptools 6 9 , setuptools-scm 7 - , botocore 8 - , pytestCheckHook 9 10 }: 10 11 11 12 buildPythonPackage rec { 12 - pname = "aws_secretsmanager_caching"; 13 + pname = "aws-secretsmanager-caching"; 13 14 version = "1.1.1.5"; 14 - format = "setuptools"; 15 + pyprject = true; 15 16 16 17 disabled = pythonOlder "3.7"; 17 18 18 19 src = fetchPypi { 19 - inherit pname version; 20 - sha256 = "5cee2762bb89b72f3e5123feee8e45fbe44ffe163bfca08b28f27b2e2b7772e1"; 20 + pname = "aws_secretsmanager_caching"; 21 + inherit version; 22 + hash = "sha256-XO4nYruJty8+USP+7o5F++RP/hY7/KCLKPJ7Lit3cuE="; 21 23 }; 24 + 25 + patches = [ 26 + # Remove coverage tests from the pytest invocation in setup.cfg. 27 + ./remove-coverage-tests.patch 28 + ]; 29 + 30 + postPatch = '' 31 + substituteInPlace setup.py \ 32 + --replace-fail "'pytest-runner'," "" 33 + ''; 22 34 23 35 nativeBuildInputs = [ 24 36 setuptools-scm ··· 29 41 setuptools # Needs pkg_resources at runtime. 30 42 ]; 31 43 32 - patches = [ 33 - # Remove coverage tests from the pytest invocation in setup.cfg. 34 - ./remove-coverage-tests.patch 35 - ]; 36 - 37 - postPatch = '' 38 - substituteInPlace setup.py \ 39 - --replace "'pytest-runner'," "" 40 - ''; 41 - 42 44 nativeCheckInputs = [ 43 45 pytestCheckHook 44 46 ]; ··· 46 48 disabledTestPaths = [ 47 49 # Integration tests require networking. 48 50 "test/integ" 51 + ]; 52 + 53 + disabledTests = lib.optionals (pythonAtLeast "3.12") [ 54 + # TypeError: 'float' object cannot be interpreted as an integer 55 + "test_calls_hook_binary" 56 + "test_calls_hook_string" 57 + "test_get_secret_binary" 58 + "test_get_secret_string" 59 + "test_invalid_json" 60 + "test_missing_key" 61 + "test_string_with_additional_kwargs" 62 + "test_string" 63 + "test_valid_json_with_mixed_args" 64 + "test_valid_json_with_no_secret_kwarg" 65 + "test_valid_json" 49 66 ]; 50 67 51 68 pythonImportsCheck = [
+10 -6
pkgs/development/python-modules/azure-core/default.nix
··· 12 12 , pytest-trio 13 13 , pytestCheckHook 14 14 , requests 15 + , setuptools 15 16 , six 16 17 , trio 17 18 , typing-extensions 18 19 }: 19 20 20 21 buildPythonPackage rec { 21 - version = "1.28.0"; 22 + version = "1.30.0"; 22 23 pname = "azure-core"; 23 - format = "setuptools"; 24 + pyproject = true; 24 25 25 26 disabled = pythonOlder "3.7"; 26 27 ··· 28 29 29 30 src = fetchPypi { 30 31 inherit pname version; 31 - extension = "zip"; 32 - hash = "sha256-6e78Zvwf3lbatvBNTl0SxgdU1an6Sb3P2FNPyW7ZNr0="; 32 + hash = "sha256-bzp4g+8YRyL2vZlyYu3a+Az+fls+DKqvjbFpVpWJPTU="; 33 33 }; 34 + 35 + nativeBuildInputs = [ 36 + setuptools 37 + ]; 34 38 35 39 propagatedBuildInputs = [ 36 40 requests ··· 99 103 100 104 meta = with lib; { 101 105 description = "Microsoft Azure Core Library for Python"; 102 - homepage = "https://github.com/Azure/azure-sdk-for-python"; 103 - changelog = "https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/core/azure-core/CHANGELOG.md"; 106 + homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/core/azure-core"; 107 + changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-core_${version}/sdk/core/azure-core/CHANGELOG.md"; 104 108 license = licenses.mit; 105 109 maintainers = with maintainers; [ jonringer ]; 106 110 };
+16 -13
pkgs/development/python-modules/azure-keyvault-administration/default.nix
··· 1 1 { lib 2 + , azure-core 2 3 , buildPythonPackage 3 4 , fetchPypi 5 + , isodate 4 6 , pythonOlder 5 - , azure-common 6 - , azure-core 7 - , msrest 8 - , six 7 + , setuptools 8 + , typing-extensions 9 9 }: 10 10 11 11 buildPythonPackage rec { 12 12 pname = "azure-keyvault-administration"; 13 - version = "4.3.0"; 14 - format = "setuptools"; 13 + version = "4.4.0"; 14 + pyproject = true; 15 15 16 - disabled = pythonOlder "3.6"; 16 + disabled = pythonOlder "3.8"; 17 17 18 18 src = fetchPypi { 19 19 inherit pname version; 20 - extension = "zip"; 21 - hash = "sha256-PuKjui0OP0ODNErjbjJ90hOgee97JDrVT2sh+MufxWY="; 20 + hash = "sha256-ems2y59UTzV1D/L6lMg7l7PvIMH+G0JOpoAY7ucD8d8="; 22 21 }; 23 22 23 + nativeBuildInputs = [ 24 + setuptools 25 + ]; 26 + 24 27 propagatedBuildInputs = [ 25 - azure-common 26 28 azure-core 27 - msrest 28 - six 29 + typing-extensions 30 + isodate 29 31 ]; 30 32 31 - # no tests in pypi tarball 33 + # Tests require checkout from mono-repo 32 34 doCheck = false; 33 35 34 36 pythonNamespaces = [ ··· 42 44 meta = with lib; { 43 45 description = "Microsoft Azure Key Vault Administration Client Library for Python"; 44 46 homepage = "https://github.com/Azure/azure-sdk-for-python/tree/master/sdk/keyvault/azure-keyvault-administration"; 47 + changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-keyvault-administration_${version}/sdk/keyvault/azure-keyvault-administration/CHANGELOG.md"; 45 48 license = licenses.mit; 46 49 maintainers = with maintainers; [ jonringer ]; 47 50 };
+16 -11
pkgs/development/python-modules/azure-keyvault-certificates/default.nix
··· 3 3 , fetchPypi 4 4 , azure-common 5 5 , azure-core 6 - , msrest 7 - , msrestazure 6 + , isodate 8 7 , pythonOlder 8 + , setuptools 9 + , typing-extensions 9 10 }: 10 11 11 12 buildPythonPackage rec { 12 13 pname = "azure-keyvault-certificates"; 13 - version = "4.7.0"; 14 - format = "setuptools"; 14 + version = "4.8.0"; 15 + pyproject = true; 15 16 16 - disabled = pythonOlder "3.6"; 17 + disabled = pythonOlder "3.8"; 17 18 18 19 src = fetchPypi { 19 20 inherit pname version; 20 - extension = "zip"; 21 - hash = "sha256-nkfZp0gl5QKxPVSByZwYIEDE9Ucj9DNx4AhZQ23888o="; 21 + hash = "sha256-xWEnPkQCwlEUhzSGyYv6GyxHiGIp1BAOh9rxAO4Edyg="; 22 22 }; 23 23 24 + nativeBuildInputs = [ 25 + setuptools 26 + ]; 27 + 24 28 propagatedBuildInputs = [ 25 29 azure-common 26 30 azure-core 27 - msrest 28 - msrestazure 31 + isodate 32 + typing-extensions 29 33 ]; 30 34 31 35 pythonNamespaces = [ 32 36 "azure.keyvault" 33 37 ]; 34 38 35 - # has no tests 39 + # Module has no tests 36 40 doCheck = false; 37 41 38 42 pythonImportsCheck = [ ··· 41 45 42 46 meta = with lib; { 43 47 description = "Microsoft Azure Key Vault Certificates Client Library for Python"; 44 - homepage = "https://github.com/Azure/azure-sdk-for-python"; 48 + homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/keyvault/azure-keyvault-certificates"; 49 + changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-keyvault-certificates_${version}/sdk/keyvault/azure-keyvault-certificates/CHANGELOG.md"; 45 50 license = licenses.mit; 46 51 maintainers = with maintainers; [ jonringer ]; 47 52 };
+17 -12
pkgs/development/python-modules/azure-keyvault-secrets/default.nix
··· 1 1 { lib 2 + , azure-core 2 3 , buildPythonPackage 3 4 , fetchPypi 5 + , isodate 4 6 , pythonOlder 5 - , azure-common 6 - , azure-core 7 - , msrest 7 + , setuptools 8 + , typing-extensions 8 9 }: 9 10 10 11 buildPythonPackage rec { 11 12 pname = "azure-keyvault-secrets"; 12 - version = "4.7.0"; 13 - format = "setuptools"; 13 + version = "4.8.0"; 14 + pyproject = true; 14 15 15 - disabled = pythonOlder "3.6"; 16 + disabled = pythonOlder "3.8"; 16 17 17 18 src = fetchPypi { 18 19 inherit pname version; 19 - extension = "zip"; 20 - hash = "sha256-d+4lNLplGh8wbIXXtQW8PM7o/qd0UOuvr8Jq7BblRF0="; 20 + hash = "sha256-VjbAodiiDjxXmcs8z/1Ovz8NGst8rpUmhhgzr4sP6BQ="; 21 21 }; 22 22 23 + nativeBuildInputs = [ 24 + setuptools 25 + ]; 26 + 23 27 propagatedBuildInputs = [ 24 - azure-common 25 28 azure-core 26 - msrest 29 + isodate 30 + typing-extensions 27 31 ]; 28 32 29 33 pythonNamespaces = [ 30 34 "azure.keyvault" 31 35 ]; 32 36 33 - # requires checkout from mono-repo 37 + # Tests require checkout from mono-repo 34 38 doCheck = false; 35 39 36 40 meta = with lib; { 37 41 description = "Microsoft Azure Key Vault Secrets Client Library for Python"; 38 - homepage = "https://github.com/Azure/azure-sdk-for-python"; 42 + homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/keyvault/azure-keyvault-secrets"; 43 + changelog = "https://github.com/Azure/azure-sdk-for-python/tree/azure-keyvault-secrets_${version}/sdk/keyvault/azure-keyvault-secrets"; 39 44 license = licenses.mit; 40 45 maintainers = with maintainers; [ jonringer ]; 41 46 };
+2 -2
pkgs/development/python-modules/boto3-stubs/default.nix
··· 365 365 366 366 buildPythonPackage rec { 367 367 pname = "boto3-stubs"; 368 - version = "1.34.50"; 368 + version = "1.34.52"; 369 369 pyproject = true; 370 370 371 371 disabled = pythonOlder "3.7"; 372 372 373 373 src = fetchPypi { 374 374 inherit pname version; 375 - hash = "sha256-7WKO7Bq5oyTBN60pJAi474gvFyShWk6ESqfusljIyzM="; 375 + hash = "sha256-gjxBBZ+DbWh32qocvSD4E8jxp4uf3ykLwLhTEn4Se6M="; 376 376 }; 377 377 378 378 nativeBuildInputs = [
+12 -10
pkgs/development/python-modules/boto3/default.nix
··· 1 1 { lib 2 + , botocore 2 3 , buildPythonPackage 3 - , pythonOlder 4 4 , fetchFromGitHub 5 - , botocore 6 5 , jmespath 6 + , pytestCheckHook 7 + , pythonOlder 8 + , pythonRelaxDepsHook 7 9 , s3transfer 8 - , pythonRelaxDepsHook 9 10 , setuptools 10 - , pytestCheckHook 11 11 }: 12 12 13 13 buildPythonPackage rec { 14 14 pname = "boto3"; 15 - version = "1.34.21"; # N.B: if you change this, change botocore and awscli to a matching version 16 - format = "pyproject"; 15 + version = "1.34.49"; # N.B: if you change this, change botocore and awscli to a matching version 16 + pyproject = true; 17 17 18 18 disabled = pythonOlder "3.8"; 19 19 20 20 src = fetchFromGitHub { 21 21 owner = "boto"; 22 - repo = pname; 22 + repo = "boto3"; 23 23 rev = "refs/tags/${version}"; 24 - hash = "sha256-oOrUVBh1sbaOibU8A+bGZ4z7IEiE4gjHwZ+8889Hv60="; 24 + hash = "sha256-/pgbLSL5RJ5RrKUAfQ1QNJykBdICrpqnuziHOVHt1JI="; 25 25 }; 26 26 27 27 nativeBuildInputs = [ ··· 54 54 ]; 55 55 56 56 passthru.optional-dependencies = { 57 - crt = [ botocore.optional-dependencies.crt ]; 57 + crt = [ 58 + botocore.optional-dependencies.crt 59 + ]; 58 60 }; 59 61 60 62 meta = with lib; { 63 + description = "AWS SDK for Python"; 61 64 homepage = "https://github.com/boto/boto3"; 62 65 changelog = "https://github.com/boto/boto3/blob/${version}/CHANGELOG.rst"; 63 66 license = licenses.asl20; 64 - description = "AWS SDK for Python"; 65 67 longDescription = '' 66 68 Boto3 is the Amazon Web Services (AWS) Software Development Kit (SDK) for 67 69 Python, which allows Python developers to write software that makes use of
+2 -2
pkgs/development/python-modules/botocore-stubs/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "botocore-stubs"; 12 - version = "1.34.50"; 12 + version = "1.34.52"; 13 13 format = "pyproject"; 14 14 15 15 disabled = pythonOlder "3.7"; ··· 17 17 src = fetchPypi { 18 18 pname = "botocore_stubs"; 19 19 inherit version; 20 - hash = "sha256-jWzjI/M4gnTLbYyBCyvEe/GJHioZlVdv/YKzrf+L5NU="; 20 + hash = "sha256-pRtsofyprNqp6AQS83FTaQ//rX7SJ3Q8xTCAmSDSoAk="; 21 21 }; 22 22 23 23 nativeBuildInputs = [
+25 -12
pkgs/development/python-modules/botocore/default.nix
··· 1 1 { lib 2 + , awscrt 2 3 , buildPythonPackage 3 - , pythonOlder 4 4 , fetchPypi 5 - , python-dateutil 6 5 , jmespath 7 - , urllib3 6 + , jsonschema 8 7 , pytestCheckHook 9 - , jsonschema 10 - , awscrt 8 + , python-dateutil 9 + , pythonOlder 10 + , pythonRelaxDepsHook 11 + , setuptools 12 + , urllib3 11 13 }: 12 14 13 15 buildPythonPackage rec { 14 16 pname = "botocore"; 15 - version = "1.34.21"; # N.B: if you change this, change boto3 and awscli to a matching version 16 - format = "setuptools"; 17 + version = "1.34.49"; # N.B: if you change this, change boto3 and awscli to a matching version 18 + pyproject = true; 17 19 18 20 disabled = pythonOlder "3.8"; 19 21 20 22 src = fetchPypi { 21 23 inherit pname version; 22 - hash = "sha256-IZg7sEc6GRMBksUOxpdNVfDEqkinCUvPQPeILItpuPE="; 24 + hash = "sha256-2JQQvGBnPq/xaZ8/H9yw46Xh96agSMDYjDzlw1SUM+w="; 23 25 }; 24 26 27 + pythonRelaxDeps = [ 28 + "urllib3" 29 + ]; 30 + 31 + nativeBuildInputs = [ 32 + pythonRelaxDepsHook 33 + setuptools 34 + ]; 35 + 25 36 propagatedBuildInputs = [ 26 - python-dateutil 27 37 jmespath 38 + python-dateutil 28 39 urllib3 29 40 ]; 30 41 31 42 nativeCheckInputs = [ 32 - pytestCheckHook 33 43 jsonschema 44 + pytestCheckHook 34 45 ]; 35 46 36 47 disabledTestPaths = [ ··· 46 57 ]; 47 58 48 59 passthru.optional-dependencies = { 49 - crt = [ awscrt ]; 60 + crt = [ 61 + awscrt 62 + ]; 50 63 }; 51 64 52 65 meta = with lib; { 66 + description = "A low-level interface to a growing number of Amazon Web Services"; 53 67 homepage = "https://github.com/boto/botocore"; 54 68 changelog = "https://github.com/boto/botocore/blob/${version}/CHANGELOG.rst"; 55 69 license = licenses.asl20; 56 - description = "A low-level interface to a growing number of Amazon Web Services"; 57 70 maintainers = with maintainers; [ anthonyroussel ]; 58 71 }; 59 72 }
+47
pkgs/development/python-modules/chroma-hnswlib/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , numpy 5 + , pybind11 6 + , setuptools 7 + , wheel 8 + , pythonOlder 9 + , pytestCheckHook 10 + }: 11 + 12 + buildPythonPackage rec { 13 + pname = "chroma-hnswlib"; 14 + version = "0.7.3"; 15 + pyproject = true; 16 + 17 + disabled = pythonOlder "3.8"; 18 + 19 + src = fetchFromGitHub { 20 + owner = "chroma-core"; 21 + repo = "hnswlib"; 22 + rev = "refs/tags/${version}"; 23 + hash = "sha256-c4FvymqZy8AZKbh6Y8xZRjKAqYcUyZABRGc1u7vwlsk="; 24 + }; 25 + 26 + nativeBuildInputs = [ 27 + numpy 28 + pybind11 29 + setuptools 30 + wheel 31 + ]; 32 + 33 + nativeCheckInputs = [ 34 + pytestCheckHook 35 + ]; 36 + 37 + pythonImportsCheck = [ 38 + "hnswlib" 39 + ]; 40 + 41 + meta = with lib; { 42 + description = "Header-only C++/python library for fast approximate nearest neighbors"; 43 + homepage = "https://github.com/chroma-core/hnswlib"; 44 + license = licenses.asl20; 45 + maintainers = with maintainers; [ fab ]; 46 + }; 47 + }
+160
pkgs/development/python-modules/chromadb/default.nix
··· 1 + { lib 2 + , stdenv 3 + , bcrypt 4 + , build 5 + , buildPythonPackage 6 + , cargo 7 + , chroma-hnswlib 8 + , darwin 9 + , fastapi 10 + , fetchFromGitHub 11 + , grpcio 12 + , hypothesis 13 + , importlib-resources 14 + , kubernetes 15 + , mmh3 16 + , numpy 17 + , onnxruntime 18 + , openssl 19 + , opentelemetry-api 20 + , opentelemetry-exporter-otlp-proto-grpc 21 + , opentelemetry-instrumentation-fastapi 22 + , opentelemetry-sdk 23 + , orjson 24 + , overrides 25 + , pkg-config 26 + , posthog 27 + , protobuf 28 + , pulsar-client 29 + , pydantic 30 + , pypika 31 + , pytest-asyncio 32 + , pytestCheckHook 33 + , pythonOlder 34 + , pythonRelaxDepsHook 35 + , pyyaml 36 + , requests 37 + , rustc 38 + , rustPlatform 39 + , setuptools 40 + , setuptools-scm 41 + , tenacity 42 + , tokenizers 43 + , tqdm 44 + , typer 45 + , typing-extensions 46 + , uvicorn 47 + , zstd 48 + }: 49 + 50 + buildPythonPackage rec { 51 + pname = "chromadb"; 52 + version = "0.4.23"; 53 + pyproject = true; 54 + 55 + disabled = pythonOlder "3.9"; 56 + 57 + src = fetchFromGitHub { 58 + owner = "chroma-core"; 59 + repo = "chroma"; 60 + rev = "refs/tags/${version}"; 61 + hash = "sha256-5gI+FE2jx4G/qahATLcYsONfPZZkk1RFFYK5nrpE0Ug="; 62 + }; 63 + 64 + cargoDeps = rustPlatform.fetchCargoTarball { 65 + inherit src; 66 + name = "${pname}-${version}"; 67 + hash = "sha256-glItbT8gg5SAySnfx3A9TaPyFmd1R46JpAB1JnjBE5M="; 68 + }; 69 + 70 + pythonRelaxDeps = [ 71 + "orjson" 72 + ]; 73 + 74 + nativeBuildInputs = [ 75 + cargo 76 + pkg-config 77 + protobuf 78 + pythonRelaxDepsHook 79 + rustc 80 + rustPlatform.cargoSetupHook 81 + setuptools 82 + setuptools-scm 83 + ]; 84 + 85 + buildInputs = [ 86 + openssl 87 + zstd 88 + ] ++ lib.optionals stdenv.isDarwin [ 89 + darwin.apple_sdk.frameworks.Security 90 + ]; 91 + 92 + propagatedBuildInputs = [ 93 + bcrypt 94 + build 95 + chroma-hnswlib 96 + fastapi 97 + grpcio 98 + importlib-resources 99 + kubernetes 100 + mmh3 101 + numpy 102 + onnxruntime 103 + opentelemetry-api 104 + opentelemetry-exporter-otlp-proto-grpc 105 + opentelemetry-instrumentation-fastapi 106 + opentelemetry-sdk 107 + orjson 108 + overrides 109 + posthog 110 + pulsar-client 111 + pydantic 112 + pypika 113 + pyyaml 114 + requests 115 + tenacity 116 + tokenizers 117 + tqdm 118 + typer 119 + typing-extensions 120 + uvicorn 121 + ]; 122 + 123 + nativeCheckInputs = [ 124 + hypothesis 125 + pytest-asyncio 126 + pytestCheckHook 127 + ]; 128 + 129 + pythonImportsCheck = [ 130 + "chromadb" 131 + ]; 132 + 133 + env = { 134 + ZSTD_SYS_USE_PKG_CONFIG = true; 135 + }; 136 + 137 + pytestFlagsArray = [ "-x" ]; 138 + 139 + preCheck = '' 140 + export HOME=$(mktemp -d) 141 + ''; 142 + 143 + disabledTestPaths = [ 144 + # Tests require network access 145 + "chromadb/test/property/test_cross_version_persist.py" 146 + "chromadb/test/auth/test_simple_rbac_authz.py" 147 + "chromadb/test/ef/test_default_ef.py" 148 + "chromadb/test/test_api.py" 149 + "chromadb/test/property/" 150 + "chromadb/test/stress/" 151 + ]; 152 + 153 + meta = with lib; { 154 + description = "The AI-native open-source embedding database"; 155 + homepage = "https://github.com/chroma-core/chroma"; 156 + changelog = "https://github.com/chroma-core/chroma/releases/tag/${version}"; 157 + license = licenses.asl20; 158 + maintainers = with maintainers; [ fab ]; 159 + }; 160 + }
+47 -14
pkgs/development/python-modules/clarifai/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 - , fetchFromGitHub 4 - , pythonOlder 5 - , setuptools 6 3 , clarifai-grpc 4 + , fetchFromGitHub 5 + , inquirerpy 6 + , llama-index-core 7 7 , numpy 8 8 , opencv4 9 + , pandas 9 10 , pillow 11 + , pycocotools 12 + , pypdf 13 + , pytestCheckHook 14 + , pythonOlder 15 + , pythonRelaxDepsHook 10 16 , pyyaml 11 17 , rich 12 18 , schema 19 + , setuptools 13 20 , tqdm 14 21 , tritonclient 15 - , pytestCheckHook 16 22 }: 17 23 18 24 buildPythonPackage rec { 19 25 pname = "clarifai"; 20 - version = "9.11.1"; 26 + version = "10.1.0"; 21 27 pyproject = true; 22 28 23 29 disabled = pythonOlder "3.8"; ··· 26 32 owner = "Clarifai"; 27 33 repo = "clarifai-python"; 28 34 rev = "refs/tags/${version}"; 29 - hash = "sha256-fVari/SnrUnEbrYefV9j2yA/EMJoGiLOV7q/DrS0AQ8="; 35 + hash = "sha256-/2PIsSsYr/R7DuTX/ndBAOX7C3IaFqPw16ZAX8E1Vk8="; 30 36 }; 31 37 38 + pythonRelaxDeps = [ 39 + "clarifai-grpc" 40 + ]; 41 + 42 + pythonRemoveDeps = [ 43 + "opencv-python" 44 + ]; 45 + 32 46 nativeBuildInputs = [ 47 + pythonRelaxDepsHook 33 48 setuptools 34 49 ]; 35 50 36 51 propagatedBuildInputs = [ 37 52 clarifai-grpc 53 + inquirerpy 54 + llama-index-core 38 55 numpy 39 - tqdm 40 56 opencv4 41 - tritonclient 42 - rich 43 - schema 57 + pandas 44 58 pillow 59 + pypdf 45 60 pyyaml 61 + rich 62 + schema 63 + tqdm 64 + tritonclient 46 65 ]; 47 66 67 + passthru.optional-dependencies = { 68 + all = [ 69 + pycocotools 70 + ]; 71 + }; 72 + 48 73 nativeCheckInputs = [ 49 74 pytestCheckHook 50 75 ]; 51 76 77 + preCheck = '' 78 + export HOME=$(mktemp -d) 79 + ''; 80 + 52 81 disabledTests = [ 53 - # require network access and API key 82 + # Test requires network access and API key 54 83 "test_export_workflow_general" 55 84 ]; 56 85 57 86 disabledTestPaths = [ 58 - # require network access and API key 87 + # Tests require network access and API key 59 88 "tests/test_app.py" 60 89 "tests/test_data_upload.py" 61 90 "tests/test_model_predict.py" ··· 63 92 "tests/test_search.py" 64 93 "tests/workflow/test_create_delete.py" 65 94 "tests/workflow/test_predict.py" 95 + "tests/test_rag.py" 96 + "clarifai/models/model_serving/repo_build/static_files/base_test.py" 66 97 ]; 67 98 68 - pythonImportsCheck = [ "clarifai" ]; 99 + pythonImportsCheck = [ 100 + "clarifai" 101 + ]; 69 102 70 103 meta = with lib; { 71 104 description = "Clarifai Python Utilities"; 72 105 homepage = "https://github.com/Clarifai/clarifai-python"; 73 - changelog = "https://github.com/Clarifai/clarifai-python/releases/tag/${src.rev}"; 106 + changelog = "https://github.com/Clarifai/clarifai-python/releases/tag/${version}"; 74 107 license = licenses.asl20; 75 108 maintainers = with maintainers; [ natsukium ]; 76 109 };
+2 -2
pkgs/development/python-modules/dbt-core/default.nix
··· 33 33 34 34 buildPythonPackage rec { 35 35 pname = "dbt-core"; 36 - version = "1.7.8"; 36 + version = "1.7.9"; 37 37 pyproject = true; 38 38 39 39 disabled = pythonOlder "3.8"; ··· 42 42 owner = "dbt-labs"; 43 43 repo = "dbt-core"; 44 44 rev = "refs/tags/v${version}"; 45 - hash = "sha256-EpKZiSDU5fivG3TIarirPgxRGQ3Sf1hwNvCKdQx25c0="; 45 + hash = "sha256-ff+cdY6xy14w30BDn1ct/2Q+4j8cQupJrJHb4vO58J0="; 46 46 }; 47 47 48 48 sourceRoot = "${src.name}/core";
+39
pkgs/development/python-modules/dirtyjson/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , pytestCheckHook 5 + , pythonOlder 6 + , setuptools 7 + }: 8 + 9 + buildPythonPackage rec { 10 + pname = "dirtyjson"; 11 + version = "1.0.8"; 12 + pyproject = true; 13 + 14 + disabled = pythonOlder "3.8"; 15 + 16 + src = fetchPypi { 17 + inherit pname version; 18 + hash = "sha256-kMpKGPP/MM6EnRANz0oAOVPHnTojSO8Fbx2cIiMaJf0="; 19 + }; 20 + 21 + nativeBuildInputs = [ 22 + setuptools 23 + ]; 24 + 25 + nativeCheckInputs = [ 26 + pytestCheckHook 27 + ]; 28 + 29 + pythonImportsCheck = [ 30 + "dirtyjson" 31 + ]; 32 + 33 + meta = with lib; { 34 + description = "JSON decoder for Python that can extract data from the muck"; 35 + homepage = "https://github.com/codecobblers/dirtyjson"; 36 + license = with licenses; [ afl21 /* and */ mit]; 37 + maintainers = with maintainers; [ fab ]; 38 + }; 39 + }
+2 -2
pkgs/development/python-modules/litellm/default.nix
··· 33 33 34 34 buildPythonPackage rec { 35 35 pname = "litellm"; 36 - version = "1.27.4"; 36 + version = "1.28.0"; 37 37 pyproject = true; 38 38 39 39 disabled = pythonOlder "3.8"; ··· 42 42 owner = "BerriAI"; 43 43 repo = "litellm"; 44 44 rev = "refs/tags/v${version}"; 45 - hash = "sha256-mgBbU5vbSKjJysPQHu2FH7VzB7aCW4XJThNkpMnu1+c="; 45 + hash = "sha256-rmgKitWY2YFa+L9vpjXCsx5rCS2UrrobyKoleP5taG0="; 46 46 }; 47 47 48 48 postPatch = ''
+30
pkgs/development/python-modules/llama-index-agent-openai/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , llama-index-core 5 + , llama-index-llms-openai 6 + , poetry-core 7 + }: 8 + 9 + buildPythonPackage rec { 10 + pname = "llama-index-agent-openai"; 11 + 12 + inherit (llama-index-core) version src meta; 13 + 14 + pyproject = true; 15 + 16 + sourceRoot = "${src.name}/llama-index-integrations/agent/${pname}"; 17 + 18 + nativeBuildInputs = [ 19 + poetry-core 20 + ]; 21 + 22 + propagatedBuildInputs = [ 23 + llama-index-core 24 + llama-index-llms-openai 25 + ]; 26 + 27 + pythonImportsCheck = [ 28 + "llama_index.agent.openai" 29 + ]; 30 + }
+34
pkgs/development/python-modules/llama-index-cli/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , llama-index-core 5 + , llama-index-embeddings-openai 6 + , llama-index-llms-openai 7 + , llama-index-vector-stores-chroma 8 + , poetry-core 9 + }: 10 + 11 + buildPythonPackage rec { 12 + pname = "llama-index-cli"; 13 + 14 + inherit (llama-index-core) version src meta; 15 + 16 + pyproject = true; 17 + 18 + sourceRoot = "${src.name}/${pname}"; 19 + 20 + nativeBuildInputs = [ 21 + poetry-core 22 + ]; 23 + 24 + propagatedBuildInputs = [ 25 + llama-index-core 26 + llama-index-embeddings-openai 27 + llama-index-llms-openai 28 + llama-index-vector-stores-chroma 29 + ]; 30 + 31 + pythonImportsCheck = [ 32 + "llama_index.cli" 33 + ]; 34 + }
+115
pkgs/development/python-modules/llama-index-core/default.nix
··· 1 + { lib 2 + , aiohttp 3 + , buildPythonPackage 4 + , dataclasses-json 5 + , deprecated 6 + , dirtyjson 7 + , fetchFromGitHub 8 + , fsspec 9 + , llamaindex-py-client 10 + , nest-asyncio 11 + , networkx 12 + , nltk 13 + , numpy 14 + , openai 15 + , pandas 16 + , pillow 17 + , poetry-core 18 + , pytest-asyncio 19 + , pytest-mock 20 + , pytestCheckHook 21 + , pythonOlder 22 + , pyyaml 23 + , requests 24 + , tree-sitter 25 + , sqlalchemy 26 + , tenacity 27 + , tiktoken 28 + , typing-inspect 29 + }: 30 + 31 + buildPythonPackage rec { 32 + pname = "llama-index-core"; 33 + version = "0.10.12"; 34 + pyproject = true; 35 + 36 + disabled = pythonOlder "3.8"; 37 + 38 + src = fetchFromGitHub { 39 + owner = "run-llama"; 40 + repo = "llama_index"; 41 + rev = "refs/tags/v${version}"; 42 + hash = "sha256-Xn4Gqr5zjZGAEHg5duqkS9GLWWlC83puDHNktNYzvDw="; 43 + }; 44 + 45 + sourceRoot = "${src.name}/${pname}"; 46 + 47 + nativeBuildInputs = [ 48 + poetry-core 49 + ]; 50 + 51 + propagatedBuildInputs = [ 52 + aiohttp 53 + dataclasses-json 54 + deprecated 55 + dirtyjson 56 + fsspec 57 + llamaindex-py-client 58 + nest-asyncio 59 + networkx 60 + nltk 61 + numpy 62 + openai 63 + pandas 64 + pillow 65 + pyyaml 66 + requests 67 + sqlalchemy 68 + tenacity 69 + tiktoken 70 + typing-inspect 71 + ]; 72 + 73 + nativeCheckInputs = [ 74 + tree-sitter 75 + pytest-asyncio 76 + pytest-mock 77 + pytestCheckHook 78 + ]; 79 + 80 + pythonImportsCheck = [ 81 + "llama_index" 82 + ]; 83 + 84 + disabledTestPaths = [ 85 + # Tests require network access 86 + "tests/agent/" 87 + "tests/callbacks/" 88 + "tests/chat_engine/" 89 + "tests/evaluation/" 90 + "tests/indices/" 91 + "tests/ingestion/" 92 + "tests/memory/" 93 + "tests/node_parser/" 94 + "tests/objects/" 95 + "tests/playground/" 96 + "tests/postprocessor/" 97 + "tests/query_engine/" 98 + "tests/question_gen/" 99 + "tests/response_synthesizers/" 100 + "tests/retrievers/" 101 + "tests/selectors/" 102 + "tests/test_utils.py" 103 + "tests/text_splitter/" 104 + "tests/token_predictor/" 105 + "tests/tools/" 106 + ]; 107 + 108 + meta = with lib; { 109 + description = "Data framework for your LLM applications"; 110 + homepage = "https://github.com/run-llama/llama_index/"; 111 + changelog = "https://github.com/run-llama/llama_index/blob/${version}/CHANGELOG.md"; 112 + license = licenses.mit; 113 + maintainers = with maintainers; [ fab ]; 114 + }; 115 + }
+36
pkgs/development/python-modules/llama-index-embeddings-gemini/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , google-generativeai 5 + , llama-index-core 6 + , poetry-core 7 + , pytestCheckHook 8 + }: 9 + 10 + buildPythonPackage rec { 11 + pname = "llama-index-embeddings-gemini"; 12 + version = "0.1.3"; 13 + 14 + inherit (llama-index-core) src meta; 15 + 16 + pyproject = true; 17 + 18 + sourceRoot = "${src.name}/llama-index-integrations/embeddings/${pname}"; 19 + 20 + nativeBuildInputs = [ 21 + poetry-core 22 + ]; 23 + 24 + propagatedBuildInputs = [ 25 + google-generativeai 26 + llama-index-core 27 + ]; 28 + 29 + nativeCheckInputs = [ 30 + pytestCheckHook 31 + ]; 32 + 33 + pythonImportsCheck = [ 34 + "llama_index.embeddings.gemini" 35 + ]; 36 + }
+30
pkgs/development/python-modules/llama-index-embeddings-google/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , google-generativeai 5 + , llama-index-core 6 + , poetry-core 7 + }: 8 + 9 + buildPythonPackage rec { 10 + pname = "llama-index-embeddings-google"; 11 + 12 + inherit (llama-index-core) version src meta; 13 + 14 + pyproject = true; 15 + 16 + sourceRoot = "${src.name}/llama-index-integrations/embeddings/${pname}"; 17 + 18 + nativeBuildInputs = [ 19 + poetry-core 20 + ]; 21 + 22 + propagatedBuildInputs = [ 23 + google-generativeai 24 + llama-index-core 25 + ]; 26 + 27 + pythonImportsCheck = [ 28 + "llama_index.embeddings.google" 29 + ]; 30 + }
+28
pkgs/development/python-modules/llama-index-embeddings-openai/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , llama-index-core 5 + , poetry-core 6 + }: 7 + 8 + buildPythonPackage rec { 9 + pname = "llama-index-embeddings-openai"; 10 + 11 + inherit (llama-index-core) version src meta; 12 + 13 + pyproject = true; 14 + 15 + sourceRoot = "${src.name}/llama-index-integrations/embeddings/${pname}"; 16 + 17 + nativeBuildInputs = [ 18 + poetry-core 19 + ]; 20 + 21 + propagatedBuildInputs = [ 22 + llama-index-core 23 + ]; 24 + 25 + pythonImportsCheck = [ 26 + "llama_index.embeddings.openai" 27 + ]; 28 + }
+28
pkgs/development/python-modules/llama-index-indices-managed-llama-cloud/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , poetry-core 5 + , llama-index-core 6 + }: 7 + 8 + buildPythonPackage rec { 9 + pname = "llama-index-indices-managed-llama-cloud"; 10 + 11 + inherit (llama-index-core) version src meta; 12 + 13 + pyproject = true; 14 + 15 + sourceRoot = "${src.name}/llama-index-integrations/indices/${pname}"; 16 + 17 + nativeBuildInputs = [ 18 + poetry-core 19 + ]; 20 + 21 + propagatedBuildInputs = [ 22 + llama-index-core 23 + ]; 24 + 25 + pythonImportsCheck = [ 26 + "llama_index.indices.managed.llama_cloud" 27 + ]; 28 + }
+24
pkgs/development/python-modules/llama-index-legacy/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , poetry-core 5 + , llama-index-core 6 + }: 7 + 8 + buildPythonPackage rec { 9 + pname = "llama-index-legacy"; 10 + 11 + inherit (llama-index-core) version src meta; 12 + 13 + pyproject = true; 14 + 15 + sourceRoot = "${src.name}/${pname}"; 16 + 17 + nativeBuildInputs = [ 18 + poetry-core 19 + ]; 20 + 21 + propagatedBuildInputs = [ 22 + llama-index-core 23 + ]; 24 + }
+28
pkgs/development/python-modules/llama-index-llms-openai/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , poetry-core 5 + , llama-index-core 6 + }: 7 + 8 + buildPythonPackage rec { 9 + pname = "llama-index-llms-openai"; 10 + 11 + inherit (llama-index-core) version src meta; 12 + 13 + pyproject = true; 14 + 15 + sourceRoot = "${src.name}/llama-index-integrations/llms/${pname}"; 16 + 17 + nativeBuildInputs = [ 18 + poetry-core 19 + ]; 20 + 21 + propagatedBuildInputs = [ 22 + llama-index-core 23 + ]; 24 + 25 + pythonImportsCheck = [ 26 + "llama_index.llms.openai" 27 + ]; 28 + }
+30
pkgs/development/python-modules/llama-index-multi-modal-llms-openai/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , llama-index-core 5 + , llama-index-llms-openai 6 + , poetry-core 7 + }: 8 + 9 + buildPythonPackage rec { 10 + pname = "llama-index-multi-modal-llms-openai"; 11 + 12 + inherit (llama-index-core) version src meta; 13 + 14 + pyproject = true; 15 + 16 + sourceRoot = "${src.name}/llama-index-integrations/multi_modal_llms/${pname}"; 17 + 18 + nativeBuildInputs = [ 19 + poetry-core 20 + ]; 21 + 22 + propagatedBuildInputs = [ 23 + llama-index-core 24 + llama-index-llms-openai 25 + ]; 26 + 27 + pythonImportsCheck = [ 28 + "llama_index.multi_modal_llms.openai" 29 + ]; 30 + }
+32
pkgs/development/python-modules/llama-index-program-openai/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , llama-index-agent-openai 5 + , llama-index-core 6 + , llama-index-llms-openai 7 + , poetry-core 8 + }: 9 + 10 + buildPythonPackage rec { 11 + pname = "llama-index-program-openai"; 12 + 13 + inherit (llama-index-core) version src meta; 14 + 15 + pyproject = true; 16 + 17 + sourceRoot = "${src.name}/llama-index-integrations/program/${pname}"; 18 + 19 + nativeBuildInputs = [ 20 + poetry-core 21 + ]; 22 + 23 + propagatedBuildInputs = [ 24 + llama-index-agent-openai 25 + llama-index-core 26 + llama-index-llms-openai 27 + ]; 28 + 29 + pythonImportsCheck = [ 30 + "llama_index.program.openai" 31 + ]; 32 + }
+32
pkgs/development/python-modules/llama-index-question-gen-openai/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , llama-index-core 5 + , llama-index-llms-openai 6 + , llama-index-program-openai 7 + , poetry-core 8 + }: 9 + 10 + buildPythonPackage rec { 11 + pname = "llama-index-question-gen-openai"; 12 + 13 + inherit (llama-index-core) version src meta; 14 + 15 + pyproject = true; 16 + 17 + sourceRoot = "${src.name}/llama-index-integrations/question_gen/${pname}"; 18 + 19 + nativeBuildInputs = [ 20 + poetry-core 21 + ]; 22 + 23 + propagatedBuildInputs = [ 24 + llama-index-core 25 + llama-index-llms-openai 26 + llama-index-program-openai 27 + ]; 28 + 29 + pythonImportsCheck = [ 30 + "llama_index.question_gen.openai" 31 + ]; 32 + }
+46
pkgs/development/python-modules/llama-index-readers-file/default.nix
··· 1 + { lib 2 + , beautifulsoup4 3 + , buildPythonPackage 4 + , fetchFromGitHub 5 + , llama-index-core 6 + , poetry-core 7 + , pymupdf 8 + , pypdf 9 + , pythonRelaxDepsHook 10 + }: 11 + 12 + buildPythonPackage rec { 13 + pname = "llama-index-readers-file"; 14 + 15 + inherit (llama-index-core) version src meta; 16 + 17 + pyproject = true; 18 + 19 + sourceRoot = "${src.name}/llama-index-integrations/readers/${pname}"; 20 + 21 + pythonRelaxDeps = [ 22 + "beautifulsoup4" 23 + "pymupdf" 24 + "pypdf" 25 + ]; 26 + 27 + pythonRemoveDeps = [ 28 + "bs4" 29 + ]; 30 + 31 + nativeBuildInputs = [ 32 + poetry-core 33 + pythonRelaxDepsHook 34 + ]; 35 + 36 + propagatedBuildInputs = [ 37 + beautifulsoup4 38 + llama-index-core 39 + pymupdf 40 + pypdf 41 + ]; 42 + 43 + pythonImportsCheck = [ 44 + "llama_index.readers.file" 45 + ]; 46 + }
+34
pkgs/development/python-modules/llama-index-readers-json/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , llama-index-core 5 + , poetry-core 6 + , pytestCheckHook 7 + }: 8 + 9 + buildPythonPackage rec { 10 + pname = "llama-index-readers-json"; 11 + version = "0.1.2"; 12 + 13 + inherit (llama-index-core) src meta; 14 + 15 + pyproject = true; 16 + 17 + sourceRoot = "${src.name}/llama-index-integrations/readers/${pname}"; 18 + 19 + nativeBuildInputs = [ 20 + poetry-core 21 + ]; 22 + 23 + propagatedBuildInputs = [ 24 + llama-index-core 25 + ]; 26 + 27 + nativeCheckInputs = [ 28 + pytestCheckHook 29 + ]; 30 + 31 + pythonImportsCheck = [ 32 + "llama_index.readers.json" 33 + ]; 34 + }
+30
pkgs/development/python-modules/llama-index-readers-llama-parse/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , llama-index-core 5 + , llama-parse 6 + , poetry-core 7 + }: 8 + 9 + buildPythonPackage rec { 10 + pname = "llama-index-readers-llama-parse"; 11 + 12 + inherit (llama-index-core) version src meta; 13 + 14 + pyproject = true; 15 + 16 + sourceRoot = "${src.name}/llama-index-integrations/readers/${pname}"; 17 + 18 + nativeBuildInputs = [ 19 + poetry-core 20 + ]; 21 + 22 + propagatedBuildInputs = [ 23 + llama-parse 24 + llama-index-core 25 + ]; 26 + 27 + pythonImportsCheck = [ 28 + "llama_index.readers.llama_parse" 29 + ]; 30 + }
+36
pkgs/development/python-modules/llama-index-readers-weather/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , llama-index-core 5 + , poetry-core 6 + , pyowm 7 + , pytestCheckHook 8 + }: 9 + 10 + buildPythonPackage rec { 11 + pname = "llama-index-readers-weather"; 12 + version = "0.1.4"; 13 + 14 + inherit (llama-index-core) src meta; 15 + 16 + pyproject = true; 17 + 18 + sourceRoot = "${src.name}/llama-index-integrations/readers/${pname}"; 19 + 20 + nativeBuildInputs = [ 21 + poetry-core 22 + ]; 23 + 24 + propagatedBuildInputs = [ 25 + llama-index-core 26 + pyowm 27 + ]; 28 + 29 + nativeCheckInputs = [ 30 + pytestCheckHook 31 + ]; 32 + 33 + pythonImportsCheck = [ 34 + "llama_index.readers.weather" 35 + ]; 36 + }
+41
pkgs/development/python-modules/llama-index-vector-stores-chroma/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , chromadb 4 + , fetchFromGitHub 5 + , llama-index-core 6 + , onnxruntime 7 + , poetry-core 8 + , pythonRelaxDepsHook 9 + , tokenizers 10 + }: 11 + 12 + buildPythonPackage rec { 13 + pname = "llama-index-vector-stores-chroma"; 14 + 15 + inherit (llama-index-core) version src meta; 16 + 17 + pyproject = true; 18 + 19 + sourceRoot = "${src.name}/llama-index-integrations/vector_stores/${pname}"; 20 + 21 + pythonRelaxDeps = [ 22 + "onnxruntime" 23 + "tokenizers" 24 + ]; 25 + 26 + nativeBuildInputs = [ 27 + poetry-core 28 + pythonRelaxDepsHook 29 + ]; 30 + 31 + propagatedBuildInputs = [ 32 + chromadb 33 + llama-index-core 34 + onnxruntime 35 + tokenizers 36 + ]; 37 + 38 + pythonImportsCheck = [ 39 + "llama_index.vector_stores.chroma" 40 + ]; 41 + }
+47
pkgs/development/python-modules/llama-index/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , llama-index-agent-openai 4 + , llama-index-cli 5 + , llama-index-core 6 + , llama-index-embeddings-openai 7 + , llama-index-indices-managed-llama-cloud 8 + , llama-index-legacy 9 + , llama-index-llms-openai 10 + , llama-index-multi-modal-llms-openai 11 + , llama-index-program-openai 12 + , llama-index-question-gen-openai 13 + , llama-index-readers-file 14 + , llama-index-readers-llama-parse 15 + , poetry-core 16 + }: 17 + 18 + buildPythonPackage rec { 19 + pname = "llama-index"; 20 + 21 + inherit (llama-index-core) version src meta; 22 + 23 + pyproject = true; 24 + 25 + nativeBuildInputs = [ 26 + poetry-core 27 + ]; 28 + 29 + propagatedBuildInputs = [ 30 + llama-index-agent-openai 31 + llama-index-cli 32 + llama-index-core 33 + llama-index-embeddings-openai 34 + llama-index-indices-managed-llama-cloud 35 + llama-index-legacy 36 + llama-index-llms-openai 37 + llama-index-multi-modal-llms-openai 38 + llama-index-program-openai 39 + llama-index-question-gen-openai 40 + llama-index-readers-file 41 + llama-index-readers-llama-parse 42 + ]; 43 + 44 + pythonImportsCheck = [ 45 + "llama_index" 46 + ]; 47 + }
+40
pkgs/development/python-modules/llama-parse/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , llama-index-core 5 + , poetry-core 6 + , pythonOlder 7 + }: 8 + 9 + buildPythonPackage rec { 10 + pname = "llama-parse"; 11 + version = "0.3.4"; 12 + pyproject = true; 13 + 14 + disabled = pythonOlder "3.8"; 15 + 16 + src = fetchPypi { 17 + pname = "llama_parse"; 18 + inherit version; 19 + hash = "sha256-WjBWnDkKuQidrWbPKoyWf4wh13ZB3uwKkiZy304Wz6M="; 20 + }; 21 + 22 + nativeBuildInputs = [ 23 + poetry-core 24 + ]; 25 + 26 + propagatedBuildInputs = [ 27 + llama-index-core 28 + ]; 29 + 30 + pythonImportsCheck = [ 31 + "llama_parse" 32 + ]; 33 + 34 + meta = with lib; { 35 + description = "Parse files into RAG-Optimized formats"; 36 + homepage = "https://pypi.org/project/llama-parse/"; 37 + license = licenses.mit; 38 + maintainers = with maintainers; [ fab ]; 39 + }; 40 + }
+45
pkgs/development/python-modules/llamaindex-py-client/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , httpx 5 + , poetry-core 6 + , pydantic 7 + , pythonOlder 8 + }: 9 + 10 + buildPythonPackage rec { 11 + pname = "llamaindex-py-client"; 12 + version = "0.1.13"; 13 + pyproject = true; 14 + 15 + disabled = pythonOlder "3.8"; 16 + 17 + src = fetchPypi { 18 + pname = "llamaindex_py_client"; 19 + inherit version; 20 + hash = "sha256-O9m0Ne4KeBceukEt6lZ02BPrW/NuV308fH6Q7cVJANk="; 21 + }; 22 + 23 + nativeBuildInputs = [ 24 + poetry-core 25 + ]; 26 + 27 + propagatedBuildInputs = [ 28 + httpx 29 + pydantic 30 + ]; 31 + 32 + # Module has no tests 33 + doCheck = false; 34 + 35 + pythonImportsCheck = [ 36 + "llama_index_client" 37 + ]; 38 + 39 + meta = with lib; { 40 + description = "Client for LlamaIndex"; 41 + homepage = "https://pypi.org/project/llamaindex-py-client/"; 42 + license = licenses.mit; 43 + maintainers = with maintainers; [ fab ]; 44 + }; 45 + }
+2 -2
pkgs/development/python-modules/mscerts/default.nix
··· 6 6 7 7 buildPythonPackage rec { 8 8 pname = "mscerts"; 9 - version = "2023.11.29"; 9 + version = "2024.2.28"; 10 10 format = "setuptools"; 11 11 12 12 disabled = pythonOlder "3.7"; ··· 15 15 owner = "ralphje"; 16 16 repo = "mscerts"; 17 17 rev = "refs/tags/${version}"; 18 - hash = "sha256-TNwpWxknCUcvXFy3UInrEx4iFZi/hLS7exvJBv3DlWo="; 18 + hash = "sha256-ReUDpax4tvw4ZCH8zOipelIPtHi7BdgLHI/r3FNpo1c="; 19 19 }; 20 20 21 21 # extras_require contains signify -> circular dependency
+13 -1
pkgs/development/python-modules/msrest/default.nix
··· 9 9 , isodate 10 10 , pytest-aiohttp 11 11 , pytestCheckHook 12 + , pythonAtLeast 12 13 , pythonOlder 13 14 , requests 14 15 , requests-oauthlib 16 + , setuptools 15 17 , trio 16 18 }: 17 19 18 20 buildPythonPackage rec { 19 21 pname = "msrest"; 20 22 version = "0.7.1"; 21 - format = "setuptools"; 23 + pyproject = true; 22 24 23 25 disabled = pythonOlder "3.7"; 24 26 ··· 30 32 hash = "sha256-1EXXXflhDeU+erdI+NsWxSX76ooDTl3+MyQwRzm2xV0="; 31 33 }; 32 34 35 + nativeBuildInputs = [ 36 + setuptools 37 + ]; 38 + 33 39 propagatedBuildInputs = [ 34 40 azure-core 35 41 aiodns ··· 56 62 "test_conf_async_requests" 57 63 "test_conf_async_requests" 58 64 "test_conf_async_trio_requests" 65 + ] ++ lib.optionals (pythonAtLeast "3.12") [ 66 + # AttributeError: 'TestAuthentication' object has no attribute... 67 + "test_apikey_auth" 68 + "test_cs_auth" 69 + "test_eventgrid_auth" 70 + "test_eventgrid_domain_auth" 59 71 ]; 60 72 61 73 pythonImportsCheck = [
+32 -21
pkgs/development/python-modules/msrestazure/default.nix
··· 1 - { pkgs 2 - , lib 1 + { lib 2 + , adal 3 3 , buildPythonPackage 4 4 , fetchFromGitHub 5 - , isPy3k 6 - , adal 7 - , msrest 8 - , mock 9 5 , httpretty 10 - , pytest 6 + , mock 7 + , msrest 11 8 , pytest-asyncio 9 + , pytestCheckHook 10 + , pythonOlder 11 + , setuptools 12 12 }: 13 13 14 14 buildPythonPackage rec { 15 + pname = "msrestazure"; 15 16 version = "0.6.4"; 16 - format = "setuptools"; 17 - pname = "msrestazure"; 17 + pyproject = true; 18 + 19 + disabled = pythonOlder "3.7"; 18 20 19 - # Pypi tarball doesnt include tests 20 - # see https://github.com/Azure/msrestazure-for-python/pull/133 21 21 src = fetchFromGitHub { 22 22 owner = "Azure"; 23 23 repo = "msrestazure-for-python"; 24 - rev = "v${version}"; 25 - sha256 = "0ik81f0n6r27f02gblgm0vl5zl3wc6ijsscihgvc1fgm9f5mk5b5"; 24 + rev = "refs/tags/v${version}"; 25 + hash = "sha256-ZZVZi0v1ucD2g5FpLaNhfNBf6Ab10fUEcEdkY4ELaEY="; 26 26 }; 27 27 28 - propagatedBuildInputs = [ adal msrest ]; 28 + nativeBuildInputs = [ 29 + setuptools 30 + ]; 29 31 30 - nativeCheckInputs = [ httpretty mock pytest ] 31 - ++ lib.optionals isPy3k [ pytest-asyncio ]; 32 + propagatedBuildInputs = [ 33 + adal 34 + msrest 35 + ]; 32 36 33 - checkPhase = '' 34 - pytest tests/ 35 - ''; 37 + nativeCheckInputs = [ 38 + httpretty 39 + mock 40 + pytest-asyncio 41 + pytestCheckHook 42 + ]; 36 43 37 - meta = with pkgs.lib; { 38 - description = "The runtime library 'msrestazure' for AutoRest generated Python clients."; 44 + pythonImportsCheck = [ 45 + "msrest" 46 + ]; 47 + 48 + meta = with lib; { 49 + description = "The runtime library 'msrestazure' for AutoRest generated Python clients"; 39 50 homepage = "https://azure.microsoft.com/en-us/develop/python/"; 40 51 license = licenses.mit; 41 52 maintainers = with maintainers; [ bendlas jonringer ];
+28 -12
pkgs/development/python-modules/nest-asyncio/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 - , fetchPypi 4 - , pythonAtLeast 3 + , fetchFromGitHub 4 + , pytestCheckHook 5 + , pythonOlder 6 + , setuptools 7 + , setuptools-scm 5 8 }: 6 9 7 10 buildPythonPackage rec { 8 - version = "1.5.6"; 9 - pname = "nest_asyncio"; 10 - disabled = !(pythonAtLeast "3.5"); 11 + pname = "nest-asyncio"; 12 + version = "1.6.0"; 13 + pyproject = true; 11 14 12 - src = fetchPypi { 13 - inherit pname version; 14 - hash = "sha256-0mfMH/eUQD999pKWTR0qP6lBj/6io/aFmkOf9IL+8pA="; 15 + disabled = pythonOlder "3.8"; 16 + 17 + src = fetchFromGitHub { 18 + owner = "erdewit"; 19 + repo = "nest_asyncio"; 20 + rev = "refs/tags/v${version}"; 21 + hash = "sha256-5I5WItOl1QpyI4OXZgZf8GiQ7Jlo+SJbDicIbernaU4="; 15 22 }; 16 23 17 - # tests not packaged with source dist as of 1.3.2/1.3.2, and 18 - # can't check tests out of GitHub easily without specific commit IDs (no tagged releases) 19 - doCheck = false; 20 - pythonImportsCheck = [ "nest_asyncio" ]; 24 + nativeBuildInputs = [ 25 + setuptools 26 + setuptools-scm 27 + ]; 28 + 29 + nativeCheckInputs = [ 30 + pytestCheckHook 31 + ]; 32 + 33 + pythonImportsCheck = [ 34 + "nest_asyncio" 35 + ]; 21 36 22 37 meta = with lib; { 23 38 description = "Patch asyncio to allow nested event loops"; 24 39 homepage = "https://github.com/erdewit/nest_asyncio"; 40 + changelog = "https://github.com/erdewit/nest_asyncio/releases/tag/v${version}"; 25 41 license = licenses.bsdOriginal; 26 42 maintainers = with maintainers; [ ]; 27 43 };
+54
pkgs/development/python-modules/opentelemetry-instrumentation-fastapi/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fastapi 4 + , hatchling 5 + , httpx 6 + , opentelemetry-api 7 + , opentelemetry-instrumentation 8 + , opentelemetry-instrumentation-asgi 9 + , opentelemetry-semantic-conventions 10 + , opentelemetry-test-utils 11 + , opentelemetry-util-http 12 + , pytestCheckHook 13 + , pythonOlder 14 + , requests 15 + }: 16 + 17 + buildPythonPackage { 18 + inherit (opentelemetry-instrumentation) version src; 19 + pname = "opentelemetry-instrumentation-fastapi"; 20 + pyproject = true; 21 + 22 + disabled = pythonOlder "3.7"; 23 + 24 + sourceRoot = "${opentelemetry-instrumentation.src.name}/instrumentation/opentelemetry-instrumentation-fastapi"; 25 + 26 + nativeBuildInputs = [ 27 + hatchling 28 + ]; 29 + 30 + propagatedBuildInputs = [ 31 + fastapi 32 + opentelemetry-api 33 + opentelemetry-instrumentation 34 + opentelemetry-instrumentation-asgi 35 + opentelemetry-semantic-conventions 36 + opentelemetry-util-http 37 + ]; 38 + 39 + nativeCheckInputs = [ 40 + httpx 41 + opentelemetry-test-utils 42 + pytestCheckHook 43 + requests 44 + ]; 45 + 46 + pythonImportsCheck = [ 47 + "opentelemetry.instrumentation.fastapi" 48 + ]; 49 + 50 + meta = opentelemetry-instrumentation.meta // { 51 + description = "OpenTelemetry Instrumentation for fastapi"; 52 + homepage = "https://github.com/open-telemetry/opentelemetry-python-contrib/blob/main/instrumentation/opentelemetry-instrumentation-fastapi"; 53 + }; 54 + }
+4 -2
pkgs/development/python-modules/opower/default.nix
··· 5 5 , fetchFromGitHub 6 6 , pyotp 7 7 , pytestCheckHook 8 + , python-dotenv 8 9 , pythonOlder 9 10 , setuptools 10 11 }: 11 12 12 13 buildPythonPackage rec { 13 14 pname = "opower"; 14 - version = "0.3.1"; 15 + version = "0.4.0"; 15 16 pyproject = true; 16 17 17 18 disabled = pythonOlder "3.9"; ··· 20 21 owner = "tronikos"; 21 22 repo = "opower"; 22 23 rev = "refs/tags/v${version}"; 23 - hash = "sha256-aSzy1QLNGfEqHE2IQDdh9YfK+pC6j8X+5KviasSvYI8="; 24 + hash = "sha256-O+yIxEFqD6hel1H9aUnSz/wJoEhVrg6DDZptNcJVkSw="; 24 25 }; 25 26 26 27 nativeBuildInputs = [ ··· 31 32 aiohttp 32 33 arrow 33 34 pyotp 35 + python-dotenv 34 36 ]; 35 37 36 38 nativeCheckInputs = [
+2 -2
pkgs/development/python-modules/oslo-concurrency/default.nix
··· 18 18 19 19 buildPythonPackage rec { 20 20 pname = "oslo-concurrency"; 21 - version = "5.3.0"; 21 + version = "6.0.0"; 22 22 format = "setuptools"; 23 23 24 24 src = fetchPypi { 25 25 pname = "oslo.concurrency"; 26 26 inherit version; 27 - hash = "sha256-yqaSBw0hVZ73H/WQeAb3USoXgsRby1ChlP4+DNeNfe0="; 27 + hash = "sha256-tS8CtORvXydLkfuOG/xcv5pBjfzUqDvggDRUlePSboo="; 28 28 }; 29 29 30 30 postPatch = ''
+119
pkgs/development/python-modules/pulsar-client/default.nix
··· 1 + { lib 2 + , stdenv 3 + , buildPythonPackage 4 + , fetchPypi 5 + , python 6 + }: 7 + let 8 + version = "3.4.0"; 9 + 10 + inherit (python) pythonVersion; 11 + 12 + Srcs = 13 + let 14 + getSrcFromPypi = { platform, dist, hash }: fetchPypi { 15 + inherit version platform dist hash; 16 + pname = "pulsar_client"; 17 + format = "wheel"; 18 + python = dist; 19 + abi = dist; 20 + }; 21 + in 22 + { 23 + "3.9-x86_64-linux" = getSrcFromPypi { 24 + platform = "manylinux_2_17_x86_64.manylinux2014_x86_64"; 25 + dist = "cp39"; 26 + hash = "sha256-1P5ArMoLZiUkHUoQ/mJccbNj5/7el/op+Qo6cGQ33xE="; 27 + }; 28 + "3.9-aarch64-linux" = getSrcFromPypi { 29 + platform = "manylinux_2_17_aarch64.manylinux2014_aarch64"; 30 + dist = "cp39"; 31 + hash = "sha256-11JQZRwMLtt7sK/JlCBqqRyfTVIAVJFN2sL+nAkQgvU="; 32 + }; 33 + "3.9-aarch64-darwin" = getSrcFromPypi { 34 + platform = "macosx_10_15_universal2"; 35 + dist = "cp39"; 36 + hash = "sha256-dwTGZKosgBr0wtOljp2P+u7xLOig9xcS6Rh/mpbahW8="; 37 + }; 38 + "3.9-x86_64-darwin" = getSrcFromPypi { 39 + platform = "macosx_10_15_universal2"; 40 + dist = "cp39"; 41 + hash = "sha256-dwTGZKosgBr0wtOljp2P+u7xLOig9xcS6Rh/mpbahW8="; 42 + }; 43 + "3.10-x86_64-linux" = getSrcFromPypi { 44 + platform = "manylinux_2_17_x86_64.manylinux2014_x86_64"; 45 + dist = "cp310"; 46 + hash = "sha256-swp1kuQsdgNOmo1k1C3VurNhQl+GneVi6cytaY4ZzYg="; 47 + }; 48 + "3.10-aarch64-linux" = getSrcFromPypi { 49 + platform = "musllinux_1_1_aarch64"; 50 + dist = "cp310"; 51 + hash = "sha256-1ZYwkKeKVkS6JfQdo6bUnqPwDJcrCVuv82WRbcJGQmo="; 52 + }; 53 + "3.10-aarch64-darwin" = getSrcFromPypi { 54 + platform = "macosx_10_15_universal2"; 55 + dist = "cp310"; 56 + hash = "sha256-6/mdtSRP9pR5KDslYhsHBJKsxLtkPRYthrkDh8tv2yo="; 57 + }; 58 + "3.10-x86_64-darwin" = getSrcFromPypi { 59 + platform = "macosx_10_15_universal2"; 60 + dist = "cp310"; 61 + hash = "sha256-6/mdtSRP9pR5KDslYhsHBJKsxLtkPRYthrkDh8tv2yo="; 62 + }; 63 + "3.11-x86_64-linux" = getSrcFromPypi { 64 + platform = "manylinux_2_17_x86_64.manylinux2014_x86_64"; 65 + dist = "cp311"; 66 + hash = "sha256-M1cd6ZzYmDSfF5eLpi4rg56gJ1+3Bn8xv19uv+rgmH0="; 67 + }; 68 + "3.11-aarch64-linux" = getSrcFromPypi { 69 + platform = "manylinux_2_17_aarch64.manylinux2014_aarch64"; 70 + dist = "cp311"; 71 + hash = "sha256-+HQ8MgqpZ5jSDK+pjql6aMQpX8SHLCOs1eAS/TbLBro="; 72 + }; 73 + "3.11-aarch64-darwin" = getSrcFromPypi { 74 + platform = "macosx_10_15_universal2"; 75 + dist = "cp311"; 76 + hash = "sha256-EZUvsCLuct6/U7Fp9EgvncXIkL4BSa6Yd5hks6IfG9M="; 77 + }; 78 + "3.11-x86_64-darwin" = getSrcFromPypi { 79 + platform = "macosx_10_15_universal2"; 80 + dist = "cp311"; 81 + hash = "sha256-EZUvsCLuct6/U7Fp9EgvncXIkL4BSa6Yd5hks6IfG9M="; 82 + }; 83 + "3.12-x86_64-linux" = getSrcFromPypi { 84 + platform = "manylinux_2_17_x86_64.manylinux2014_x86_64"; 85 + dist = "cp312"; 86 + hash = "sha256-xgbATzVzQQQvpsdUd959IgT3rlCqKcL3SyTlTIX0f5Y="; 87 + }; 88 + "3.12-aarch64-linux" = getSrcFromPypi { 89 + platform = "manylinux_2_17_aarch64.manylinux2014_aarch64"; 90 + dist = "cp312"; 91 + hash = "sha256-8gK4Th9oPWRnLdGXERRgCuLlw3NVhyhv+b+0MThfCOg="; 92 + }; 93 + "3.12-aarch64-darwin" = getSrcFromPypi { 94 + platform = "macosx_10_15_universal2"; 95 + dist = "cp312"; 96 + hash = "sha256-9/jw/wr1oUD9pOadVAaMRL081iVMUXwVgnUMcG1UNvE="; 97 + }; 98 + "3.12-x86_64-darwin" = getSrcFromPypi { 99 + platform = "macosx_10_15_universal2"; 100 + dist = "cp312"; 101 + hash = "sha256-9/jw/wr1oUD9pOadVAaMRL081iVMUXwVgnUMcG1UNvE="; 102 + }; 103 + }; 104 + 105 + in buildPythonPackage { 106 + pname = "pulsar-client"; 107 + inherit version; 108 + 109 + format = "wheel"; 110 + 111 + src = Srcs."${pythonVersion}-${stdenv.hostPlatform.system}"; 112 + 113 + meta = with lib; { 114 + description = "Client for pulsar"; 115 + homepage = "https://pypi.org/project/pulsar-client/"; 116 + license = licenses.asl20; 117 + maintainers = with maintainers; [ fab ]; 118 + }; 119 + }
+2 -2
pkgs/development/python-modules/pymicrobot/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "pymicrobot"; 12 - version = "0.0.18"; 12 + version = "0.0.22"; 13 13 pyproject = true; 14 14 15 15 disabled = pythonOlder "3.9"; ··· 17 17 src = fetchPypi { 18 18 pname = "PyMicroBot"; 19 19 inherit version; 20 - hash = "sha256-+CF1m/Z5txSOQSUp4TOCTS0fRNcL/zuWCpbox8yIOIk="; 20 + hash = "sha256-8Nkkgznt4JzImJSAbdaX6znhvmgqwOIBjAXVhaMorLk="; 21 21 }; 22 22 23 23 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/reptor/default.nix
··· 32 32 33 33 buildPythonPackage rec { 34 34 pname = "reptor"; 35 - version = "0.9"; 35 + version = "0.11"; 36 36 pyproject = true; 37 37 38 38 disabled = pythonOlder "3.8"; ··· 41 41 owner = "Syslifters"; 42 42 repo = "reptor"; 43 43 rev = "refs/tags/${version}"; 44 - hash = "sha256-CjTedIl7ZkSFfKKhHmCadTd7zdz3gP7Q4uCscv5An38="; 44 + hash = "sha256-OJcg/e+ZC5Hf4dkP1dhsR9A+5lWvuFeuNLXyW8Hw6ko="; 45 45 }; 46 46 47 47 pythonRelaxDeps = true;
+23 -8
pkgs/development/python-modules/s3transfer/default.nix
··· 1 1 { lib 2 + , stdenv 2 3 , botocore 3 4 , buildPythonPackage 4 5 , fetchFromGitHub 5 6 , pytestCheckHook 6 7 , pythonOlder 7 - , stdenv 8 + , setuptools 8 9 }: 9 10 10 11 buildPythonPackage rec { 11 12 pname = "s3transfer"; 12 13 version = "0.10.0"; 13 - format = "setuptools"; 14 + pyproject = true; 14 15 15 16 disabled = pythonOlder "3.8"; 16 17 17 18 src = fetchFromGitHub { 18 19 owner = "boto"; 19 - repo = pname; 20 + repo = "s3transfer"; 20 21 rev = "refs/tags/${version}"; 21 22 hash = "sha256-21xycx1+84uY4gFr7N+ra98dpsEwxy9zeSl4QA66nUc="; 22 23 }; 23 24 24 - propagatedBuildInputs = [ botocore ]; 25 + nativeBuildInputs = [ 26 + setuptools 27 + ]; 25 28 26 - nativeCheckInputs = [ pytestCheckHook ]; 29 + propagatedBuildInputs = [ 30 + botocore 31 + ]; 32 + 33 + nativeCheckInputs = [ 34 + pytestCheckHook 35 + ]; 27 36 28 37 disabledTestPaths = [ 29 38 # Requires network access ··· 32 41 # There was a change in python 3.8 that defaults multiprocessing to spawn instead of fork on macOS 33 42 # See https://bugs.python.org/issue33725 and https://github.com/python/cpython/pull/13603. 34 43 # I suspect the underlying issue here is that upstream tests aren't compatible with spawn multiprocessing, and pass on linux where the default is still fork 35 - lib.optionals stdenv.isDarwin [ "tests/unit/test_compat.py" ]; 44 + lib.optionals stdenv.isDarwin [ 45 + "tests/unit/test_compat.py" 46 + ]; 36 47 37 - pythonImportsCheck = [ "s3transfer" ]; 48 + pythonImportsCheck = [ 49 + "s3transfer" 50 + ]; 38 51 39 52 passthru.optional-dependencies = { 40 - crt = [ botocore.optional-dependencies.crt ]; 53 + crt = [ 54 + botocore.optional-dependencies.crt 55 + ]; 41 56 }; 42 57 43 58 meta = with lib; {
+2 -2
pkgs/development/python-modules/thriftpy2/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "thriftpy2"; 13 - version = "0.4.16"; 13 + version = "0.4.19"; 14 14 format = "setuptools"; 15 15 16 16 disabled = pythonOlder "3.6"; ··· 19 19 owner = "Thriftpy"; 20 20 repo = pname; 21 21 rev = "refs/tags/v${version}"; 22 - hash = "sha256-o+h38NREnh14M23gyF2X2UdW7/spmHFo0rqvkKnmSRQ="; 22 + hash = "sha256-u5k9dP6llfTjM745fRHvKC2vM7jd9D8lvPUsDcYx0EI="; 23 23 }; 24 24 25 25 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/twilio/default.nix
··· 19 19 20 20 buildPythonPackage rec { 21 21 pname = "twilio"; 22 - version = "8.13.0"; 22 + version = "9.0.0"; 23 23 pyproject = true; 24 24 25 25 disabled = pythonOlder "3.7"; ··· 28 28 owner = "twilio"; 29 29 repo = "twilio-python"; 30 30 rev = "refs/tags/${version}"; 31 - hash = "sha256-HlHT7fJbDz8+7pTWHortK2xKDzoIQElJPbUTxmIdGCs="; 31 + hash = "sha256-5PhINmG1y+oAEpfxaB8ZFHfWlo0jRZnUKO5oUPcnFuM="; 32 32 }; 33 33 34 34 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/types-beautifulsoup4/default.nix
··· 6 6 7 7 buildPythonPackage rec { 8 8 pname = "types-beautifulsoup4"; 9 - version = "4.12.0.20240106"; 9 + version = "4.12.0.20240229"; 10 10 format = "setuptools"; 11 11 12 12 src = fetchPypi { 13 13 inherit pname version; 14 - hash = "sha256-mNYomFtxsUC9O8IqjLCrYDwvLQjyDTeSWWXrSiFzm+g="; 14 + hash = "sha256-435M+hGwOwF3VzLlbSwBDLJO4Qd4Yne65rwPo+MFtoY="; 15 15 }; 16 16 17 17 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/types-html5lib/default.nix
··· 6 6 7 7 buildPythonPackage rec { 8 8 pname = "types-html5lib"; 9 - version = "1.1.11.20240222"; 9 + version = "1.1.11.20240228"; 10 10 pyproject = true; 11 11 12 12 src = fetchPypi { 13 13 inherit pname version; 14 - hash = "sha256-2VF+xrovofYxE+KTClm2ByKpdsyYO5TX/XcvFIZeEVI="; 14 + hash = "sha256-InNrcpnmBexLpTnUhpHpBf0MYcPqYQrMWZIiMtyEzt4="; 15 15 }; 16 16 17 17 nativeBuildInputs = [
+69
pkgs/development/python-modules/types-lxml/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , lxml 5 + , pyright 6 + , pytestCheckHook 7 + , pythonOlder 8 + , setuptools 9 + , setuptools-scm 10 + , typeguard 11 + , types-beautifulsoup4 12 + , typing-extensions 13 + }: 14 + 15 + buildPythonPackage rec { 16 + pname = "types-lxml"; 17 + version = "2024.02.09"; 18 + pyproject = true; 19 + 20 + disabled = pythonOlder "3.8"; 21 + 22 + src = fetchFromGitHub { 23 + owner = "abelcheung"; 24 + repo = "types-lxml"; 25 + rev = "refs/tags/${version}"; 26 + hash = "sha256-vmRbzfwlGGxd64KX8j4B3O9c7kg7hXSsCEYq3WAFdmk="; 27 + }; 28 + 29 + nativeBuildInputs = [ 30 + setuptools 31 + setuptools-scm 32 + ]; 33 + 34 + propagatedBuildInputs = [ 35 + types-beautifulsoup4 36 + typing-extensions 37 + ]; 38 + 39 + nativeCheckInputs = [ 40 + lxml 41 + pyright 42 + pytestCheckHook 43 + typeguard 44 + ]; 45 + 46 + pythonImportsCheck = [ 47 + "lxml-stubs" 48 + ]; 49 + 50 + disabledTests = [ 51 + # AttributeError: 'bytes' object has no attribute 'find_class' 52 + # https://github.com/abelcheung/types-lxml/issues/34 53 + "test_bad_methodfunc" 54 + "test_find_class" 55 + "test_find_rel_links" 56 + "test_iterlinks" 57 + "test_make_links_absolute" 58 + "test_resolve_base_href" 59 + "test_rewrite_links" 60 + ]; 61 + 62 + meta = with lib; { 63 + description = "Complete lxml external type annotation"; 64 + homepage = "https://github.com/abelcheung/types-lxml"; 65 + changelog = "https://github.com/abelcheung/types-lxml/releases/tag/${version}"; 66 + license = licenses.asl20; 67 + maintainers = with maintainers; [ fab ]; 68 + }; 69 + }
+4 -2
pkgs/development/tools/analysis/checkov/default.nix
··· 5 5 6 6 python3.pkgs.buildPythonApplication rec { 7 7 pname = "checkov"; 8 - version = "3.2.8"; 8 + version = "3.2.24"; 9 9 pyproject = true; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "bridgecrewio"; 13 13 repo = "checkov"; 14 14 rev = "refs/tags/${version}"; 15 - hash = "sha256-Hd1YOzIH6v8N/oP2cJRUv6OkgOv9aSe7nkvzpsCN3rc="; 15 + hash = "sha256-1v6Mft+FVEGXNQDiulpOvRy3KAD1JPkstjrURlL5r4o="; 16 16 }; 17 17 18 18 patches = [ ··· 20 20 ]; 21 21 22 22 pythonRelaxDeps = [ 23 + "boto3" 24 + "botocore" 23 25 "bc-detect-secrets" 24 26 "bc-python-hcl2" 25 27 "dpath"
+3
pkgs/kde/lib/mk-kde-derivation.nix
··· 108 108 homepage = "https://invent.kde.org/${projectInfo.${pname}.repo_path}"; 109 109 license = lib.filter (l: l != null) (map (l: licensesBySpdxId.${l}) licenseInfo.${pname}); 110 110 maintainers = lib.teams.qt-kde.members; 111 + # Platforms are currently limited to what upstream tests in CI, but can be extended if 112 + # there's interest. 113 + platforms = lib.platforms.linux ++ lib.platforms.freebsd; 111 114 } 112 115 // meta; 113 116 };
+2 -2
pkgs/servers/monitoring/nagios/plugins/check_ssl_cert.nix
··· 17 17 18 18 stdenv.mkDerivation rec { 19 19 pname = "check_ssl_cert"; 20 - version = "2.79.0"; 20 + version = "2.80.0"; 21 21 22 22 src = fetchFromGitHub { 23 23 owner = "matteocorti"; 24 24 repo = "check_ssl_cert"; 25 25 rev = "refs/tags/v${version}"; 26 - hash = "sha256-2NraUEUGyvmEdWCQdzZ5kf+sx/CnSZ54N3zRcCSYhBA="; 26 + hash = "sha256-1KYolUA5AZ9fQLfNb4UE1WlMTj6GiAnNszPTLlERBvc="; 27 27 }; 28 28 29 29 nativeBuildInputs = [
+3 -3
pkgs/servers/monitoring/prometheus/exportarr/default.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "exportarr"; 9 - version = "1.6.1"; 9 + version = "1.6.2"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "onedr0p"; 13 13 repo = "exportarr"; 14 14 rev = "v${version}"; 15 - hash = "sha256-i5ia9GX/0wvLnIwSxZ50y3fTFHwkUzj00+NoEceXp84="; 15 + hash = "sha256-Eacu8NeAAQqztzVpBhW1UeKQU+FBEJcx5+mcaByQid8="; 16 16 }; 17 17 18 - vendorHash = "sha256-2gzHX7XHzgvZXWm7mfakxnsRfpEysQwnZ0mJocLyyoA="; 18 + vendorHash = "sha256-lizPm/3hxKt7ZxKkhbwsj1nL8bWmE90QqRGxTqMSMAw="; 19 19 20 20 subPackages = [ "cmd/exportarr" ]; 21 21
+9 -4
pkgs/tools/inputmethods/ibus/build-without-dbus-launch.patch
··· 1 1 diff --git a/data/dconf/make-dconf-override-db.sh b/data/dconf/make-dconf-override-db.sh 2 - index 601c1c3f..fcb7305d 100755 2 + index 32cb1530..375baa41 100755 3 3 --- a/data/dconf/make-dconf-override-db.sh 4 4 +++ b/data/dconf/make-dconf-override-db.sh 5 - @@ -12,10 +12,6 @@ export XDG_CACHE_HOME="$TMPDIR/cache" 5 + @@ -12,15 +12,6 @@ export XDG_CACHE_HOME="$TMPDIR/cache" 6 6 export GSETTINGS_SCHEMA_DIR="$TMPDIR/schemas" 7 7 mkdir -p $XDG_CONFIG_HOME $XDG_CACHE_HOME $GSETTINGS_SCHEMA_DIR 8 8 9 9 -eval `dbus-launch --sh-syntax` 10 10 - 11 - -trap 'rm -rf $TMPDIR; kill $DBUS_SESSION_BUS_PID' ERR 11 + -trap cleanup EXIT 12 + - 13 + -cleanup() { 14 + - test $? -eq 0 && exit 15 + - rm -rf $TMPDIR; kill $DBUS_SESSION_BUS_PID 16 + -} 12 17 - 13 18 # in case that schema is not installed on the system 14 19 glib-compile-schemas --targetdir "$GSETTINGS_SCHEMA_DIR" "$PWD" 15 20 16 - @@ -52,5 +48,3 @@ if [ -d $TMPDIR/cache/gvfs ] ; then 21 + @@ -57,5 +48,3 @@ if [ -d $TMPDIR/cache/gvfs ] ; then 17 22 umount $TMPDIR/cache/gvfs 18 23 fi 19 24 rm -rf $TMPDIR
+24 -32
pkgs/tools/inputmethods/ibus/default.nix
··· 1 - { lib, stdenv 1 + { lib 2 + , stdenv 2 3 , substituteAll 3 4 , fetchFromGitHub 4 - , fetchpatch 5 5 , autoreconfHook 6 6 , gettext 7 7 , makeWrapper ··· 17 17 , gtk3 18 18 , gtk4 19 19 , gtk-doc 20 + , libdbusmenu-gtk3 20 21 , runCommand 21 22 , isocodes 22 23 , cldr-annotations ··· 26 27 , json-glib 27 28 , libnotify ? null 28 29 , enableUI ? true 29 - , withWayland ? false 30 + , withWayland ? true 30 31 , libxkbcommon 31 32 , wayland 32 33 , buildPackages ··· 46 47 }; 47 48 # make-dconf-override-db.sh needs to execute dbus-launch in the sandbox, 48 49 # it will fail to read /etc/dbus-1/session.conf unless we add this flag 49 - dbus-launch = runCommand "sandbox-dbus-launch" { 50 - nativeBuildInputs = [ makeWrapper ]; 51 - } '' 52 - makeWrapper ${dbus}/bin/dbus-launch $out/bin/dbus-launch \ 53 - --add-flags --config-file=${dbus}/share/dbus-1/session.conf 50 + dbus-launch = runCommand "sandbox-dbus-launch" 51 + { 52 + nativeBuildInputs = [ makeWrapper ]; 53 + } '' 54 + makeWrapper ${dbus}/bin/dbus-launch $out/bin/dbus-launch \ 55 + --add-flags --config-file=${dbus}/share/dbus-1/session.conf 54 56 ''; 55 57 in 56 58 57 59 stdenv.mkDerivation rec { 58 60 pname = "ibus"; 59 - version = "1.5.28"; 61 + version = "1.5.29"; 60 62 61 63 src = fetchFromGitHub { 62 64 owner = "ibus"; 63 65 repo = "ibus"; 64 66 rev = version; 65 - sha256 = "sha256-zjV+QkhVkrHFs9Vt1FpbvmS4nRHxwKaKU3mQkSgyLaQ="; 67 + sha256 = "sha256-d4EUIg0v8rfHdvzG5USc6GLY6QHtQpIJp1PrPaaBxxE="; 66 68 }; 67 69 68 70 patches = [ ··· 72 74 pythonSitePackages = python3.sitePackages; 73 75 }) 74 76 ./build-without-dbus-launch.patch 75 - # unicode and emoji input are broken before 1.5.29 76 - # https://github.com/NixOS/nixpkgs/issues/226526 77 - (fetchpatch { 78 - url = "https://github.com/ibus/ibus/commit/7c8abbe89403c2fcb08e3fda42049a97187e53ab.patch"; 79 - hash = "sha256-59HzAdLq8ahrF7K+tFGLjTodwIiTkJGEkFe8quqIkhU="; 80 - }) 81 - # fix SIGABRT in X11 https://github.com/ibus/ibus/issues/2484 82 - (fetchpatch { 83 - url = "https://github.com/ibus/ibus/commit/8f706d160631f1ffdbfa16543a38b9d5f91c16ad.patch"; 84 - hash = "sha256-YzS9TmUWW0OmheDeCeU00kFK2U2QEmKYMSRJAbu14ec="; 85 - }) 86 - # fix missing key releases in Wine https://github.com/ibus/ibus/issues/2480 87 - (fetchpatch { 88 - url = "https://github.com/ibus/ibus/commit/497f0c74230a65309e22ce5569060ce48310406b.patch"; 89 - hash = "sha256-PAZcUxmzjChs1/K8hXgOcytyS4LYoNL1dtU6X5Tx8ic="; 90 - }) 91 77 ]; 92 78 93 79 outputs = [ "out" "dev" "installedTests" ]; 94 80 95 81 postPatch = '' 82 + # Maintainer does not want to create separate tarballs for final release candidate and release versions, 83 + # so we need to set `ibus_released` to `1` in `configure.ac`. Otherwise, anyone running `ibus version` gets 84 + # a version with an inaccurate `-rcX` suffix. 85 + # https://github.com/ibus/ibus/issues/2584 86 + substituteInPlace configure.ac --replace "m4_define([ibus_released], [0])" "m4_define([ibus_released], [1])" 87 + 96 88 patchShebangs --build data/dconf/make-dconf-override-db.sh 97 89 cp ${buildPackages.gtk-doc}/share/gtk-doc/data/gtk-doc.make . 98 90 substituteInPlace bus/services/org.freedesktop.IBus.session.GNOME.service.in --replace "ExecStart=sh" "ExecStart=${runtimeShell}" ··· 102 94 preAutoreconf = "touch ChangeLog"; 103 95 104 96 configureFlags = [ 97 + # The `AX_PROG_{CC,CXX}_FOR_BUILD` autoconf macros can pick up unwrapped GCC binaries, 98 + # so we set `{CC,CXX}_FOR_BUILD` to override that behavior. 99 + # https://github.com/NixOS/nixpkgs/issues/21751 100 + "CC_FOR_BUILD=${stdenv.cc}/bin/cc" 101 + "CXX_FOR_BUILD=${stdenv.cc}/bin/c++" 105 102 "--disable-memconf" 106 103 (lib.enableFeature (dconf != null) "dconf") 107 104 (lib.enableFeature (libnotify != null) "libnotify") ··· 114 111 "--with-emoji-annotation-dir=${cldr-annotations}/share/unicode/cldr/common/annotations" 115 112 "--with-ucd-dir=${unicode-character-database}/share/unicode" 116 113 ]; 117 - 118 - # missing make dependency 119 - # https://github.com/NixOS/nixpkgs/pull/218120#issuecomment-1514027173 120 - preBuild = '' 121 - make -C src ibusenumtypes.h 122 - ''; 123 114 124 115 makeFlags = [ 125 116 "test_execsdir=${placeholder "installedTests"}/libexec/installed-tests/ibus" ··· 154 145 isocodes 155 146 json-glib 156 147 libnotify 148 + libdbusmenu-gtk3 157 149 ] ++ lib.optionals withWayland [ 158 150 libxkbcommon 159 151 wayland
+2 -2
pkgs/tools/security/ggshield/default.nix
··· 6 6 7 7 python3.pkgs.buildPythonApplication rec { 8 8 pname = "ggshield"; 9 - version = "1.24.0"; 9 + version = "1.25.0"; 10 10 pyproject = true; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "GitGuardian"; 14 14 repo = "ggshield"; 15 15 rev = "refs/tags/v${version}"; 16 - hash = "sha256-N0yokLsp6jRELIPu8w6gvD7V97xiKJl+kLQQB9h2mMY="; 16 + hash = "sha256-D6+0ZYuOiCy5LonP1Ob7PlWmBXvLwU3PODOT6F+70HY="; 17 17 }; 18 18 19 19 pythonRelaxDeps = true;
+3 -3
pkgs/tools/security/trufflehog/default.nix
··· 7 7 8 8 buildGoModule rec { 9 9 pname = "trufflehog"; 10 - version = "3.68.2"; 10 + version = "3.68.3"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "trufflesecurity"; 14 14 repo = "trufflehog"; 15 15 rev = "refs/tags/v${version}"; 16 - hash = "sha256-6gQoyVlLE+cXYwh8lTkL2giDhd3ETgETjT3XuEOwOU8="; 16 + hash = "sha256-gX0NEXRFN9UFqtdKf/2MuqtFYfWQs0H0Foq+IPiMprU="; 17 17 }; 18 18 19 - vendorHash = "sha256-D58WqqDwQo7fRubkGNRhD6g9ooKS9peb2qJJDRXgLtk="; 19 + vendorHash = "sha256-2QHIdVi0hDWxACbzIp+OYSxCC/ZyM3CdhP0abVansBI="; 20 20 21 21 ldflags = [ 22 22 "-s"
+4
pkgs/top-level/all-packages.nix
··· 4777 4777 4778 4778 slurp = callPackage ../tools/wayland/slurp { }; 4779 4779 4780 + sway-unwrapped = callPackage ../by-name/sw/sway-unwrapped/package.nix { 4781 + wlroots = wlroots_0_17; 4782 + }; 4783 + 4780 4784 swaykbdd = callPackage ../tools/wayland/swaykbdd { }; 4781 4785 4782 4786 swayr = callPackage ../tools/wayland/swayr { };
+52
pkgs/top-level/python-packages.nix
··· 2061 2061 2062 2062 chispa = callPackage ../development/python-modules/chispa { }; 2063 2063 2064 + chroma-hnswlib = callPackage ../development/python-modules/chroma-hnswlib { }; 2065 + 2066 + chromadb = callPackage ../development/python-modules/chromadb { }; 2067 + 2064 2068 chromaprint = callPackage ../development/python-modules/chromaprint { }; 2065 2069 2066 2070 ci-info = callPackage ../development/python-modules/ci-info { }; ··· 2921 2925 directv = callPackage ../development/python-modules/directv { }; 2922 2926 2923 2927 dirty-equals = callPackage ../development/python-modules/dirty-equals { }; 2928 + 2929 + dirtyjson = callPackage ../development/python-modules/dirtyjson { }; 2924 2930 2925 2931 discid = callPackage ../development/python-modules/discid { }; 2926 2932 ··· 6670 6676 6671 6677 lizard = callPackage ../development/python-modules/lizard { }; 6672 6678 6679 + llama-index = callPackage ../development/python-modules/llama-index { }; 6680 + 6681 + llama-index-agent-openai = callPackage ../development/python-modules/llama-index-agent-openai { }; 6682 + 6683 + llama-index-cli = callPackage ../development/python-modules/llama-index-cli { }; 6684 + 6685 + llama-index-core = callPackage ../development/python-modules/llama-index-core { }; 6686 + 6687 + llama-index-embeddings-gemini = callPackage ../development/python-modules/llama-index-embeddings-gemini { }; 6688 + 6689 + llama-index-embeddings-google = callPackage ../development/python-modules/llama-index-embeddings-google { }; 6690 + 6691 + llama-index-embeddings-openai = callPackage ../development/python-modules/llama-index-embeddings-openai { }; 6692 + 6693 + llama-index-indices-managed-llama-cloud = callPackage ../development/python-modules/llama-index-indices-managed-llama-cloud { }; 6694 + 6695 + llama-index-legacy = callPackage ../development/python-modules/llama-index-legacy { }; 6696 + 6697 + llama-index-llms-openai = callPackage ../development/python-modules/llama-index-llms-openai { }; 6698 + 6699 + llama-index-multi-modal-llms-openai = callPackage ../development/python-modules/llama-index-multi-modal-llms-openai { }; 6700 + 6701 + llama-index-program-openai = callPackage ../development/python-modules/llama-index-program-openai { }; 6702 + 6703 + llama-index-question-gen-openai = callPackage ../development/python-modules/llama-index-question-gen-openai { }; 6704 + 6705 + llama-index-readers-file = callPackage ../development/python-modules/llama-index-readers-file { }; 6706 + 6707 + llama-index-readers-json = callPackage ../development/python-modules/llama-index-readers-json { }; 6708 + 6709 + llama-index-readers-llama-parse = callPackage ../development/python-modules/llama-index-readers-llama-parse { }; 6710 + 6711 + llama-index-readers-weather = callPackage ../development/python-modules/llama-index-readers-weather { }; 6712 + 6713 + llama-index-vector-stores-chroma = callPackage ../development/python-modules/llama-index-vector-stores-chroma { }; 6714 + 6715 + llama-parse = callPackage ../development/python-modules/llama-parse { }; 6716 + 6717 + llamaindex-py-client = callPackage ../development/python-modules/llamaindex-py-client { }; 6718 + 6673 6719 llfuse = callPackage ../development/python-modules/llfuse { 6674 6720 inherit (pkgs) fuse; 6675 6721 }; ··· 8887 8933 8888 8934 opentelemetry-instrumentation-django = callPackage ../development/python-modules/opentelemetry-instrumentation-django { }; 8889 8935 8936 + opentelemetry-instrumentation-fastapi = callPackage ../development/python-modules/opentelemetry-instrumentation-fastapi { }; 8937 + 8890 8938 opentelemetry-instrumentation-flask = callPackage ../development/python-modules/opentelemetry-instrumentation-flask { }; 8891 8939 8892 8940 opentelemetry-instrumentation-grpc = callPackage ../development/python-modules/opentelemetry-instrumentation-grpc { }; ··· 10090 10138 pudb = callPackage ../development/python-modules/pudb { }; 10091 10139 10092 10140 pulp = callPackage ../development/python-modules/pulp { }; 10141 + 10142 + pulsar-client = callPackage ../development/python-modules/pulsar-client { }; 10093 10143 10094 10144 pulsectl-asyncio = callPackage ../development/python-modules/pulsectl-asyncio { }; 10095 10145 ··· 15749 15799 types-html5lib = callPackage ../development/python-modules/types-html5lib { }; 15750 15800 15751 15801 types-ipaddress = callPackage ../development/python-modules/types-ipaddress { }; 15802 + 15803 + types-lxml = callPackage ../development/python-modules/types-lxml { }; 15752 15804 15753 15805 types-markdown = callPackage ../development/python-modules/types-markdown { }; 15754 15806