nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge remote-tracking branch 'origin/master' into staging-next

+1627 -1124
+1
.mailmap
··· 1 1 Daniel Løvbrøtte Olsen <me@dandellion.xyz> <daniel.olsen99@gmail.com> 2 + Sandro <sandro.jaeckel@gmail.com>
+10
lib/licenses.nix
··· 554 554 free = false; 555 555 }; 556 556 557 + lal12 = { 558 + spdxId = "LAL-1.2"; 559 + fullName = "Licence Art Libre 1.2"; 560 + }; 561 + 562 + lal13 = { 563 + spdxId = "LAL-1.3"; 564 + fullName = "Licence Art Libre 1.3"; 565 + }; 566 + 557 567 lgpl2Only = { 558 568 spdxId = "LGPL-2.0-only"; 559 569 fullName = "GNU Library General Public License v2 only";
+28 -10
nixos/modules/services/system/nscd.nix
··· 27 27 ''; 28 28 }; 29 29 30 + enableNsncd = mkOption { 31 + type = types.bool; 32 + default = false; 33 + description = lib.mdDoc '' 34 + Whether to use nsncd instead of nscd. 35 + This is a nscd-compatible daemon, that proxies lookups, without any caching. 36 + ''; 37 + }; 38 + 30 39 user = mkOption { 31 40 type = types.str; 32 41 default = "nscd"; ··· 60 51 61 52 package = mkOption { 62 53 type = types.package; 63 - default = if pkgs.stdenv.hostPlatform.libc == "glibc" 54 + default = 55 + if pkgs.stdenv.hostPlatform.libc == "glibc" 64 56 then pkgs.stdenv.cc.libc.bin 65 57 else pkgs.glibc.bin; 66 58 defaultText = lib.literalExpression '' ··· 69 59 then pkgs.stdenv.cc.libc.bin 70 60 else pkgs.glibc.bin; 71 61 ''; 72 - description = lib.mdDoc "package containing the nscd binary to be used by the service"; 62 + description = lib.mdDoc '' 63 + package containing the nscd binary to be used by the service. 64 + Ignored when enableNsncd is set to true. 65 + ''; 73 66 }; 74 67 75 68 }; ··· 90 77 group = cfg.group; 91 78 }; 92 79 93 - users.groups.${cfg.group} = {}; 80 + users.groups.${cfg.group} = { }; 94 81 95 82 systemd.services.nscd = 96 - { description = "Name Service Cache Daemon"; 83 + { 84 + description = "Name Service Cache Daemon" 85 + + lib.optionalString cfg.enableNsncd " (nsncd)"; 97 86 98 87 before = [ "nss-lookup.target" "nss-user-lookup.target" ]; 99 88 wants = [ "nss-lookup.target" "nss-user-lookup.target" ]; ··· 104 89 105 90 environment = { LD_LIBRARY_PATH = nssModulesPath; }; 106 91 107 - restartTriggers = [ 92 + restartTriggers = lib.optionals (!cfg.enableNsncd) ([ 108 93 config.environment.etc.hosts.source 109 94 config.environment.etc."nsswitch.conf".source 110 95 config.environment.etc."nscd.conf".source 111 96 ] ++ optionals config.users.mysql.enable [ 112 97 config.environment.etc."libnss-mysql.cfg".source 113 98 config.environment.etc."libnss-mysql-root.cfg".source 114 - ]; 99 + ]); 115 100 116 101 # In some configurations, nscd needs to be started as root; it will 117 102 # drop privileges after all the NSS modules have read their ··· 121 106 # sill want to read their configuration files after the privilege drop 122 107 # and so users can set the owner of those files to the nscd user. 123 108 serviceConfig = 124 - { ExecStart = "!@${cfg.package}/bin/nscd nscd"; 125 - Type = "forking"; 109 + { 110 + ExecStart = 111 + if cfg.enableNsncd then "${pkgs.nsncd}/bin/nsncd" 112 + else "!@${cfg.package}/bin/nscd nscd"; 113 + Type = if cfg.enableNsncd then "notify" else "forking"; 126 114 User = cfg.user; 127 115 Group = cfg.group; 128 116 RemoveIPC = true; ··· 138 120 PIDFile = "/run/nscd/nscd.pid"; 139 121 Restart = "always"; 140 122 ExecReload = 141 - [ "${cfg.package}/bin/nscd --invalidate passwd" 123 + lib.optionals (!cfg.enableNsncd) [ 124 + "${cfg.package}/bin/nscd --invalidate passwd" 142 125 "${cfg.package}/bin/nscd --invalidate group" 143 126 "${cfg.package}/bin/nscd --invalidate hosts" 144 127 ]; 145 128 }; 146 129 }; 147 - 148 130 }; 149 131 }
+8
nixos/modules/services/web-apps/freshrss.nix
··· 155 155 virtualHosts.${cfg.virtualHost} = { 156 156 root = "${cfg.package}/p"; 157 157 158 + # php files handling 159 + # this regex is mandatory because of the API 158 160 locations."~ ^.+?\.php(/.*)?$".extraConfig = '' 159 161 fastcgi_pass unix:${config.services.phpfpm.pools.${cfg.pool}.socket}; 160 162 fastcgi_split_path_info ^(.+\.php)(/.*)$; 163 + # By default, the variable PATH_INFO is not set under PHP-FPM 164 + # But FreshRSS API greader.php need it. If you have a “Bad Request” error, double check this var! 165 + # NOTE: the separate $path_info variable is required. For more details, see: 166 + # https://trac.nginx.org/nginx/ticket/321 167 + set $path_info $fastcgi_path_info; 168 + fastcgi_param PATH_INFO $path_info; 161 169 include ${pkgs.nginx}/conf/fastcgi_params; 162 170 include ${pkgs.nginx}/conf/fastcgi.conf; 163 171 '';
+4 -3
nixos/modules/services/web-servers/apache-httpd/default.nix
··· 168 168 <VirtualHost ${concatMapStringsSep " " (listen: "${listen.ip}:${toString listen.port}") listen}> 169 169 ServerName ${hostOpts.hostName} 170 170 ${concatMapStrings (alias: "ServerAlias ${alias}\n") hostOpts.serverAliases} 171 - ServerAdmin ${adminAddr} 171 + ${optionalString (adminAddr != null) "ServerAdmin ${adminAddr}"} 172 172 <IfModule mod_ssl.c> 173 173 SSLEngine off 174 174 </IfModule> ··· 187 187 <VirtualHost ${concatMapStringsSep " " (listen: "${listen.ip}:${toString listen.port}") listenSSL}> 188 188 ServerName ${hostOpts.hostName} 189 189 ${concatMapStrings (alias: "ServerAlias ${alias}\n") hostOpts.serverAliases} 190 - ServerAdmin ${adminAddr} 190 + ${optionalString (adminAddr != null) "ServerAdmin ${adminAddr}"} 191 191 SSLEngine on 192 192 SSLCertificateFile ${sslServerCert} 193 193 SSLCertificateKeyFile ${sslServerKey} ··· 455 455 }; 456 456 457 457 adminAddr = mkOption { 458 - type = types.str; 458 + type = types.nullOr types.str; 459 459 example = "admin@example.org"; 460 + default = null; 460 461 description = lib.mdDoc "E-mail address of the server administrator."; 461 462 }; 462 463
+1
nixos/modules/services/x11/window-managers/default.nix
··· 23 23 ./fvwm3.nix 24 24 ./hackedbox.nix 25 25 ./herbstluftwm.nix 26 + ./hypr.nix 26 27 ./i3.nix 27 28 ./jwm.nix 28 29 ./leftwm.nix
+25
nixos/modules/services/x11/window-managers/hypr.nix
··· 1 + { config, lib, pkgs, ... }: 2 + 3 + with lib; 4 + 5 + let 6 + cfg = config.services.xserver.windowManager.hypr; 7 + in 8 + { 9 + ###### interface 10 + options = { 11 + services.xserver.windowManager.hypr.enable = mkEnableOption (lib.mdDoc "hypr"); 12 + }; 13 + 14 + ###### implementation 15 + config = mkIf cfg.enable { 16 + services.xserver.windowManager.session = singleton { 17 + name = "hypr"; 18 + start = '' 19 + ${pkgs.hypr}/bin/Hypr & 20 + waitPID=$! 21 + ''; 22 + }; 23 + environment.systemPackages = [ pkgs.hypr ]; 24 + }; 25 + }
+36 -2
nixos/tests/nscd.nix
··· 21 21 192.0.2.1 somehost.test 22 22 ''; 23 23 24 + systemd.services.sockdump = { 25 + wantedBy = [ "multi-user.target" ]; 26 + path = [ 27 + # necessary for bcc to unpack kernel headers and invoke modprobe 28 + pkgs.gnutar 29 + pkgs.xz.bin 30 + pkgs.kmod 31 + ]; 32 + environment.PYTHONUNBUFFERED = "1"; 33 + 34 + serviceConfig = { 35 + ExecStart = "${pkgs.sockdump}/bin/sockdump /var/run/nscd/socket"; 36 + Restart = "on-failure"; 37 + RestartSec = "1"; 38 + Type = "simple"; 39 + }; 40 + }; 41 + 24 42 specialisation = { 25 43 withUnscd.configuration = { ... }: { 26 44 services.nscd.package = pkgs.unscd; 45 + }; 46 + withNsncd.configuration = { ... }: { 47 + services.nscd.enableNsncd = true; 27 48 }; 28 49 }; 29 50 }; ··· 61 40 "systemd-run --pty --property=Type=oneshot --property=DynamicUser=yes --property=User=iamatest whoami" 62 41 ) 63 42 64 - # Test resolution of somehost.test with getent', to make sure we go via nscd 43 + # Test resolution of somehost.test with getent', to make sure we go via 44 + # nscd protocol 65 45 def test_host_lookups(): 66 - with subtest("host lookups via nscd"): 46 + with subtest("host lookups via nscd protocol"): 67 47 # ahosts 68 48 output = machine.succeed("${getent'} ahosts somehost.test") 69 49 assert "192.0.2.1" in output ··· 83 61 # reverse lookups (hosts) 84 62 assert "somehost.test" in machine.succeed("${getent'} hosts 2001:db8::1") 85 63 assert "somehost.test" in machine.succeed("${getent'} hosts 192.0.2.1") 64 + 86 65 87 66 # Test host resolution via nss modules works 88 67 # We rely on nss-myhostname in this case, which resolves *.localhost and ··· 110 87 start_all() 111 88 machine.wait_for_unit("default.target") 112 89 90 + # give sockdump some time to finish attaching. 91 + machine.sleep(5) 92 + 113 93 # Test all tests with glibc-nscd. 114 94 test_dynamic_user() 115 95 test_host_lookups() ··· 129 103 130 104 # known to fail, unscd doesn't load external NSS modules 131 105 # test_nss_myhostname() 106 + 107 + with subtest("nsncd"): 108 + machine.succeed('${specialisations}/withNsncd/bin/switch-to-configuration test') 109 + machine.wait_for_unit("default.target") 110 + 111 + test_dynamic_user() 112 + test_host_lookups() 113 + test_nss_myhostname() 132 114 ''; 133 115 })
+2 -2
pkgs/applications/audio/amarok/default.nix
··· 2 2 , extra-cmake-modules, kdoctools 3 3 , qca-qt5, qjson, qtquickcontrols2, qtscript, qtwebengine 4 4 , karchive, kcmutils, kconfig, kdnssd, kguiaddons, kinit, kirigami2, knewstuff, knotifyconfig, ktexteditor, kwindowsystem 5 - , fftw, phonon, plasma-framework, threadweaver 5 + , fftw, phonon, plasma-framework, threadweaver, breeze-icons 6 6 , curl, ffmpeg, gdk-pixbuf, libaio, liblastfm, libmtp, loudmouth, lzo, lz4, mysql57, pcre, snappy, taglib, taglib_extras 7 7 }: 8 8 ··· 24 24 karchive kcmutils kconfig kdnssd kguiaddons kinit kirigami2 knewstuff knotifyconfig ktexteditor kwindowsystem 25 25 phonon plasma-framework threadweaver 26 26 curl fftw ffmpeg gdk-pixbuf libaio liblastfm libmtp loudmouth lz4 lzo mysql57.server mysql57.server.static 27 - pcre snappy taglib taglib_extras 27 + pcre snappy taglib taglib_extras breeze-icons 28 28 ]; 29 29 30 30 enableParallelBuilding = true;
+27 -5
pkgs/applications/audio/galaxy-buds-client/default.nix
··· 6 6 , fontconfig 7 7 , xorg 8 8 , libglvnd 9 + , makeDesktopItem 10 + , copyDesktopItems 11 + , graphicsmagick 9 12 }: 10 13 11 14 buildDotnetModule rec { ··· 26 23 nugetDeps = ./deps.nix; 27 24 dotnetFlags = [ "-p:Runtimeidentifier=linux-x64" ]; 28 25 29 - nativeBuildInputs = [ autoPatchelfHook ]; 30 - 31 - buildInputs = [ 32 - stdenv.cc.cc.lib 33 - fontconfig 26 + nativeBuildInputs = [ 27 + autoPatchelfHook 28 + copyDesktopItems 29 + graphicsmagick 34 30 ]; 31 + 32 + buildInputs = [ stdenv.cc.cc.lib fontconfig ]; 35 33 36 34 runtimeDeps = [ 37 35 libglvnd ··· 41 37 xorg.libX11 42 38 ]; 43 39 40 + postFixup = '' 41 + mkdir -p $out/share/icons/hicolor/256x256/apps/ 42 + gm convert $src/GalaxyBudsClient/Resources/icon_white.ico $out/share/icons/hicolor/256x256/apps/${meta.mainProgram}.png 43 + ''; 44 + 45 + desktopItems = makeDesktopItem { 46 + name = meta.mainProgram; 47 + exec = meta.mainProgram; 48 + icon = meta.mainProgram; 49 + desktopName = meta.mainProgram; 50 + genericName = "Galaxy Buds Client"; 51 + comment = meta.description; 52 + type = "Application"; 53 + categories = [ "Settings" ]; 54 + startupNotify = true; 55 + }; 56 + 44 57 meta = with lib; { 58 + mainProgram = "GalaxyBudsClient"; 45 59 description = "Unofficial Galaxy Buds Manager for Windows and Linux"; 46 60 homepage = "https://github.com/ThePBone/GalaxyBudsClient"; 47 61 license = licenses.gpl3;
+93 -81
pkgs/applications/editors/vim/plugins/generated.nix
··· 341 341 342 342 SpaceVim = buildVimPluginFrom2Nix { 343 343 pname = "SpaceVim"; 344 - version = "2022-10-20"; 344 + version = "2022-10-21"; 345 345 src = fetchFromGitHub { 346 346 owner = "SpaceVim"; 347 347 repo = "SpaceVim"; 348 - rev = "48c818a86224fd9b061092509db8706b5ae9f6bc"; 349 - sha256 = "17g4w29vgmgl3l5cwy7m8ylrm79jnz9yrr9rn60wxdf28zrig1gm"; 348 + rev = "b488dd5aeb787e030052a0583a345aa33c580b83"; 349 + sha256 = "0spa9nb93ksbap177prwcicixf522dzkmlzq7flgb92yfh2hwm8b"; 350 350 }; 351 351 meta.homepage = "https://github.com/SpaceVim/SpaceVim/"; 352 352 }; ··· 486 486 487 487 aerial-nvim = buildVimPluginFrom2Nix { 488 488 pname = "aerial.nvim"; 489 - version = "2022-10-19"; 489 + version = "2022-10-21"; 490 490 src = fetchFromGitHub { 491 491 owner = "stevearc"; 492 492 repo = "aerial.nvim"; 493 - rev = "d35799b510f6582f24765dcb8b293fc4988ccc41"; 494 - sha256 = "19njckq33dsjsr0xh8mq0vzsa25wv57ksykwxiia1afg9qnjvg0l"; 493 + rev = "832024bdccf414d786eabdf2a05f2f117581cb36"; 494 + sha256 = "1idxkjh3j3rzh47zlm0fc3nnbj7jzyg643xi8fap72sv597h07vd"; 495 495 }; 496 496 meta.homepage = "https://github.com/stevearc/aerial.nvim/"; 497 497 }; ··· 702 702 703 703 aurora = buildVimPluginFrom2Nix { 704 704 pname = "aurora"; 705 - version = "2022-09-06"; 705 + version = "2022-10-20"; 706 706 src = fetchFromGitHub { 707 707 owner = "ray-x"; 708 708 repo = "aurora"; 709 - rev = "298394e61d57b6cc0a050c91e30475f0aeb421ef"; 710 - sha256 = "001l0m5z2vg5kpnbvikj033x3qg52yn3b2lsb8fpyqbnjs2r8nma"; 709 + rev = "e2f3b33f0a3ec1a33cc1c290951e50e287037036"; 710 + sha256 = "0p9fa6jsvign3r470www78m8dxkc8mrq9w10q6nr52slzzp2m382"; 711 711 }; 712 712 meta.homepage = "https://github.com/ray-x/aurora/"; 713 713 }; ··· 1722 1722 1723 1723 coc-nvim = buildVimPluginFrom2Nix { 1724 1724 pname = "coc.nvim"; 1725 - version = "2022-10-20"; 1725 + version = "2022-10-21"; 1726 1726 src = fetchFromGitHub { 1727 1727 owner = "neoclide"; 1728 1728 repo = "coc.nvim"; 1729 - rev = "853afde8027fda3eb687ea076fa4f5755c68e781"; 1730 - sha256 = "1xgyi751dgjy9x5c1nfn5rcrcxm76f7fbx04qqmrivjjlqpg9a4k"; 1729 + rev = "84739fd4059e3a8b0ed1b2ac7eba7c8a2ad76c79"; 1730 + sha256 = "0pc1183ydmn2c06zl2zgxlidcrw6fw104fxi868fifbvm13q3sd9"; 1731 1731 }; 1732 1732 meta.homepage = "https://github.com/neoclide/coc.nvim/"; 1733 1733 }; ··· 1794 1794 1795 1795 command-t = buildVimPluginFrom2Nix { 1796 1796 pname = "command-t"; 1797 - version = "2022-10-07"; 1797 + version = "2022-10-21"; 1798 1798 src = fetchFromGitHub { 1799 1799 owner = "wincent"; 1800 1800 repo = "command-t"; 1801 - rev = "f8d67e234aa39856ce62246cd4bf1c76f8b46245"; 1802 - sha256 = "1iq34bysnkl65gvdpsfqgimvmnpq964654c0g1ijjc0ayfk1yyd8"; 1801 + rev = "e8d4847f0ca246a605c720b4a740b57f7cdb3a65"; 1802 + sha256 = "18ih0wc7gk8kvx9bhafbdajb6jf225l25rjfjamwy83i4kcn4xl0"; 1803 1803 }; 1804 1804 meta.homepage = "https://github.com/wincent/command-t/"; 1805 1805 }; ··· 1878 1878 1879 1879 compiler-explorer-nvim = buildVimPluginFrom2Nix { 1880 1880 pname = "compiler-explorer.nvim"; 1881 - version = "2022-10-15"; 1881 + version = "2022-10-20"; 1882 1882 src = fetchFromGitHub { 1883 1883 owner = "krady21"; 1884 1884 repo = "compiler-explorer.nvim"; 1885 - rev = "356f876ef4ef194503b2e23d27af9f55c5faff32"; 1886 - sha256 = "03kbf8vrb7ws18k6w2d4zrbj0318qr82xgqxw9yfqsb4wzx8b5jx"; 1885 + rev = "70476109b783123a3a5cc1294cb7e0f2921d9f51"; 1886 + sha256 = "07pxg4k6sinhwg6n5xjk2by3pmfm545ybji9map81iqw2m3k2v3h"; 1887 1887 }; 1888 1888 meta.homepage = "https://github.com/krady21/compiler-explorer.nvim/"; 1889 1889 }; ··· 2010 2010 2011 2011 coq-artifacts = buildVimPluginFrom2Nix { 2012 2012 pname = "coq.artifacts"; 2013 - version = "2022-10-20"; 2013 + version = "2022-10-21"; 2014 2014 src = fetchFromGitHub { 2015 2015 owner = "ms-jpq"; 2016 2016 repo = "coq.artifacts"; 2017 - rev = "7d3a56b9eaaa99c8c73d4838630f46e81a016362"; 2018 - sha256 = "0kxv53wnjxms3pn0dwg2z36f1lraw0fgxax4lb5i52mhwn7vg2qg"; 2017 + rev = "340c074eedb58c72aecba13acdb17e6d34779898"; 2018 + sha256 = "1p6ivb9amaassvmfz8117k3bxyf5x18zay75fc6h1f4vdm594g6c"; 2019 2019 }; 2020 2020 meta.homepage = "https://github.com/ms-jpq/coq.artifacts/"; 2021 2021 }; 2022 2022 2023 2023 coq-thirdparty = buildVimPluginFrom2Nix { 2024 2024 pname = "coq.thirdparty"; 2025 - version = "2022-10-20"; 2025 + version = "2022-10-21"; 2026 2026 src = fetchFromGitHub { 2027 2027 owner = "ms-jpq"; 2028 2028 repo = "coq.thirdparty"; 2029 - rev = "5cbf8a2b67246dca9611b19000df9d1d04922cab"; 2030 - sha256 = "1j0bja06gpnyqh0qb6kq1grmf0dr8p4k63w1rxjynj1fnnvp3vcs"; 2029 + rev = "37d29e9ab0f1f4db7ce10ec116c14e8c74584142"; 2030 + sha256 = "0b9h9ggxkrkdavg0h9dpkm8nkicmdz7lk3ix18xl9br2vmlah3bb"; 2031 2031 }; 2032 2032 meta.homepage = "https://github.com/ms-jpq/coq.thirdparty/"; 2033 2033 }; ··· 2046 2046 2047 2047 coq_nvim = buildVimPluginFrom2Nix { 2048 2048 pname = "coq_nvim"; 2049 - version = "2022-10-20"; 2049 + version = "2022-10-21"; 2050 2050 src = fetchFromGitHub { 2051 2051 owner = "ms-jpq"; 2052 2052 repo = "coq_nvim"; 2053 - rev = "1a07d8454d620b386ed9c04c41097862b0d0ace4"; 2054 - sha256 = "13maibc8vdd5gs194dmh2jdynjv4xryr6wjavryq2bfzh5kx6xx8"; 2053 + rev = "a6e5c0921f58fa6bee85d3c33915d8397125dc0e"; 2054 + sha256 = "1hgnbz7dk8ac5klqjdc85m149vlhdjqfrxx1l8kcxxraws3zzfsk"; 2055 2055 }; 2056 2056 meta.homepage = "https://github.com/ms-jpq/coq_nvim/"; 2057 2057 }; ··· 2608 2608 sha256 = "02hclsqqj78pa12yf1xj0m19nnkkcwfz3v866d78jk4sniwh2sqw"; 2609 2609 }; 2610 2610 meta.homepage = "https://github.com/doki-theme/doki-theme-vim/"; 2611 + }; 2612 + 2613 + dracula-nvim = buildVimPluginFrom2Nix { 2614 + pname = "dracula.nvim"; 2615 + version = "2022-10-21"; 2616 + src = fetchFromGitHub { 2617 + owner = "Mofiqul"; 2618 + repo = "dracula.nvim"; 2619 + rev = "ca1fc7a554386c2d31996ee28c8ad70731117bce"; 2620 + sha256 = "11jzhzr0yx67gci3gbxzif9hyvk7pw533ii0r24wbfv7nh9dvqh6"; 2621 + }; 2622 + meta.homepage = "https://github.com/Mofiqul/dracula.nvim/"; 2611 2623 }; 2612 2624 2613 2625 dressing-nvim = buildVimPluginFrom2Nix { ··· 4366 4354 4367 4355 lsp_signature-nvim = buildVimPluginFrom2Nix { 4368 4356 pname = "lsp_signature.nvim"; 4369 - version = "2022-08-15"; 4357 + version = "2022-10-21"; 4370 4358 src = fetchFromGitHub { 4371 4359 owner = "ray-x"; 4372 4360 repo = "lsp_signature.nvim"; 4373 - rev = "e65a63858771db3f086c8d904ff5f80705fd962b"; 4374 - sha256 = "17qxn2ldvh1gas3i55vigqsz4mm7sxfl721v7lix9xs9bqgm73n1"; 4361 + rev = "ad1f9b413e27a8cb86893326e7b02982c69fe3f3"; 4362 + sha256 = "0w0pww74n9abxkbqwfcp2fllaixvcw8972van8mcnj3qhmg743yi"; 4375 4363 }; 4376 4364 meta.homepage = "https://github.com/ray-x/lsp_signature.nvim/"; 4377 4365 }; ··· 4547 4535 4548 4536 mini-nvim = buildVimPluginFrom2Nix { 4549 4537 pname = "mini.nvim"; 4550 - version = "2022-10-14"; 4538 + version = "2022-10-21"; 4551 4539 src = fetchFromGitHub { 4552 4540 owner = "echasnovski"; 4553 4541 repo = "mini.nvim"; 4554 - rev = "1a911c2e710b6b3a4b673ab2f47911faa06f5286"; 4555 - sha256 = "1n5plkqywsmrr2ji1f0mvgc3yjd984xdm2vkniyq04rhyw5mshz8"; 4542 + rev = "8087764d8c38cfa604511f57dab51ad64316c16c"; 4543 + sha256 = "09ycmhdb7rihb0dldl6pma6b8z6arx7pbh2i41avp3r30lgnxnv4"; 4556 4544 }; 4557 4545 meta.homepage = "https://github.com/echasnovski/mini.nvim/"; 4558 4546 }; ··· 4907 4895 4908 4896 neodev-nvim = buildVimPluginFrom2Nix { 4909 4897 pname = "neodev.nvim"; 4910 - version = "2022-10-20"; 4898 + version = "2022-10-21"; 4911 4899 src = fetchFromGitHub { 4912 4900 owner = "folke"; 4913 4901 repo = "neodev.nvim"; 4914 - rev = "218d9b06f6b91a0d5b9d8d9c165c5c286f9521ea"; 4915 - sha256 = "0m88ykblj7nssw7l6492h742zl8cm0mhv23sb1nj73m5x95h4d4c"; 4902 + rev = "97ebf23c0d4f5a11f1d68a5abd468751b14980a1"; 4903 + sha256 = "023ndb3y0ak4id4svzj3g9lqlp8azp7bsb6y9h17mglll9kh6mdr"; 4916 4904 }; 4917 4905 meta.homepage = "https://github.com/folke/neodev.nvim/"; 4918 4906 }; 4919 4907 4920 4908 neoformat = buildVimPluginFrom2Nix { 4921 4909 pname = "neoformat"; 4922 - version = "2022-09-01"; 4910 + version = "2022-10-21"; 4923 4911 src = fetchFromGitHub { 4924 4912 owner = "sbdchd"; 4925 4913 repo = "neoformat"; 4926 - rev = "0ae951121da29a157d80db70c32679b428afffdc"; 4927 - sha256 = "1nslf2wfj0z4qq7zgqcx62gb31px6sqqb8rk1a10j3ply5bc7r67"; 4914 + rev = "c4be749032b39a34ad89dddacda2f93a85d43a93"; 4915 + sha256 = "19f921m51943v731mmbzvknfjwrra2vjz3ppxzh935r3cq9l8ca0"; 4928 4916 }; 4929 4917 meta.homepage = "https://github.com/sbdchd/neoformat/"; 4930 4918 }; ··· 4991 4979 4992 4980 neorg = buildVimPluginFrom2Nix { 4993 4981 pname = "neorg"; 4994 - version = "2022-10-17"; 4982 + version = "2022-10-20"; 4995 4983 src = fetchFromGitHub { 4996 4984 owner = "nvim-neorg"; 4997 4985 repo = "neorg"; 4998 - rev = "49d0b5a3acf94f349a7351042d42933bf1047ad5"; 4999 - sha256 = "1a7w5jvfm89d423a3f6mjf2yf2bqx24wvignpkq3hlzzkkyvrc4g"; 4986 + rev = "9b3ea123f738391f78968e95402368c7ee48db65"; 4987 + sha256 = "05l26h1q9z5yfx70vzvkcmqd5v5j4j7napdxbjmp8pxad2yghc8q"; 5000 4988 }; 5001 4989 meta.homepage = "https://github.com/nvim-neorg/neorg/"; 5002 4990 }; ··· 5051 5039 5052 5040 neovim-ayu = buildVimPluginFrom2Nix { 5053 5041 pname = "neovim-ayu"; 5054 - version = "2022-10-01"; 5042 + version = "2022-10-20"; 5055 5043 src = fetchFromGitHub { 5056 5044 owner = "Shatur"; 5057 5045 repo = "neovim-ayu"; 5058 - rev = "bae6314522e47172564203d4f1c56dc1e39c1c14"; 5059 - sha256 = "0hwhcdswa5msxndcfcn68dq8aj6gka7vmfcvbnaxmwza23ik09cd"; 5046 + rev = "08ae56d07f175ac997324e89dd25229f7ab1bdfa"; 5047 + sha256 = "0kklva47g1jf9ab1psgbxfw3w995kvg54jxzc9zplj4z8ppmp4hw"; 5060 5048 }; 5061 5049 meta.homepage = "https://github.com/Shatur/neovim-ayu/"; 5062 5050 }; ··· 5219 5207 5220 5208 noice-nvim = buildVimPluginFrom2Nix { 5221 5209 pname = "noice.nvim"; 5222 - version = "2022-10-20"; 5210 + version = "2022-10-21"; 5223 5211 src = fetchFromGitHub { 5224 5212 owner = "folke"; 5225 5213 repo = "noice.nvim"; 5226 - rev = "b10055a599af8d86ea0ae75bc2abb953ba20acbc"; 5227 - sha256 = "15c0jcyhklrf4h4mid1a3049257rkvlbsbabrcfk10g0kad71kai"; 5214 + rev = "dbb13d8fd7ff5329dbcd789ab01f460cf580ae1a"; 5215 + sha256 = "00iw8lc9d6cn5qad4iqxkf2553k6fpk0ygf9h9bhzr3xyx0bnwpb"; 5228 5216 }; 5229 5217 meta.homepage = "https://github.com/folke/noice.nvim/"; 5230 5218 }; ··· 5639 5627 5640 5628 nvim-hlslens = buildVimPluginFrom2Nix { 5641 5629 pname = "nvim-hlslens"; 5642 - version = "2022-10-09"; 5630 + version = "2022-10-19"; 5643 5631 src = fetchFromGitHub { 5644 5632 owner = "kevinhwang91"; 5645 5633 repo = "nvim-hlslens"; 5646 - rev = "8b67dd488cc4633dc3580b44bf0b30d002a2ba29"; 5647 - sha256 = "1wwk0sxd3j4fpndill5hbdq1rwmjfv8x8hmajvsxdnpc8skvyzxa"; 5634 + rev = "75cf2f7dfc640f23e476cedc3f9784ce02f4f88b"; 5635 + sha256 = "1s24x17041dhgpkql43ma33bamqr54n6g3ggl3qndqby07zp66r1"; 5648 5636 }; 5649 5637 meta.homepage = "https://github.com/kevinhwang91/nvim-hlslens/"; 5650 5638 }; ··· 5747 5735 5748 5736 nvim-lspconfig = buildVimPluginFrom2Nix { 5749 5737 pname = "nvim-lspconfig"; 5750 - version = "2022-10-20"; 5738 + version = "2022-10-21"; 5751 5739 src = fetchFromGitHub { 5752 5740 owner = "neovim"; 5753 5741 repo = "nvim-lspconfig"; 5754 - rev = "3592f769f2d6b07ce3083744cd0a13442f5d4f43"; 5755 - sha256 = "1sbk30f3ajpks6wxyj1gh9b11si59hmffn12wd7a00zvgbgqa4vr"; 5742 + rev = "ee2e8c63cff0a8bfc7f4ef985ea466f10bb7e691"; 5743 + sha256 = "19mx9dg9x1yp0rvvh83xxkkb92w7wqdw6i79ncfiffigplwlcfmi"; 5756 5744 }; 5757 5745 meta.homepage = "https://github.com/neovim/nvim-lspconfig/"; 5758 5746 }; ··· 5967 5955 src = fetchFromGitHub { 5968 5956 owner = "nvim-treesitter"; 5969 5957 repo = "nvim-treesitter"; 5970 - rev = "d49495fe72cbcedc944eece3611005dc0fa6acda"; 5971 - sha256 = "1ngh7dlgppicdf5f5zs26wpyc2h0pqkqmgkhq288j7ic9lpw4z5x"; 5958 + rev = "c4c358e9badb181f4a05a4d8fd0c986a1cf5001b"; 5959 + sha256 = "1wqxnnl55ms46dfjag93knmnbvc19z4vyb9nhaj0iz70n24s0qd7"; 5972 5960 }; 5973 5961 meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter/"; 5974 5962 }; ··· 6203 6191 6204 6192 onedarkpro-nvim = buildVimPluginFrom2Nix { 6205 6193 pname = "onedarkpro.nvim"; 6206 - version = "2022-10-19"; 6194 + version = "2022-10-21"; 6207 6195 src = fetchFromGitHub { 6208 6196 owner = "olimorris"; 6209 6197 repo = "onedarkpro.nvim"; 6210 - rev = "050e23fa587ee959387fe8d67711f189caa5704b"; 6211 - sha256 = "0l7xb55r7jya594c06jswbvqk06cma2b50zhl0vw57fagir2258m"; 6198 + rev = "e9478c3e39ebeef1799f021f65eac44c39c0e5bc"; 6199 + sha256 = "0v99ysgapaq1w3249wlc4b2dm04zv8mn2f9l5b78vncgvvwi6ipf"; 6212 6200 }; 6213 6201 meta.homepage = "https://github.com/olimorris/onedarkpro.nvim/"; 6214 6202 }; ··· 9072 9060 owner = "flazz"; 9073 9061 repo = "vim-colorschemes"; 9074 9062 rev = "fd8f122cef604330c96a6a6e434682dbdfb878c9"; 9075 - sha256 = "0kpsf6j20fgblc8vhqn7ymr52v2d1h52vc7rbxmxfwdm80nvv3g5"; 9063 + sha256 = "1cg8q7w0vgl73aw1b9zz0zh5vw5d2pm8pm54fhfzva4azg56f416"; 9076 9064 }; 9077 9065 meta.homepage = "https://github.com/flazz/vim-colorschemes/"; 9078 9066 }; ··· 11002 10990 11003 10991 vim-ocaml = buildVimPluginFrom2Nix { 11004 10992 pname = "vim-ocaml"; 11005 - version = "2022-08-04"; 10993 + version = "2022-10-21"; 11006 10994 src = fetchFromGitHub { 11007 10995 owner = "ocaml"; 11008 10996 repo = "vim-ocaml"; 11009 - rev = "755d96ccebbe08fb0e25d0d4f8ffaf0cf86e3217"; 11010 - sha256 = "0ndvrnkdk5mfkyifm0dvi0fsn0kc40hmz3nqadn4w894nl09cdxn"; 10997 + rev = "c0653e22a1b935d5dfef6ab61c6788e90d24baed"; 10998 + sha256 = "1mvvcms3snzc2ki3x28dx85hqx59b6k3sdiyd9359sja44fnl34j"; 11011 10999 }; 11012 11000 meta.homepage = "https://github.com/ocaml/vim-ocaml/"; 11013 11001 }; ··· 12827 12815 12828 12816 vimspector = buildVimPluginFrom2Nix { 12829 12817 pname = "vimspector"; 12830 - version = "2022-10-11"; 12818 + version = "2022-10-21"; 12831 12819 src = fetchFromGitHub { 12832 12820 owner = "puremourning"; 12833 12821 repo = "vimspector"; 12834 - rev = "2e309e74c16700cfc5e2c32541e29b95f0a5bdd3"; 12835 - sha256 = "1mzyv9xami4y1mjj1hs2vwgfkam9gsvgv1rilb3rkihbzpk89aw0"; 12822 + rev = "9c245831abf8b2685121101888dd4814c853fddc"; 12823 + sha256 = "0jjplsl3isvqq247fh0zf28dh9s1l06ygrn345nijkl0fasspr7y"; 12836 12824 fetchSubmodules = true; 12837 12825 }; 12838 12826 meta.homepage = "https://github.com/puremourning/vimspector/"; ··· 12840 12828 12841 12829 vimtex = buildVimPluginFrom2Nix { 12842 12830 pname = "vimtex"; 12843 - version = "2022-10-18"; 12831 + version = "2022-10-20"; 12844 12832 src = fetchFromGitHub { 12845 12833 owner = "lervag"; 12846 12834 repo = "vimtex"; 12847 - rev = "aacc06295f4790ebeec166462cc775d716c1b0e7"; 12848 - sha256 = "0jfmzf6yqzp7css82ihjci4rcxsjc5laf3rbkabvd6dsa5qjbbl7"; 12835 + rev = "caaea7e9df67113b53207d4a9454ebce09eb63d2"; 12836 + sha256 = "152wb08g31fvp3n8r6v5mnnqcm0vdvj9wj0qaaw80jsys1qp1dq3"; 12849 12837 }; 12850 12838 meta.homepage = "https://github.com/lervag/vimtex/"; 12851 12839 }; ··· 12948 12936 12949 12937 which-key-nvim = buildVimPluginFrom2Nix { 12950 12938 pname = "which-key.nvim"; 12951 - version = "2022-09-18"; 12939 + version = "2022-10-21"; 12952 12940 src = fetchFromGitHub { 12953 12941 owner = "folke"; 12954 12942 repo = "which-key.nvim"; 12955 - rev = "6885b669523ff4238de99a7c653d47b081b5506d"; 12956 - sha256 = "1fwb3mmc190xam96jm743ml56idx3zvqmxf8j61yhb8879879rj6"; 12943 + rev = "26eb5300565b7bc1f5d8163ef2c49d6f0a14bc5f"; 12944 + sha256 = "0agfa4nbfwrq7zczzr93653gpk4x8i5vgv628fh1nif26idgqwki"; 12957 12945 }; 12958 12946 meta.homepage = "https://github.com/folke/which-key.nvim/"; 12959 12947 }; ··· 13189 13177 13190 13178 catppuccin-nvim = buildVimPluginFrom2Nix { 13191 13179 pname = "catppuccin-nvim"; 13192 - version = "2022-10-20"; 13180 + version = "2022-10-21"; 13193 13181 src = fetchFromGitHub { 13194 13182 owner = "catppuccin"; 13195 13183 repo = "nvim"; 13196 - rev = "56604126c671aac3bebd6a33c9d1c55ac9359ce1"; 13197 - sha256 = "0czkqads8i9m0vc2np55glay0s6ii1y6nbb07sr9ck356qj6ix40"; 13184 + rev = "c9c272f8f53968473873478591bfb4f5c1418370"; 13185 + sha256 = "019kg05yczcshm7s1dw4dnc05vdglk4yk548r98mq38ara8vjb3h"; 13198 13186 }; 13199 13187 meta.homepage = "https://github.com/catppuccin/nvim/"; 13200 13188 }; ··· 13213 13201 13214 13202 chad = buildVimPluginFrom2Nix { 13215 13203 pname = "chad"; 13216 - version = "2022-10-20"; 13204 + version = "2022-10-21"; 13217 13205 src = fetchFromGitHub { 13218 13206 owner = "ms-jpq"; 13219 13207 repo = "chadtree"; 13220 - rev = "d028cffc3dfb9f78187c6bb3c57013af3e8ab081"; 13221 - sha256 = "0l9x1kvjbsg6c2d9ww6hmf0qz8v5r34g80agqw8is5nvmbsqfa8j"; 13208 + rev = "ccf090af9b708b9ad3531527ec69e12e6d8c58fa"; 13209 + sha256 = "06k75radisg84mzb0254b9c8mm2d3j5hsmcyn74h7d53m1ccvwg0"; 13222 13210 }; 13223 13211 meta.homepage = "https://github.com/ms-jpq/chadtree/"; 13224 13212 }; ··· 13285 13273 13286 13274 rose-pine = buildVimPluginFrom2Nix { 13287 13275 pname = "rose-pine"; 13288 - version = "2022-10-03"; 13276 + version = "2022-10-20"; 13289 13277 src = fetchFromGitHub { 13290 13278 owner = "rose-pine"; 13291 13279 repo = "neovim"; 13292 - rev = "69dca24ba7f8e74f1e6f0bacbc93481ac4047f2e"; 13293 - sha256 = "1n6q7h53zbbybyi219hamagpycasvnnxjgvifsdrxw7825zdnlsy"; 13280 + rev = "82c86091b4dd999761a0494408d30e39a51f49c2"; 13281 + sha256 = "125lv3hb1vimv1bfx8dxmiap97dihm28fkhh4na98i5hjf7lhqas"; 13294 13282 }; 13295 13283 meta.homepage = "https://github.com/rose-pine/neovim/"; 13296 13284 };
+1
pkgs/applications/editors/vim/plugins/vim-plugin-names
··· 218 218 https://github.com/sindrets/diffview.nvim/,, 219 219 https://github.com/direnv/direnv.vim/,, 220 220 https://github.com/doki-theme/doki-theme-vim/,, 221 + https://github.com/Mofiqul/dracula.nvim/,HEAD, 221 222 https://github.com/stevearc/dressing.nvim/,, 222 223 https://github.com/Shougo/echodoc.vim/,, 223 224 https://github.com/sainnhe/edge/,,
+15 -4
pkgs/applications/misc/faircamp/default.nix
··· 2 2 , rustPlatform 3 3 , fetchgit 4 4 , makeWrapper 5 + , pkg-config 6 + , glib 7 + , libopus 8 + , vips 5 9 , ffmpeg 6 10 , callPackage 7 11 , unstableGitUpdater ··· 13 9 14 10 rustPlatform.buildRustPackage { 15 11 pname = "faircamp"; 16 - version = "unstable-2022-07-22"; 12 + version = "unstable-2022-10-08"; 17 13 18 14 # TODO when switching to a stable release, use fetchFromGitea and add a 19 15 # version test. Meanwhile, fetchgit is used to make unstableGitUpdater work. 20 16 src = fetchgit { 21 17 url = "https://codeberg.org/simonrepp/faircamp.git"; 22 - rev = "4803b6e0b59c1fc9922d1e498743a0171d7f324d"; 23 - sha256 = "sha256-VliBGYZPoX65JURlBaVMCMB5DuE/gqr27KcEzAVRFxc="; 18 + rev = "630415985127298bf82bfc210d2fc8b214758db1"; 19 + sha256 = "sha256-4pzDey0iV7LtHI0rbbcCjjuTaFt0CR88Vl0B1RU96v0="; 24 20 }; 25 21 26 - cargoHash = "sha256-fs7CXw6CS+TtMxLtDaQiYY6fiBFl4RCttymQJDAm6dg="; 22 + cargoHash = "sha256-GgWxxKHLGtsSGVbhli6HTfUu4TmbY4J9N7UA7AOzUkc="; 27 23 28 24 nativeBuildInputs = [ 29 25 makeWrapper 26 + pkg-config 27 + ]; 28 + 29 + buildInputs = [ 30 + glib 31 + libopus 32 + vips 30 33 ]; 31 34 32 35 postInstall = ''
+25
pkgs/applications/misc/huggle/00-remove-third-party.patch
··· 1 + diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt 2 + index a37976e..5669366 100644 3 + --- a/src/CMakeLists.txt 4 + +++ b/src/CMakeLists.txt 5 + @@ -59,16 +59,12 @@ if(NOT MINGW AND WIN32) 6 + set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_DEBUG ${CMAKE_CURRENT_BINARY_DIR}/Debug) 7 + endif() 8 + 9 + -add_subdirectory(3rd/libirc/libirc libirc) 10 + -add_subdirectory(3rd/libirc/libircclient libircclient) 11 + +include_directories(@libirc_includes@) 12 + 13 + # YAML 14 + -option(YAML_CPP_BUILD_TOOLS "Disable tests" OFF) 15 + -option(YAML_CPP_BUILD_TESTS "Enable testing" OFF) 16 + -option(YAML_CPP_BUILD_TOOLS "Enable parse tools" OFF) 17 + -option(BUILD_SHARED_LIBS "Build as shared" ON) 18 + -include_directories("3rd/yaml-cpp/include/") 19 + -add_subdirectory(3rd/yaml-cpp) 20 + +find_package(YAML-CPP 0.6.3 QUIET) 21 + +include_directories(YAML_CPP_INCLUDE_DIR) 22 + + 23 + if (HUGGLE_EXT) 24 + if(NOT MINGW AND WIN32) 25 + set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_RELEASE ${CMAKE_CURRENT_BINARY_DIR}/Release/extensions)
+13
pkgs/applications/misc/huggle/01-extensions.patch
··· 1 + diff --git a/src/huggle_core/definitions_prod.hpp b/src/huggle_core/definitions_prod.hpp 2 + index 1fc5b1fb..17881ade 100644 3 + --- a/src/huggle_core/definitions_prod.hpp 4 + +++ b/src/huggle_core/definitions_prod.hpp 5 + @@ -216,7 +216,7 @@ namespace std { typedef decltype(nullptr) nullptr_t; } 6 + #define HUGGLE_GLOBAL_EXTENSION_PATH QCoreApplication::applicationDirPath() + "/extensions" 7 + #elif defined __linux__ 8 + #define HUGGLE_UPDATER_PLATFORM_TYPE "linux" 9 + - #define HUGGLE_GLOBAL_EXTENSION_PATH "/usr/local/share/huggle/extensions" 10 + + #define HUGGLE_GLOBAL_EXTENSION_PATH "@out@/share/huggle/extensions" 11 + #elif defined HUGGLE_WIN 12 + // This is needed by yaml cpp library, otherwise it won't build with MSVC 13 + #define YAML_CPP_DLL
+63
pkgs/applications/misc/huggle/default.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , pkg-config 5 + , ncurses 6 + , which 7 + , cmake 8 + , unzip 9 + , wrapQtAppsHook 10 + , qtwebengine 11 + , libyamlcpp 12 + , libirc 13 + }: 14 + 15 + stdenv.mkDerivation rec { 16 + pname = "huggle"; 17 + version = "3.4.10"; 18 + 19 + src = fetchFromGitHub { 20 + owner = "huggle"; 21 + repo = "huggle3-qt-lx"; 22 + rev = version; 23 + sha256 = "UzoX4kdzYU50W0MUhfpo0HaSfvG3eINNC8u5t/gKuqI="; 24 + fetchSubmodules = true; 25 + }; 26 + 27 + nativeBuildInputs = [ 28 + wrapQtAppsHook 29 + pkg-config 30 + which 31 + cmake 32 + ]; 33 + buildInputs = [ ncurses libyamlcpp qtwebengine libirc ]; 34 + 35 + patches = [ ./00-remove-third-party.patch ./01-extensions.patch ]; 36 + postPatch = '' 37 + rm -r src/3rd 38 + echo ${version} > src/huggle_core/version.txt 39 + substituteInPlace src/huggle_core/definitions_prod.hpp --subst-var out 40 + substituteInPlace src/CMakeLists.txt --replace '@libirc_includes@' '${libirc.out}' 41 + ''; 42 + 43 + cmakeFlags = [ 44 + "-S" "/build/source/src" 45 + "-DCMAKE_BUILD_TYPE=None" 46 + "-DINSTALL_DATA_DIR=bin" 47 + "-DQT5_BUILD=ON" 48 + "-DWEB_ENGINE=ON" 49 + "-DBUILD_SHARED_LIBS=OFF" 50 + "-Wno-dev" 51 + "-DHUGGLE_EXT=TRUE" 52 + ]; 53 + 54 + installTargets = [ "install" ]; 55 + 56 + meta = with lib; { 57 + description = "Anti-vandalism tool for use on MediaWiki-based projects"; 58 + homepage = "https://github.com/huggle/huggle3-qt-lx"; 59 + license = licenses.gpl3Only; 60 + maintainers = [ maintainers.fee1-dead ]; 61 + platforms = platforms.x86_64; 62 + }; 63 + }
+3 -3
pkgs/applications/misc/inlyne/default.nix
··· 23 23 24 24 rustPlatform.buildRustPackage rec { 25 25 pname = "inlyne"; 26 - version = "0.2.0"; 26 + version = "0.2.1"; 27 27 28 28 src = fetchFromGitHub { 29 29 owner = "trimental"; 30 30 repo = pname; 31 31 rev = "v${version}"; 32 - sha256 = "1y8nxz20agmrdcl25wry8lnpg86zbkkkkiscljwd7g7a831hlb9z"; 32 + sha256 = "sha256-jFocERr2cW7zdLiYfAay5Dh1issKAHp6vRWYWR1Axcg="; 33 33 }; 34 34 35 - cargoSha256 = "sha256-NXVwydEn4hX/4NorDx6eE+sWQXj1jwZgzpDE3wg8OkU="; 35 + cargoSha256 = "sha256-mH8tu8koprmHo6JJ9AwYMexy2SFR2yukZmFT060cuZ4="; 36 36 37 37 nativeBuildInputs = lib.optionals stdenv.isLinux [ pkg-config ]; 38 38
+393 -393
pkgs/applications/networking/browsers/firefox-bin/release_sources.nix
··· 1 1 { 2 - version = "106.0"; 2 + version = "106.0.1"; 3 3 sources = [ 4 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/ach/firefox-106.0.tar.bz2"; 4 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/ach/firefox-106.0.1.tar.bz2"; 5 5 locale = "ach"; 6 6 arch = "linux-x86_64"; 7 - sha256 = "ad550050b0203e73f312541c0598e690296186351ccbff9b5506d2a8e2392fc3"; 7 + sha256 = "73e8b50a234cf18ad9f4ee8d5ae54a3b33a560ad1555aaad92399d5d489c4127"; 8 8 } 9 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/af/firefox-106.0.tar.bz2"; 9 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/af/firefox-106.0.1.tar.bz2"; 10 10 locale = "af"; 11 11 arch = "linux-x86_64"; 12 - sha256 = "b28a816b21a060478e26ad52d47b11a0a3b86459c15dfee4255e0c21b7a19c8e"; 12 + sha256 = "c74ebe3630f36c9f07265c9fae64e6efa120851640c6b413a473777220cf79bc"; 13 13 } 14 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/an/firefox-106.0.tar.bz2"; 14 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/an/firefox-106.0.1.tar.bz2"; 15 15 locale = "an"; 16 16 arch = "linux-x86_64"; 17 - sha256 = "a2a174788d191170484f1dbc5e0faeb5503be70bc35debc22be9c451bb88e919"; 17 + sha256 = "dd1871d27579d521857d3c86e4bfb3eac6a229f1999cfc0ee621cb7e4be182b0"; 18 18 } 19 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/ar/firefox-106.0.tar.bz2"; 19 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/ar/firefox-106.0.1.tar.bz2"; 20 20 locale = "ar"; 21 21 arch = "linux-x86_64"; 22 - sha256 = "d481aba4e0473fd72ed51e0a40dc42e0c117078b085c9e5065c8d29dad693ea2"; 22 + sha256 = "a2015703716433213ce8deaa99ddc521c248883359cdb6342e85e337c4ea606e"; 23 23 } 24 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/ast/firefox-106.0.tar.bz2"; 24 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/ast/firefox-106.0.1.tar.bz2"; 25 25 locale = "ast"; 26 26 arch = "linux-x86_64"; 27 - sha256 = "6e42da18a86f8473027463d52d4916ffafb4176e007d00cb3b94e07715f5888b"; 27 + sha256 = "5ded0e6d3b3fe582f2b0700eb0e11c57d41f5bd0ae16d2d5f380e6d716e28d15"; 28 28 } 29 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/az/firefox-106.0.tar.bz2"; 29 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/az/firefox-106.0.1.tar.bz2"; 30 30 locale = "az"; 31 31 arch = "linux-x86_64"; 32 - sha256 = "132129330c8ea9088752071f0f325f245d71e7e185329bf5bb33a88f4a32c2c0"; 32 + sha256 = "10ac2f3970f2db6101aca9919bc2b3bc9939138e667710c3d6c8299a15c42642"; 33 33 } 34 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/be/firefox-106.0.tar.bz2"; 34 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/be/firefox-106.0.1.tar.bz2"; 35 35 locale = "be"; 36 36 arch = "linux-x86_64"; 37 - sha256 = "8e7cab908e948a1671f71e20d6650abbae0f44c03fb5979cb9ed42bdb0d6a964"; 37 + sha256 = "fdd878cb53813f28339d609a72fdc3da215310f6fad80dd912c667eaebbe804e"; 38 38 } 39 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/bg/firefox-106.0.tar.bz2"; 39 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/bg/firefox-106.0.1.tar.bz2"; 40 40 locale = "bg"; 41 41 arch = "linux-x86_64"; 42 - sha256 = "727e6a8dfb8b3e9732793f5b7afc4d940e6bf1a088431f49e3460f1fdd2ae6dd"; 42 + sha256 = "5875e2aeab9b270f2c0b2d07c039e12ce7d9d6470975b4a929ee854cfb9903b5"; 43 43 } 44 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/bn/firefox-106.0.tar.bz2"; 44 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/bn/firefox-106.0.1.tar.bz2"; 45 45 locale = "bn"; 46 46 arch = "linux-x86_64"; 47 - sha256 = "404b12be63e00854f6cb34250b30ebea76ae040feebf832bf87a6a1c90541843"; 47 + sha256 = "a0377b5d4efbf79ab6bd3ab166dda109ed5448c171679e771d08cf8ad2ab1d02"; 48 48 } 49 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/br/firefox-106.0.tar.bz2"; 49 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/br/firefox-106.0.1.tar.bz2"; 50 50 locale = "br"; 51 51 arch = "linux-x86_64"; 52 - sha256 = "a2cee886fcd286ba606d4203fe03f7cc87426e20f9e92d311b2c3040f4429214"; 52 + sha256 = "01215f4d29a1b4af05a7d8cbc4b26f22db5d37c39e1363b1493822791cf99b0e"; 53 53 } 54 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/bs/firefox-106.0.tar.bz2"; 54 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/bs/firefox-106.0.1.tar.bz2"; 55 55 locale = "bs"; 56 56 arch = "linux-x86_64"; 57 - sha256 = "51aef62414165d0bcc0494beb89eb4759191d9a8471a68d47097f0befe4d2dbb"; 57 + sha256 = "ee6b84e55789a7c603c3354e5ffcccbd0b0bbbee529390f3f02678454b2d2bb6"; 58 58 } 59 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/ca-valencia/firefox-106.0.tar.bz2"; 59 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/ca-valencia/firefox-106.0.1.tar.bz2"; 60 60 locale = "ca-valencia"; 61 61 arch = "linux-x86_64"; 62 - sha256 = "aa1288ffa54bc200c24fb6b17468aef954e17bca0d541baebdc0bb572c8a54c7"; 62 + sha256 = "af588ab3d57e3dd7e44354a7946da274b7db487a794b803b8ebd39b2ddefdf74"; 63 63 } 64 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/ca/firefox-106.0.tar.bz2"; 64 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/ca/firefox-106.0.1.tar.bz2"; 65 65 locale = "ca"; 66 66 arch = "linux-x86_64"; 67 - sha256 = "c3ca275299988c8568c727c0bab03d09be884bf89d5624f1279a2af1a69d6e72"; 67 + sha256 = "7d9b6451777d8ae449767d5349f78cab647969f5223c40a990d2032e358872c3"; 68 68 } 69 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/cak/firefox-106.0.tar.bz2"; 69 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/cak/firefox-106.0.1.tar.bz2"; 70 70 locale = "cak"; 71 71 arch = "linux-x86_64"; 72 - sha256 = "b4c4e0177630c0b3a91d7d0c229d7e754ddb3d0b266ba671c0dba373a51f8850"; 72 + sha256 = "895a24e38cb5ada57768ae44de17ac111f11dfc2305e9408d334a481b710f66a"; 73 73 } 74 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/cs/firefox-106.0.tar.bz2"; 74 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/cs/firefox-106.0.1.tar.bz2"; 75 75 locale = "cs"; 76 76 arch = "linux-x86_64"; 77 - sha256 = "62862a10380513b52929db5ac357486061683c193061ae60cade4d9125cd6763"; 77 + sha256 = "efdf4568777c9c33cfc84c2d966a06b1b2642185e0e2c2fd826dee2c402c0c7d"; 78 78 } 79 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/cy/firefox-106.0.tar.bz2"; 79 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/cy/firefox-106.0.1.tar.bz2"; 80 80 locale = "cy"; 81 81 arch = "linux-x86_64"; 82 - sha256 = "99809934952ad837b8eb0f1ad164146166ca228e2abe97e8b0f1e2cb17fa6bc9"; 82 + sha256 = "1db8b754aba37a1b1212359681de5ab2735c3cd1eb663bf97496f18e84d0aa05"; 83 83 } 84 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/da/firefox-106.0.tar.bz2"; 84 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/da/firefox-106.0.1.tar.bz2"; 85 85 locale = "da"; 86 86 arch = "linux-x86_64"; 87 - sha256 = "f4cfafd52a05e633077cb48af297c88618047cc2b1f44fd0b769d61a1fc8c880"; 87 + sha256 = "03fc6a07c44099474f746ccd3d72dae0b40aa86347d0015db5660bfeb5a87ca5"; 88 88 } 89 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/de/firefox-106.0.tar.bz2"; 89 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/de/firefox-106.0.1.tar.bz2"; 90 90 locale = "de"; 91 91 arch = "linux-x86_64"; 92 - sha256 = "5c49ac481e665e029cf62d8620f509f7a98b75602686c51f28dc41d979ba9aab"; 92 + sha256 = "209cad4c90e876d2126db2cf828ba1610c956a133fd9cbb242de6466a43e07d5"; 93 93 } 94 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/dsb/firefox-106.0.tar.bz2"; 94 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/dsb/firefox-106.0.1.tar.bz2"; 95 95 locale = "dsb"; 96 96 arch = "linux-x86_64"; 97 - sha256 = "c53a56e27f242b099015e4cd71f959248c4fb040d48b45992f4c6e5fa122131c"; 97 + sha256 = "9edb173dc9532aa9de3dc740d31b107d7c8871fe1c82cbc8490277aab01c1b25"; 98 98 } 99 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/el/firefox-106.0.tar.bz2"; 99 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/el/firefox-106.0.1.tar.bz2"; 100 100 locale = "el"; 101 101 arch = "linux-x86_64"; 102 - sha256 = "153e5974ca1741cb6aadafe44c74d9778042c97d09c3b3fed4955a5c91ff1142"; 102 + sha256 = "fccf555e8e6e59a3b055f451d91b3ff1c8f9e03a9d6caa88d8cabe0bd45fe0b9"; 103 103 } 104 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/en-CA/firefox-106.0.tar.bz2"; 104 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/en-CA/firefox-106.0.1.tar.bz2"; 105 105 locale = "en-CA"; 106 106 arch = "linux-x86_64"; 107 - sha256 = "67449fb227ee047f5ba62fea1a9454f37641b5233fc4fa7d7b261e0adb72767a"; 107 + sha256 = "9b51182e6e7c46c04bf90bf46a36c138943f506a274028c0168919a5b8b1b0a6"; 108 108 } 109 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/en-GB/firefox-106.0.tar.bz2"; 109 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/en-GB/firefox-106.0.1.tar.bz2"; 110 110 locale = "en-GB"; 111 111 arch = "linux-x86_64"; 112 - sha256 = "c30d7954508d83fe83e1878aeeceb0deab5dd604535420e1d3df53c91f033503"; 112 + sha256 = "83980222caa3a7e62385bd87e43f86da1a685638c9400064aebc4be0bea3d447"; 113 113 } 114 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/en-US/firefox-106.0.tar.bz2"; 114 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/en-US/firefox-106.0.1.tar.bz2"; 115 115 locale = "en-US"; 116 116 arch = "linux-x86_64"; 117 - sha256 = "37e917483bd6ea192525c48f3179707620657335d24de75499fae16da6021f9d"; 117 + sha256 = "9158e760a1baf524d2dd5095f44e71cfb50062e00074bbd8368b88c9eb547085"; 118 118 } 119 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/eo/firefox-106.0.tar.bz2"; 119 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/eo/firefox-106.0.1.tar.bz2"; 120 120 locale = "eo"; 121 121 arch = "linux-x86_64"; 122 - sha256 = "8ad946dfa952e6fbef91dd28b83614fb359ab9795dc7870f3a17ab2990a8fd3e"; 122 + sha256 = "0430f1e7c0284a7654fb207e68138da7aa3c8a6e788668cfe2c9921d5d013822"; 123 123 } 124 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/es-AR/firefox-106.0.tar.bz2"; 124 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/es-AR/firefox-106.0.1.tar.bz2"; 125 125 locale = "es-AR"; 126 126 arch = "linux-x86_64"; 127 - sha256 = "0d576665e0e3d4fd0fe1fcd0c78309310a75cdeac926d04b44f8a58b77a7e8b5"; 127 + sha256 = "2ac1a9880364afed678a259f9c3e2082b9d1cf774b2dbcfdb8a0cac66cddcabe"; 128 128 } 129 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/es-CL/firefox-106.0.tar.bz2"; 129 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/es-CL/firefox-106.0.1.tar.bz2"; 130 130 locale = "es-CL"; 131 131 arch = "linux-x86_64"; 132 - sha256 = "3983a0e81855a4907aa19b4c7e63615dcc4a5e7454dd203404aecea747c56933"; 132 + sha256 = "75abcd1c04e11dfc9043f9b934aafe40c443a9023e0c39a30848457cd364a40d"; 133 133 } 134 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/es-ES/firefox-106.0.tar.bz2"; 134 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/es-ES/firefox-106.0.1.tar.bz2"; 135 135 locale = "es-ES"; 136 136 arch = "linux-x86_64"; 137 - sha256 = "34293ac9323bdec30fec9c556fab046501b61dec02b6741666e047f008809195"; 137 + sha256 = "f4afd36de73083e46e62dd1a71ecbfa1eb6244f61c29ccd5763519474634ce27"; 138 138 } 139 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/es-MX/firefox-106.0.tar.bz2"; 139 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/es-MX/firefox-106.0.1.tar.bz2"; 140 140 locale = "es-MX"; 141 141 arch = "linux-x86_64"; 142 - sha256 = "e944c385c7d66076856952881524c9c85a197c8007b9eb579e74872431e66437"; 142 + sha256 = "b3d9d0101ad8794c7591f407e49ab395ea9def5ed9bf7b51ab5fe2167c49b71d"; 143 143 } 144 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/et/firefox-106.0.tar.bz2"; 144 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/et/firefox-106.0.1.tar.bz2"; 145 145 locale = "et"; 146 146 arch = "linux-x86_64"; 147 - sha256 = "468e2404a85eecc65aaa8cdf3901fb64d057ba51d2293bce8e3ca373b2b1d96f"; 147 + sha256 = "a518a583fef63e926931bd2a200293dcabf9a22ff1f7554f03f6ebef9c614e4f"; 148 148 } 149 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/eu/firefox-106.0.tar.bz2"; 149 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/eu/firefox-106.0.1.tar.bz2"; 150 150 locale = "eu"; 151 151 arch = "linux-x86_64"; 152 - sha256 = "2496beb4a76bbfcb4f8c09976080c088f07aeab8adec856d46e8d97affb58967"; 152 + sha256 = "f98694a3a3c21d836b1efb322d60989f90f31af8c06e483739cd33c73053a5b7"; 153 153 } 154 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/fa/firefox-106.0.tar.bz2"; 154 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/fa/firefox-106.0.1.tar.bz2"; 155 155 locale = "fa"; 156 156 arch = "linux-x86_64"; 157 - sha256 = "e9506c379b9b544a1e110f245896efd5a54b9a31c3eb3d495bcf6799ed159884"; 157 + sha256 = "1b6afbac73fbb4c54d83d7599a67062bf64bfba3e67bf9e4fbee9249efcd62c0"; 158 158 } 159 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/ff/firefox-106.0.tar.bz2"; 159 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/ff/firefox-106.0.1.tar.bz2"; 160 160 locale = "ff"; 161 161 arch = "linux-x86_64"; 162 - sha256 = "ed3fee05a39587609d26a21d185cf137e9b4db2b4b085e4407ae956c9eb7eead"; 162 + sha256 = "d78fcd480fe27cb04c3e5e2677598312e45786a3100037fc3fcad5fe64ae073d"; 163 163 } 164 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/fi/firefox-106.0.tar.bz2"; 164 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/fi/firefox-106.0.1.tar.bz2"; 165 165 locale = "fi"; 166 166 arch = "linux-x86_64"; 167 - sha256 = "b25279ca09e4b50dee423e2f090bd1f235bb757fe1410db0a9abce2633de1cc5"; 167 + sha256 = "c2c05b0f0be4adbe9824f34e59ec131ecd53f1d41279dbe55db2f533d1837b3d"; 168 168 } 169 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/fr/firefox-106.0.tar.bz2"; 169 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/fr/firefox-106.0.1.tar.bz2"; 170 170 locale = "fr"; 171 171 arch = "linux-x86_64"; 172 - sha256 = "6011b998f71be513c9985d1bd5a6ea401750b174a40bb4f319a74b13dda76f35"; 172 + sha256 = "1b84a24eba4cdccbe9148ed3dae7f5990f8aceae9174c079ce735bae491592d5"; 173 173 } 174 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/fy-NL/firefox-106.0.tar.bz2"; 174 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/fy-NL/firefox-106.0.1.tar.bz2"; 175 175 locale = "fy-NL"; 176 176 arch = "linux-x86_64"; 177 - sha256 = "38d0715bc0bc2e6709a34ee1de5065218a300d93c82f1e85037a2df9c892d180"; 177 + sha256 = "11c46d35616eb8000030bba7ec711c3d2f0bd71d8fe1b00716ceb087b615949f"; 178 178 } 179 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/ga-IE/firefox-106.0.tar.bz2"; 179 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/ga-IE/firefox-106.0.1.tar.bz2"; 180 180 locale = "ga-IE"; 181 181 arch = "linux-x86_64"; 182 - sha256 = "1f8ec001cf25d688b12399b6ec84954630f28227e505e497fc9f6abe4a9911a3"; 182 + sha256 = "c82a8582e7c7a290940f34747dbac10b82a3a7a1dd25f5ec29ea6760452f9ceb"; 183 183 } 184 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/gd/firefox-106.0.tar.bz2"; 184 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/gd/firefox-106.0.1.tar.bz2"; 185 185 locale = "gd"; 186 186 arch = "linux-x86_64"; 187 - sha256 = "2d8e2e8a384f6fa8e765046c0b865b0585aa848ec88ee33ea93eecc0c742027b"; 187 + sha256 = "a134d92e8ba86138a4fe48abe30e99db22a0eda3d752388b4811f5ded602b2e2"; 188 188 } 189 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/gl/firefox-106.0.tar.bz2"; 189 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/gl/firefox-106.0.1.tar.bz2"; 190 190 locale = "gl"; 191 191 arch = "linux-x86_64"; 192 - sha256 = "b73fa8a5ad52a662184c888e9a90b047a5b9b98b3e64942a6a47b6ffe4b1029c"; 192 + sha256 = "917ddb3b29c5e79b3133228b2369eda2f1fa8a80e1df045c7f574de98cc20589"; 193 193 } 194 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/gn/firefox-106.0.tar.bz2"; 194 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/gn/firefox-106.0.1.tar.bz2"; 195 195 locale = "gn"; 196 196 arch = "linux-x86_64"; 197 - sha256 = "4f07d668a8bf1183dee5c156a456660d035b28fccb57affee33c4300a96331f1"; 197 + sha256 = "62d6f290a6d2c5004475a69994238425d9f86809d8bb892ab5d024fc976eb95e"; 198 198 } 199 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/gu-IN/firefox-106.0.tar.bz2"; 199 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/gu-IN/firefox-106.0.1.tar.bz2"; 200 200 locale = "gu-IN"; 201 201 arch = "linux-x86_64"; 202 - sha256 = "6b8f169fb3760fc5c054c28e2715ca3d4bc0fe6aff13d581379aaf6a33831e11"; 202 + sha256 = "84b800fda564718c88aeabc8c80a93f81bfd793de36df1692037e5211439533d"; 203 203 } 204 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/he/firefox-106.0.tar.bz2"; 204 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/he/firefox-106.0.1.tar.bz2"; 205 205 locale = "he"; 206 206 arch = "linux-x86_64"; 207 - sha256 = "a3e1cd30cb11fd7b608daf1bd462c1d069e47805fe0d090c0c82fc11b071f051"; 207 + sha256 = "4a45350737358be849dd662ba00ed9678c02fc3c6ee976bbe604ba22973b03f8"; 208 208 } 209 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/hi-IN/firefox-106.0.tar.bz2"; 209 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/hi-IN/firefox-106.0.1.tar.bz2"; 210 210 locale = "hi-IN"; 211 211 arch = "linux-x86_64"; 212 - sha256 = "6f6eaa517a618b55fd6f69b9e4ba2254817073fbf996ab65e62b4ba8818e3d39"; 212 + sha256 = "10893632acbc8e59a85aaa5f99e5995d483e79c707ae7b59c3db8f7538ad61fa"; 213 213 } 214 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/hr/firefox-106.0.tar.bz2"; 214 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/hr/firefox-106.0.1.tar.bz2"; 215 215 locale = "hr"; 216 216 arch = "linux-x86_64"; 217 - sha256 = "9805a0654e77395afdc516d0d7b99d44c983d7ff5900485fe511fc3094ae895d"; 217 + sha256 = "f948c69b4aba2cbaa0bd64fa3bff0db6ea333db055a5977edeba19fd714d39b0"; 218 218 } 219 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/hsb/firefox-106.0.tar.bz2"; 219 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/hsb/firefox-106.0.1.tar.bz2"; 220 220 locale = "hsb"; 221 221 arch = "linux-x86_64"; 222 - sha256 = "6974006302e605d138f46cb9d9032006c5ff5b67652e5ad5c7b4106b386cf25e"; 222 + sha256 = "b5420b68bc0ac11e84545cbec819f6845464e640591c2cb472e5ecf03c1067d2"; 223 223 } 224 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/hu/firefox-106.0.tar.bz2"; 224 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/hu/firefox-106.0.1.tar.bz2"; 225 225 locale = "hu"; 226 226 arch = "linux-x86_64"; 227 - sha256 = "186dd336ac4ebb372b32d6f707d9b4483f50bdd3e914e02ba4ed811a6111614b"; 227 + sha256 = "3699a369965dd8b33045dcc1add1d7b5bf3807e6ab0fe71738ad8a3d10c9b992"; 228 228 } 229 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/hy-AM/firefox-106.0.tar.bz2"; 229 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/hy-AM/firefox-106.0.1.tar.bz2"; 230 230 locale = "hy-AM"; 231 231 arch = "linux-x86_64"; 232 - sha256 = "3b314d90ad466fb42e52a43559d31c5525f0f8435ecc51a9bfb390e1449c43b0"; 232 + sha256 = "736ffa083db4fe0a09bee5180ce21a72d232ef93de39d328087d77c700177450"; 233 233 } 234 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/ia/firefox-106.0.tar.bz2"; 234 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/ia/firefox-106.0.1.tar.bz2"; 235 235 locale = "ia"; 236 236 arch = "linux-x86_64"; 237 - sha256 = "06b357d59eae2e67a847eab646aeeb320883ea30a979bb491acca928e4f0a6f0"; 237 + sha256 = "e379bdbc02cbeea8a6ef08c699c31ab21c8a7c850165b3eadf14f9776acee0b4"; 238 238 } 239 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/id/firefox-106.0.tar.bz2"; 239 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/id/firefox-106.0.1.tar.bz2"; 240 240 locale = "id"; 241 241 arch = "linux-x86_64"; 242 - sha256 = "3e6cadf8628d0e55be10170e2f61c670c178c5f2ff28f39a923488c7eff001de"; 242 + sha256 = "494d9711fd6cb8a24a4f9ce8b5a469def31508acfa74a349f5847fab8877bdce"; 243 243 } 244 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/is/firefox-106.0.tar.bz2"; 244 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/is/firefox-106.0.1.tar.bz2"; 245 245 locale = "is"; 246 246 arch = "linux-x86_64"; 247 - sha256 = "375e7b3ad32026b64ed55c56604573f72864529e886c65054159951e775273f1"; 247 + sha256 = "b9b5f39f8837b0196d23dcb6126649a163183a3f4a7beea9abf5d2cbc45b5431"; 248 248 } 249 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/it/firefox-106.0.tar.bz2"; 249 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/it/firefox-106.0.1.tar.bz2"; 250 250 locale = "it"; 251 251 arch = "linux-x86_64"; 252 - sha256 = "eb098c9444c499c4b5de38ef7a9ef240be7bd2101ac003bcda31d8dc4515ee08"; 252 + sha256 = "cf472e023000a836092a65c9bc13f3f4bbb1ccc019f0d3618f5f3901ba978c2e"; 253 253 } 254 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/ja/firefox-106.0.tar.bz2"; 254 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/ja/firefox-106.0.1.tar.bz2"; 255 255 locale = "ja"; 256 256 arch = "linux-x86_64"; 257 - sha256 = "0ab12ad4ebe7e3b123fa7e8764324f5976dcba71c1c55d114fb33d7954065a76"; 257 + sha256 = "24ad2d46cc17176061de745853dfa149b30006d32652af4bcca0da7852d61bb0"; 258 258 } 259 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/ka/firefox-106.0.tar.bz2"; 259 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/ka/firefox-106.0.1.tar.bz2"; 260 260 locale = "ka"; 261 261 arch = "linux-x86_64"; 262 - sha256 = "9c0f090132b8104b35adb49d2b3eb809258bf87ed0e185373f10a3ae5d5a0da9"; 262 + sha256 = "4449b8e64a566f6db99c8474d1710dfdcb7cf9986f84ffe052fed4523a0de585"; 263 263 } 264 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/kab/firefox-106.0.tar.bz2"; 264 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/kab/firefox-106.0.1.tar.bz2"; 265 265 locale = "kab"; 266 266 arch = "linux-x86_64"; 267 - sha256 = "d539844809913a2cf2bd43df3a6f61e9db802dd0675d54ba17d8e110177a59e7"; 267 + sha256 = "22891b7087460d0409b24feb8465e2262ae48a7ca672a04ee4aadf7d6c75a735"; 268 268 } 269 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/kk/firefox-106.0.tar.bz2"; 269 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/kk/firefox-106.0.1.tar.bz2"; 270 270 locale = "kk"; 271 271 arch = "linux-x86_64"; 272 - sha256 = "1bd06c344bd4500ae82c65ca660b0a399c137dc36488b23dc9a278b79e0fcb13"; 272 + sha256 = "433d1cf6015a8bdeb1ad7ed8ab277d12d7d4bee0ea13e0b9a05d6f9e21485706"; 273 273 } 274 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/km/firefox-106.0.tar.bz2"; 274 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/km/firefox-106.0.1.tar.bz2"; 275 275 locale = "km"; 276 276 arch = "linux-x86_64"; 277 - sha256 = "87082f0f022f4034a387cd9bc885eb94e4fba390e12df37253f771f507a5d1f8"; 277 + sha256 = "797e9129412851205ad74f7b319babdb80510a5e3ad5f09d2f95660cc146fff7"; 278 278 } 279 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/kn/firefox-106.0.tar.bz2"; 279 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/kn/firefox-106.0.1.tar.bz2"; 280 280 locale = "kn"; 281 281 arch = "linux-x86_64"; 282 - sha256 = "d554198f454c1679d718cac2df1e95f241ead1ff0930f7bb10208b39e928ebb5"; 282 + sha256 = "58ee62330f425ec58475012db703fdf28c0f44187fc68c64532b92812ceabbf5"; 283 283 } 284 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/ko/firefox-106.0.tar.bz2"; 284 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/ko/firefox-106.0.1.tar.bz2"; 285 285 locale = "ko"; 286 286 arch = "linux-x86_64"; 287 - sha256 = "8034e83bb79fd0465ae49e68c6a593bbd12e795e18696e5046dcee493b62019e"; 287 + sha256 = "30634665e61e844b46f6ee8ccf6c746b233dd91677dde760453656e38913a241"; 288 288 } 289 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/lij/firefox-106.0.tar.bz2"; 289 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/lij/firefox-106.0.1.tar.bz2"; 290 290 locale = "lij"; 291 291 arch = "linux-x86_64"; 292 - sha256 = "544e0f538c77addbe027fe2a580455f1707d1dbf15c487d972b0625481b00202"; 292 + sha256 = "175284c0c30974322c1c95904de89b0745c14a78675e3251de90b5447831fa84"; 293 293 } 294 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/lt/firefox-106.0.tar.bz2"; 294 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/lt/firefox-106.0.1.tar.bz2"; 295 295 locale = "lt"; 296 296 arch = "linux-x86_64"; 297 - sha256 = "ba1b520883a52f1346da70b1df94ed14adb6fb0bc8a955d0d10d80345115f189"; 297 + sha256 = "a15760d13d2ffaec7d1836d283e9fb6273be0b7ff56c39fd2e90fbf8cbf7e4f2"; 298 298 } 299 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/lv/firefox-106.0.tar.bz2"; 299 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/lv/firefox-106.0.1.tar.bz2"; 300 300 locale = "lv"; 301 301 arch = "linux-x86_64"; 302 - sha256 = "3d40bf017452208f8838a9448985d3cc33ffa9b17eba7c67505bdeb47075545b"; 302 + sha256 = "784e762e4b4df65bf9b0b0a201c7a1e65d13420dedf453874d0c78d829ebbfa4"; 303 303 } 304 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/mk/firefox-106.0.tar.bz2"; 304 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/mk/firefox-106.0.1.tar.bz2"; 305 305 locale = "mk"; 306 306 arch = "linux-x86_64"; 307 - sha256 = "a3dc83cab89f8e543278b0e1a896689759be42a8bd4af8faa26b73e20eba77fb"; 307 + sha256 = "b963f3c63d25b2a8aad44c49251b2fc2db17fa7b3b72b2e98556533a495361b2"; 308 308 } 309 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/mr/firefox-106.0.tar.bz2"; 309 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/mr/firefox-106.0.1.tar.bz2"; 310 310 locale = "mr"; 311 311 arch = "linux-x86_64"; 312 - sha256 = "aa3de42f0c9b5c1ea0a89792b17dffad005cedb195184351a5c742069673256d"; 312 + sha256 = "8f965d02d454a6e31a81ca735a91a5f9a350ccf45fab391c79bb030a7c8249e6"; 313 313 } 314 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/ms/firefox-106.0.tar.bz2"; 314 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/ms/firefox-106.0.1.tar.bz2"; 315 315 locale = "ms"; 316 316 arch = "linux-x86_64"; 317 - sha256 = "07821c8fac0a65d03948cb15b10294af234680aa8c9b32de29d7beba28ef0397"; 317 + sha256 = "e0709a20cb781ffb644696b50df6c5ce9add7db7dfcf0bed64a4847a45c46c6e"; 318 318 } 319 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/my/firefox-106.0.tar.bz2"; 319 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/my/firefox-106.0.1.tar.bz2"; 320 320 locale = "my"; 321 321 arch = "linux-x86_64"; 322 - sha256 = "77c52ff0b9e801d1fc4d6f030ed505a3e8fdb1031eb1870146aa7df774442fd6"; 322 + sha256 = "8bd42bef785ec15afef51aabdf23decea06aa94eca556b3713f25c36288bf8e0"; 323 323 } 324 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/nb-NO/firefox-106.0.tar.bz2"; 324 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/nb-NO/firefox-106.0.1.tar.bz2"; 325 325 locale = "nb-NO"; 326 326 arch = "linux-x86_64"; 327 - sha256 = "01005c8eec7c73ca303cb4c298bd4bc25f7429ebe900334f05ba185465562d07"; 327 + sha256 = "83279396c312b820f37f34f11ec52bcba331e8d11ade896e27dc474624feb5c2"; 328 328 } 329 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/ne-NP/firefox-106.0.tar.bz2"; 329 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/ne-NP/firefox-106.0.1.tar.bz2"; 330 330 locale = "ne-NP"; 331 331 arch = "linux-x86_64"; 332 - sha256 = "0e4d97f942d699db4a6f60819decac98817f8c620694ed4a5c7b275adc040be6"; 332 + sha256 = "1147aef4411e3e74d0d1ed1f3fa5dbdcdc2a36a7f67002c8eca481190d866531"; 333 333 } 334 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/nl/firefox-106.0.tar.bz2"; 334 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/nl/firefox-106.0.1.tar.bz2"; 335 335 locale = "nl"; 336 336 arch = "linux-x86_64"; 337 - sha256 = "1015a751362cabb3173ac7ba1f7309ead3c17bfb408dee9ba3c1ac54c6ea5d7f"; 337 + sha256 = "9697a3ab2b05108c01fc8434d8b59decac8a74340d50b3fbbdd406ea04b16a39"; 338 338 } 339 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/nn-NO/firefox-106.0.tar.bz2"; 339 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/nn-NO/firefox-106.0.1.tar.bz2"; 340 340 locale = "nn-NO"; 341 341 arch = "linux-x86_64"; 342 - sha256 = "37e565496a3515737a34fb7ff7ac27318acb0095e99f4ce41035c0514ab4e415"; 342 + sha256 = "976cb735ade2287ae2ea27faff1b9e9db115394e00adc75ece405da318df8270"; 343 343 } 344 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/oc/firefox-106.0.tar.bz2"; 344 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/oc/firefox-106.0.1.tar.bz2"; 345 345 locale = "oc"; 346 346 arch = "linux-x86_64"; 347 - sha256 = "b3040e22827e4cdef49e8b964458548fad9840f118fa90a29e302b2aa82c3f48"; 347 + sha256 = "05c591c51075d01ac5b84b30b464ebf793431cb53eb9297e27f40023744e0b06"; 348 348 } 349 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/pa-IN/firefox-106.0.tar.bz2"; 349 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/pa-IN/firefox-106.0.1.tar.bz2"; 350 350 locale = "pa-IN"; 351 351 arch = "linux-x86_64"; 352 - sha256 = "55d3e440b71e1b23667fbe1804a2efd02e01b4e105b6cf3c30ca5ac4b7237536"; 352 + sha256 = "c91e34d9f97ade64458c959977a2a311370afbdce2c9a3799d5805376c505e72"; 353 353 } 354 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/pl/firefox-106.0.tar.bz2"; 354 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/pl/firefox-106.0.1.tar.bz2"; 355 355 locale = "pl"; 356 356 arch = "linux-x86_64"; 357 - sha256 = "7bba21cfefa26f1763d72719e456d91f773ed4405a51d2abaee6bad9436f6342"; 357 + sha256 = "9d81b7ae684e7e17eace812a788dfa43206f694a8cda25199d9b570233157da4"; 358 358 } 359 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/pt-BR/firefox-106.0.tar.bz2"; 359 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/pt-BR/firefox-106.0.1.tar.bz2"; 360 360 locale = "pt-BR"; 361 361 arch = "linux-x86_64"; 362 - sha256 = "6d8e6ab969f4ef0387ff57dcd8f97af97726bc9229f518e854dc2ac13e32e7df"; 362 + sha256 = "83ce307ea323ad4f09e4fde06f21074b6c02ad58a9f75634c85bf02218adce20"; 363 363 } 364 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/pt-PT/firefox-106.0.tar.bz2"; 364 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/pt-PT/firefox-106.0.1.tar.bz2"; 365 365 locale = "pt-PT"; 366 366 arch = "linux-x86_64"; 367 - sha256 = "2e3ff1270e7d25395d555f7383049acfade0f8a14aaaf4739e92cea829de9be5"; 367 + sha256 = "9cd2ef64b8b5a22a9f9a73a5a6722afc50b3a524f54205bc418b1d379304baf0"; 368 368 } 369 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/rm/firefox-106.0.tar.bz2"; 369 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/rm/firefox-106.0.1.tar.bz2"; 370 370 locale = "rm"; 371 371 arch = "linux-x86_64"; 372 - sha256 = "1ac3c44213cc62adf9a3ee4d7f01f1561d136eabfb22ad60ddd6fb5836bfb372"; 372 + sha256 = "3604fd722d51f94caf96a219f80f6f1407c375709c07a14191dedc53faa30ed6"; 373 373 } 374 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/ro/firefox-106.0.tar.bz2"; 374 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/ro/firefox-106.0.1.tar.bz2"; 375 375 locale = "ro"; 376 376 arch = "linux-x86_64"; 377 - sha256 = "4bfe6ef99c8caa3403bc4378e17af3b258ddc475b49faaa4eb33c23a33aca786"; 377 + sha256 = "4df00206ee7950b2406c2d3a1b25365dc7a3d2aaf5cf8c86dce4189f6b05c18b"; 378 378 } 379 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/ru/firefox-106.0.tar.bz2"; 379 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/ru/firefox-106.0.1.tar.bz2"; 380 380 locale = "ru"; 381 381 arch = "linux-x86_64"; 382 - sha256 = "63f852af434187ea5985de61e86bbfbb5614870328d91725e4d572cf970c3f06"; 382 + sha256 = "ae0913701bff929b5dfa6521b19aa207f2c89a841ffd2882e10b6011d406aa9c"; 383 383 } 384 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/sco/firefox-106.0.tar.bz2"; 384 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/sco/firefox-106.0.1.tar.bz2"; 385 385 locale = "sco"; 386 386 arch = "linux-x86_64"; 387 - sha256 = "97024999c649e6beec469a22a09e93c2b7640a8f78dcf469cc8ad697a6babfdc"; 387 + sha256 = "2e6386b04c8008f02d497e70a5be4b422ac700d99da925674e43c4567936d798"; 388 388 } 389 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/si/firefox-106.0.tar.bz2"; 389 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/si/firefox-106.0.1.tar.bz2"; 390 390 locale = "si"; 391 391 arch = "linux-x86_64"; 392 - sha256 = "39af0075606356df2f0e66035e941470ded9fba8f6c6baa36404b6eb9ac7af15"; 392 + sha256 = "b386202c5e3fa869e30285cfec881589566cfbd147aeafd651e38a4da9ac8846"; 393 393 } 394 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/sk/firefox-106.0.tar.bz2"; 394 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/sk/firefox-106.0.1.tar.bz2"; 395 395 locale = "sk"; 396 396 arch = "linux-x86_64"; 397 - sha256 = "cee9e34fd8adcd2b530023ccc76ca12d40b4d952833597b0a978748d684cfb93"; 397 + sha256 = "1f29f08de3dfb9f203003ecca1d841e580b4bf7c3df2078134d6de26be14ab35"; 398 398 } 399 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/sl/firefox-106.0.tar.bz2"; 399 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/sl/firefox-106.0.1.tar.bz2"; 400 400 locale = "sl"; 401 401 arch = "linux-x86_64"; 402 - sha256 = "5ebc57d71f31d07a5f1ddc0a7e16504957e42c91f0f87a6f4f7739dbc324f62d"; 402 + sha256 = "dd63a87c587ba9e2ba489cd9e100f732c60297ff09eea279f0c249a6ff392921"; 403 403 } 404 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/son/firefox-106.0.tar.bz2"; 404 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/son/firefox-106.0.1.tar.bz2"; 405 405 locale = "son"; 406 406 arch = "linux-x86_64"; 407 - sha256 = "6614b7ae09ee3fa2d8fa0109f25b87bcfa984f37757bf484cc2f838904f37ca8"; 407 + sha256 = "39120dcd7f5b33066333fe47a0777bae144a90be97af8e7ca528ca746b717ff2"; 408 408 } 409 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/sq/firefox-106.0.tar.bz2"; 409 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/sq/firefox-106.0.1.tar.bz2"; 410 410 locale = "sq"; 411 411 arch = "linux-x86_64"; 412 - sha256 = "68a3d8d03b814c707fe5537a1ef4eb9ff4b72f72e9cd9daa1cbbaedc05215084"; 412 + sha256 = "7aa0dc316eb51f0eb80fa744c2dfbc903bd4fffce228a675bc2fc1826592133d"; 413 413 } 414 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/sr/firefox-106.0.tar.bz2"; 414 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/sr/firefox-106.0.1.tar.bz2"; 415 415 locale = "sr"; 416 416 arch = "linux-x86_64"; 417 - sha256 = "85fc5bcd1f761f4fe387a74758bd01856d5d57d6694d327b2d9998614e12df6d"; 417 + sha256 = "d9dd66f19af5f1ba67b44a24856db0b9f880d77f37a9ece171fb358552487291"; 418 418 } 419 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/sv-SE/firefox-106.0.tar.bz2"; 419 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/sv-SE/firefox-106.0.1.tar.bz2"; 420 420 locale = "sv-SE"; 421 421 arch = "linux-x86_64"; 422 - sha256 = "49235025f75835887e37f1032bee5da9b31af128b5c281658ac5579352b8b69a"; 422 + sha256 = "546fad48ae858fded383618b9bf35b4d235f40bcc62ecf40efd964e52e9d3b57"; 423 423 } 424 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/szl/firefox-106.0.tar.bz2"; 424 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/szl/firefox-106.0.1.tar.bz2"; 425 425 locale = "szl"; 426 426 arch = "linux-x86_64"; 427 - sha256 = "fe22aedb149721bf752b51e443464262d033d52bf033171bb399458e1b9ac5a5"; 427 + sha256 = "7f1b7214249ccb4a041eab383860a5004de208cfb1040eb7712adc0f65d6871a"; 428 428 } 429 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/ta/firefox-106.0.tar.bz2"; 429 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/ta/firefox-106.0.1.tar.bz2"; 430 430 locale = "ta"; 431 431 arch = "linux-x86_64"; 432 - sha256 = "d9fb7a5bff46dec33a40c6d6aff3c3840b37cad85e42d00b54014b8389a48b1f"; 432 + sha256 = "c9520b62c0516f9b7b6cfeee81d6a5880ae3ae8ecea8678428062744dc265fd0"; 433 433 } 434 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/te/firefox-106.0.tar.bz2"; 434 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/te/firefox-106.0.1.tar.bz2"; 435 435 locale = "te"; 436 436 arch = "linux-x86_64"; 437 - sha256 = "1efd689eb39679f6637bc15bbdaa54b56c5537172131043d8d2e1ac6203f556e"; 437 + sha256 = "294c701a6b47da257a7aef3acb864513c606dc68357f17ceff3f090610d9fb64"; 438 438 } 439 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/th/firefox-106.0.tar.bz2"; 439 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/th/firefox-106.0.1.tar.bz2"; 440 440 locale = "th"; 441 441 arch = "linux-x86_64"; 442 - sha256 = "b69662d1631bd4a04f2a60745ad3f6745fb2582b3c21995085e7a51ae3aa5e46"; 442 + sha256 = "d2d57c38f19b735f9d0c63f1b90935ec5f59657b7824e46e5384f94bd6abeab6"; 443 443 } 444 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/tl/firefox-106.0.tar.bz2"; 444 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/tl/firefox-106.0.1.tar.bz2"; 445 445 locale = "tl"; 446 446 arch = "linux-x86_64"; 447 - sha256 = "21645703a332229f7d630749941d6c22e51541add7bd6fd3c97c857aa8da60cc"; 447 + sha256 = "47f6a00479833afc6af7dc045a505fba7961b093715f16e5b8e33bb9697ccd6f"; 448 448 } 449 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/tr/firefox-106.0.tar.bz2"; 449 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/tr/firefox-106.0.1.tar.bz2"; 450 450 locale = "tr"; 451 451 arch = "linux-x86_64"; 452 - sha256 = "9e9bb19f146339c8fbb861fdee67e13dc06cae595b2094a171682173b1dcabb1"; 452 + sha256 = "5191edc55d2f0b7604094c30c0eaabaa319525ef084e8e18b7bc4de6442e188a"; 453 453 } 454 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/trs/firefox-106.0.tar.bz2"; 454 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/trs/firefox-106.0.1.tar.bz2"; 455 455 locale = "trs"; 456 456 arch = "linux-x86_64"; 457 - sha256 = "65635354b17d16b454eec1729064d21c43f71b0cde7e506b76acef1701ed28cd"; 457 + sha256 = "b159860b09d16362d4f2655204a2c06fa48bb1c7be5c81749897eb57aa7a1799"; 458 458 } 459 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/uk/firefox-106.0.tar.bz2"; 459 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/uk/firefox-106.0.1.tar.bz2"; 460 460 locale = "uk"; 461 461 arch = "linux-x86_64"; 462 - sha256 = "017a293a5ad28cf9734ef208256e3a287c72d921c74a305c5e855b1d49b5c72a"; 462 + sha256 = "d76a4e4d240d1631724b285fbebdfd9e976378e60bbb07347533b56763683911"; 463 463 } 464 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/ur/firefox-106.0.tar.bz2"; 464 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/ur/firefox-106.0.1.tar.bz2"; 465 465 locale = "ur"; 466 466 arch = "linux-x86_64"; 467 - sha256 = "a3fbe30159fde12db3bb84a4406233d4c614c7dbe6b034c11e86fb84ac8f335f"; 467 + sha256 = "2cf7d4e8e6658162e004de86db9d98ae1d456c661aefd6f6a1ef917fbbbc7233"; 468 468 } 469 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/uz/firefox-106.0.tar.bz2"; 469 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/uz/firefox-106.0.1.tar.bz2"; 470 470 locale = "uz"; 471 471 arch = "linux-x86_64"; 472 - sha256 = "7039e18d337696ab48441fb6fff74963b92db965605edfd303fec260a01c30c1"; 472 + sha256 = "e2c3501af9eb9de310791ba9b94268fc2aedabe3936e200289c323fafeb718e7"; 473 473 } 474 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/vi/firefox-106.0.tar.bz2"; 474 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/vi/firefox-106.0.1.tar.bz2"; 475 475 locale = "vi"; 476 476 arch = "linux-x86_64"; 477 - sha256 = "06b111b12503ed3528b35265436e05bfda0a872c27b8b4ca142a1402e88f446e"; 477 + sha256 = "ff5f115d3359884681f3f7a28f3335d8df1c88911f8228a52ba9c5e80bd88ba8"; 478 478 } 479 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/xh/firefox-106.0.tar.bz2"; 479 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/xh/firefox-106.0.1.tar.bz2"; 480 480 locale = "xh"; 481 481 arch = "linux-x86_64"; 482 - sha256 = "def273d065c637725a25d3c562e670b3bf41e47717f7780f13dd60d0f8fff5c3"; 482 + sha256 = "aa7a710d3c1359cc925aa6e6d503463c6eff67cf1e1f7b0db4b32e74d5140fd8"; 483 483 } 484 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/zh-CN/firefox-106.0.tar.bz2"; 484 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/zh-CN/firefox-106.0.1.tar.bz2"; 485 485 locale = "zh-CN"; 486 486 arch = "linux-x86_64"; 487 - sha256 = "65a1b0717535aa8a844de44902d9b79412c58c0ebb79f4fd0c4269ff46032d73"; 487 + sha256 = "5544af3676984c4500836e39a583d605bba5ddad08a8a6c818fa7821890af654"; 488 488 } 489 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-x86_64/zh-TW/firefox-106.0.tar.bz2"; 489 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-x86_64/zh-TW/firefox-106.0.1.tar.bz2"; 490 490 locale = "zh-TW"; 491 491 arch = "linux-x86_64"; 492 - sha256 = "041b508b9ffc57df9870465dde37cfa6946be673822b0bbbc9d7bb2eae1a7127"; 492 + sha256 = "d449f7d3875ff492ed8afc7fa4ce3766937e698d6e03409d814719bd7174d5d6"; 493 493 } 494 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/ach/firefox-106.0.tar.bz2"; 494 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/ach/firefox-106.0.1.tar.bz2"; 495 495 locale = "ach"; 496 496 arch = "linux-i686"; 497 - sha256 = "0f78efa390bd6b69fbc47d25cdd0bd79b825f09d8905d90c67ce135d06d2d053"; 497 + sha256 = "9f16b041726372d5d947f09ae20084e423a7d66522d10fc13bb310962f0ace1e"; 498 498 } 499 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/af/firefox-106.0.tar.bz2"; 499 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/af/firefox-106.0.1.tar.bz2"; 500 500 locale = "af"; 501 501 arch = "linux-i686"; 502 - sha256 = "a5b6791109588f45ad4eec4e6ee8f5790e3fc9586b8cbdcf605fbb5718c7cc50"; 502 + sha256 = "51635da47398168ee27f1c546ff7c30416957e0576225b5885fa0d5afd46944c"; 503 503 } 504 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/an/firefox-106.0.tar.bz2"; 504 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/an/firefox-106.0.1.tar.bz2"; 505 505 locale = "an"; 506 506 arch = "linux-i686"; 507 - sha256 = "ad013fe8fe4b51c4de7f61a16a1468ce0cce6466747fc8d2a1c1c68394bb87e7"; 507 + sha256 = "59c1fcbdfaf19665f1347fe07a26ba2744a44c7c9c946634968316dc6cd6abc8"; 508 508 } 509 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/ar/firefox-106.0.tar.bz2"; 509 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/ar/firefox-106.0.1.tar.bz2"; 510 510 locale = "ar"; 511 511 arch = "linux-i686"; 512 - sha256 = "4c017900084f34cb102da26f3c8f1f06d3d47b4867ab15472f20260d195315f2"; 512 + sha256 = "e51caa00e64b352573d9dc27f73a23c37e49a701e69a2fa77487156a9128787c"; 513 513 } 514 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/ast/firefox-106.0.tar.bz2"; 514 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/ast/firefox-106.0.1.tar.bz2"; 515 515 locale = "ast"; 516 516 arch = "linux-i686"; 517 - sha256 = "80cfddb3f7fd8a2de76f5d8782fe09d8d3c2c81738420f85bee2065d34817019"; 517 + sha256 = "0b0e9804abf625490d5ba732be309a40931a876fb5c4d92b527ed14fe16aa68d"; 518 518 } 519 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/az/firefox-106.0.tar.bz2"; 519 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/az/firefox-106.0.1.tar.bz2"; 520 520 locale = "az"; 521 521 arch = "linux-i686"; 522 - sha256 = "36b3404968981fd6ab892db630fc40a9d1e693c7886a7ca18476c1a330cfad98"; 522 + sha256 = "a3dbac31a3a24ba0803a8c90fd1ff918beca26d1823c8341ceed57fdfebfe466"; 523 523 } 524 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/be/firefox-106.0.tar.bz2"; 524 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/be/firefox-106.0.1.tar.bz2"; 525 525 locale = "be"; 526 526 arch = "linux-i686"; 527 - sha256 = "45695b8bc7cd885b65db1dd0f8394c8b546cf6621098304555425bc9fef93eed"; 527 + sha256 = "6d1b85c455fa034cda37c57d259ebb1a7b261338a1fc1c36987401f9eb6c758d"; 528 528 } 529 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/bg/firefox-106.0.tar.bz2"; 529 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/bg/firefox-106.0.1.tar.bz2"; 530 530 locale = "bg"; 531 531 arch = "linux-i686"; 532 - sha256 = "db69fea00eee9451e202c931bb368c2890f1e1f9286305f46c9c4ec0754a7f1e"; 532 + sha256 = "7b98a1b4caa746f20a1344b637ff2d02e63d6050014859202705d050caf9f797"; 533 533 } 534 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/bn/firefox-106.0.tar.bz2"; 534 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/bn/firefox-106.0.1.tar.bz2"; 535 535 locale = "bn"; 536 536 arch = "linux-i686"; 537 - sha256 = "43bfe35ccb66ddb899b93c3693586324b19dbad7b9506db9e845e76ef5b4a087"; 537 + sha256 = "7cbb1f7c6a5edc7e6c601cb7b118705633f1ffea9a6841b906222192cc5f11d4"; 538 538 } 539 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/br/firefox-106.0.tar.bz2"; 539 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/br/firefox-106.0.1.tar.bz2"; 540 540 locale = "br"; 541 541 arch = "linux-i686"; 542 - sha256 = "ff714b4f29115ac6e91aa03723195b9c6cee7d1ee31372759ca0f4493dc33c0d"; 542 + sha256 = "914174e70aadbbdd4f03eb917aa731b8635968366cc8446cc77cae657033a232"; 543 543 } 544 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/bs/firefox-106.0.tar.bz2"; 544 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/bs/firefox-106.0.1.tar.bz2"; 545 545 locale = "bs"; 546 546 arch = "linux-i686"; 547 - sha256 = "59d111553a7517c3a54ef60462ad8bc0f280261c4592bf5dcc35a28d7ef37f65"; 547 + sha256 = "9cf593de0045b3834159e60ce8029ae52708168dde86b24d131b0ed1a3ae1413"; 548 548 } 549 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/ca-valencia/firefox-106.0.tar.bz2"; 549 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/ca-valencia/firefox-106.0.1.tar.bz2"; 550 550 locale = "ca-valencia"; 551 551 arch = "linux-i686"; 552 - sha256 = "6c0a0d3836956367c29d94dfe931d555d5fb24534ec1f37ec7246e71a49a7dc6"; 552 + sha256 = "163bc54ff5fa0978c49221c005770a4717e0662a736c9c907148652be0cebf46"; 553 553 } 554 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/ca/firefox-106.0.tar.bz2"; 554 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/ca/firefox-106.0.1.tar.bz2"; 555 555 locale = "ca"; 556 556 arch = "linux-i686"; 557 - sha256 = "9fca5e0a82236503e91b1c58168690e716b67aec2690cc5c5db40a28c8537991"; 557 + sha256 = "2c29871e0e6e5cd9017d4eaa24893f39adc9251f7be041ba51dadadce43e58b5"; 558 558 } 559 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/cak/firefox-106.0.tar.bz2"; 559 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/cak/firefox-106.0.1.tar.bz2"; 560 560 locale = "cak"; 561 561 arch = "linux-i686"; 562 - sha256 = "1e84ea686cca3138165f0767a9973e82aadac9af21f82c919597d7fb9958bf47"; 562 + sha256 = "d60bc6e8c14b8a3afe33817e3930022ee244552443d04dd610c1944d7b90145b"; 563 563 } 564 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/cs/firefox-106.0.tar.bz2"; 564 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/cs/firefox-106.0.1.tar.bz2"; 565 565 locale = "cs"; 566 566 arch = "linux-i686"; 567 - sha256 = "6ed2d77b44b08a753d672568578dd85086d6bd7fc82ddd82fdb2cf236d3e01e9"; 567 + sha256 = "b9d729d027c86bb620bca4f2d0792a6242c0d1963f0e1c94f37caed59deea1df"; 568 568 } 569 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/cy/firefox-106.0.tar.bz2"; 569 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/cy/firefox-106.0.1.tar.bz2"; 570 570 locale = "cy"; 571 571 arch = "linux-i686"; 572 - sha256 = "3684b726b7a690924f68a89ba7cac272760acc186643e7b489c18dda18773c34"; 572 + sha256 = "97d388f2fc00182366b4674eeffa8f96d0b05af2e39f500fce67e059343bdbbf"; 573 573 } 574 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/da/firefox-106.0.tar.bz2"; 574 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/da/firefox-106.0.1.tar.bz2"; 575 575 locale = "da"; 576 576 arch = "linux-i686"; 577 - sha256 = "91b044f757c9139ff8dc723d8e5fecb9511f7621705486d223c132b5494c1320"; 577 + sha256 = "155ccc093c3253ef01194e2bfbbffff0d19fe5d08a9a3895fd6a0c3ba6b1b7ed"; 578 578 } 579 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/de/firefox-106.0.tar.bz2"; 579 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/de/firefox-106.0.1.tar.bz2"; 580 580 locale = "de"; 581 581 arch = "linux-i686"; 582 - sha256 = "52e7a2602b7043bfd208fe5852210c49a3467c7e3aa2c686d63b662ed1d11a52"; 582 + sha256 = "955c284fdc1b89e621d846f91fdd91dc3e7aac8101a037fe4b0fa1eb1f8053cb"; 583 583 } 584 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/dsb/firefox-106.0.tar.bz2"; 584 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/dsb/firefox-106.0.1.tar.bz2"; 585 585 locale = "dsb"; 586 586 arch = "linux-i686"; 587 - sha256 = "b5bf371c20fd4cc9ccaa53218e0a2340ded62901d450eec32597f8210329cac0"; 587 + sha256 = "7f549ac2d20c33180439773c83a13abbef0f0056c8359604bfcab7d9635a9be3"; 588 588 } 589 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/el/firefox-106.0.tar.bz2"; 589 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/el/firefox-106.0.1.tar.bz2"; 590 590 locale = "el"; 591 591 arch = "linux-i686"; 592 - sha256 = "dab878a6bc30290cbfe950df48ca4cb72546583dad19e68e726ab29eebd8a58e"; 592 + sha256 = "34fdcd82dc8583d8439a9df7ef5771cd33e9838ac4325681950e9c54a9eb7f92"; 593 593 } 594 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/en-CA/firefox-106.0.tar.bz2"; 594 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/en-CA/firefox-106.0.1.tar.bz2"; 595 595 locale = "en-CA"; 596 596 arch = "linux-i686"; 597 - sha256 = "4f5b527775d99704247b164ed011b9e9fe67640d3d4604dd7365173ad3761557"; 597 + sha256 = "9f16e13defab325482328d3f0466caa251ef5a3832712e51db5016f9bf6e5ed5"; 598 598 } 599 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/en-GB/firefox-106.0.tar.bz2"; 599 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/en-GB/firefox-106.0.1.tar.bz2"; 600 600 locale = "en-GB"; 601 601 arch = "linux-i686"; 602 - sha256 = "8e517a9b86b1a1a0918a8249ed1fcf631a02a1e3178e1efd62d4a1d072753a89"; 602 + sha256 = "8d7a94a808bba71e0ebfc017a96ec2c74fcfe28cf911777161f6a2908119de6a"; 603 603 } 604 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/en-US/firefox-106.0.tar.bz2"; 604 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/en-US/firefox-106.0.1.tar.bz2"; 605 605 locale = "en-US"; 606 606 arch = "linux-i686"; 607 - sha256 = "92cae86525cf2b558ef360692863b6f95047f19cded45da617bd1fd338404839"; 607 + sha256 = "7bd5efeb3b023624c61ddb4e0683e2573d0b6b49e5521ac8fc4474c8c0c09618"; 608 608 } 609 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/eo/firefox-106.0.tar.bz2"; 609 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/eo/firefox-106.0.1.tar.bz2"; 610 610 locale = "eo"; 611 611 arch = "linux-i686"; 612 - sha256 = "d3778d596f382f26f2f734cceea6896a735c9fd15885df8dd7169a9cae11169d"; 612 + sha256 = "53bee07b6caf2dab18cb842ae3573556eecf1c2ceed46cfb554037d25ad41a8b"; 613 613 } 614 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/es-AR/firefox-106.0.tar.bz2"; 614 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/es-AR/firefox-106.0.1.tar.bz2"; 615 615 locale = "es-AR"; 616 616 arch = "linux-i686"; 617 - sha256 = "df5b7fe20d2a75e46b104d70e72520efe79c8ba23b406a5ba6ee8156d07caca9"; 617 + sha256 = "8881872e1fa6f5303dc6cc7327a3e95da16d8f56cca34e63c66f7254f00e9658"; 618 618 } 619 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/es-CL/firefox-106.0.tar.bz2"; 619 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/es-CL/firefox-106.0.1.tar.bz2"; 620 620 locale = "es-CL"; 621 621 arch = "linux-i686"; 622 - sha256 = "b4fa53a925c27abd90efa2240a026e7a95350a7b1395ebbcd52f54d2cbedcd98"; 622 + sha256 = "35ba78d075be404efce761219c208d3def7ee403282fa705be692e0d71cb9c52"; 623 623 } 624 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/es-ES/firefox-106.0.tar.bz2"; 624 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/es-ES/firefox-106.0.1.tar.bz2"; 625 625 locale = "es-ES"; 626 626 arch = "linux-i686"; 627 - sha256 = "e1e73b7b26d6c7074e95d03dd2113570871628f8a3fdeb8b7dc723be8dccf5b5"; 627 + sha256 = "89c9786196fca856a663502cbafdcb55a79a217fc220924fa3f3e91c3417de93"; 628 628 } 629 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/es-MX/firefox-106.0.tar.bz2"; 629 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/es-MX/firefox-106.0.1.tar.bz2"; 630 630 locale = "es-MX"; 631 631 arch = "linux-i686"; 632 - sha256 = "abc7eb8161dd4971af1f40dda75731ae1c07f63b3b9f0f940a4e6f85bf043aa1"; 632 + sha256 = "1ee912ea7423355dc51a966dc4d4d0b6c361a9f4186f24e9ee8c6d68f7f9f544"; 633 633 } 634 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/et/firefox-106.0.tar.bz2"; 634 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/et/firefox-106.0.1.tar.bz2"; 635 635 locale = "et"; 636 636 arch = "linux-i686"; 637 - sha256 = "e691680d7da5c262fbcb5b90028bc82099258a2a9e973c2f3a7ac3b26dc42e84"; 637 + sha256 = "ff21dd87e571a32d55d5bfd5a9bc16ff90dfdbdf91714bc2526c004d703397aa"; 638 638 } 639 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/eu/firefox-106.0.tar.bz2"; 639 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/eu/firefox-106.0.1.tar.bz2"; 640 640 locale = "eu"; 641 641 arch = "linux-i686"; 642 - sha256 = "848576d6797b46a5fab58dd46bbc285f7f7d2d9470675b27ba24c7ca161af8bf"; 642 + sha256 = "907163e0021cb42c55cb84ba5b428683890688d0e506a3293c2e6df7336b913c"; 643 643 } 644 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/fa/firefox-106.0.tar.bz2"; 644 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/fa/firefox-106.0.1.tar.bz2"; 645 645 locale = "fa"; 646 646 arch = "linux-i686"; 647 - sha256 = "826805f8f8b3ba2d3da6f115a034bd7c17163e86c01b52e1cf9b962f7adb6cbf"; 647 + sha256 = "93dc288231d3b77cda50be5a3c12ea95281db2bb84068c9463ffd0bd20b93d22"; 648 648 } 649 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/ff/firefox-106.0.tar.bz2"; 649 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/ff/firefox-106.0.1.tar.bz2"; 650 650 locale = "ff"; 651 651 arch = "linux-i686"; 652 - sha256 = "f55f87ed2e6fae44a33d842a98f850b4389ec604e05ed6e4d42b0bfa57f7e08a"; 652 + sha256 = "a93a552e57909b286104c6d3b067beb770d3cbb3c2c6933f5769ede79e5297a0"; 653 653 } 654 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/fi/firefox-106.0.tar.bz2"; 654 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/fi/firefox-106.0.1.tar.bz2"; 655 655 locale = "fi"; 656 656 arch = "linux-i686"; 657 - sha256 = "2cb6646d6b41222ee51f22c3cc890137299001f039d4a76c092c378e959b793d"; 657 + sha256 = "caf0865c18940bd33b38213fecf477e71ed76589f4f403f542adb1e3fe65c9ac"; 658 658 } 659 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/fr/firefox-106.0.tar.bz2"; 659 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/fr/firefox-106.0.1.tar.bz2"; 660 660 locale = "fr"; 661 661 arch = "linux-i686"; 662 - sha256 = "0b5248d5f8f3a6b4b656a2b6f152800158e21fe476f8774c1e9a031412a83a69"; 662 + sha256 = "9ec7d97c4ba107b63daba71b4585e6fb2ac1ae5de66cd46bdce7afa188794dd6"; 663 663 } 664 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/fy-NL/firefox-106.0.tar.bz2"; 664 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/fy-NL/firefox-106.0.1.tar.bz2"; 665 665 locale = "fy-NL"; 666 666 arch = "linux-i686"; 667 - sha256 = "281dae185d98165adcd51e348ed8aa59a9b23e2eb9d6df20091a39486f43c1a6"; 667 + sha256 = "9ae4c647c4ed2710eff78cf3e9966cafa5ef3d92044a8b6e0df730259f6c7eb2"; 668 668 } 669 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/ga-IE/firefox-106.0.tar.bz2"; 669 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/ga-IE/firefox-106.0.1.tar.bz2"; 670 670 locale = "ga-IE"; 671 671 arch = "linux-i686"; 672 - sha256 = "e1a21ae50c7f2b3ff573b92fb0a67f809a7dccc78871363b0c3e887b876c21ff"; 672 + sha256 = "eea019930245e8ecdfe9bbba7d848f079119574a8efcc7efa726156ee8ffb777"; 673 673 } 674 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/gd/firefox-106.0.tar.bz2"; 674 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/gd/firefox-106.0.1.tar.bz2"; 675 675 locale = "gd"; 676 676 arch = "linux-i686"; 677 - sha256 = "f255561bdb8abb63e1d2f7c20106d3d833dd5dea1b1a41f1d113f7713a2dee82"; 677 + sha256 = "8740cebb2df60e63a2c5d68d369385aa7e4b00c83b6f21bf684b645a2747742b"; 678 678 } 679 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/gl/firefox-106.0.tar.bz2"; 679 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/gl/firefox-106.0.1.tar.bz2"; 680 680 locale = "gl"; 681 681 arch = "linux-i686"; 682 - sha256 = "481fa8847fbf7d90dc4490f0047ecf449dc8d0ab830f9628864e58291b34fe61"; 682 + sha256 = "5a5678395eb604617f1f26bb088a0a8f490ee60accc943ddb7530c14cce47956"; 683 683 } 684 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/gn/firefox-106.0.tar.bz2"; 684 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/gn/firefox-106.0.1.tar.bz2"; 685 685 locale = "gn"; 686 686 arch = "linux-i686"; 687 - sha256 = "4a3b767e527f8ae3843cedceba5dd652e94d091cfdafbb58026714ba5c91c9c0"; 687 + sha256 = "6c9e8ee762bdd01acf05d08b3ba78bc297b6752833a5155c8aa65f8a9b5608d2"; 688 688 } 689 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/gu-IN/firefox-106.0.tar.bz2"; 689 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/gu-IN/firefox-106.0.1.tar.bz2"; 690 690 locale = "gu-IN"; 691 691 arch = "linux-i686"; 692 - sha256 = "6fd8ba68af556eb4986a48d80814d4b7bae26736f04b031b2024670cfa9aab41"; 692 + sha256 = "778e5de0eb1f22ce6962b3a197b4b8667cd05207be4536f9fd1b83fb1ecd5416"; 693 693 } 694 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/he/firefox-106.0.tar.bz2"; 694 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/he/firefox-106.0.1.tar.bz2"; 695 695 locale = "he"; 696 696 arch = "linux-i686"; 697 - sha256 = "d9f4eb87743b65dc147b933ac83a538ebcce3828a69a644f7a07187bfa2d332d"; 697 + sha256 = "d079b3279dbfb36b2a9fde267de7e11a71fce9ed9767c249033461908d1af647"; 698 698 } 699 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/hi-IN/firefox-106.0.tar.bz2"; 699 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/hi-IN/firefox-106.0.1.tar.bz2"; 700 700 locale = "hi-IN"; 701 701 arch = "linux-i686"; 702 - sha256 = "f0645150b6ce45a479d9dcd1d47a3b51e6d36d3a57d6b8037a370a068768717e"; 702 + sha256 = "cd1bf706a138e4ccf2fb3491a67432e258717a06c2bbfb1ed583a80c264ad880"; 703 703 } 704 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/hr/firefox-106.0.tar.bz2"; 704 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/hr/firefox-106.0.1.tar.bz2"; 705 705 locale = "hr"; 706 706 arch = "linux-i686"; 707 - sha256 = "5ece91da9106d2df7c13dec07f43335cd07b5a94f52c521d5b3e79e02e4dc48f"; 707 + sha256 = "ee6d2101e9b1b9281fd7fa2bd074cccb657d36acc961c43537206cb838af9c74"; 708 708 } 709 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/hsb/firefox-106.0.tar.bz2"; 709 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/hsb/firefox-106.0.1.tar.bz2"; 710 710 locale = "hsb"; 711 711 arch = "linux-i686"; 712 - sha256 = "9782ad8ac118ac2e6ced541708a31451c9db9a413be04a8fe091dc55fd113f40"; 712 + sha256 = "31a1bd9112c514739e98d110453a1b9fc7c4c097e9d22498f21242cafb3e0514"; 713 713 } 714 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/hu/firefox-106.0.tar.bz2"; 714 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/hu/firefox-106.0.1.tar.bz2"; 715 715 locale = "hu"; 716 716 arch = "linux-i686"; 717 - sha256 = "47d1e7b7c1eec2bea308d1c6291aa0cfde90c65a8af4cdf333803893783c1225"; 717 + sha256 = "8fddf8bffa16805c67cf9b72c6b21b0955753209ba23807bfc2de6bef4de0051"; 718 718 } 719 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/hy-AM/firefox-106.0.tar.bz2"; 719 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/hy-AM/firefox-106.0.1.tar.bz2"; 720 720 locale = "hy-AM"; 721 721 arch = "linux-i686"; 722 - sha256 = "43c80eebe1c3c58553e12e623c1d9617e655b7f1bf77823c2c309fbff3486109"; 722 + sha256 = "69fc52e3c2307fb36d6b165a814c5e55898b87026febc759dc6014c9de375962"; 723 723 } 724 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/ia/firefox-106.0.tar.bz2"; 724 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/ia/firefox-106.0.1.tar.bz2"; 725 725 locale = "ia"; 726 726 arch = "linux-i686"; 727 - sha256 = "231630880015e059596f553bac7e8b770881d366a1e90c76aeb6ba4db2f29549"; 727 + sha256 = "9d7f9a4706ec8180795e2aab4cf5cd82295f138616888ca88ee35d76d7457166"; 728 728 } 729 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/id/firefox-106.0.tar.bz2"; 729 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/id/firefox-106.0.1.tar.bz2"; 730 730 locale = "id"; 731 731 arch = "linux-i686"; 732 - sha256 = "e161ab7c90115455632d188a2c604707bf4dba1d11f38b53a3dd5937e17f4d14"; 732 + sha256 = "4a888680e35bf060abbe36c5b9955786e162be412282dfbf2e1949003b06ca00"; 733 733 } 734 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/is/firefox-106.0.tar.bz2"; 734 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/is/firefox-106.0.1.tar.bz2"; 735 735 locale = "is"; 736 736 arch = "linux-i686"; 737 - sha256 = "2b2858a26c6d98fe58b71ab66ee4d726e3738b5aae0cf472aecb8c630b9e1e4f"; 737 + sha256 = "2ff3a4bc90a77986f8d9b35a216d2abdda2f0e2c61b617a86c24e722a36e68a7"; 738 738 } 739 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/it/firefox-106.0.tar.bz2"; 739 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/it/firefox-106.0.1.tar.bz2"; 740 740 locale = "it"; 741 741 arch = "linux-i686"; 742 - sha256 = "0b8a9a8430ca096103face77f8e03bb66822b47c6744b7885943e188f650912c"; 742 + sha256 = "ee804ceab7b4a42e9e781ea4b2d65d877561bb85bdf1e3079514c973b27106b4"; 743 743 } 744 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/ja/firefox-106.0.tar.bz2"; 744 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/ja/firefox-106.0.1.tar.bz2"; 745 745 locale = "ja"; 746 746 arch = "linux-i686"; 747 - sha256 = "c519dd593b8251b2a198694840c73eedb8b4b54d68ba174bf2b09d19456328cb"; 747 + sha256 = "6875c91a033986e4600dbe8bdd2326b3d9f1233fd81162860479aeec5eeb67e4"; 748 748 } 749 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/ka/firefox-106.0.tar.bz2"; 749 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/ka/firefox-106.0.1.tar.bz2"; 750 750 locale = "ka"; 751 751 arch = "linux-i686"; 752 - sha256 = "c1069d36ba31c5c93f5823fffd814da0456780f0a08dd889d9530a94a6c9c527"; 752 + sha256 = "9e571e902b4925c9294f1093d161607943df0b9797c3e4dae323ad7271258a90"; 753 753 } 754 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/kab/firefox-106.0.tar.bz2"; 754 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/kab/firefox-106.0.1.tar.bz2"; 755 755 locale = "kab"; 756 756 arch = "linux-i686"; 757 - sha256 = "b8b1021ca63bf083611d8c2da1eb23f089a196a84fccc5423c02e542ba48d257"; 757 + sha256 = "31e00fb9ca697f18a1770be7665b981bd8fc5558cf2247f3211056603b396e08"; 758 758 } 759 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/kk/firefox-106.0.tar.bz2"; 759 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/kk/firefox-106.0.1.tar.bz2"; 760 760 locale = "kk"; 761 761 arch = "linux-i686"; 762 - sha256 = "dbb1fdb3f7ae5f3c560849af1a944bdfbd2a2da2c6ad3288df3464f58b00dcac"; 762 + sha256 = "3d369677b8fe663847e30c0399a2dde9e4692d209aeffb6a2411516bd5607040"; 763 763 } 764 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/km/firefox-106.0.tar.bz2"; 764 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/km/firefox-106.0.1.tar.bz2"; 765 765 locale = "km"; 766 766 arch = "linux-i686"; 767 - sha256 = "5e2ad3dbdb9f0702d88b2015bb64096368458a85717bf08be50ad5a58a6756de"; 767 + sha256 = "654218c82d49aa77e1d2c28892b027944976eed8195de5f674d651b163291fa0"; 768 768 } 769 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/kn/firefox-106.0.tar.bz2"; 769 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/kn/firefox-106.0.1.tar.bz2"; 770 770 locale = "kn"; 771 771 arch = "linux-i686"; 772 - sha256 = "56a51bc4059e62246fc491083a3b0e7437db629fb0b251e9c4b1b6e29891f888"; 772 + sha256 = "cda09b1ab169473fbc8a201807cbceef4382ab0a346fd428d95ba2754dc776f4"; 773 773 } 774 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/ko/firefox-106.0.tar.bz2"; 774 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/ko/firefox-106.0.1.tar.bz2"; 775 775 locale = "ko"; 776 776 arch = "linux-i686"; 777 - sha256 = "865eecb5d1d94e672be0a22a5851bd726722b062f64790ecf28897e3f4c1b82f"; 777 + sha256 = "c94b4936819f53a76cdf9b50077f8ae66c69153ffb3f34b556a9ec2c6f655474"; 778 778 } 779 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/lij/firefox-106.0.tar.bz2"; 779 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/lij/firefox-106.0.1.tar.bz2"; 780 780 locale = "lij"; 781 781 arch = "linux-i686"; 782 - sha256 = "80f11bb6a0db1bef415247e0e340b1a54a57c909cedbf4b9eb8afe7d102b2a36"; 782 + sha256 = "4930d71723c240f5493bd032d4a578b2dbf87073be4cd3bf3b43674d48c1efca"; 783 783 } 784 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/lt/firefox-106.0.tar.bz2"; 784 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/lt/firefox-106.0.1.tar.bz2"; 785 785 locale = "lt"; 786 786 arch = "linux-i686"; 787 - sha256 = "9311f1080d80b34ea8a779f96179d45a91a8bb8d4c9a536cc1f44996cd7cf02a"; 787 + sha256 = "0323e677a9748aa13a282152504751e41e19bc4692e926898a23d70b1bce8240"; 788 788 } 789 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/lv/firefox-106.0.tar.bz2"; 789 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/lv/firefox-106.0.1.tar.bz2"; 790 790 locale = "lv"; 791 791 arch = "linux-i686"; 792 - sha256 = "235a3b1a9983d6a25591ffcf1f8a1b97ed0a44b78640d55c1f9aa6db8d327300"; 792 + sha256 = "6de336ecdb9ec67d3cd24416fbfa2430b54add6d5e586b672b3cae977a017933"; 793 793 } 794 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/mk/firefox-106.0.tar.bz2"; 794 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/mk/firefox-106.0.1.tar.bz2"; 795 795 locale = "mk"; 796 796 arch = "linux-i686"; 797 - sha256 = "20646b0c68582391c2f6fddce0e8cb94043dd5f8268eb0f156696508811e7f80"; 797 + sha256 = "5332892231716c401846a780eb18df1f3944f29db61d0f05418a0044a51a36df"; 798 798 } 799 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/mr/firefox-106.0.tar.bz2"; 799 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/mr/firefox-106.0.1.tar.bz2"; 800 800 locale = "mr"; 801 801 arch = "linux-i686"; 802 - sha256 = "0ec7ec41170b9741ee59fe853234d9370ce082b78ec85bcc5e2671fc80aee190"; 802 + sha256 = "8be7fc6fea188481fc98eb1141afc3f283b716270f8281fa96fff774f2d55070"; 803 803 } 804 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/ms/firefox-106.0.tar.bz2"; 804 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/ms/firefox-106.0.1.tar.bz2"; 805 805 locale = "ms"; 806 806 arch = "linux-i686"; 807 - sha256 = "95a8ff900816b3bb4bbb5d3f69a1093cdd45031ef8ca4cd52d6947324e1f721e"; 807 + sha256 = "c72395da50fb54753fe2488c0125e0d0b1f1c3e521538ba57f9c47a15c6b9743"; 808 808 } 809 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/my/firefox-106.0.tar.bz2"; 809 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/my/firefox-106.0.1.tar.bz2"; 810 810 locale = "my"; 811 811 arch = "linux-i686"; 812 - sha256 = "56501c51e6901aa7fd806f716fe93b51e1725c5acd8709976edbb3c4e2584e9e"; 812 + sha256 = "b2f56edaea8f9c4d4928edf913803cd2bd281af82d239b865c80e204ed7f00c2"; 813 813 } 814 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/nb-NO/firefox-106.0.tar.bz2"; 814 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/nb-NO/firefox-106.0.1.tar.bz2"; 815 815 locale = "nb-NO"; 816 816 arch = "linux-i686"; 817 - sha256 = "10bf19ba28db4c310d9b2241ade1d13bb1ac8052f4fe701cb13d5b47fb43c93e"; 817 + sha256 = "271e700ad7521a9f7a346b26e0ad80e2e912668eba81a0f16fb596d0a1e660b9"; 818 818 } 819 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/ne-NP/firefox-106.0.tar.bz2"; 819 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/ne-NP/firefox-106.0.1.tar.bz2"; 820 820 locale = "ne-NP"; 821 821 arch = "linux-i686"; 822 - sha256 = "9c71d1e9aae97d131bde590bcd17b75966a2675980107e8687966f70be752b01"; 822 + sha256 = "34b974927f7bc142a0cb1bb432e25ac5105ca1c3d56a7673262334cdd0888a8e"; 823 823 } 824 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/nl/firefox-106.0.tar.bz2"; 824 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/nl/firefox-106.0.1.tar.bz2"; 825 825 locale = "nl"; 826 826 arch = "linux-i686"; 827 - sha256 = "89343853986eb6f679c8e360f6fd0cf46a1631013016433f7c056c7cbf01d37d"; 827 + sha256 = "d10248e4af2639ef157d834a72a5f863171a538454b9b78da42fdebf4c5897b2"; 828 828 } 829 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/nn-NO/firefox-106.0.tar.bz2"; 829 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/nn-NO/firefox-106.0.1.tar.bz2"; 830 830 locale = "nn-NO"; 831 831 arch = "linux-i686"; 832 - sha256 = "413cff17d8944505b02faba4ae33bcd9aae68d996958c4aef5b1e22da6ba2725"; 832 + sha256 = "cbe5407ee2f158bf859cb6bdb83dbefc7136aeb2c5aa14df6fb6a4ecd907e9bd"; 833 833 } 834 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/oc/firefox-106.0.tar.bz2"; 834 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/oc/firefox-106.0.1.tar.bz2"; 835 835 locale = "oc"; 836 836 arch = "linux-i686"; 837 - sha256 = "2fdefc22c58d4f6936326e1759695ed5569af73a41667194b3a7bcb5edeff093"; 837 + sha256 = "59f81bf4f2ca3478434e53442ee910875de1b59c4e0efa81e0e57cb908a40ac9"; 838 838 } 839 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/pa-IN/firefox-106.0.tar.bz2"; 839 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/pa-IN/firefox-106.0.1.tar.bz2"; 840 840 locale = "pa-IN"; 841 841 arch = "linux-i686"; 842 - sha256 = "b36f30c0c47e9d4826d29ec14355b8a942e0672d6ff976eb6b4af203d165bb62"; 842 + sha256 = "cb760a9bde61467ffc3f19401d1b6d20d70ee02cda9c1dc9d63b63dc88a79786"; 843 843 } 844 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/pl/firefox-106.0.tar.bz2"; 844 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/pl/firefox-106.0.1.tar.bz2"; 845 845 locale = "pl"; 846 846 arch = "linux-i686"; 847 - sha256 = "cbec3a5bb746011e3c9a4a2a51eb1941ac789f166b8cbe3d030c48ec6ec9682b"; 847 + sha256 = "603606ad44552ddfb930527d8041eddfbb52159ac96914e1ee949594a4bea149"; 848 848 } 849 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/pt-BR/firefox-106.0.tar.bz2"; 849 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/pt-BR/firefox-106.0.1.tar.bz2"; 850 850 locale = "pt-BR"; 851 851 arch = "linux-i686"; 852 - sha256 = "0e096edec0b201db30947b3b86f33df7bd22282df27b4db8c63af4ed430e0ba3"; 852 + sha256 = "a603d3078db5f27db9a6af118001f904912e3a7eccdca862996de5af6d52d72b"; 853 853 } 854 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/pt-PT/firefox-106.0.tar.bz2"; 854 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/pt-PT/firefox-106.0.1.tar.bz2"; 855 855 locale = "pt-PT"; 856 856 arch = "linux-i686"; 857 - sha256 = "1fc9d4b019440ad92a947651fa4b5540761f48d63b38b10dd922dc178eebee27"; 857 + sha256 = "222fa8104474c2cb83b289692e2d32575ad78c7aa3694ac079fbf2499c95d01b"; 858 858 } 859 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/rm/firefox-106.0.tar.bz2"; 859 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/rm/firefox-106.0.1.tar.bz2"; 860 860 locale = "rm"; 861 861 arch = "linux-i686"; 862 - sha256 = "1f115c6f04b2bfe5664a3ec4765f3f5a3f18d5e78819cdb2a0ee77584d74011c"; 862 + sha256 = "76c269dc85488160029d93a0726907e72d08b940b460a845533b969d444521ce"; 863 863 } 864 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/ro/firefox-106.0.tar.bz2"; 864 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/ro/firefox-106.0.1.tar.bz2"; 865 865 locale = "ro"; 866 866 arch = "linux-i686"; 867 - sha256 = "5230c030cb7e88f1491125c62cadd3bbaaeb9254fefe13f6cd88f159edccc985"; 867 + sha256 = "932691e66c21d0037116b9250e927d51c3f53dbe146b20e6672034cc1f9234cd"; 868 868 } 869 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/ru/firefox-106.0.tar.bz2"; 869 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/ru/firefox-106.0.1.tar.bz2"; 870 870 locale = "ru"; 871 871 arch = "linux-i686"; 872 - sha256 = "c9183946d255081f56de033070077eafc9715ee2dd05e112fdec4e63d6c72b6f"; 872 + sha256 = "e12a4565d69e3e34f16f901539c706141f6be02d6d5382bdd49c22543ffc71be"; 873 873 } 874 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/sco/firefox-106.0.tar.bz2"; 874 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/sco/firefox-106.0.1.tar.bz2"; 875 875 locale = "sco"; 876 876 arch = "linux-i686"; 877 - sha256 = "0efda19f180b52bf3bfd36162655be7b76b450fb90f5494e718522ad1dfafc81"; 877 + sha256 = "9a19c5b3c9decc0d2f08f410b4e65312561878822d6e8cf5f7db0d2c976f2eb4"; 878 878 } 879 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/si/firefox-106.0.tar.bz2"; 879 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/si/firefox-106.0.1.tar.bz2"; 880 880 locale = "si"; 881 881 arch = "linux-i686"; 882 - sha256 = "67986d63fa4e1c78a9a123130dc32553b023f685337ab18ed4f98b1c02a39f1a"; 882 + sha256 = "4030598f2716585c30334151d4147b01b3ddf363c668ae971c52b779e0bf7ffa"; 883 883 } 884 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/sk/firefox-106.0.tar.bz2"; 884 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/sk/firefox-106.0.1.tar.bz2"; 885 885 locale = "sk"; 886 886 arch = "linux-i686"; 887 - sha256 = "dabab0ee872bc6bfd5206a6be8b75b829ca6b180fe96b73e14c4a3046dcffb54"; 887 + sha256 = "c247c6b1657e55c27ba10bd5256eb5d68a0ae51aa0a53c98d5eb03430c9401db"; 888 888 } 889 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/sl/firefox-106.0.tar.bz2"; 889 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/sl/firefox-106.0.1.tar.bz2"; 890 890 locale = "sl"; 891 891 arch = "linux-i686"; 892 - sha256 = "fc932bf0ccc54960f1969e9c37bf924a450af14da0e28c36ed1d098111dc1eb8"; 892 + sha256 = "5c854b94c2c84136ac320787f04702b4334d2d52e95a97bf80fe014a06df0591"; 893 893 } 894 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/son/firefox-106.0.tar.bz2"; 894 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/son/firefox-106.0.1.tar.bz2"; 895 895 locale = "son"; 896 896 arch = "linux-i686"; 897 - sha256 = "aae79353a35890e8a359071e7bf58a09b2c1bca729a8b0cd1d0cc9b42080e6ce"; 897 + sha256 = "c8ea64963e41d236541ad5e9eaabc6c87e1da684ad211627134b48c193ef9004"; 898 898 } 899 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/sq/firefox-106.0.tar.bz2"; 899 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/sq/firefox-106.0.1.tar.bz2"; 900 900 locale = "sq"; 901 901 arch = "linux-i686"; 902 - sha256 = "5182ee1659f67c3e5f3ccaeedbe4ede39d80e1c82fe8ef87b8a885333b009fa9"; 902 + sha256 = "86a58fc53be72682e686d7bd317117b93b1a074df4a2a4eaea781a31f295f246"; 903 903 } 904 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/sr/firefox-106.0.tar.bz2"; 904 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/sr/firefox-106.0.1.tar.bz2"; 905 905 locale = "sr"; 906 906 arch = "linux-i686"; 907 - sha256 = "cce4e2007b6fd7c53378026dde4fa8fbfd9f2d55e238b95241befb7df30fdd70"; 907 + sha256 = "5241ad256931a6a59c40f2bf8478676951b6030ab89965c1085289cfbe85d62f"; 908 908 } 909 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/sv-SE/firefox-106.0.tar.bz2"; 909 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/sv-SE/firefox-106.0.1.tar.bz2"; 910 910 locale = "sv-SE"; 911 911 arch = "linux-i686"; 912 - sha256 = "844235c7a17f0c48ed5904fad6ec641595985d7095ed8f779845231ad904852b"; 912 + sha256 = "55ccc7815c95a1f023cc0a0771d9ce8b7f5e309f5ecc5dd56b9a85d2c3b46f18"; 913 913 } 914 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/szl/firefox-106.0.tar.bz2"; 914 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/szl/firefox-106.0.1.tar.bz2"; 915 915 locale = "szl"; 916 916 arch = "linux-i686"; 917 - sha256 = "f9adeccfd1c59d00dc508826ab7741da188c9e065385f323cabcc5829cec3612"; 917 + sha256 = "9125a91d898a510ee268398684de1ff34b49b13e8a7661bc4d90ffdacf3e6252"; 918 918 } 919 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/ta/firefox-106.0.tar.bz2"; 919 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/ta/firefox-106.0.1.tar.bz2"; 920 920 locale = "ta"; 921 921 arch = "linux-i686"; 922 - sha256 = "1ca7237bb2c4016dfa24b4e4b4fdf887bf323c621ad0f5fbcd683ca7bf66499a"; 922 + sha256 = "911c397b47ff1d3ba9e1e990d1c08e9ad6d3a092e09f8cbdca3537c81b386fe7"; 923 923 } 924 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/te/firefox-106.0.tar.bz2"; 924 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/te/firefox-106.0.1.tar.bz2"; 925 925 locale = "te"; 926 926 arch = "linux-i686"; 927 - sha256 = "691a55224707bd8ad416cfe3d3310b0c043cff65f8d85eccb46009983b18494f"; 927 + sha256 = "25627e0fb575426dffda0d3c87e2f444dfff2d0b3cc2219548a033a02e990f1d"; 928 928 } 929 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/th/firefox-106.0.tar.bz2"; 929 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/th/firefox-106.0.1.tar.bz2"; 930 930 locale = "th"; 931 931 arch = "linux-i686"; 932 - sha256 = "8f91074d15c87fa6ea7141264d51893969a2e3215bdf759c431300191274cb38"; 932 + sha256 = "d44972ab642179ccfa6de2ec6cc6d6a4332362e23167c4a1de2f2f011ff2448f"; 933 933 } 934 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/tl/firefox-106.0.tar.bz2"; 934 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/tl/firefox-106.0.1.tar.bz2"; 935 935 locale = "tl"; 936 936 arch = "linux-i686"; 937 - sha256 = "3946e9c605f0239ca2ca70a0a2d3bcc1d4fd1fa0821a649516cea16e46c5030f"; 937 + sha256 = "9a5775198e4305242211a2e44ff8dbbf3b78b02b227887e3b5704af770641f50"; 938 938 } 939 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/tr/firefox-106.0.tar.bz2"; 939 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/tr/firefox-106.0.1.tar.bz2"; 940 940 locale = "tr"; 941 941 arch = "linux-i686"; 942 - sha256 = "a0afd4098f8e450feb60214542d98f08bd1a7a6bc616c4d38f7eeae0c370bf57"; 942 + sha256 = "ffabcb2913e2bcc678696d073170377f30f9559c3c8a0d3a7a6b16e74c4c3ac7"; 943 943 } 944 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/trs/firefox-106.0.tar.bz2"; 944 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/trs/firefox-106.0.1.tar.bz2"; 945 945 locale = "trs"; 946 946 arch = "linux-i686"; 947 - sha256 = "1f85210d6a0d248d44db8acebf7ccd6c8a8c2b7605cc8279dc7cb7ee1f1075d9"; 947 + sha256 = "b5d3a5d575c04ae36290a5d5142ef7f993674d2861486bec2fa1bd24520eb5e5"; 948 948 } 949 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/uk/firefox-106.0.tar.bz2"; 949 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/uk/firefox-106.0.1.tar.bz2"; 950 950 locale = "uk"; 951 951 arch = "linux-i686"; 952 - sha256 = "ad624f6dedc3dbcda79a043af431be38ddc7e05111315d100dfb3dd67486c716"; 952 + sha256 = "3b0b32b94d9e0258c7555b09c38c71b22c6c22ef06dcf005400d0bd6a766d5d9"; 953 953 } 954 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/ur/firefox-106.0.tar.bz2"; 954 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/ur/firefox-106.0.1.tar.bz2"; 955 955 locale = "ur"; 956 956 arch = "linux-i686"; 957 - sha256 = "cd6ebe9d4dbe7c8d8ec2f24be62775e756cf3c9307d9c2fc7964a97b6db70eea"; 957 + sha256 = "3915095ea690e0bba685e71da49b689561a122fb3914ee4ed2430d991104f16e"; 958 958 } 959 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/uz/firefox-106.0.tar.bz2"; 959 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/uz/firefox-106.0.1.tar.bz2"; 960 960 locale = "uz"; 961 961 arch = "linux-i686"; 962 - sha256 = "fd88db7111c8a3cb73eca783b75bf9340238009d6be12ff2e061d6a71a6b548e"; 962 + sha256 = "73e9355528be81af00fb55143f6491c798213be197b7fcfe200e80d1075c3282"; 963 963 } 964 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/vi/firefox-106.0.tar.bz2"; 964 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/vi/firefox-106.0.1.tar.bz2"; 965 965 locale = "vi"; 966 966 arch = "linux-i686"; 967 - sha256 = "d3d1d0192813c05d61f370ef99669d014bc2b9999baa4d7aaa9af411911a75c4"; 967 + sha256 = "0a36154fda9cd6877a2068474da60d859cc1338c38d1897ac1d9085d73bed0df"; 968 968 } 969 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/xh/firefox-106.0.tar.bz2"; 969 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/xh/firefox-106.0.1.tar.bz2"; 970 970 locale = "xh"; 971 971 arch = "linux-i686"; 972 - sha256 = "dba3179fc89f3de7b06be8279b1144cb852679f3945ba5603c37c134f6c07de6"; 972 + sha256 = "1befeacf0ad002e6cf7cf2ff8d57277eac4d05f2df68dd2f97ac4063cbf5c573"; 973 973 } 974 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/zh-CN/firefox-106.0.tar.bz2"; 974 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/zh-CN/firefox-106.0.1.tar.bz2"; 975 975 locale = "zh-CN"; 976 976 arch = "linux-i686"; 977 - sha256 = "d3011cdd8213d70c3adfcfabeb9f970a127ebc1e00b2ce6e2524ae55f31870d0"; 977 + sha256 = "8c607afb1a79b9e3af94cbd4a1f847c8aef5fb4dbc31157a49ec52b89515d129"; 978 978 } 979 - { url = "https://archive.mozilla.org/pub/firefox/releases/106.0/linux-i686/zh-TW/firefox-106.0.tar.bz2"; 979 + { url = "https://archive.mozilla.org/pub/firefox/releases/106.0.1/linux-i686/zh-TW/firefox-106.0.1.tar.bz2"; 980 980 locale = "zh-TW"; 981 981 arch = "linux-i686"; 982 - sha256 = "1300be1465e518ff2adc273fdd1650216e5f8171407901b95019cb0ba47d5198"; 982 + sha256 = "a5fc3a0d052781f8511da1ba585d7fa7e0ab0786d8eef596bb1744fdc9600e13"; 983 983 } 984 984 ]; 985 985 }
+2 -2
pkgs/applications/networking/browsers/firefox/packages.nix
··· 3 3 rec { 4 4 firefox = buildMozillaMach rec { 5 5 pname = "firefox"; 6 - version = "106.0"; 6 + version = "106.0.1"; 7 7 src = fetchurl { 8 8 url = "mirror://mozilla/firefox/releases/${version}/source/firefox-${version}.source.tar.xz"; 9 - sha512 = "30ced2fff818858267eaab23974f6962c5d39433ce8e26507589535fc9348f00cf5e45b90997dfb6e2361b70900547fdb0e70d741127cc6705089ea585ea2296"; 9 + sha512 = "15f5a65a69e11dd0c463b358cafb5ad0f31db93619b9ec3f89e8c5e14d4d319d9423fe4dcd0dbbcbedc1ad444dcbd8e5e30e483220277f5b550bff6124b66519"; 10 10 }; 11 11 12 12 # This patch could be applied anywhere (just rebuild, no effect)
+4 -3
pkgs/applications/networking/cluster/odo/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "odo"; 5 - version = "2.5.1"; 5 + version = "3.0.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "redhat-developer"; 9 9 repo = "odo"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-+UvG+aDji/GtkXdt+xZB06j6NxjeK2nhBjle5K+lx/A="; 11 + sha256 = "sha256-CtlT6nUh0oqjJSWaIqAgu9CNGVHcf+uLNWBCl950Kus="; 12 12 }; 13 13 14 14 vendorSha256 = null; ··· 31 31 meta = with lib; { 32 32 description = "Developer-focused CLI for OpenShift and Kubernetes"; 33 33 license = licenses.asl20; 34 - homepage = "odo.dev"; 34 + homepage = "https://odo.dev"; 35 + changelog = "https://github.com/redhat-developer/odo/releases/v${version}"; 35 36 maintainers = with maintainers; [ stehessel ]; 36 37 platforms = platforms.unix; 37 38 };
+16 -16
pkgs/applications/networking/cluster/terraform-providers/providers.json
··· 30 30 "version": "0.1.1" 31 31 }, 32 32 "aiven": { 33 - "hash": "sha256-ceicNERNIM6KDjSXF/D3NG1aTC2Mhlhbq56QbsJUuF4=", 33 + "hash": "sha256-+Uzz2eu873lh707/zADfMK/4D5wDMxXZtAf0RU6V42M=", 34 34 "owner": "aiven", 35 35 "provider-source-address": "registry.terraform.io/aiven/aiven", 36 36 "repo": "terraform-provider-aiven", 37 - "rev": "v3.7.0", 38 - "vendorHash": "sha256-4fbbbJnWzJ4DF3YjkeH/mqS45LVc5yg7zSC9V8jGbXo=", 39 - "version": "3.7.0" 37 + "rev": "v3.8.0", 38 + "vendorHash": "sha256-F+zF9xqHNCXrGxOjEoe8gaGS0C7EO0s61CjN9+9PiYk=", 39 + "version": "3.8.0" 40 40 }, 41 41 "akamai": { 42 42 "hash": "sha256-+EHXB2VH1UWYQ1y6Ou+5VhjH7elhfgLYW/imhN2t15Q=", ··· 102 102 "version": "2.24.1" 103 103 }, 104 104 "aws": { 105 - "hash": "sha256-Pyp3LaoXL3vtF2q6g5rGdvPdszd/GB2gzfUqUyhkVeM=", 105 + "hash": "sha256-0oN4kbAm2j32VZhcPe62M8ILEBHxeujnTMgeToDsAe4=", 106 106 "owner": "hashicorp", 107 107 "provider-source-address": "registry.terraform.io/hashicorp/aws", 108 108 "repo": "terraform-provider-aws", 109 - "rev": "v4.35.0", 110 - "vendorHash": "sha256-9qI3n+Py2lbSjHJKZTaFEA2dXGOgSAIZqoA1gXDbEOY=", 111 - "version": "4.35.0" 109 + "rev": "v4.36.0", 110 + "vendorHash": "sha256-rIZUmZHeYJGdKSKjw14gbIH6mCEYbBe5VthnLXjqKJc=", 111 + "version": "4.36.0" 112 112 }, 113 113 "azuread": { 114 114 "hash": "sha256-rj/ODxmuK0Ro1KVHh4onR/evtUdKzay9BpQDgrx+eNA=", ··· 786 786 "version": "3.5.1" 787 787 }, 788 788 "nomad": { 789 - "hash": "sha256-HhocWB3ZCFdeYgmA64hv1CYwqIf4EB/Q+vNrFKVB31I=", 789 + "hash": "sha256-oHY+jM4JQgLlE1wd+/H9H8H2g0e9ZuxI6OMlz3Izfjg=", 790 790 "owner": "hashicorp", 791 791 "provider-source-address": "registry.terraform.io/hashicorp/nomad", 792 792 "repo": "terraform-provider-nomad", 793 - "rev": "v1.4.18", 794 - "vendorHash": "sha256-jS0soOe8kVnsC8Aum1zuiqHColOZmKEpu7jP74AnXmM=", 795 - "version": "1.4.18" 793 + "rev": "v1.4.19", 794 + "vendorHash": "sha256-3t8pUAwuVeZN5cYGs72YsdRvJunudSmKSldFWEFVA/4=", 795 + "version": "1.4.19" 796 796 }, 797 797 "ns1": { 798 798 "hash": "sha256-vw3n1EBKwOThoJ+2hFa4rsMzvWCOnhoYOmJpX8LQKy8=", ··· 1284 1284 "version": "3.2.0" 1285 1285 }, 1286 1286 "yandex": { 1287 - "hash": "sha256-h8uMN08lwpG8gnCd4jnz/+eIfJEQnZcexW/THYLM4/8=", 1287 + "hash": "sha256-WdiJD1gt56VDFe2qVKwiYOvneixaGRie6mrxdOCklQY=", 1288 1288 "owner": "yandex-cloud", 1289 1289 "provider-source-address": "registry.terraform.io/yandex-cloud/yandex", 1290 1290 "repo": "terraform-provider-yandex", 1291 - "rev": "v0.80.0", 1292 - "vendorHash": "sha256-PKWLVh/XMinLjj343fwlgWA7K2K+yVXJQ7M6LRmmdp8=", 1293 - "version": "0.80.0" 1291 + "rev": "v0.81.0", 1292 + "vendorHash": "sha256-n+XARZuMzmxUGxFAseKyiBsKuGDUl8T6LWXzJ+6ZJ/E=", 1293 + "version": "0.81.0" 1294 1294 } 1295 1295 }
+4 -7
pkgs/applications/networking/mailreaders/claws-mail/default.nix
··· 98 98 ]; 99 99 in stdenv.mkDerivation rec { 100 100 pname = "claws-mail"; 101 - version = "4.1.0"; 101 + version = "4.1.1"; 102 102 103 103 src = fetchurl { 104 104 url = "https://claws-mail.org/download.php?file=releases/claws-mail-${version}.tar.xz"; 105 - hash = "sha256-DhqcoNuNKp4FiuMM3H/JGXeSFOw8Vu4Min+IzCOBeo4="; 105 + hash = "sha256-sYnnAMGJb14N6wt21L+oIOt6wZNe4Qqpr7raPPU6A0Q="; 106 106 }; 107 107 108 108 outputs = [ "out" "dev" ]; 109 109 110 110 patches = [ 111 111 ./mime.patch 112 - # fix build with perl 5.36+ 113 - (fetchurl { 114 - url = "https://raw.githubusercontent.com/archlinux/svntogit-packages/packages/claws-mail/trunk/20cope_with_fix_for_1009149.patch"; 115 - hash = "sha256-/WBslmoFvja2v2GEBntxvNtG0I3xtkUUqXO5gl5pqqs="; 116 - }) 117 112 ]; 118 113 119 114 preConfigure = '' ··· 119 124 ''; 120 125 121 126 postPatch = '' 127 + substituteInPlace configure.ac \ 128 + --replace 'm4_esyscmd([./get-git-version])' '${version}' 122 129 substituteInPlace src/procmime.c \ 123 130 --subst-var-by MIMEROOTDIR ${shared-mime-info}/share 124 131 '';
+7 -3
pkgs/applications/networking/mailreaders/sylpheed/default.nix
··· 19 19 (fetchpatch { 20 20 # patch upstream bug https://sylpheed.sraoss.jp/redmine/issues/306 21 21 name = "patch-libsylph_ssl_c.patch"; 22 + extraPrefix = ""; 22 23 url = "https://cvsweb.openbsd.org/cgi-bin/cvsweb/~checkout~/ports/mail/sylpheed/patches/patch-libsylph_ssl_c?rev=1.4&content-type=text/plain"; 23 - sha256 = "sha256-k9OwPtHrEjaxXdH0trNqXgJMhR8kjgtei9pi6OFvILk="; 24 + sha256 = "sha256-+FetU5vrfvE78nYAjKK/QFZnFw+Zr2PvoUGRWCuZczs="; 25 + }) 26 + (fetchpatch { 27 + name = "CVE-2021-37746.patch"; 28 + url = "https://git.claws-mail.org/?p=claws.git;a=patch;h=ac286a71ed78429e16c612161251b9ea90ccd431"; 29 + sha256 = "sha256-oLmUShtvO6io3jibKT67eO0O58vEDZEeaB51QTd3UkU="; 24 30 }) 25 31 ]; 26 - 27 - patchFlags = [ "-p0" ]; 28 32 29 33 nativeBuildInputs = [ pkg-config ]; 30 34
+265 -265
pkgs/applications/networking/mailreaders/thunderbird-bin/release_sources.nix
··· 1 1 { 2 - version = "102.3.3"; 2 + version = "102.4.0"; 3 3 sources = [ 4 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-x86_64/af/thunderbird-102.3.3.tar.bz2"; 4 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-x86_64/af/thunderbird-102.4.0.tar.bz2"; 5 5 locale = "af"; 6 6 arch = "linux-x86_64"; 7 - sha256 = "2117862d27cc35495f89ce0f013cf7afa64af058528ed9d85033f0da6513d9a8"; 7 + sha256 = "93c9dccd3f4a81610d91f4388d0f84d91cd9e8c55458dc2992f510ed07744780"; 8 8 } 9 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-x86_64/ar/thunderbird-102.3.3.tar.bz2"; 9 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-x86_64/ar/thunderbird-102.4.0.tar.bz2"; 10 10 locale = "ar"; 11 11 arch = "linux-x86_64"; 12 - sha256 = "6d21c2ac3b202720d9c512aa24d2365508c8b887e37e08cb130128186a6dc575"; 12 + sha256 = "f3693cbc8d7c8eaec41a6498660686a94b7c7ac541cf65193385bbc090b080c1"; 13 13 } 14 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-x86_64/ast/thunderbird-102.3.3.tar.bz2"; 14 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-x86_64/ast/thunderbird-102.4.0.tar.bz2"; 15 15 locale = "ast"; 16 16 arch = "linux-x86_64"; 17 - sha256 = "edf2fd51ed6525c3695ba2a73a333f80e71db56ed3465e95545cc11817db5ff7"; 17 + sha256 = "324d925d6c6b5a0e46123b0a4bfee932dc01a1e91df0b0f0d88a5159c87909ab"; 18 18 } 19 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-x86_64/be/thunderbird-102.3.3.tar.bz2"; 19 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-x86_64/be/thunderbird-102.4.0.tar.bz2"; 20 20 locale = "be"; 21 21 arch = "linux-x86_64"; 22 - sha256 = "7c151e8aa9fc9a625df19578756bea5895c9c32ec521f662f5d4c007718a6175"; 22 + sha256 = "e89053d47291e001b60e76f01ce56c01e180a7785b3e8a80b30e85eddfcabddc"; 23 23 } 24 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-x86_64/bg/thunderbird-102.3.3.tar.bz2"; 24 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-x86_64/bg/thunderbird-102.4.0.tar.bz2"; 25 25 locale = "bg"; 26 26 arch = "linux-x86_64"; 27 - sha256 = "5b0300f866c0d4f5d82dac26a49ad57a6acbc1761eff5b9a05beecebfb41827e"; 27 + sha256 = "ebd61de1626f18fb3c4296f4a3e546064e280cffd1290fe95049adaa942453e7"; 28 28 } 29 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-x86_64/br/thunderbird-102.3.3.tar.bz2"; 29 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-x86_64/br/thunderbird-102.4.0.tar.bz2"; 30 30 locale = "br"; 31 31 arch = "linux-x86_64"; 32 - sha256 = "9ff4ea160821ff92451a644d1b9adb11a931af0d2799bfd62efc4babcdda6c52"; 32 + sha256 = "50c6ed53eb3e8db065562b4ec3d2e780385364426133fa5204141a93d7d6c400"; 33 33 } 34 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-x86_64/ca/thunderbird-102.3.3.tar.bz2"; 34 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-x86_64/ca/thunderbird-102.4.0.tar.bz2"; 35 35 locale = "ca"; 36 36 arch = "linux-x86_64"; 37 - sha256 = "55209f52c756351f175583d30976d0aff65e6434a53fab26a579fe576104bc08"; 37 + sha256 = "9c500fae332cfd1140547da498d8d5c5798a00e9fbf8036da1cc69f8f30974d4"; 38 38 } 39 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-x86_64/cak/thunderbird-102.3.3.tar.bz2"; 39 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-x86_64/cak/thunderbird-102.4.0.tar.bz2"; 40 40 locale = "cak"; 41 41 arch = "linux-x86_64"; 42 - sha256 = "76b8051c060f1ba667215ad3a9f7dd86674bf1644af2121f2397ad8f248fd8de"; 42 + sha256 = "cb21ff9e839c092bf7b15dc033af66d7e0817ebccb54a93ad20a485cf2ef017d"; 43 43 } 44 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-x86_64/cs/thunderbird-102.3.3.tar.bz2"; 44 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-x86_64/cs/thunderbird-102.4.0.tar.bz2"; 45 45 locale = "cs"; 46 46 arch = "linux-x86_64"; 47 - sha256 = "0d346c3116243125a63e2a3be2dbe99def481fa1be5b3013fe50354940daccea"; 47 + sha256 = "82718115f0cbf0f609c465a9399a5947292a0ae81234802b163ec362c3d1b7b2"; 48 48 } 49 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-x86_64/cy/thunderbird-102.3.3.tar.bz2"; 49 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-x86_64/cy/thunderbird-102.4.0.tar.bz2"; 50 50 locale = "cy"; 51 51 arch = "linux-x86_64"; 52 - sha256 = "1e2782ddd0716094f5ea4a79221ace671c7edd3acf87c4a5f88b2fff768c5a8a"; 52 + sha256 = "25e7f01c83e17b7181776430308fe39bf914d0da2d8a2e8351a8a2f45c791b50"; 53 53 } 54 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-x86_64/da/thunderbird-102.3.3.tar.bz2"; 54 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-x86_64/da/thunderbird-102.4.0.tar.bz2"; 55 55 locale = "da"; 56 56 arch = "linux-x86_64"; 57 - sha256 = "da350c192ad5cb9084a9fd0544600b7c518d4f68b1f097a8c7a756ca5697235a"; 57 + sha256 = "0f7c6940092081ed29ca4ed1f3b83a8dcab040e08a09822f079a7273f04494f9"; 58 58 } 59 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-x86_64/de/thunderbird-102.3.3.tar.bz2"; 59 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-x86_64/de/thunderbird-102.4.0.tar.bz2"; 60 60 locale = "de"; 61 61 arch = "linux-x86_64"; 62 - sha256 = "a4218fbe3e1c791bb408bf0e9ad330c3c5b8cd4a080a2f7040889b055d0c2f14"; 62 + sha256 = "3e1c3235af50d99f6de0815a10465e57377fc51de0ab76b923c9a9b804c3a94e"; 63 63 } 64 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-x86_64/dsb/thunderbird-102.3.3.tar.bz2"; 64 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-x86_64/dsb/thunderbird-102.4.0.tar.bz2"; 65 65 locale = "dsb"; 66 66 arch = "linux-x86_64"; 67 - sha256 = "46fa8c1559d2de3ddc7728c20efa40e917240ad49385a636cb7d1a1dea83370a"; 67 + sha256 = "bc7d3206e6b1fe2ccf151fad27c7b34f42a2d2b3cc36c1505ee3f47bf94de247"; 68 68 } 69 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-x86_64/el/thunderbird-102.3.3.tar.bz2"; 69 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-x86_64/el/thunderbird-102.4.0.tar.bz2"; 70 70 locale = "el"; 71 71 arch = "linux-x86_64"; 72 - sha256 = "1de3a316c05fd321d9cdb2c7c8d810ed0f23b9551e2cfafff5b72281cf7c309e"; 72 + sha256 = "70abfc1e011a2901e7639e7ebfb01ac06f18732b10f2e640e5c1dbbcef3e0e6f"; 73 73 } 74 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-x86_64/en-CA/thunderbird-102.3.3.tar.bz2"; 74 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-x86_64/en-CA/thunderbird-102.4.0.tar.bz2"; 75 75 locale = "en-CA"; 76 76 arch = "linux-x86_64"; 77 - sha256 = "994b2ac276c1526f76f3cf5a50401413ac00f4238703b5c853d5b5cebd2511a3"; 77 + sha256 = "82e8043502072528c4bdd5e267cd6d581fbeaaa125cd74977461eae1bf1da861"; 78 78 } 79 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-x86_64/en-GB/thunderbird-102.3.3.tar.bz2"; 79 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-x86_64/en-GB/thunderbird-102.4.0.tar.bz2"; 80 80 locale = "en-GB"; 81 81 arch = "linux-x86_64"; 82 - sha256 = "3eae960037dd0d3d2b7fc902355a832cb739bd014c5ef075e63a3ecdaf53c75a"; 82 + sha256 = "707608d9c55c073522071732cd0541a04bb7b7b0d3bff6fa35fd2307e0320ae1"; 83 83 } 84 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-x86_64/en-US/thunderbird-102.3.3.tar.bz2"; 84 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-x86_64/en-US/thunderbird-102.4.0.tar.bz2"; 85 85 locale = "en-US"; 86 86 arch = "linux-x86_64"; 87 - sha256 = "d6c475666c7bca01ed05926cda69ffc58135f223e7ae72df24d5714f3e1580ea"; 87 + sha256 = "52c80623976ea2e62a52b5b62f741450e684c07e0fce72fbb5218dcadce9b4da"; 88 88 } 89 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-x86_64/es-AR/thunderbird-102.3.3.tar.bz2"; 89 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-x86_64/es-AR/thunderbird-102.4.0.tar.bz2"; 90 90 locale = "es-AR"; 91 91 arch = "linux-x86_64"; 92 - sha256 = "5d48de31d823b1995b10a64ab809a85c1ef0f907efd30595d22d0231d73507ca"; 92 + sha256 = "09ca8111a3c0792591515f4e7abc090148b28e2bef7e0c591c3f0eb15fa0b8d7"; 93 93 } 94 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-x86_64/es-ES/thunderbird-102.3.3.tar.bz2"; 94 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-x86_64/es-ES/thunderbird-102.4.0.tar.bz2"; 95 95 locale = "es-ES"; 96 96 arch = "linux-x86_64"; 97 - sha256 = "8816039b4a8466de5777649d740ca7e30c9902d9f0bb372742fd649fc7f9d8fc"; 97 + sha256 = "923d07aeb9bccf7ae42baca048bd8222cccc31ffde1f090675df8df715aed21e"; 98 98 } 99 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-x86_64/es-MX/thunderbird-102.3.3.tar.bz2"; 99 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-x86_64/es-MX/thunderbird-102.4.0.tar.bz2"; 100 100 locale = "es-MX"; 101 101 arch = "linux-x86_64"; 102 - sha256 = "f9a9ca30c9d28a5f3b0f9d160cc2b8676a5f8e74036ce7e479e23dec775ddf4b"; 102 + sha256 = "6f03c99fbfab67d593c94f9d12f104385208040229eb403eb51472df1442aa8c"; 103 103 } 104 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-x86_64/et/thunderbird-102.3.3.tar.bz2"; 104 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-x86_64/et/thunderbird-102.4.0.tar.bz2"; 105 105 locale = "et"; 106 106 arch = "linux-x86_64"; 107 - sha256 = "951bccc704cda03d34657fe61917a2e0aa11fdfe3238575dacc888ef4f012754"; 107 + sha256 = "db864bbb22fadcdb7419565523318f97e4e57a25fe11429e27fffaf353df4a36"; 108 108 } 109 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-x86_64/eu/thunderbird-102.3.3.tar.bz2"; 109 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-x86_64/eu/thunderbird-102.4.0.tar.bz2"; 110 110 locale = "eu"; 111 111 arch = "linux-x86_64"; 112 - sha256 = "70835c9c3af0e6479cad0e01b20c183cff62f8d1569d049147a0777806e83ee6"; 112 + sha256 = "e25a04af4f402075575e1ebbc5f9a74a9de008ff303fdc13fd916c55349a83ff"; 113 113 } 114 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-x86_64/fi/thunderbird-102.3.3.tar.bz2"; 114 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-x86_64/fi/thunderbird-102.4.0.tar.bz2"; 115 115 locale = "fi"; 116 116 arch = "linux-x86_64"; 117 - sha256 = "70b2c3a8b7cabdd053c314167109d300b3f391f256f401f56a645eb2f7e3871c"; 117 + sha256 = "73b8cf72eb9a34149eaf0961ce1fd7a29f46c65f5a806c451f0736c2d2b2dec2"; 118 118 } 119 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-x86_64/fr/thunderbird-102.3.3.tar.bz2"; 119 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-x86_64/fr/thunderbird-102.4.0.tar.bz2"; 120 120 locale = "fr"; 121 121 arch = "linux-x86_64"; 122 - sha256 = "1f53f5cc1be471d59527e58dcce58c27567e7a93af4726d9868ee79a0e2c01ff"; 122 + sha256 = "6bcc2d614ed0b83a8b015e3c39412d4df8de2e862d0615d6093aa826fafe0773"; 123 123 } 124 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-x86_64/fy-NL/thunderbird-102.3.3.tar.bz2"; 124 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-x86_64/fy-NL/thunderbird-102.4.0.tar.bz2"; 125 125 locale = "fy-NL"; 126 126 arch = "linux-x86_64"; 127 - sha256 = "b41d18c1e425422a234b99e6ed8aff7e7c73fa1cb6285ea5f0e2e32932cc7b01"; 127 + sha256 = "abbf802853ee2035d886971d3cad73124a79e78f1aa543db9ab8602a41144bb9"; 128 128 } 129 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-x86_64/ga-IE/thunderbird-102.3.3.tar.bz2"; 129 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-x86_64/ga-IE/thunderbird-102.4.0.tar.bz2"; 130 130 locale = "ga-IE"; 131 131 arch = "linux-x86_64"; 132 - sha256 = "09063d0879797fca3c2e2f589251744ba8c52029a9ec86a3f13ffe8f6eb7321e"; 132 + sha256 = "e4d9452a2c59c7f06b6851c2549b9f65a41d7ea4f059c05c793fb163ef5bb8ea"; 133 133 } 134 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-x86_64/gd/thunderbird-102.3.3.tar.bz2"; 134 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-x86_64/gd/thunderbird-102.4.0.tar.bz2"; 135 135 locale = "gd"; 136 136 arch = "linux-x86_64"; 137 - sha256 = "b410065a55c62671bb35eb954c573f2cf97fbbeec379faae4c4c6ed77aba5b8e"; 137 + sha256 = "b08c04011f0de20025632e4a29a13b0d5f6296ec46e35c02e37a74ab4abfb8e7"; 138 138 } 139 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-x86_64/gl/thunderbird-102.3.3.tar.bz2"; 139 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-x86_64/gl/thunderbird-102.4.0.tar.bz2"; 140 140 locale = "gl"; 141 141 arch = "linux-x86_64"; 142 - sha256 = "50840082735b56d52bc2f271175f4abca337303a74a311ec5021a24ab3fe3ccf"; 142 + sha256 = "f9d326962e33c93d351392d88897aa2f1e4c3a545c9b8e646e931fe950872cbc"; 143 143 } 144 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-x86_64/he/thunderbird-102.3.3.tar.bz2"; 144 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-x86_64/he/thunderbird-102.4.0.tar.bz2"; 145 145 locale = "he"; 146 146 arch = "linux-x86_64"; 147 - sha256 = "4f507ce715c3512a23713d245304a045d07169610035b568452b2d4a702874ed"; 147 + sha256 = "8bd8e26d383aadc97dbb4485a8644b3f49068f3772a669c2ec3c0df87f2ebcdf"; 148 148 } 149 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-x86_64/hr/thunderbird-102.3.3.tar.bz2"; 149 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-x86_64/hr/thunderbird-102.4.0.tar.bz2"; 150 150 locale = "hr"; 151 151 arch = "linux-x86_64"; 152 - sha256 = "216ed2cfd39dafd483943ef2d1ba3984058329cca6e2c1706d93a7f4b34bb1cc"; 152 + sha256 = "c234210e83dccc3562ffd3cb50b37d8924a1145d5dff1db4a6a404f67da0b656"; 153 153 } 154 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-x86_64/hsb/thunderbird-102.3.3.tar.bz2"; 154 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-x86_64/hsb/thunderbird-102.4.0.tar.bz2"; 155 155 locale = "hsb"; 156 156 arch = "linux-x86_64"; 157 - sha256 = "c062e346aca53f4b3b323f95220f497787161a6839f38fb10774936807b4bf81"; 157 + sha256 = "ed513858dae38683768b0a3839b20f800011fc8817b28e09f31301f614b4f2cd"; 158 158 } 159 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-x86_64/hu/thunderbird-102.3.3.tar.bz2"; 159 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-x86_64/hu/thunderbird-102.4.0.tar.bz2"; 160 160 locale = "hu"; 161 161 arch = "linux-x86_64"; 162 - sha256 = "a5cf3e6c746edd752a67e3db5df82db5c2f87cd72b92880dca4ef7c2a0c5e032"; 162 + sha256 = "5c7b48aee0a7b843b709bc614f83d814cafaebe343dececbcf7f66c858df47f5"; 163 163 } 164 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-x86_64/hy-AM/thunderbird-102.3.3.tar.bz2"; 164 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-x86_64/hy-AM/thunderbird-102.4.0.tar.bz2"; 165 165 locale = "hy-AM"; 166 166 arch = "linux-x86_64"; 167 - sha256 = "af862f50f4f56668ef9f3301d67707cb0193fc4df04bf542691b4e0a0d35b283"; 167 + sha256 = "84fcbc6317d1fd543283528d5bfd899bdfe8a7d54cc3ccde12fbf36054976808"; 168 168 } 169 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-x86_64/id/thunderbird-102.3.3.tar.bz2"; 169 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-x86_64/id/thunderbird-102.4.0.tar.bz2"; 170 170 locale = "id"; 171 171 arch = "linux-x86_64"; 172 - sha256 = "06e4a66c9553a607c7b96a7622594a0e79c93894b71eabdfd85cc0b689571bda"; 172 + sha256 = "53d7c3aa54a0a53eba05ad0281bbf48a05747699e8d5c874e0a31fe7e34d53aa"; 173 173 } 174 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-x86_64/is/thunderbird-102.3.3.tar.bz2"; 174 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-x86_64/is/thunderbird-102.4.0.tar.bz2"; 175 175 locale = "is"; 176 176 arch = "linux-x86_64"; 177 - sha256 = "b348937b74d997f8ba09f0f285df29159bacdebbf711c0648b58558ee9e63d92"; 177 + sha256 = "b9f313d350c687c04c74d0fce3ec898553a1c91650668a7d7dbf02e53b27847b"; 178 178 } 179 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-x86_64/it/thunderbird-102.3.3.tar.bz2"; 179 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-x86_64/it/thunderbird-102.4.0.tar.bz2"; 180 180 locale = "it"; 181 181 arch = "linux-x86_64"; 182 - sha256 = "e8bc3d399b2a8d52b0d67063dc293981acf6574d3dd3a961986ccd7fcb3cd1d2"; 182 + sha256 = "637b1c3a60cbf3edaa65e29b602067b0ca37a4da6434c266ed2a60eae239a6be"; 183 183 } 184 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-x86_64/ja/thunderbird-102.3.3.tar.bz2"; 184 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-x86_64/ja/thunderbird-102.4.0.tar.bz2"; 185 185 locale = "ja"; 186 186 arch = "linux-x86_64"; 187 - sha256 = "3ec22d6fe5202f9c9ad2c6a56f8daedf424c2d7ba2de5a89882e0735ce3e9fc8"; 187 + sha256 = "b42908e1920cdac0fc5e1e3645f4e92e2ae891ce0ffb117d2e0db502f1ba10cf"; 188 188 } 189 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-x86_64/ka/thunderbird-102.3.3.tar.bz2"; 189 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-x86_64/ka/thunderbird-102.4.0.tar.bz2"; 190 190 locale = "ka"; 191 191 arch = "linux-x86_64"; 192 - sha256 = "7e23cfdbbf7d168c39ac76992a9fbe021d92cde57b19b58ddb80a0aab9a90ccb"; 192 + sha256 = "622fcb7991199de7de373b894622290e4e7f2245ab6f8869d23512c02c3c9949"; 193 193 } 194 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-x86_64/kab/thunderbird-102.3.3.tar.bz2"; 194 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-x86_64/kab/thunderbird-102.4.0.tar.bz2"; 195 195 locale = "kab"; 196 196 arch = "linux-x86_64"; 197 - sha256 = "c53bc2049d5a538c3a703aef0b02f5a64b126b84aeb9920855cb4614e96c9da5"; 197 + sha256 = "fd3f03b334466df26e24d390027ab215e46d45bfe8cf6b1b87c6025b55426364"; 198 198 } 199 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-x86_64/kk/thunderbird-102.3.3.tar.bz2"; 199 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-x86_64/kk/thunderbird-102.4.0.tar.bz2"; 200 200 locale = "kk"; 201 201 arch = "linux-x86_64"; 202 - sha256 = "7a3dcbfeca9245b5a72d043331e4f98dbbf7bc3d66dddaa16b4309e96a67dd0b"; 202 + sha256 = "9aa0af8d48eaf1c2f0111f2d4a57b46c8fd4b365f307b30cf6f0865440fde217"; 203 203 } 204 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-x86_64/ko/thunderbird-102.3.3.tar.bz2"; 204 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-x86_64/ko/thunderbird-102.4.0.tar.bz2"; 205 205 locale = "ko"; 206 206 arch = "linux-x86_64"; 207 - sha256 = "515825543b2660c1a6da2bd8825e64c5334ae0b07831f4af5b87100b025a4c68"; 207 + sha256 = "da990d20167bcacc2e8ed9083f905c9b0b6cde1a7994f557865304a322be1dae"; 208 208 } 209 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-x86_64/lt/thunderbird-102.3.3.tar.bz2"; 209 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-x86_64/lt/thunderbird-102.4.0.tar.bz2"; 210 210 locale = "lt"; 211 211 arch = "linux-x86_64"; 212 - sha256 = "28139cd4d56189ff3d16b2a135fb29a9d541ccd33cb7dc62f176015b9e73b8dc"; 212 + sha256 = "468590ba13345d76ad511122a423080c789c39b8993a613be0706678d1174d70"; 213 213 } 214 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-x86_64/lv/thunderbird-102.3.3.tar.bz2"; 214 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-x86_64/lv/thunderbird-102.4.0.tar.bz2"; 215 215 locale = "lv"; 216 216 arch = "linux-x86_64"; 217 - sha256 = "0a4a7d6af0b4ad933745793f85b6c504b7468cb1796728cb5b19f5be0e23813c"; 217 + sha256 = "66ee93518731d5364ed70a49688b672b485cc77e0b2111f18905a21425ee319b"; 218 218 } 219 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-x86_64/ms/thunderbird-102.3.3.tar.bz2"; 219 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-x86_64/ms/thunderbird-102.4.0.tar.bz2"; 220 220 locale = "ms"; 221 221 arch = "linux-x86_64"; 222 - sha256 = "4e6642a75afd4344a9b4ecd02f62e5ab31bbdf2c08026305a19994e13d0925be"; 222 + sha256 = "ceed80f3eed734a3e7af87bff1f03862d7ded388484ea8cecf2873c91dcee225"; 223 223 } 224 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-x86_64/nb-NO/thunderbird-102.3.3.tar.bz2"; 224 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-x86_64/nb-NO/thunderbird-102.4.0.tar.bz2"; 225 225 locale = "nb-NO"; 226 226 arch = "linux-x86_64"; 227 - sha256 = "e93a5f0cb40f8d6940e337987519913390408ebb11dda1fb0a53fb4e6a920c60"; 227 + sha256 = "01ba526dfb5d82cd6b51a30b06f47a85b81589aa3ba8e6d9d318603b083f1195"; 228 228 } 229 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-x86_64/nl/thunderbird-102.3.3.tar.bz2"; 229 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-x86_64/nl/thunderbird-102.4.0.tar.bz2"; 230 230 locale = "nl"; 231 231 arch = "linux-x86_64"; 232 - sha256 = "8e2a3f87eae178b3f8335f1f99d0fcf8104d386552948841874716cd86981d4d"; 232 + sha256 = "d6f315e1168d6a5433a724e6bf3160e0089ce26abb929187b122f44e46c84652"; 233 233 } 234 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-x86_64/nn-NO/thunderbird-102.3.3.tar.bz2"; 234 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-x86_64/nn-NO/thunderbird-102.4.0.tar.bz2"; 235 235 locale = "nn-NO"; 236 236 arch = "linux-x86_64"; 237 - sha256 = "5036f50250fc42aecf2ece02e8e2901e86626add5643b5794103086e33760c4e"; 237 + sha256 = "f9a3195807f753f8cb7bfaffc2e1d647f79dd7afa31fe85f94d2438c08e93ffe"; 238 238 } 239 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-x86_64/pa-IN/thunderbird-102.3.3.tar.bz2"; 239 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-x86_64/pa-IN/thunderbird-102.4.0.tar.bz2"; 240 240 locale = "pa-IN"; 241 241 arch = "linux-x86_64"; 242 - sha256 = "4dd0956b509692034e5f517e57ef1ddecc00ee15aed40680bfa8f2fed56912e7"; 242 + sha256 = "f68b60dc2d946bcff7a03ce781c77c17e68aff2e376bc6e9c84ed2be14e17b33"; 243 243 } 244 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-x86_64/pl/thunderbird-102.3.3.tar.bz2"; 244 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-x86_64/pl/thunderbird-102.4.0.tar.bz2"; 245 245 locale = "pl"; 246 246 arch = "linux-x86_64"; 247 - sha256 = "7330ccffc01b6357c0bc7c4781a931ef807a20052b2ee7a962d781cd75ed15b9"; 247 + sha256 = "94d24fd3d184cb8d46e584599b8cf43462c38a2113a24921c03bdec391b74ccd"; 248 248 } 249 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-x86_64/pt-BR/thunderbird-102.3.3.tar.bz2"; 249 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-x86_64/pt-BR/thunderbird-102.4.0.tar.bz2"; 250 250 locale = "pt-BR"; 251 251 arch = "linux-x86_64"; 252 - sha256 = "6ac7c34d3b89e5c18170256d6e038064d98fedc070526da226c34f55068ced1e"; 252 + sha256 = "93f73967bd35eef0ad9bc820e07d8f8eb458ffa9415bc9f1e08c9ac9e3de876e"; 253 253 } 254 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-x86_64/pt-PT/thunderbird-102.3.3.tar.bz2"; 254 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-x86_64/pt-PT/thunderbird-102.4.0.tar.bz2"; 255 255 locale = "pt-PT"; 256 256 arch = "linux-x86_64"; 257 - sha256 = "37807584c2536d06f00a7e042f74c1a481c3d1a9570cb16f0f57d8df5b3b8d3b"; 257 + sha256 = "e08033d393fd804504b41fbcf9e902dd3ea262a3c9346bfb89e101a7acdb1478"; 258 258 } 259 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-x86_64/rm/thunderbird-102.3.3.tar.bz2"; 259 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-x86_64/rm/thunderbird-102.4.0.tar.bz2"; 260 260 locale = "rm"; 261 261 arch = "linux-x86_64"; 262 - sha256 = "0f72208d14efd2d375f0911da4cefdff93770a89335d1d07ae8e9c93b79e68c3"; 262 + sha256 = "04b46b74a949e5803e68dd243c16e77d6fad91997c105d1b670f553c3eff66aa"; 263 263 } 264 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-x86_64/ro/thunderbird-102.3.3.tar.bz2"; 264 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-x86_64/ro/thunderbird-102.4.0.tar.bz2"; 265 265 locale = "ro"; 266 266 arch = "linux-x86_64"; 267 - sha256 = "f9d3cc56bc986bf7a33920bec19c4dabb4885f5c30f95c69e964d175c1a99931"; 267 + sha256 = "d9d8556c0c330cefda91804fc534a5443e2fc787c83d58fcf9455f6215608c0d"; 268 268 } 269 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-x86_64/ru/thunderbird-102.3.3.tar.bz2"; 269 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-x86_64/ru/thunderbird-102.4.0.tar.bz2"; 270 270 locale = "ru"; 271 271 arch = "linux-x86_64"; 272 - sha256 = "5d8550088ac2fcbbd0008dedcfd916f11c7c838062c50c96af8b0ff604611603"; 272 + sha256 = "606ddd0868b3b61cf8dd87db75da52559d6e66a9cff5fb62e521a64afccbe7b5"; 273 273 } 274 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-x86_64/sk/thunderbird-102.3.3.tar.bz2"; 274 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-x86_64/sk/thunderbird-102.4.0.tar.bz2"; 275 275 locale = "sk"; 276 276 arch = "linux-x86_64"; 277 - sha256 = "e5ac6a6981b7dfc4c7d49119abdbe4f2beef9641c89ba0b38a0e60275ad3c525"; 277 + sha256 = "ef94704bf009e178ffed2032cb7dbbbf5476e03cf41536796fa65e40b495f557"; 278 278 } 279 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-x86_64/sl/thunderbird-102.3.3.tar.bz2"; 279 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-x86_64/sl/thunderbird-102.4.0.tar.bz2"; 280 280 locale = "sl"; 281 281 arch = "linux-x86_64"; 282 - sha256 = "a7f228c2a74b2cfd45b4ad48a1f230741628a158f172076896fcc68588a175c6"; 282 + sha256 = "6ffac67a7fa242565946a9939faaa70ae652ee70b441e71a4768316affbe80fc"; 283 283 } 284 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-x86_64/sq/thunderbird-102.3.3.tar.bz2"; 284 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-x86_64/sq/thunderbird-102.4.0.tar.bz2"; 285 285 locale = "sq"; 286 286 arch = "linux-x86_64"; 287 - sha256 = "e977dc827518893f426f3177cb97eb5265aa358e1921f07d8b6843192d6a9f54"; 287 + sha256 = "9ebe4616896df6e437ca6e639ab273c6098266b72fe7946b4f1aa28f002d5198"; 288 288 } 289 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-x86_64/sr/thunderbird-102.3.3.tar.bz2"; 289 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-x86_64/sr/thunderbird-102.4.0.tar.bz2"; 290 290 locale = "sr"; 291 291 arch = "linux-x86_64"; 292 - sha256 = "0f185c385bcc6882cbd0654d4ebf5cef8c1ed8e104877886a812cbffce86a6e4"; 292 + sha256 = "9a8979b83e7d7e129cddd7812fef4803782aa951b190c20aa50919423a0b7127"; 293 293 } 294 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-x86_64/sv-SE/thunderbird-102.3.3.tar.bz2"; 294 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-x86_64/sv-SE/thunderbird-102.4.0.tar.bz2"; 295 295 locale = "sv-SE"; 296 296 arch = "linux-x86_64"; 297 - sha256 = "a43fd70f46b059bdbc64a19cdbd72209f6f0939815c878d198ba41c22a7b1de4"; 297 + sha256 = "1724ae0e9fe2d92afb21d8e7440a219822920e569aec801d6b1167b51862796a"; 298 298 } 299 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-x86_64/th/thunderbird-102.3.3.tar.bz2"; 299 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-x86_64/th/thunderbird-102.4.0.tar.bz2"; 300 300 locale = "th"; 301 301 arch = "linux-x86_64"; 302 - sha256 = "02f75552404ed0068dbc51c3dd6005a91d6c638fd2236d67d8a48d11c94e7274"; 302 + sha256 = "e767d6c6dda151370c2a04c850b8f55eec4b2326be493d16af219a9737535a9a"; 303 303 } 304 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-x86_64/tr/thunderbird-102.3.3.tar.bz2"; 304 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-x86_64/tr/thunderbird-102.4.0.tar.bz2"; 305 305 locale = "tr"; 306 306 arch = "linux-x86_64"; 307 - sha256 = "28b97981fc225eb3e534a923bc6df3ffc4afa5043224ffe415847cf0d9ecabef"; 307 + sha256 = "1d1bae1f7e76a0acd5f4d51a68d9805f34b2397005234ce33ecf2b9668c1caf9"; 308 308 } 309 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-x86_64/uk/thunderbird-102.3.3.tar.bz2"; 309 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-x86_64/uk/thunderbird-102.4.0.tar.bz2"; 310 310 locale = "uk"; 311 311 arch = "linux-x86_64"; 312 - sha256 = "082f50dee3a7e41802541c197126ab2331da9d83e391eecc251113c0cc0f9fdc"; 312 + sha256 = "2602294d73ee0dce17960c453b0b7f188566a4b09af5c593aae4f57c13c6c6bf"; 313 313 } 314 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-x86_64/uz/thunderbird-102.3.3.tar.bz2"; 314 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-x86_64/uz/thunderbird-102.4.0.tar.bz2"; 315 315 locale = "uz"; 316 316 arch = "linux-x86_64"; 317 - sha256 = "0ce85eda10854f979e0c8667653126e03c268ccc4d078bc58e39fbf6ffd46fd9"; 317 + sha256 = "57e424a2d1b3d58aa23b87d85cfcd6af7030ef9b539ad74beed6284051142fbf"; 318 318 } 319 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-x86_64/vi/thunderbird-102.3.3.tar.bz2"; 319 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-x86_64/vi/thunderbird-102.4.0.tar.bz2"; 320 320 locale = "vi"; 321 321 arch = "linux-x86_64"; 322 - sha256 = "f42d2f507647ca7f8ca8ce7aa377528c27ac4e2b4bfcd395eb424a71356b0a73"; 322 + sha256 = "d4f19ac4584c5523009a660f819d43e3244d552bd0b2890fa8e52fc5cf48d9de"; 323 323 } 324 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-x86_64/zh-CN/thunderbird-102.3.3.tar.bz2"; 324 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-x86_64/zh-CN/thunderbird-102.4.0.tar.bz2"; 325 325 locale = "zh-CN"; 326 326 arch = "linux-x86_64"; 327 - sha256 = "0362aff801bcb734003607e265961932efd2059ab3bf6a967662368522eb49e9"; 327 + sha256 = "204f5faee35bece1bd444d4d0a18973b13f2e05e481d77b25acd201fb8b5e2e4"; 328 328 } 329 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-x86_64/zh-TW/thunderbird-102.3.3.tar.bz2"; 329 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-x86_64/zh-TW/thunderbird-102.4.0.tar.bz2"; 330 330 locale = "zh-TW"; 331 331 arch = "linux-x86_64"; 332 - sha256 = "2c14d717bdc4ef8f031e71811092550c429b86306e9964020c3ab4cdd73cc011"; 332 + sha256 = "8aac9a823ef4df7678e93316b9e312dc84fe589de520740ed2b018d9976b823d"; 333 333 } 334 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-i686/af/thunderbird-102.3.3.tar.bz2"; 334 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-i686/af/thunderbird-102.4.0.tar.bz2"; 335 335 locale = "af"; 336 336 arch = "linux-i686"; 337 - sha256 = "b1ba07c2903e30e52263887ae23e96ca506f33feeefb6d665968ae73b4618241"; 337 + sha256 = "5da88620d3676d21e2dd98d514f073535e6b84e9156c5c4766de7b41aba148fe"; 338 338 } 339 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-i686/ar/thunderbird-102.3.3.tar.bz2"; 339 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-i686/ar/thunderbird-102.4.0.tar.bz2"; 340 340 locale = "ar"; 341 341 arch = "linux-i686"; 342 - sha256 = "a34beacb63b18f88f817e2190826f1859bdcc1c7ef84fb4a4a8b7ea2f2ff7eb5"; 342 + sha256 = "3d50816819f2d0a3db242f83dab9cf269f2db5b8b74efc460976070413cfa568"; 343 343 } 344 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-i686/ast/thunderbird-102.3.3.tar.bz2"; 344 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-i686/ast/thunderbird-102.4.0.tar.bz2"; 345 345 locale = "ast"; 346 346 arch = "linux-i686"; 347 - sha256 = "adf85142f454a44f3acb54a83a2e2117457314046f0ce22c6ba0638a737c547c"; 347 + sha256 = "fc5508c42732b470edcf1dbd6fd9e03d66f11f5976a1dc433283b19e0657e54b"; 348 348 } 349 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-i686/be/thunderbird-102.3.3.tar.bz2"; 349 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-i686/be/thunderbird-102.4.0.tar.bz2"; 350 350 locale = "be"; 351 351 arch = "linux-i686"; 352 - sha256 = "6bd7732095177c6702c3af380e686f14c31114d2987d6e5e564f0181533a6978"; 352 + sha256 = "4b68c8b1e7f0493ba3fcec4041bb86b88f770530b5842f1954ed65c2bff6ef91"; 353 353 } 354 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-i686/bg/thunderbird-102.3.3.tar.bz2"; 354 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-i686/bg/thunderbird-102.4.0.tar.bz2"; 355 355 locale = "bg"; 356 356 arch = "linux-i686"; 357 - sha256 = "f3af40e4576f224f2d2c8f11858446c13832008daad462a25e4d35bcc0be5556"; 357 + sha256 = "08e8518a774d8ff6dd7fc944ef9cae66d565c3ecbea4e71cbb670575c8abf84f"; 358 358 } 359 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-i686/br/thunderbird-102.3.3.tar.bz2"; 359 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-i686/br/thunderbird-102.4.0.tar.bz2"; 360 360 locale = "br"; 361 361 arch = "linux-i686"; 362 - sha256 = "3d41a4a15b0de37d4fa10aab086247b737bcada395bda86e4e681772125e7ccf"; 362 + sha256 = "9df36d6165b4ff71383cf922e49dfe93e13add7426b43be79e72596517d01b64"; 363 363 } 364 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-i686/ca/thunderbird-102.3.3.tar.bz2"; 364 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-i686/ca/thunderbird-102.4.0.tar.bz2"; 365 365 locale = "ca"; 366 366 arch = "linux-i686"; 367 - sha256 = "1ed85a0b6c04cc181dba423ef848aa57db22cfb8526c3ec4465dfc9a664d1cf8"; 367 + sha256 = "7caa728b60f16660d40b3c714ccca559c9998268e71a3602b64319f28908f384"; 368 368 } 369 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-i686/cak/thunderbird-102.3.3.tar.bz2"; 369 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-i686/cak/thunderbird-102.4.0.tar.bz2"; 370 370 locale = "cak"; 371 371 arch = "linux-i686"; 372 - sha256 = "458395aeb8e92dea90cd4dfebd2c1b5ac4549e6683af9343de3d0e8022397c14"; 372 + sha256 = "f85fd60655fe7e09736c31c2451d78110fcfb329cac4c2550cda2119c48da11e"; 373 373 } 374 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-i686/cs/thunderbird-102.3.3.tar.bz2"; 374 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-i686/cs/thunderbird-102.4.0.tar.bz2"; 375 375 locale = "cs"; 376 376 arch = "linux-i686"; 377 - sha256 = "eb8f9c5a5a78520a6fe9d7e33a6a3de26e2623e15be219396cc1ec6d3fef1a90"; 377 + sha256 = "14c6b188ccb93367a3ba411b3e383d3816d6b0bcf1fa1bb48025fda30f7adf4b"; 378 378 } 379 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-i686/cy/thunderbird-102.3.3.tar.bz2"; 379 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-i686/cy/thunderbird-102.4.0.tar.bz2"; 380 380 locale = "cy"; 381 381 arch = "linux-i686"; 382 - sha256 = "d298941a3f856ff534705fef9ae6c7b3979e53ea08a2ad392db34fa8713d0dd0"; 382 + sha256 = "d82b7a995b1f92170ed6ee0a2b7056aeb69922523aaf9c66ff24f435d38b45e7"; 383 383 } 384 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-i686/da/thunderbird-102.3.3.tar.bz2"; 384 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-i686/da/thunderbird-102.4.0.tar.bz2"; 385 385 locale = "da"; 386 386 arch = "linux-i686"; 387 - sha256 = "9ed3cd6d123169145246cc752202fffee6db55de2c2923b5bdb394f0bc441ffb"; 387 + sha256 = "bb6967140ecb94cea0f48f4a0f937bd6734a901d5c3f947585391908dacaf05d"; 388 388 } 389 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-i686/de/thunderbird-102.3.3.tar.bz2"; 389 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-i686/de/thunderbird-102.4.0.tar.bz2"; 390 390 locale = "de"; 391 391 arch = "linux-i686"; 392 - sha256 = "2991288757087526928ad8c61c3bb8ecb2398bf34948036608647fe2c00be1e6"; 392 + sha256 = "4411fe74340c1c62b6845cd70e60c133130f4e780916f998cae5a7b103dbd1f4"; 393 393 } 394 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-i686/dsb/thunderbird-102.3.3.tar.bz2"; 394 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-i686/dsb/thunderbird-102.4.0.tar.bz2"; 395 395 locale = "dsb"; 396 396 arch = "linux-i686"; 397 - sha256 = "acc46f046e543cf1dd88d506de7d3ec0d67ce1fd3be0669c6b301803e80c47ac"; 397 + sha256 = "9badc6942ad260da94230f9b223d63cceb94cb4689090dfc8d3c6df372d70692"; 398 398 } 399 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-i686/el/thunderbird-102.3.3.tar.bz2"; 399 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-i686/el/thunderbird-102.4.0.tar.bz2"; 400 400 locale = "el"; 401 401 arch = "linux-i686"; 402 - sha256 = "4a5fa9516fb3e171c0b74a694d9bc29cd68b259e1bed9f45303b211b6aba45a0"; 402 + sha256 = "c26dfdc2b5f2da4917dc18bdc92739962e2a2931cb2886c8f2f395a66c8bd841"; 403 403 } 404 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-i686/en-CA/thunderbird-102.3.3.tar.bz2"; 404 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-i686/en-CA/thunderbird-102.4.0.tar.bz2"; 405 405 locale = "en-CA"; 406 406 arch = "linux-i686"; 407 - sha256 = "ae438cac6628024660cec15d5ce6c2e746b63c484cfcac69b3e4be733e1f50f1"; 407 + sha256 = "f8f1801eb8676a095efa20e410121ebe2eaef1517d0b549bca27b435bcaf097e"; 408 408 } 409 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-i686/en-GB/thunderbird-102.3.3.tar.bz2"; 409 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-i686/en-GB/thunderbird-102.4.0.tar.bz2"; 410 410 locale = "en-GB"; 411 411 arch = "linux-i686"; 412 - sha256 = "1eaf7fc696aa584632845aa2ef93fe346c889131fb2e5f85c09ca91550616b00"; 412 + sha256 = "57d3cc43fb1b6012d5fa91f3ed5a55fccf162137ee00e186ee1954b50f445759"; 413 413 } 414 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-i686/en-US/thunderbird-102.3.3.tar.bz2"; 414 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-i686/en-US/thunderbird-102.4.0.tar.bz2"; 415 415 locale = "en-US"; 416 416 arch = "linux-i686"; 417 - sha256 = "d90faab60b4641d509be7f1c20b7102e8bd469a9528b11604adbfec359f07cb3"; 417 + sha256 = "e21b148eab4e643c5a66b61b892775c9761efe38db9a41e0d9d6ad63fdb9fa03"; 418 418 } 419 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-i686/es-AR/thunderbird-102.3.3.tar.bz2"; 419 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-i686/es-AR/thunderbird-102.4.0.tar.bz2"; 420 420 locale = "es-AR"; 421 421 arch = "linux-i686"; 422 - sha256 = "73cd1b6aead028e22eb6a0b09076d604128b8779b4519b2b33e417eefc51277e"; 422 + sha256 = "dd3e4356aaac24bc1be1a2a7f9e662d9d97e77971de961816f2e6cb0f46175cf"; 423 423 } 424 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-i686/es-ES/thunderbird-102.3.3.tar.bz2"; 424 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-i686/es-ES/thunderbird-102.4.0.tar.bz2"; 425 425 locale = "es-ES"; 426 426 arch = "linux-i686"; 427 - sha256 = "46bd4345b717bba7236829696325e00db4b6d2bfd7e3f31aba1d619615ffc0d4"; 427 + sha256 = "70600cde32452b505fe76352f8a53f124169b20ec75c6089d45e0b3e0709aa74"; 428 428 } 429 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-i686/es-MX/thunderbird-102.3.3.tar.bz2"; 429 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-i686/es-MX/thunderbird-102.4.0.tar.bz2"; 430 430 locale = "es-MX"; 431 431 arch = "linux-i686"; 432 - sha256 = "ab5ec4347cd85d4f93658b48a687d0bead8dccbdafd766b754068649772f67e1"; 432 + sha256 = "c07ff511260781cca4e2f4ac82d7c1aa76e990fe7a0770fb9bd5551766838fcc"; 433 433 } 434 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-i686/et/thunderbird-102.3.3.tar.bz2"; 434 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-i686/et/thunderbird-102.4.0.tar.bz2"; 435 435 locale = "et"; 436 436 arch = "linux-i686"; 437 - sha256 = "6f2a7a2db746e068a903a266dee042353f8723be448b28b0199931cf024ab30b"; 437 + sha256 = "156d75d2638a2e44d345ca2bd2374f321193227089827b4d2d69feb89a4dd6c4"; 438 438 } 439 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-i686/eu/thunderbird-102.3.3.tar.bz2"; 439 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-i686/eu/thunderbird-102.4.0.tar.bz2"; 440 440 locale = "eu"; 441 441 arch = "linux-i686"; 442 - sha256 = "08581d2ef770abd5fa70e6f2418633b111e316c5aa95bcb9c7c31a62d76d9591"; 442 + sha256 = "8af2a6e5bb6e2bf2d03c97e90ce0115faf8c40121e7210c20be88b16fb2e0feb"; 443 443 } 444 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-i686/fi/thunderbird-102.3.3.tar.bz2"; 444 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-i686/fi/thunderbird-102.4.0.tar.bz2"; 445 445 locale = "fi"; 446 446 arch = "linux-i686"; 447 - sha256 = "850a64dbf7b3a4f612d3c2c29ab7d6960c7e553ee395305e70161eff81533396"; 447 + sha256 = "ca98fe916aa005b60511ae7c1274e64726a5f35d567ac7407a80cb0438878fe4"; 448 448 } 449 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-i686/fr/thunderbird-102.3.3.tar.bz2"; 449 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-i686/fr/thunderbird-102.4.0.tar.bz2"; 450 450 locale = "fr"; 451 451 arch = "linux-i686"; 452 - sha256 = "c5bda9bd4909adaeec36d5bb2a17b867f9cc34a31f3ddb97ab42c91ccfb4d1f2"; 452 + sha256 = "6c9fc2454dfd286a8efc3b8de6377044f2ccabc6e0379b9e1cc2cd16653a7840"; 453 453 } 454 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-i686/fy-NL/thunderbird-102.3.3.tar.bz2"; 454 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-i686/fy-NL/thunderbird-102.4.0.tar.bz2"; 455 455 locale = "fy-NL"; 456 456 arch = "linux-i686"; 457 - sha256 = "fba378198ddab043493677225373cfdda0edeb9f5130d6a1a6141fd232ceaca7"; 457 + sha256 = "0822c65394cda172ee1f66688db6d86c7426df44a80770a0d22d824ffacf7f7b"; 458 458 } 459 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-i686/ga-IE/thunderbird-102.3.3.tar.bz2"; 459 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-i686/ga-IE/thunderbird-102.4.0.tar.bz2"; 460 460 locale = "ga-IE"; 461 461 arch = "linux-i686"; 462 - sha256 = "a594af3d31419ebaedcdae09ab3b519d1a2096df398e42b76fc09d76a401f6b7"; 462 + sha256 = "70d56fd565b1ab65946819347a5b2394d179358e3eb8d1e87b24056d87a516e6"; 463 463 } 464 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-i686/gd/thunderbird-102.3.3.tar.bz2"; 464 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-i686/gd/thunderbird-102.4.0.tar.bz2"; 465 465 locale = "gd"; 466 466 arch = "linux-i686"; 467 - sha256 = "54b6921f8a3be97b81b4f769141d84fb11845b971e77fa82f383f3bc0e50d338"; 467 + sha256 = "bb156b134b3e43b015de264e6852f9cec656dab4c395efecf6035cd937187d0c"; 468 468 } 469 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-i686/gl/thunderbird-102.3.3.tar.bz2"; 469 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-i686/gl/thunderbird-102.4.0.tar.bz2"; 470 470 locale = "gl"; 471 471 arch = "linux-i686"; 472 - sha256 = "4598af27e3aedf8af67d76874baa4f7cbddc1a7fd53be7d3c334eea075d06991"; 472 + sha256 = "5ed959f3ea9f0961948b525bb51126a7d1786c5468868586267ff46c1b7dd121"; 473 473 } 474 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-i686/he/thunderbird-102.3.3.tar.bz2"; 474 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-i686/he/thunderbird-102.4.0.tar.bz2"; 475 475 locale = "he"; 476 476 arch = "linux-i686"; 477 - sha256 = "648cc4a3e295303cfa49fc9e766848c3aa4b78d65f70ba743724a3964c4110bd"; 477 + sha256 = "fdd0cbf39f8f0f982ec034627d68661d3392aa2657353941c4664f610497ea00"; 478 478 } 479 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-i686/hr/thunderbird-102.3.3.tar.bz2"; 479 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-i686/hr/thunderbird-102.4.0.tar.bz2"; 480 480 locale = "hr"; 481 481 arch = "linux-i686"; 482 - sha256 = "e5ee4e3d15620e78075631656704d4051d76cd04095e8737709ec5d487f9cc4f"; 482 + sha256 = "aecf6bf555c84b6cae28cf4514efee9c6334fd1c69e3afbf045842748645f2ec"; 483 483 } 484 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-i686/hsb/thunderbird-102.3.3.tar.bz2"; 484 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-i686/hsb/thunderbird-102.4.0.tar.bz2"; 485 485 locale = "hsb"; 486 486 arch = "linux-i686"; 487 - sha256 = "ed50bc3e2695e2061e31ae2721ee76e13051ca85399cb493aeafb1230a1888bc"; 487 + sha256 = "8381a36906102e17e165f8d383d0f8bba7dde4a39264e14b66bca5313a9da077"; 488 488 } 489 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-i686/hu/thunderbird-102.3.3.tar.bz2"; 489 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-i686/hu/thunderbird-102.4.0.tar.bz2"; 490 490 locale = "hu"; 491 491 arch = "linux-i686"; 492 - sha256 = "97494393ccc4c02f253210d9f3a7249a5bd1a8dbfba5f3bca94fd99c5a30e763"; 492 + sha256 = "3193566d29f0407b9ba5cbde1f470d7a5fa4d501eab23d3709246a082d96ab33"; 493 493 } 494 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-i686/hy-AM/thunderbird-102.3.3.tar.bz2"; 494 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-i686/hy-AM/thunderbird-102.4.0.tar.bz2"; 495 495 locale = "hy-AM"; 496 496 arch = "linux-i686"; 497 - sha256 = "0d42530f12a2891caaab06eae16cf605e1272d8cbda24a595c162aae07ea7ab1"; 497 + sha256 = "284a4cd9731abddf68e8cdd5c2c52cdfb0da22732f5d2f6b782f3311d9c297f0"; 498 498 } 499 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-i686/id/thunderbird-102.3.3.tar.bz2"; 499 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-i686/id/thunderbird-102.4.0.tar.bz2"; 500 500 locale = "id"; 501 501 arch = "linux-i686"; 502 - sha256 = "8be0c411f75f14402cb1b34dce65848073987901fd7ef1eb5d123e3062ea90c2"; 502 + sha256 = "cc61630f7ab5261d42bec691625bbdaaa9a1788b99807b06f3d5c34961d67432"; 503 503 } 504 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-i686/is/thunderbird-102.3.3.tar.bz2"; 504 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-i686/is/thunderbird-102.4.0.tar.bz2"; 505 505 locale = "is"; 506 506 arch = "linux-i686"; 507 - sha256 = "031f157a8291b6a149d28971f3c6befdef22db81877c1ec32a6eda2d2c9497ae"; 507 + sha256 = "2852c2c6fe22756e83d27b3718d8913cd0618b2491e1b327251fe94f081c30de"; 508 508 } 509 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-i686/it/thunderbird-102.3.3.tar.bz2"; 509 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-i686/it/thunderbird-102.4.0.tar.bz2"; 510 510 locale = "it"; 511 511 arch = "linux-i686"; 512 - sha256 = "73abba45b37787e534499be37ed6ee0b71eb61b9b812c4a87b41ce9492171aec"; 512 + sha256 = "85e81bb62a94205d3886d335cc70ad2024bd66658d2b0037cf2ef72118955ec9"; 513 513 } 514 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-i686/ja/thunderbird-102.3.3.tar.bz2"; 514 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-i686/ja/thunderbird-102.4.0.tar.bz2"; 515 515 locale = "ja"; 516 516 arch = "linux-i686"; 517 - sha256 = "91be0ddcc4f16d47348c5f62693c22a9af944bbeac12f3dbbab54da756819c8d"; 517 + sha256 = "e5de175ef6e96d34da21ff9c82059f37867ca279c07f2aee748c21ad9fcc9133"; 518 518 } 519 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-i686/ka/thunderbird-102.3.3.tar.bz2"; 519 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-i686/ka/thunderbird-102.4.0.tar.bz2"; 520 520 locale = "ka"; 521 521 arch = "linux-i686"; 522 - sha256 = "347e1ad3223fcd7288a048bea5cbb3508ef9f0377091ac8654eba3f62737baf4"; 522 + sha256 = "b32652acce69f60795ab6e8a942b15ab394cda4a2d8ada37f8f1436628e6cc18"; 523 523 } 524 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-i686/kab/thunderbird-102.3.3.tar.bz2"; 524 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-i686/kab/thunderbird-102.4.0.tar.bz2"; 525 525 locale = "kab"; 526 526 arch = "linux-i686"; 527 - sha256 = "c140e63f750c0c8ffd368b4a79831b4aea4f283db05bffdad58371cb052ed5e0"; 527 + sha256 = "ffd8fda6889463a558c1354af2fdb30680c564c7650c0d70e9a12bc02f71ea45"; 528 528 } 529 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-i686/kk/thunderbird-102.3.3.tar.bz2"; 529 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-i686/kk/thunderbird-102.4.0.tar.bz2"; 530 530 locale = "kk"; 531 531 arch = "linux-i686"; 532 - sha256 = "4441479e9bc91c7f2fde53904ef5dce34b8c81ad74a7a6483775644a4416b49b"; 532 + sha256 = "c664d38e01e27b2869848d4a12bc703bb61fb60369b56dd0fba8d5225bd45069"; 533 533 } 534 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-i686/ko/thunderbird-102.3.3.tar.bz2"; 534 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-i686/ko/thunderbird-102.4.0.tar.bz2"; 535 535 locale = "ko"; 536 536 arch = "linux-i686"; 537 - sha256 = "84731cd21a44a556fca01fb5d72ecbcf0aa11320928b28240a49dc51849a0975"; 537 + sha256 = "d1e116857ce58acab34af920f767d7eba9d9080a2135aa2651a0b398860b199d"; 538 538 } 539 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-i686/lt/thunderbird-102.3.3.tar.bz2"; 539 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-i686/lt/thunderbird-102.4.0.tar.bz2"; 540 540 locale = "lt"; 541 541 arch = "linux-i686"; 542 - sha256 = "a50ffdacfc5a4e0f69f4dfc8b4aee8c00a1ea8dc3e58e022ccd432d09cc5f42f"; 542 + sha256 = "2df015a969cc5bd0571051bcac8c73e8164519bcb395dbab290a8b31e0da6eed"; 543 543 } 544 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-i686/lv/thunderbird-102.3.3.tar.bz2"; 544 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-i686/lv/thunderbird-102.4.0.tar.bz2"; 545 545 locale = "lv"; 546 546 arch = "linux-i686"; 547 - sha256 = "5e39e7ad880674948715dbd275a9410688a153e6f822b1063710b5520604ed35"; 547 + sha256 = "1926845d7d6c73950faa160a2e06eb530ed250e45ca1c6ca2b3dce1744d36494"; 548 548 } 549 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-i686/ms/thunderbird-102.3.3.tar.bz2"; 549 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-i686/ms/thunderbird-102.4.0.tar.bz2"; 550 550 locale = "ms"; 551 551 arch = "linux-i686"; 552 - sha256 = "087680b99f9ad0030a379aeeec6665a5066106a5fc1a816b9d4d56623b557194"; 552 + sha256 = "8d029da2bc3b1dbeac391c8cf089cc24ccf7c090b7636308b5778f8f563d84fb"; 553 553 } 554 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-i686/nb-NO/thunderbird-102.3.3.tar.bz2"; 554 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-i686/nb-NO/thunderbird-102.4.0.tar.bz2"; 555 555 locale = "nb-NO"; 556 556 arch = "linux-i686"; 557 - sha256 = "6ca2c6dae3c87cb5f66dc48da1049039629c653fd144f675d86c40b2b9a6e92d"; 557 + sha256 = "9bfce479878b1431cde83522b3a13bb85e962699ef49860be39dcf98fd4ab2ec"; 558 558 } 559 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-i686/nl/thunderbird-102.3.3.tar.bz2"; 559 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-i686/nl/thunderbird-102.4.0.tar.bz2"; 560 560 locale = "nl"; 561 561 arch = "linux-i686"; 562 - sha256 = "1d81fa00b001fa19f78897a23e5f5972673bcc8a0ca6f58172d7720ae9636d3a"; 562 + sha256 = "b94854a1e278514930f4d6f405c99c2674a6a0d6bbd2a606e8e2931d20d64c27"; 563 563 } 564 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-i686/nn-NO/thunderbird-102.3.3.tar.bz2"; 564 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-i686/nn-NO/thunderbird-102.4.0.tar.bz2"; 565 565 locale = "nn-NO"; 566 566 arch = "linux-i686"; 567 - sha256 = "400d959701e7a867637cd32a8c69f53bacc69c5d082e391e0e6690ada9b921da"; 567 + sha256 = "a3b6ea808b6b190ff60c17a173132180d07bddc0683ac12e6bf5537660aee957"; 568 568 } 569 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-i686/pa-IN/thunderbird-102.3.3.tar.bz2"; 569 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-i686/pa-IN/thunderbird-102.4.0.tar.bz2"; 570 570 locale = "pa-IN"; 571 571 arch = "linux-i686"; 572 - sha256 = "e664dc2fac39de71cca8a9d7307880409af0664753a91c591befd2752bf768a9"; 572 + sha256 = "9681f45460a6583a26e9580784f27ba565184391de142d1d23cf75e4ace0a102"; 573 573 } 574 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-i686/pl/thunderbird-102.3.3.tar.bz2"; 574 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-i686/pl/thunderbird-102.4.0.tar.bz2"; 575 575 locale = "pl"; 576 576 arch = "linux-i686"; 577 - sha256 = "ad83ff34ab55271f328961392d4b02679882defac3a1864a4da9145e40e87d4d"; 577 + sha256 = "56359ce8ff9a1904954ef4c8c04d3ddeba4dfcf60e14fe3be8864c43f38023d0"; 578 578 } 579 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-i686/pt-BR/thunderbird-102.3.3.tar.bz2"; 579 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-i686/pt-BR/thunderbird-102.4.0.tar.bz2"; 580 580 locale = "pt-BR"; 581 581 arch = "linux-i686"; 582 - sha256 = "f1f07563a9bda75ea311600f0e45286e081b2d039c54a19b8c570272727635b4"; 582 + sha256 = "cf46c656f7ef37737dec931beb88c03ee79cb90e0cca429e22cf8d311b1b2aac"; 583 583 } 584 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-i686/pt-PT/thunderbird-102.3.3.tar.bz2"; 584 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-i686/pt-PT/thunderbird-102.4.0.tar.bz2"; 585 585 locale = "pt-PT"; 586 586 arch = "linux-i686"; 587 - sha256 = "33507adcfadf1db7967b0a40532f311610420798394bc6df450076407f4bb687"; 587 + sha256 = "30a03b9bdc9e0fb3272d283f44b446011c1801608f4cdca730848598b7671dce"; 588 588 } 589 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-i686/rm/thunderbird-102.3.3.tar.bz2"; 589 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-i686/rm/thunderbird-102.4.0.tar.bz2"; 590 590 locale = "rm"; 591 591 arch = "linux-i686"; 592 - sha256 = "7c56f1d9cd3d5d313c6acb7915911c443bbf1073b16fe406a225b5a2c45cc858"; 592 + sha256 = "87db729d6fe4f93dfefd009d49e631b9a0540927e854d5a908951708e06ee902"; 593 593 } 594 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-i686/ro/thunderbird-102.3.3.tar.bz2"; 594 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-i686/ro/thunderbird-102.4.0.tar.bz2"; 595 595 locale = "ro"; 596 596 arch = "linux-i686"; 597 - sha256 = "078fa1d28e5370cad25a7f4c8e7162dbeda17b19e9ffdccf4b504222d7f8a208"; 597 + sha256 = "dfb295a1dd9c0fcc5e2d2a2645d9b6a7a9404f0c278404501b407963a7fd7adf"; 598 598 } 599 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-i686/ru/thunderbird-102.3.3.tar.bz2"; 599 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-i686/ru/thunderbird-102.4.0.tar.bz2"; 600 600 locale = "ru"; 601 601 arch = "linux-i686"; 602 - sha256 = "29f842188f0fcab4d1dc0b80f8af422e4445ac3958426949b5cb32921a62c856"; 602 + sha256 = "72416015e3a56f05e31cc90970903e16d756a219c63a776177431b0688f23a56"; 603 603 } 604 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-i686/sk/thunderbird-102.3.3.tar.bz2"; 604 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-i686/sk/thunderbird-102.4.0.tar.bz2"; 605 605 locale = "sk"; 606 606 arch = "linux-i686"; 607 - sha256 = "46fc3d121a9559573fab59165a4ef26f764b451e9d9ebd07b63cbaeb38759de1"; 607 + sha256 = "2ff17c8a109e1031032f9deae6997b2d7a70658e89af39436618904020162afa"; 608 608 } 609 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-i686/sl/thunderbird-102.3.3.tar.bz2"; 609 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-i686/sl/thunderbird-102.4.0.tar.bz2"; 610 610 locale = "sl"; 611 611 arch = "linux-i686"; 612 - sha256 = "5252c6c511150af4aff9a0922ed5435ee235dd10cf7bda0d5f7b9b45fab390e7"; 612 + sha256 = "fa907a23de32b00eda97533345a8e77ba3badb4b6fb4660b5b9616fc1ecaf796"; 613 613 } 614 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-i686/sq/thunderbird-102.3.3.tar.bz2"; 614 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-i686/sq/thunderbird-102.4.0.tar.bz2"; 615 615 locale = "sq"; 616 616 arch = "linux-i686"; 617 - sha256 = "5ef982ce3d31ded7fa5ebe617d4be7fa4808a43dbbdd16c13983eb2a7f009bd8"; 617 + sha256 = "60fc9e217138531ae014348f793bf8b159c85c253069f1e3881357f63c047946"; 618 618 } 619 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-i686/sr/thunderbird-102.3.3.tar.bz2"; 619 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-i686/sr/thunderbird-102.4.0.tar.bz2"; 620 620 locale = "sr"; 621 621 arch = "linux-i686"; 622 - sha256 = "104ce567e97504648656e33f180e2168be9e94c52ee9107e3a19e0bb2d521671"; 622 + sha256 = "f6eccd0e094adec5eb092c926a59a5a162dd38c3f0919f1dca057203d3daa6cf"; 623 623 } 624 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-i686/sv-SE/thunderbird-102.3.3.tar.bz2"; 624 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-i686/sv-SE/thunderbird-102.4.0.tar.bz2"; 625 625 locale = "sv-SE"; 626 626 arch = "linux-i686"; 627 - sha256 = "862d41270c85a7444e3a99514cadc4df79ba104b764891e3e62d2f39a0cfb65c"; 627 + sha256 = "029918b677978a74fc5c896d529d07201e38e283256cc83aa065b721f6570b51"; 628 628 } 629 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-i686/th/thunderbird-102.3.3.tar.bz2"; 629 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-i686/th/thunderbird-102.4.0.tar.bz2"; 630 630 locale = "th"; 631 631 arch = "linux-i686"; 632 - sha256 = "7cb5c0a5c165455e82d9e013f865c88ae9e6782981a86164a684efef09a3238d"; 632 + sha256 = "ca3f0bbf8e077f1521d949171353e9404939cacadefe96fb1ee6d9b86237bcd8"; 633 633 } 634 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-i686/tr/thunderbird-102.3.3.tar.bz2"; 634 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-i686/tr/thunderbird-102.4.0.tar.bz2"; 635 635 locale = "tr"; 636 636 arch = "linux-i686"; 637 - sha256 = "543d63317a0e42d7bba23cf964e816d9aa30de44eab7f7d81ac5ba178d4975e8"; 637 + sha256 = "d09d7fedce1a467ce32948332e9b7695d8113c3ee3078c9771cdd4a87168d164"; 638 638 } 639 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-i686/uk/thunderbird-102.3.3.tar.bz2"; 639 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-i686/uk/thunderbird-102.4.0.tar.bz2"; 640 640 locale = "uk"; 641 641 arch = "linux-i686"; 642 - sha256 = "87eb738708454a7082836df803d400cb6f2d7c7dd836890a26681f3c5f06d38a"; 642 + sha256 = "834914fa4b058721d7f3d43e3fd9b0f509d4284315780999057f8960feb87fe0"; 643 643 } 644 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-i686/uz/thunderbird-102.3.3.tar.bz2"; 644 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-i686/uz/thunderbird-102.4.0.tar.bz2"; 645 645 locale = "uz"; 646 646 arch = "linux-i686"; 647 - sha256 = "a11e52fccb2cf0e96be69c59e74d3766c71b895d41a13971de369abacae5044d"; 647 + sha256 = "d4e9309eef2f58271097e750fc46988200526ef6971f2bce7487305dfc1f8d37"; 648 648 } 649 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-i686/vi/thunderbird-102.3.3.tar.bz2"; 649 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-i686/vi/thunderbird-102.4.0.tar.bz2"; 650 650 locale = "vi"; 651 651 arch = "linux-i686"; 652 - sha256 = "34cca2f1cda994a41a3ab772fb987f494159473f361da0835291b979dc8b0134"; 652 + sha256 = "ef1d679ae415ebc51353f2ca475dd9c968a308150387f33c85cc1fb5fb7d3d0f"; 653 653 } 654 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-i686/zh-CN/thunderbird-102.3.3.tar.bz2"; 654 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-i686/zh-CN/thunderbird-102.4.0.tar.bz2"; 655 655 locale = "zh-CN"; 656 656 arch = "linux-i686"; 657 - sha256 = "6fb4c51c37fe78fd6430f82869317a9b1580f042cde00ef5d0aae99b91fc7264"; 657 + sha256 = "61e247c35e102c836c68083ecae7ab8268dcc7d4a6fa15cd81dcf2e9a9ae7053"; 658 658 } 659 - { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.3.3/linux-i686/zh-TW/thunderbird-102.3.3.tar.bz2"; 659 + { url = "http://archive.mozilla.org/pub/thunderbird/releases/102.4.0/linux-i686/zh-TW/thunderbird-102.4.0.tar.bz2"; 660 660 locale = "zh-TW"; 661 661 arch = "linux-i686"; 662 - sha256 = "0271acf95abad4ef6957108e18f5d4149d7a6829b7ae96ccb600c1c210c24669"; 662 + sha256 = "b464abc16f43d675a70d0b05491fbca28b8c3c9e5a6e684b2d442081b8538a2b"; 663 663 } 664 664 ]; 665 665 }
+2 -2
pkgs/applications/networking/mailreaders/thunderbird/packages.nix
··· 5 5 6 6 thunderbird-102 = (buildMozillaMach rec { 7 7 pname = "thunderbird"; 8 - version = "102.3.3"; 8 + version = "102.4.0"; 9 9 application = "comm/mail"; 10 10 applicationName = "Mozilla Thunderbird"; 11 11 binaryName = pname; 12 12 src = fetchurl { 13 13 url = "mirror://mozilla/thunderbird/releases/${version}/source/thunderbird-${version}.source.tar.xz"; 14 - sha512 = "37027f251513885d1432ee8cbe0fb2b4cb3c95b0ce88bd35f207cd7a4552d6700a63d13e0542712f796d46be6cfc165d6d1c224b30a445be7f5058fc396655fe"; 14 + sha512 = "e2ce59eefb0c4df3eb20af01af2b7ad78a09e0fbac7bcc8800538d6655ca63a5d132c0700e2465654cc707a50aee01c62df0532f2c53b5f11c2d3a7ca881d8f0"; 15 15 }; 16 16 extraPatches = [ 17 17 # The file to be patched is different from firefox's `no-buildconfig-ffx90.patch`.
+46
pkgs/applications/networking/upnp-router-control/default.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchurl 4 + , intltool 5 + , pkg-config 6 + , wrapGAppsHook 7 + , gssdp 8 + , gtk3 9 + , gupnp 10 + }: 11 + 12 + stdenv.mkDerivation rec { 13 + pname = "upnp-router-control"; 14 + version = "0.3.1"; 15 + 16 + src = fetchurl { 17 + url = "https://launchpad.net/upnp-router-control/trunk/${version}/+download/upnp-router-control-${version}.tar.gz"; 18 + hash = "sha256-bYbw4Z5hDlFTSGk5XE2gnnXRPYMl4IzV+kzlwfR98yg="; 19 + }; 20 + 21 + nativeBuildInputs = [ 22 + intltool 23 + pkg-config 24 + wrapGAppsHook 25 + ]; 26 + 27 + buildInputs = [ 28 + gssdp 29 + gtk3 30 + gupnp 31 + ]; 32 + 33 + meta = with lib; { 34 + # also https://gitlab.gnome.org/DnaX/upnp-router-control 35 + homepage = "https://launchpad.net/upnp-router-control"; 36 + description = "Access some parameters of the router and manage port forwarding"; 37 + longDescription = '' 38 + A GTK application to access some parameters of the router like: 39 + the network speed, the external IP and the model name. 40 + It can manage port forwarding through a simple GUI interface. 41 + ''; 42 + license = licenses.gpl3Plus; 43 + maintainers = with maintainers; [ fgaz ]; 44 + platforms = platforms.all; 45 + }; 46 + }
+18
pkgs/applications/window-managers/hyprwm/hypr/000-dont-set-compiler.diff
··· 1 + diff -Naur source-old/CMakeLists.txt source/CMakeLists.txt 2 + --- source-old/CMakeLists.txt 2022-10-19 00:55:52.766480588 -0300 3 + +++ source/CMakeLists.txt 2022-10-19 00:56:08.368515654 -0300 4 + @@ -1,7 +1,5 @@ 5 + cmake_minimum_required(VERSION 3.4) 6 + 7 + -set(CMAKE_CXX_COMPILER "/bin/g++") 8 + - 9 + project(Hypr 10 + VERSION 0.1 11 + DESCRIPTION "A Modern OOP C++ Window Manager" 12 + @@ -54,4 +52,4 @@ 13 + SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pg -no-pie -fno-builtin") 14 + SET(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -pg -no-pie -fno-builtin") 15 + SET(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -pg -no-pie -fno-builtin") 16 + -ENDIF(CMAKE_BUILD_TYPE MATCHES Debug OR CMAKE_BUILD_TYPE MATCHES DEBUG) 17 + \ No newline at end of file 18 + +ENDIF(CMAKE_BUILD_TYPE MATCHES Debug OR CMAKE_BUILD_TYPE MATCHES DEBUG)
+77
pkgs/applications/window-managers/hyprwm/hypr/default.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , cairo 5 + , cmake 6 + , glib 7 + , gtkmm3 8 + , harfbuzz 9 + , libX11 10 + , libXdmcp 11 + , libxcb 12 + , makeWrapper 13 + , pcre2 14 + , pkg-config 15 + , xcbutilcursor 16 + , xcbutilkeysyms 17 + , xcbutilwm 18 + , xmodmap 19 + }: 20 + 21 + stdenv.mkDerivation (finalAttrs: { 22 + pname = "hypr"; 23 + version = "unstable-2022-05-25"; 24 + 25 + src = fetchFromGitHub { 26 + owner = "hyprwm"; 27 + repo = "Hypr"; 28 + rev = "3e3d943c446ae77c289611a1a875c8dff8883c1e"; 29 + hash = "sha256-lyaGGm53qxg7WVoFxZ7kerLe12P1N3JbN8nut6oZS50="; 30 + }; 31 + 32 + patches = [ 33 + ./000-dont-set-compiler.diff 34 + ]; 35 + 36 + nativeBuildInputs = [ 37 + cmake 38 + makeWrapper 39 + pkg-config 40 + ]; 41 + 42 + buildInputs = [ 43 + cairo 44 + glib 45 + gtkmm3 46 + harfbuzz 47 + libX11 48 + libXdmcp 49 + libxcb 50 + pcre2 51 + xcbutilcursor 52 + xcbutilkeysyms 53 + xcbutilwm 54 + ]; 55 + 56 + installPhase = '' 57 + runHook preInstall 58 + 59 + install -Dm755 Hypr -t $out/bin 60 + 61 + runHook postInstall 62 + ''; 63 + 64 + postFixup = '' 65 + wrapProgram $out/bin/Hypr --prefix PATH : ${lib.makeBinPath [ xmodmap ]} 66 + ''; 67 + 68 + meta = with lib; { 69 + inherit (finalAttrs.src.meta) homepage; 70 + description = "A tiling X11 window manager written in modern C++"; 71 + license = licenses.bsd3; 72 + maintainers = with maintainers; [ AndersonTorres ]; 73 + inherit (libX11.meta) platforms; 74 + broken = stdenv.isDarwin; # xcb/xcb_atom.h not found 75 + mainProgram = "Hypr"; 76 + }; 77 + })
+3 -3
pkgs/data/misc/v2ray-geoip/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "v2ray-geoip"; 5 - version = "202210130107"; 5 + version = "202210200105"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "v2fly"; 9 9 repo = "geoip"; 10 - rev = "becf974734e41542c356a0c0ae21a619c476d500"; 11 - sha256 = "sha256-IF7mcyiZc4CTFWSflxQBH8Z9NloCcsCymOhU85GaoEg="; 10 + rev = "a9409c3b7c6a788e7be62c9b92a24d034f521603"; 11 + sha256 = "sha256-CuR1xeCcuzxMMgstyjcdQKpU0n6AkA6X786LpUmANGE="; 12 12 }; 13 13 14 14 installPhase = ''
+2 -2
pkgs/desktops/gnome/extensions/dash-to-dock/default.nix
··· 9 9 10 10 stdenv.mkDerivation rec { 11 11 pname = "gnome-shell-extension-dash-to-dock"; 12 - version = "74"; 12 + version = "75"; 13 13 14 14 # Temporarily switched to commit hash because stable version is buggy. 15 15 src = fetchFromGitHub { 16 16 owner = "micheleg"; 17 17 repo = "dash-to-dock"; 18 18 rev = "extensions.gnome.org-v${version}"; 19 - sha256 = "3WNm9kX76+qmn9KWLSKwxmHHpc21kWHrBW9266TOKZ0="; 19 + sha256 = "sha256-vHXNhJgty7x4Ef6jxUI29KYpadC3jtUqE1Nt1dWYr24="; 20 20 }; 21 21 22 22 nativeBuildInputs = [
+2 -2
pkgs/desktops/pantheon/desktop/wingpanel-indicators/power/default.nix
··· 21 21 22 22 stdenv.mkDerivation rec { 23 23 pname = "wingpanel-indicator-power"; 24 - version = "6.1.0"; 24 + version = "6.2.0"; 25 25 26 26 src = fetchFromGitHub { 27 27 owner = "elementary"; 28 28 repo = pname; 29 29 rev = version; 30 - sha256 = "1zlpnl7983jkpy2nik08ih8lwrqvm456h993ixa6armzlazdvnjk"; 30 + sha256 = "sha256-TxrskbwitsilTidWifSWg9IP6BzH1y/OOrFohlENJmM="; 31 31 }; 32 32 33 33 patches = [
+24 -14
pkgs/development/compilers/ligo/default.nix
··· 2 2 , fetchFromGitLab 3 3 , git 4 4 , coq 5 + , ocamlPackages 5 6 , cacert 6 7 , ocaml-crunch 7 8 }: 8 9 9 - coq.ocamlPackages.buildDunePackage rec { 10 + ocamlPackages.buildDunePackage rec { 10 11 pname = "ligo"; 11 - version = "0.47.0"; 12 + version = "0.53.0"; 12 13 src = fetchFromGitLab { 13 14 owner = "ligolang"; 14 15 repo = "ligo"; 15 16 rev = version; 16 - sha256 = "sha256-VJs0pKA99mZXhipK1bSAZmgAHvYbGbjxdI2XyJYjSm0="; 17 + sha256 = "sha256-WNiN9UrwXCwfxWnR5oPm9sGWelQCpooCXh43T2QaOnI="; 17 18 fetchSubmodules = true; 18 19 }; 19 20 20 21 # The build picks this up for ligo --version 21 22 LIGO_VERSION = version; 23 + 24 + duneVersion = "3"; 22 25 23 26 strictDeps = true; 24 27 ··· 29 26 ocaml-crunch 30 27 git 31 28 coq 32 - coq.ocamlPackages.menhir 33 - coq.ocamlPackages.ocaml-recovery-parser 29 + ocamlPackages.crunch 30 + ocamlPackages.menhir 31 + ocamlPackages.ocaml-recovery-parser 34 32 ]; 35 33 36 - buildInputs = with coq.ocamlPackages; [ 34 + buildInputs = with ocamlPackages; [ 37 35 coq 38 36 menhir 39 37 menhirLib 40 38 qcheck 41 39 ocamlgraph 42 40 bisect_ppx 41 + decompress 43 42 ppx_deriving 44 43 ppx_deriving_yojson 45 44 ppx_expect ··· 54 49 core_unix 55 50 pprint 56 51 linenoise 57 - dune-configurator 58 - ctypes_stubs_js 59 52 crunch 60 - zarith_stubs_js 61 - pure-splitmix 53 + semver 54 + lambda-term 55 + tar-unix 56 + parse-argv 62 57 63 58 # Test helpers deps 64 59 qcheck ··· 66 61 alcotest-lwt 67 62 68 63 # vendored tezos' deps 64 + tezos-plonk 65 + tezos-bls12-381-polynomial 69 66 ctypes 67 + ctypes_stubs_js 68 + class_group_vdf 69 + dune-configurator 70 70 hacl-star 71 71 hacl-star-raw 72 72 lwt-canceler ··· 90 80 irmin-pack 91 81 ezjsonm 92 82 data-encoding 83 + pure-splitmix 84 + zarith_stubs_js 93 85 ]; 94 86 95 87 checkInputs = [ 96 88 cacert 97 - coq.ocamlPackages.ca-certs 89 + ocamlPackages.ca-certs 98 90 ]; 99 91 100 92 doCheck = false; # Tests fail, but could not determine the reason 101 - 102 - patches = [ ./ligo.patch ]; # fix for core >= 0.15.0 103 93 104 94 meta = with lib; { 105 95 homepage = "https://ligolang.org/"; 106 96 downloadPage = "https://ligolang.org/docs/intro/installation"; 107 97 description = "A friendly Smart Contract Language for Tezos"; 108 98 license = licenses.mit; 109 - platforms = [ "x86_64-linux" ]; 99 + platforms = ocamlPackages.ocaml.meta.platforms; 110 100 maintainers = with maintainers; [ ulrikstrid ]; 111 101 }; 112 102 }
-151
pkgs/development/compilers/ligo/ligo.patch
··· 1 - From 6926fed076c2f5aa3282dbca10538d156c045c6f Mon Sep 17 00:00:00 2001 2 - From: bezmuth <benkel97@protonmail.com> 3 - Date: Wed, 3 Aug 2022 15:53:10 +0100 4 - Subject: [PATCH] Compat with core v0.15.0 5 - 6 - --- 7 - ligo.opam | 4 +++- 8 - ligo.opam.locked | 5 +++-- 9 - src/bin/cli.ml | 4 ++-- 10 - src/bin/dune | 4 +++- 11 - src/main/helpers/cli_helpers.ml | 4 ++-- 12 - src/main/interpreter/dune | 2 +- 13 - src/main/interpreter/interpreter.ml | 2 ++ 14 - vendors/ligo-utils/simple-utils/dune | 1 + 15 - vendors/ligo-utils/simple-utils/snippet.ml | 2 +- 16 - 9 files changed, 18 insertions(+), 10 deletions(-) 17 - 18 - diff --git a/ligo.opam b/ligo.opam 19 - index 47513217f..073f68ff5 100644 20 - --- a/ligo.opam 21 - +++ b/ligo.opam 22 - @@ -10,7 +10,9 @@ license: "MIT" 23 - # If you change the dependencies, run `opam lock` in the root 24 - depends: [ 25 - # Jane Street Core 26 - - "core" {= "v0.14.1"} 27 - + "core" {>= "v0.14.1" & < "v0.16.0"} 28 - + "core_kernel" { >= "v0.14.1" & "v0.16.0"} 29 - + "core_unix" { >= "v0.14.1" & "v0.16.0"} 30 - # Tooling 31 - "odoc" { build } 32 - "ocamlfind" { build } 33 - diff --git a/ligo.opam.locked b/ligo.opam.locked 34 - index fd6fccf03..458e11791 100644 35 - --- a/ligo.opam.locked 36 - +++ b/ligo.opam.locked 37 - @@ -47,8 +47,9 @@ depends: [ 38 - "conf-rust" {= "0.1"} 39 - "conf-which" {= "1"} 40 - "coq" {= "8.13.2"} 41 - - "core" {= "v0.14.1"} 42 - - "core_kernel" {= "v0.14.2"} 43 - + "core" {= "v0.15.0"} 44 - + "core_kernel" {= "v0.15.0"} 45 - + "core_unix" {= "v0.15.0"} 46 - "cppo" {= "1.6.8"} 47 - "csexp" {= "1.5.1"} 48 - "cstruct" {= "6.1.0"} 49 - diff --git a/src/bin/cli.ml b/src/bin/cli.ml 50 - index dcaa85621..e411d8f32 100644 51 - --- a/src/bin/cli.ml 52 - +++ b/src/bin/cli.ml 53 - @@ -14,7 +14,7 @@ let entry_point = 54 - let source_file = 55 - let name = "SOURCE_FILE" in 56 - let _doc = "the path to the smart contract file." in 57 - - Command.Param.(anon (name %: Filename.arg_type)) 58 - + Command.Param.(anon (name %: Filename_unix.arg_type)) 59 - 60 - let package_name = 61 - let name = "PACKAGE_NAME" in 62 - @@ -783,7 +783,7 @@ let main = Command.group ~preserve_subcommand_order:() ~summary:"The LigoLANG co 63 - ] 64 - 65 - let run ?argv () = 66 - - Command.run ~version:Version.version ?argv main; 67 - + Command_unix.run ~version:Version.version ?argv main; 68 - (* Effect to error code *) 69 - match !return with 70 - Done -> 0; 71 - diff --git a/src/bin/dune b/src/bin/dune 72 - index 03e5f17b5..74340ae9d 100644 73 - --- a/src/bin/dune 74 - +++ b/src/bin/dune 75 - @@ -11,7 +11,9 @@ 76 - repl 77 - install 78 - cli_helpers 79 - - ligo_api) 80 - + ligo_api 81 - + core_unix.command_unix 82 - + core_unix.filename_unix) 83 - (modules cli version)) 84 - 85 - 86 - diff --git a/src/main/helpers/cli_helpers.ml b/src/main/helpers/cli_helpers.ml 87 - index 3d09ee6b8..585cca6fa 100644 88 - --- a/src/main/helpers/cli_helpers.ml 89 - +++ b/src/main/helpers/cli_helpers.ml 90 - @@ -71,7 +71,7 @@ let run_command (cmd : command) = 91 - (fun p -> Lwt.map 92 - (fun status -> 93 - match status with 94 - - Caml.Unix.WEXITED 0 -> Ok () 95 - + Caml_unix.WEXITED 0 -> Ok () 96 - | _ -> Error ("unknown error")) 97 - p#status) in 98 - - Lwt_main.run status 99 - \ No newline at end of file 100 - + Lwt_main.run status 101 - diff --git a/src/main/interpreter/dune b/src/main/interpreter/dune 102 - index 6ccc74ff0..7d38bb822 100644 103 - --- a/src/main/interpreter/dune 104 - +++ b/src/main/interpreter/dune 105 - @@ -4,4 +4,4 @@ 106 - (instrumentation 107 - (backend bisect_ppx)) 108 - (libraries tezos-013-PtJakart-test-helpers ast_aggregated ligo_interpreter 109 - - main_errors ligo_compile build fuzz ligo_run self_ast_typed bls12-381)) 110 - + main_errors ligo_compile build fuzz ligo_run self_ast_typed bls12-381 core_unix.sys_unix)) 111 - diff --git a/src/main/interpreter/interpreter.ml b/src/main/interpreter/interpreter.ml 112 - index 0f76a286c..d9a389a6b 100644 113 - --- a/src/main/interpreter/interpreter.ml 114 - +++ b/src/main/interpreter/interpreter.ml 115 - @@ -3,6 +3,8 @@ open Simple_utils 116 - open Ligo_interpreter.Types 117 - open Ligo_interpreter.Combinators 118 - 119 - +module Sys = Sys_unix 120 - + 121 - module AST = Ast_aggregated 122 - 123 - include AST.Types 124 - diff --git a/vendors/ligo-utils/simple-utils/dune b/vendors/ligo-utils/simple-utils/dune 125 - index becca2f86..a890dbf62 100644 126 - --- a/vendors/ligo-utils/simple-utils/dune 127 - +++ b/vendors/ligo-utils/simple-utils/dune 128 - @@ -6,6 +6,7 @@ 129 - (libraries 130 - ;; Third party 131 - core 132 - + core_kernel.caml_unix 133 - yojson 134 - result 135 - unix 136 - diff --git a/vendors/ligo-utils/simple-utils/snippet.ml b/vendors/ligo-utils/simple-utils/snippet.ml 137 - index 658f115f2..f23000590 100644 138 - --- a/vendors/ligo-utils/simple-utils/snippet.ml 139 - +++ b/vendors/ligo-utils/simple-utils/snippet.ml 140 - @@ -1,7 +1,7 @@ 141 - (* used to show code snippets in error messages *) 142 - 143 - let print_code ppf (l:Region.t) (input_line: unit -> string) = 144 - - let dumb =String.equal (Caml.Unix.getenv "TERM") "dumb" in 145 - + let dumb =String.equal (Caml_unix.getenv "TERM") "dumb" in 146 - let start = l#start#line in 147 - let start_column = l#start#offset `Byte in 148 - let stop = l#stop#line in 149 - -- 150 - 2.36.1 151 -
+2 -2
pkgs/development/libraries/jellyfin-ffmpeg/default.nix
··· 8 8 nv-codec-headers = nv-codec-headers-11; 9 9 }).overrideAttrs (old: rec { 10 10 pname = "jellyfin-ffmpeg"; 11 - version = "5.1.2-1"; 11 + version = "5.1.2-2"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "jellyfin"; 15 15 repo = "jellyfin-ffmpeg"; 16 16 rev = "v${version}"; 17 - sha256 = "sha256-56IDFZnHDL3jArNd/U/ZRdHyJ54oqhY+U4XcwOLTGqQ="; 17 + sha256 = "sha256-7Icp1vFnvhuohipGK7BqnxhhtX0iB02v5TXvh5sss3c="; 18 18 }; 19 19 20 20 configureFlags = old.configureFlags ++ [
+35
pkgs/development/libraries/libirc/default.nix
··· 1 + { lib, stdenv, fetchFromGitHub, cmake, qtbase }: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "libirc"; 5 + version = "unstable-2022-10-15"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "grumpy-irc"; 9 + repo = "libirc"; 10 + rev = "734082ffffb6d6744070c75587159d927342edea"; 11 + sha256 = "Qi/YKLlau0rdQ9XCMyreQdv4ctQWHFIoE3YlW6QnbSI="; 12 + }; 13 + 14 + nativeBuildInputs = [ cmake ]; 15 + 16 + cmakeFlags = [ 17 + "-DQT5_BUILD=1" 18 + "-DQt5Core_DIR=${qtbase.dev}/lib/cmake/Qt5Core" 19 + "-DQt5Network_DIR=${qtbase.dev}/lib/cmake/Qt5Network" 20 + ]; 21 + 22 + preFixup = '' 23 + mkdir -p $out/libirc/libirc{,client} 24 + cp ../libirc/*.h $out/libirc/libirc 25 + cp ../libircclient/*.h $out/libirc/libircclient 26 + ''; 27 + 28 + meta = with lib; { 29 + description = "C++ IRC library written in Qt with support for data serialization"; 30 + homepage = "https://github.com/grumpy-irc/libirc"; 31 + license = licenses.lgpl3; 32 + maintainers = with maintainers; [ fee1-dead ]; 33 + platforms = platforms.linux; 34 + }; 35 + }
+1 -4
pkgs/development/libraries/matrix-sdk-crypto-nodejs/default.nix
··· 23 23 hash = "sha256-G2Um7vHinOuOx9U2BH14LAx+s/0Sxtlc9Nz6nPJfmU8="; 24 24 }; 25 25 26 - postPatch = '' 27 - cd bindings/${pname} 28 - ''; 29 - 30 26 nativeBuildInputs = [ 31 27 rustPlatform.cargoSetupHook 32 28 rustPlatform.rust.cargo ··· 36 40 buildPhase = '' 37 41 runHook preBuild 38 42 43 + cd bindings/${pname} 39 44 npm run release-build --offline 40 45 41 46 runHook postBuild
+3 -3
pkgs/development/libraries/qt-5/5.15/srcs.nix
··· 36 36 37 37 qtwebengine = 38 38 let 39 - branchName = "5.15.8"; 39 + branchName = "5.15.11"; 40 40 rev = "v${branchName}-lts"; 41 41 in 42 42 { ··· 44 44 45 45 src = fetchgit { 46 46 url = "https://github.com/qt/qtwebengine.git"; 47 - sha256 = "04xhg5qpnxm8hzgkanml45za64c9i5pbxhki2l2wcq4b4y7f3hyr"; 47 + sha256 = "sha256-yrKPof18G10VjrwCn/4E/ywlpATJQZjvmVeM+9hLY0U="; 48 48 inherit rev branchName; 49 49 fetchSubmodules = true; 50 50 leaveDotGit = true; 51 - name = "qtwebengine-${lib.substring 0 7 rev}.tar.gz"; 51 + name = "qtwebengine-${lib.substring 0 8 rev}.tar.gz"; 52 52 postFetch = '' 53 53 # remove submodule .git directory 54 54 rm -rf "$out/src/3rdparty/.git"
+1 -1
pkgs/development/libraries/science/math/cudnn/extension.nix
··· 141 141 supportedCudaVersions = [ "10.2" ]; 142 142 } 143 143 rec { 144 - fileVersion = "11.7"; 144 + fileVersion = "11.8"; 145 145 fullVersion = "8.6.0.163"; 146 146 hash = "sha256-u8OW30cpTGV+3AnGAGdNYIyxv8gLgtz0VHBgwhcRFZ4="; 147 147 url = "${urlPrefix}/v${majorMinorPatch fullVersion}/local_installers/${fileVersion}/cudnn-linux-x86_64-${fullVersion}_cuda${major fileVersion}-archive.tar.xz";
+13 -1
pkgs/development/libraries/shapelib/default.nix
··· 1 - { lib, stdenv, fetchurl }: 1 + { lib 2 + , stdenv 3 + , fetchurl 4 + , fetchpatch 5 + }: 2 6 3 7 stdenv.mkDerivation rec { 4 8 pname = "shapelib"; ··· 12 8 url = "https://download.osgeo.org/shapelib/shapelib-${version}.tar.gz"; 13 9 sha256 = "1qfsgb8b3yiqwvr6h9m81g6k9fjhfys70c22p7kzkbick20a9h0z"; 14 10 }; 11 + 12 + patches = [ 13 + (fetchpatch { 14 + name = "CVE-2022-0699.patch"; 15 + url = "https://github.com/OSGeo/shapelib/commit/c75b9281a5b9452d92e1682bdfe6019a13ed819f.patch"; 16 + sha256 = "sha256-zJ7JHUtInA5q/RbkSs1DqVK+UQi2vIw2t1jqxocnQQI="; 17 + }) 18 + ]; 15 19 16 20 meta = with lib; { 17 21 description = "C Library for reading, writing and updating ESRI Shapefiles";
+2
pkgs/development/ocaml-modules/mec/default.nix
··· 10 10 sha256 = "sha256-uIcGj/exSfuuzsv6C/bnJXpYRu3OY3dcKMW/7+qwi2U="; 11 11 }; 12 12 13 + duneVersion = "3"; 14 + 13 15 minimalOCamlVersion = "4.12"; 14 16 15 17 propagatedBuildInputs = [
+2 -2
pkgs/development/ocaml-modules/ocaml-lsp/jsonrpc.nix
··· 13 13 if lib.versionAtLeast ocaml.version "4.14" 14 14 then { 15 15 name = "lsp"; 16 - version = "1.12.4"; 17 - sha256 = "sha256-kZuYAny8VjWdq+ipEdPSTRcGzqjNBOgXOi0dOwb52EY="; 16 + version = "1.14.1"; 17 + sha256 = "sha256-5kxMM90Dd5H8yb7f1NYV3abRaePqztFQ82VTnayradk="; 18 18 } else if lib.versionAtLeast ocaml.version "4.13" 19 19 then { 20 20 name = "jsonrpc";
+2 -5
pkgs/development/ocaml-modules/torch/default.nix
··· 17 17 18 18 buildDunePackage rec { 19 19 pname = "torch"; 20 - version = "0.14"; 21 - 22 - useDune2 = true; 20 + version = "0.15"; 23 21 24 22 minimalOCamlVersion = "4.08"; 25 23 ··· 25 27 owner = "LaurentMazare"; 26 28 repo = "ocaml-${pname}"; 27 29 rev = version; 28 - sha256 = "sha256:039anfvzsalbqi5cdp95bbixcwr2ngharihgd149hcr0wa47y700"; 30 + sha256 = "sha256-EXJqlAGa0LwQKY8IlmcoJs0l2eRTiUhuzMHfakrslXU="; 29 31 }; 30 32 31 33 buildInputs = [ dune-configurator ]; ··· 54 56 description = "Ocaml bindings to Pytorch"; 55 57 maintainers = [ maintainers.bcdarwin ]; 56 58 license = licenses.asl20; 57 - broken = lib.versionAtLeast torch.version "1.11"; 58 59 }; 59 60 }
+17 -10
pkgs/development/python-modules/azure-mgmt-resource/default.nix
··· 1 - { pkgs 1 + { lib 2 2 , buildPythonPackage 3 3 , fetchPypi 4 4 , azure-mgmt-core 5 5 , azure-mgmt-common 6 - , isPy3k 6 + , msrest 7 + , pythonOlder 7 8 }: 8 9 9 - 10 10 buildPythonPackage rec { 11 - version = "21.2.0"; 12 11 pname = "azure-mgmt-resource"; 13 - disabled = !isPy3k; 12 + version = "21.2.1"; 13 + format = "setuptools"; 14 + 15 + disabled = pythonOlder "3.7"; 14 16 15 17 src = fetchPypi { 16 18 inherit pname version; 17 19 extension = "zip"; 18 - sha256 = "sha256-v4pd5sTate/H8NGND1cWXe5SMepS0j0Q2C5Ee4wqGlQ="; 20 + hash = "sha256-vSBg1WOT/+Ykao8spn51Tt0D7Ae5dWMLMK4DqIYFl6c="; 19 21 }; 20 22 21 23 propagatedBuildInputs = [ 22 24 azure-mgmt-common 23 25 azure-mgmt-core 26 + msrest 24 27 ]; 25 28 26 - # has no tests 29 + # Module has no tests 27 30 doCheck = false; 28 31 29 - pythonNamespaces = [ "azure.mgmt" ]; 32 + pythonNamespaces = [ 33 + "azure.mgmt" 34 + ]; 30 35 31 - pythonImportsCheck = [ "azure.mgmt.resource" ]; 36 + pythonImportsCheck = [ 37 + "azure.mgmt.resource" 38 + ]; 32 39 33 - meta = with pkgs.lib; { 40 + meta = with lib; { 34 41 description = "Microsoft Azure SDK for Python"; 35 42 homepage = "https://github.com/Azure/azure-sdk-for-python"; 36 43 license = licenses.mit;
+2 -2
pkgs/development/python-modules/casbin/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "casbin"; 12 - version = "1.17.1"; 12 + version = "1.17.2"; 13 13 format = "setuptools"; 14 14 15 15 disabled = pythonOlder "3.6"; ··· 18 18 owner = pname; 19 19 repo = "pycasbin"; 20 20 rev = "refs/tags/v${version}"; 21 - hash = "sha256-uh5XPhLoCnJtVnEDG+/oQvneEL1KLMWfAx+RXH/GCyE="; 21 + hash = "sha256-wJYGo87K9Ae2HoN/ZR3S0EiX2v68vs+Vb75nA+Csass="; 22 22 }; 23 23 24 24 propagatedBuildInputs = [
+4 -5
pkgs/development/python-modules/jax/default.nix
··· 21 21 in 22 22 buildPythonPackage rec { 23 23 pname = "jax"; 24 - version = "0.3.16"; 24 + version = "0.3.23"; 25 25 format = "setuptools"; 26 26 27 27 disabled = pythonOlder "3.7"; ··· 30 30 owner = "google"; 31 31 repo = pname; 32 32 rev = "jax-v${version}"; 33 - hash = "sha256-4idh7boqBXSO9vEHxEcrzXjBIrKmmXiCf6cXh7En1/I="; 33 + hash = "sha256-ruXOwpBwpi1G8jgH9nhbWbs14JupwWkjh+Wzrj8HVU4="; 34 34 }; 35 35 36 36 # jaxlib is _not_ included in propagatedBuildInputs because there are ··· 92 92 "tests/sparse_test.py" 93 93 ]; 94 94 95 - pythonImportsCheck = [ 96 - "jax" 97 - ]; 95 + # As of 0.3.22, `import jax` does not work without jaxlib being installed. 96 + pythonImportsCheck = [ ]; 98 97 99 98 meta = with lib; { 100 99 description = "Differentiate, compile, and transform Numpy code";
+23 -44
pkgs/development/python-modules/jaxlib/bin.nix
··· 3 3 # https://storage.googleapis.com/jax-releases/libtpu_releases.html. 4 4 5 5 # For future reference, the easiest way to test the GPU backend is to run 6 - # NIX_PATH=.. nix-shell -p python3 python3Packages.jax "python3Packages.jaxlib.override { cudaSupport = true; }" 6 + # NIX_PATH=.. nix-shell -p python3 python3Packages.jax "python3Packages.jaxlib-bin.override { cudaSupport = true; }" 7 7 # export XLA_FLAGS=--xla_gpu_force_compilation_parallelism=1 8 8 # python -c "from jax.lib import xla_bridge; assert xla_bridge.get_backend().platform == 'gpu'" 9 9 # python -c "from jax import random; random.PRNGKey(0)" ··· 35 35 inherit (cudaPackages) cudatoolkit cudnn; 36 36 in 37 37 38 - # There are no jaxlib wheels targeting cudnn <8.0.5, and although there are 39 - # wheels for cudatoolkit <11.1, we don't support them. 40 38 assert cudaSupport -> lib.versionAtLeast cudatoolkit.version "11.1"; 41 - assert cudaSupport -> lib.versionAtLeast cudnn.version "8.0.5"; 39 + assert cudaSupport -> lib.versionAtLeast cudnn.version "8.2"; 42 40 43 41 let 44 - version = "0.3.0"; 42 + version = "0.3.22"; 45 43 46 44 pythonVersion = python.pythonVersion; 47 45 48 - # Find new releases at https://storage.googleapis.com/jax-releases. When 49 - # upgrading, you can get these hashes from prefetch.sh. 46 + # Find new releases at https://storage.googleapis.com/jax-releases/jax_releases.html. 47 + # When upgrading, you can get these hashes from prefetch.sh. See 48 + # https://github.com/google/jax/issues/12879 as to why this specific URL is 49 + # the correct index. 50 50 cpuSrcs = { 51 - "3.9" = fetchurl { 52 - url = "https://storage.googleapis.com/jax-releases/nocuda/jaxlib-${version}-cp39-none-manylinux2010_x86_64.whl"; 53 - hash = "sha256-AfBVqoqChEXlEC5PgbtQ5rQzcbwo558fjqCjSPEmN5Q="; 51 + "x86_64-linux" = fetchurl { 52 + url = "https://storage.googleapis.com/jax-releases/nocuda/jaxlib-${version}-cp310-cp310-manylinux2014_x86_64.whl"; 53 + hash = "sha256-w2wo0jk+1BdEkNwfSZRQbebdI4Ac8Kgn0MB0cIMcWU4="; 54 54 }; 55 - "3.10" = fetchurl { 56 - url = "https://storage.googleapis.com/jax-releases/nocuda/jaxlib-${version}-cp310-none-manylinux2010_x86_64.whl"; 57 - hash = "sha256-9uBkFOO8LlRpO6AP+S8XK9/d2yRdyHxQGlbAjShqHRQ="; 55 + "aarch64-darwin" = fetchurl { 56 + url = "https://storage.googleapis.com/jax-releases/mac/jaxlib-${version}-cp310-cp310-macosx_11_0_arm64.whl"; 57 + hash = "sha256-7Ir55ZhBkccqfoa56WVBF8QwFAC2ws4KFHDkfVw6zm0="; 58 58 }; 59 59 }; 60 60 61 - gpuSrcs = { 62 - "3.9-805" = fetchurl { 63 - url = "https://storage.googleapis.com/jax-releases/cuda11/jaxlib-${version}+cuda11.cudnn805-cp39-none-manylinux2010_x86_64.whl"; 64 - hash = "sha256-CArIhzM5FrQi3TkdqpUqCeDQYyDMVXlzKFgjNXjLJXw="; 65 - }; 66 - "3.9-82" = fetchurl { 67 - url = "https://storage.googleapis.com/jax-releases/cuda11/jaxlib-${version}+cuda11.cudnn82-cp39-none-manylinux2010_x86_64.whl"; 68 - hash = "sha256-Q0plVnA9pUNQ+gCHSXiLNs4i24xCg8gBGfgfYe3bot4="; 69 - }; 70 - "3.10-805" = fetchurl { 71 - url = "https://storage.googleapis.com/jax-releases/cuda11/jaxlib-${version}+cuda11.cudnn805-cp310-none-manylinux2010_x86_64.whl"; 72 - hash = "sha256-JopevCEAs0hgDngIId6NqbLam5YfcS8Lr9cEffBKp1U="; 73 - }; 74 - "3.10-82" = fetchurl { 75 - url = "https://storage.googleapis.com/jax-releases/cuda11/jaxlib-${version}+cuda11.cudnn82-cp310-none-manylinux2010_x86_64.whl"; 76 - hash = "sha256-2f5TwbdP7EfQNRM3ZcJXCAkS2VXBwNYH6gwT9pdu3Go="; 77 - }; 61 + gpuSrc = fetchurl { 62 + url = "https://storage.googleapis.com/jax-releases/cuda11/jaxlib-${version}+cuda11.cudnn82-cp310-cp310-manylinux2014_x86_64.whl"; 63 + hash = "sha256-rabU62p4fF7Tu/6t8LNYZdf6YO06jGry/JtyFZeamCs="; 78 64 }; 79 65 in 80 66 buildPythonPackage rec { ··· 68 82 inherit version; 69 83 format = "wheel"; 70 84 71 - # At the time of writing (2022-03-03), there are releases for <=3.10. 72 - # Supporting all of them is a pain, so we focus on 3.9, the current nixpkgs 73 - # python3 version, and 3.10. 74 - disabled = !(pythonVersion == "3.9" || pythonVersion == "3.10"); 85 + # At the time of writing (2022-10-19), there are releases for <=3.10. 86 + # Supporting all of them is a pain, so we focus on 3.10, the current nixpkgs 87 + # python version. 88 + disabled = !(pythonVersion == "3.10"); 75 89 76 - src = 77 - if !cudaSupport then cpuSrcs."${pythonVersion}" else 78 - let 79 - # jaxlib wheels are currently provided for cudnn versions at least 8.0.5 and 80 - # 8.2. Try to use 8.2 whenever possible. 81 - cudnnVersion = if (lib.versionAtLeast cudnn.version "8.2") then "82" else "805"; 82 - in 83 - gpuSrcs."${pythonVersion}-${cudnnVersion}"; 90 + src = if !cudaSupport then cpuSrcs."${stdenv.hostPlatform.system}" else gpuSrc; 84 91 85 92 # Prebuilt wheels are dynamically linked against things that nix can't find. 86 93 # Run `autoPatchelfHook` to automagically fix them. 87 - nativeBuildInputs = [ autoPatchelfHook ] ++ lib.optional cudaSupport addOpenGLRunpath; 94 + nativeBuildInputs = lib.optionals cudaSupport [ autoPatchelfHook addOpenGLRunpath ]; 88 95 # Dynamic link dependencies 89 96 buildInputs = [ stdenv.cc.cc ]; 90 97 ··· 121 142 sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 122 143 license = licenses.asl20; 123 144 maintainers = with maintainers; [ samuela ]; 124 - platforms = [ "x86_64-linux" ]; 145 + platforms = [ "aarch64-darwin" "x86_64-linux" ]; 125 146 }; 126 147 }
+8 -6
pkgs/development/python-modules/jaxlib/default.nix
··· 53 53 inherit (cudaPackages) cudatoolkit cudnn nccl; 54 54 55 55 pname = "jaxlib"; 56 - version = "0.3.15"; 56 + version = "0.3.22"; 57 57 58 58 meta = with lib; { 59 59 description = "JAX is Autograd and XLA, brought together for high-performance machine learning research."; ··· 96 96 owner = "google"; 97 97 repo = "jax"; 98 98 rev = "${pname}-v${version}"; 99 - sha256 = "sha256-pIl7zzl82w5HHnJadH2vtCT4mYFd5YmM9iHC2GoJD6s="; 99 + hash = "sha256-bnczJ8ma/UMKhA5MUQ6H4az+Tj+By14ZTG6lQQwptQs="; 100 100 }; 101 101 102 102 nativeBuildInputs = [ ··· 235 235 fetchAttrs = { 236 236 sha256 = 237 237 if cudaSupport then 238 - "sha256-tdO4YjO985zbittb16RFWgxgUBrHYQfv5gRsA4IAkTk=" 238 + "sha256-Z9GDWGv+1YFyJjudyshZfeRJsKShoA1kIbNR3h3GxPQ=" 239 239 else if stdenv.isDarwin then 240 - "sha256-+XYxfXBCASueqDGg0Zqcmpf7zmemYM6xCE+x0rl3j34=" 240 + "sha256-i3wiJHD4+pgTvDMhnYiQo9pdxxKItgYnc4/4wGt2NXM=" 241 241 else 242 - "sha256-La1wC8X5aGK5mXvYy/kO8n4J+zaRZEc/DAX5zaH1D5A="; 242 + "sha256-liRxmjwm0OmVMfgoGXx+nGBdW2fzzP/d4zmK6A59HAM="; 243 243 }; 244 244 245 245 buildAttrs = { ··· 293 293 inherit meta pname version; 294 294 format = "wheel"; 295 295 296 - src = "${bazel-build}/jaxlib-${version}-cp${builtins.replaceStrings ["."] [""] python.pythonVersion}-none-${platformTag}.whl"; 296 + src = 297 + let cp = "cp${builtins.replaceStrings ["."] [""] python.pythonVersion}"; 298 + in "${bazel-build}/jaxlib-${version}-${cp}-${cp}-${platformTag}.whl"; 297 299 298 300 # Note that cudatoolkit is necessary since jaxlib looks for "ptxas" in $PATH. 299 301 # See https://github.com/NixOS/nixpkgs/pull/164176#discussion_r828801621 for
+2 -2
pkgs/development/python-modules/life360/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "life360"; 11 - version = "5.1.1"; 11 + version = "5.2.0"; 12 12 format = "setuptools"; 13 13 14 14 disabled = pythonOlder "3.8"; ··· 17 17 owner = "pnbruckner"; 18 18 repo = pname; 19 19 rev = "refs/tags/v${version}"; 20 - hash = "sha256-Fsv0lK0C9suVqgeaxKVuyAacHzHJJ1FHXzzy95RnhWw="; 20 + hash = "sha256-FLYqTuH/r56mbeOsgXgcLbKtQMiHnRpccDcdDiB0YMo="; 21 21 }; 22 22 23 23 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/lxmf/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "lxmf"; 10 - version = "0.2.0"; 10 + version = "0.2.1"; 11 11 format = "setuptools"; 12 12 13 13 disabled = pythonOlder "3.7"; ··· 16 16 owner = "markqvist"; 17 17 repo = "lxmf"; 18 18 rev = "refs/tags/${version}"; 19 - hash = "sha256-5GQil5ReK0DEURPDgrGxfUhhIFHrRSSmtZ+l6xA9oA8="; 19 + hash = "sha256-ULYo2eFzBoEc5OeuRW/o35P/9oeYob8lG4T++nDrnNg="; 20 20 }; 21 21 22 22 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/nomadnet/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "nomadnet"; 12 - version = "0.2.4"; 12 + version = "0.2.5"; 13 13 format = "setuptools"; 14 14 15 15 disabled = pythonOlder "3.7"; ··· 18 18 owner = "markqvist"; 19 19 repo = "NomadNet"; 20 20 rev = version; 21 - hash = "sha256-SfKIbgt+F4CPA5r5NHjgPXOiq3+3UtvzEQfXkmN1VR0="; 21 + hash = "sha256-iPgdXii3SZWxSTpILBLIWY6vpBTnrpGnEosD/ttN/Yk="; 22 22 }; 23 23 24 24 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/plugwise/default.nix
··· 21 21 22 22 buildPythonPackage rec { 23 23 pname = "plugwise"; 24 - version = "0.25.2"; 24 + version = "0.25.3"; 25 25 format = "setuptools"; 26 26 27 27 disabled = pythonOlder "3.7"; ··· 30 30 owner = pname; 31 31 repo = "python-plugwise"; 32 32 rev = "refs/tags/v${version}"; 33 - sha256 = "sha256-wHlIBysNZ0TmgdEL6sT+rqaAcH772V7k16rua2UEEso="; 33 + sha256 = "sha256-vfdU0jzbfKJbIN343CWIwCK+tYt3ScgPhjq0+9NSiL8="; 34 34 }; 35 35 36 36 propagatedBuildInputs = [
+44
pkgs/development/python-modules/pyprusalink/default.nix
··· 1 + { lib 2 + , aiohttp 3 + , buildPythonPackage 4 + , fetchFromGitHub 5 + , pythonOlder 6 + , setuptools 7 + }: 8 + 9 + buildPythonPackage rec { 10 + pname = "pyprusalink"; 11 + version = "1.1.0"; 12 + format = "pyproject"; 13 + 14 + disabled = pythonOlder "3.8"; 15 + 16 + src = fetchFromGitHub { 17 + owner = "home-assistant-libs"; 18 + repo = pname; 19 + rev = "refs/tags/${version}"; 20 + hash = "sha256-XRtbb7kceiqi8pioTWStRo0drCtQfy1t62jCMihlIec="; 21 + }; 22 + 23 + nativeBuildInputs = [ 24 + setuptools 25 + ]; 26 + 27 + propagatedBuildInputs = [ 28 + aiohttp 29 + ]; 30 + 31 + # Module doesn't have tests 32 + doCheck = false; 33 + 34 + pythonImportsCheck = [ 35 + "pyprusalink" 36 + ]; 37 + 38 + meta = with lib; { 39 + description = "Library to communicate with PrusaLink "; 40 + homepage = "https://github.com/home-assistant-libs/pyprusalink"; 41 + license = with licenses; [ asl20 ]; 42 + maintainers = with maintainers; [ fab ]; 43 + }; 44 + }
+2 -2
pkgs/development/python-modules/rns/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "rns"; 12 - version = "0.3.14"; 12 + version = "0.3.16"; 13 13 format = "setuptools"; 14 14 15 15 disabled = pythonOlder "3.7"; ··· 18 18 owner = "markqvist"; 19 19 repo = "Reticulum"; 20 20 rev = "refs/tags/${version}"; 21 - hash = "sha256-W5zQiGzuBHzEebVZjnVUO7Htx2/hnpeBHWoBfeXuaOQ="; 21 + hash = "sha256-+TXIxyLLIWK0lLUyh4irTYHXZLAv8zFYUGKAbA7D9qA="; 22 22 }; 23 23 24 24 propagatedBuildInputs = [
+3 -3
pkgs/development/tools/buf/default.nix
··· 10 10 11 11 buildGoModule rec { 12 12 pname = "buf"; 13 - version = "1.8.0"; 13 + version = "1.9.0"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "bufbuild"; 17 17 repo = pname; 18 18 rev = "v${version}"; 19 - sha256 = "sha256-yU1xPOnSQXrYdF24EsXb/x+IfoQFjIbW1KEt//7Fl5Q="; 19 + sha256 = "sha256-KnG1FUdC8xpW/wI4E8+RzO0StKF+N7Wx1jTWNm4302M="; 20 20 }; 21 21 22 - vendorSha256 = "sha256-zEcKfMib/4/GfQC7M3f8R3v/hGh9F/KtjFs+pXDzbFk="; 22 + vendorSha256 = "sha256-e/hkJoQ1GkSl4mhhgYVB4POult87DzWOXRLGyDVP+M0="; 23 23 24 24 patches = [ 25 25 # Skip a test that requires networking to be available to work.
+1 -1
pkgs/development/tools/build-managers/dub/default.nix
··· 150 150 homepage = "https://code.dlang.org/"; 151 151 license = licenses.mit; 152 152 maintainers = with maintainers; [ ThomasMader ]; 153 - platforms = [ "x86_64-linux" "i686-linux" "x86_64-darwin" "aarch64-darwin" ]; 153 + platforms = [ "x86_64-linux" "i686-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ]; 154 154 }; 155 155 }
+3 -3
pkgs/development/tools/conftest/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "conftest"; 5 - version = "0.34.0"; 5 + version = "0.35.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "open-policy-agent"; 9 9 repo = "conftest"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-w9rqfmNEvp6yYXBl5CVeifgrP35dL+pYBgRs3vP1W4I="; 11 + sha256 = "sha256-rcc4Ziktoq1ZNWdCNxoNtthLzKoMYFOH/dBg2KNQVGY="; 12 12 }; 13 - vendorSha256 = "sha256-NcizXQ4wQnA1ZdT74tVbuIbFwgEp5qJfoGnHmMC7kkI="; 13 + vendorSha256 = "sha256-jYBNDUUuTLQTCRWGAgjsvRN13RW97qt+5KREg7YBJnw="; 14 14 15 15 ldflags = [ 16 16 "-s"
+2 -2
pkgs/development/tools/datree/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "datree"; 5 - version = "1.6.37"; 5 + version = "1.6.40"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "datreeio"; 9 9 repo = "datree"; 10 10 rev = version; 11 - hash = "sha256-oDwI4rlpTkriPD2YC8AnlPYHUchC7btYyX/X8sxmvac="; 11 + hash = "sha256-UATF7oR7EarfqFvJhwdyz7qMxpwkk9oabk2LB/w6Y3E="; 12 12 }; 13 13 14 14 vendorSha256 = "sha256-gjD24nyQ8U1WwhUbq8N4dvzFK74t3as7wWZK7rh9yiw=";
+3 -3
pkgs/development/tools/just/default.nix
··· 10 10 11 11 rustPlatform.buildRustPackage rec { 12 12 pname = "just"; 13 - version = "1.5.0"; 13 + version = "1.6.0"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "casey"; 17 17 repo = pname; 18 18 rev = version; 19 - hash = "sha256-x/4+5m/FiqH68xTHP/cyPDbQ1DtpBXJr32iTq/9GWwI="; 19 + hash = "sha256-4ilq/ptDYjfXmkLqky8z8iwfvg9JgdP+uADcv/zeHWs="; 20 20 }; 21 21 22 - cargoSha256 = "sha256-EjX2U+H8sw+v+NEa5uCxIqG8HDl2P6PjpvWrhuF9Jr0="; 22 + cargoSha256 = "sha256-rugnbuzynQ4lBy977e04xAvueUbViIuFSzXlQkiwM00="; 23 23 24 24 nativeBuildInputs = [ installShellFiles ]; 25 25 buildInputs = lib.optionals stdenv.isDarwin [ libiconv ];
+2 -2
pkgs/development/tools/okteto/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "okteto"; 5 - version = "2.8.0"; 5 + version = "2.8.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "okteto"; 9 9 repo = "okteto"; 10 10 rev = version; 11 - sha256 = "sha256-7M/axnl6K3yrfNwdp3gkKE3c0m0zgDfW8FV7BixIxBM="; 11 + sha256 = "sha256-YTz4W+txxs1G6NukckWkOlGwlOrS4LgMly8ilmgt5GE="; 12 12 }; 13 13 14 14 vendorSha256 = "sha256-/oR8R0/GC6cgCqXinCRH5x93qgRPeQmxHgZZGshrDr4=";
+77
pkgs/games/hikounomizu/default.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchurl 4 + , cmake 5 + , pkg-config 6 + , util-linux 7 + , libGL 8 + , freetype 9 + , pugixml 10 + , SDL2 11 + , SDL2_image 12 + , openal 13 + , libogg 14 + , libvorbis 15 + , libGLU 16 + , synfigstudio 17 + , inkscape 18 + , imagemagick 19 + , pngquant 20 + , xz 21 + }: 22 + 23 + stdenv.mkDerivation rec { 24 + pname = "hikounomizu"; 25 + version = "0.9.2"; 26 + 27 + src = fetchurl { 28 + url = "http://download.tuxfamily.org/hnm/${version}/hikounomizu-${version}-src.tar.bz2"; 29 + hash = "sha256-ZtvzQAiYG4IcdgKiBDIQFOJVnLbz1TsiIbdZr/0Y2U8="; 30 + }; 31 + 32 + nativeBuildInputs = [ 33 + cmake 34 + pkg-config 35 + # for make data 36 + util-linux 37 + synfigstudio.synfig 38 + inkscape 39 + imagemagick 40 + pngquant 41 + xz 42 + ]; 43 + 44 + buildInputs = [ 45 + libGL 46 + freetype 47 + pugixml 48 + SDL2 49 + SDL2_image 50 + openal 51 + libogg 52 + libvorbis 53 + libGLU 54 + ]; 55 + 56 + postBuild = '' 57 + make data -j$NIX_BUILD_CORES 58 + ''; 59 + 60 + meta = with lib; { 61 + description = "A free platform-based fighting game"; 62 + longDescription = '' 63 + Hikou no mizu (ハイクの水) is a free platform-based fighting game, 64 + licensed under the GNU GPL v3 (program) and the LAL (graphics). 65 + It works on many operating systems including GNU/Linux, *BSD, Haiku, 66 + OS X and Windows. 67 + 68 + The characters use natural powers such as water or lightning, 69 + but they can also (mostly for now) fight the traditional way! 70 + ''; 71 + homepage = "https://hikounomizu.org/"; 72 + downloadPage = "https://hikounomizu.org/download.html"; 73 + maintainers = with maintainers; [ fgaz ]; 74 + license = [ licenses.gpl3Plus licenses.lal13 ]; 75 + platforms = platforms.all; 76 + }; 77 + }
+30
pkgs/os-specific/linux/nsncd/default.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , rustPlatform 5 + , nix-gitignore 6 + }: 7 + 8 + rustPlatform.buildRustPackage rec { 9 + pname = "nsncd"; 10 + version = "unstable-2021-10-20"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "nix-community"; 14 + repo = "nsncd"; 15 + rev = "b9425070bb308565a6e4dc5aefd568952a07a4ed"; 16 + hash = "sha256-ZjInzPJo+PWAM2gAKhlasLXiqo+2Df4DIXpNwtqQVc8="; 17 + }; 18 + 19 + cargoSha256 = "sha256-hxdI+HHB0PB/zDMI21Pg5Xr9mTDn4T+OcAAenUox4bs="; 20 + 21 + meta = with lib; { 22 + description = "the name service non-caching daemon"; 23 + longDescription = '' 24 + nsncd is a nscd-compatible daemon that proxies lookups, without caching. 25 + ''; 26 + homepage = "https://github.com/twosigma/nsncd"; 27 + license = licenses.asl20; 28 + maintainers = with maintainers; [ flokli ninjatrappeur ]; 29 + }; 30 + }
+3 -1
pkgs/servers/home-assistant/component-packages.nix
··· 2357 2357 pillow 2358 2358 ]; 2359 2359 "prusalink" = ps: with ps; [ 2360 - ]; # missing inputs: pyprusalink 2360 + pyprusalink 2361 + ]; 2361 2362 "ps4" = ps: with ps; [ 2362 2363 ]; # missing inputs: pyps4-2ndscreen 2363 2364 "pulseaudio_loopback" = ps: with ps; [ ··· 4055 4054 "prometheus" 4056 4055 "prosegur" 4057 4056 "proximity" 4057 + "prusalink" 4058 4058 "pure_energie" 4059 4059 "push" 4060 4060 "pushbullet"
+2 -2
pkgs/servers/http/nginx/mainline.nix
··· 1 1 { callPackage, ... }@args: 2 2 3 3 callPackage ./generic.nix args { 4 - version = "1.23.1"; 5 - sha256 = "sha256-Xu4b0cI+O5R3pFUy8fNq5heLQ9VxqWB+aVPO8m1d8eI="; 4 + version = "1.23.2"; 5 + sha256 = "sha256-qAzCctPXKq7nCqi1F7SGKmNcAlZ5BDTb/E1hipmbC0Y="; 6 6 }
+3 -3
pkgs/servers/http/nginx/quic.nix
··· 6 6 callPackage ./generic.nix args { 7 7 src = fetchhg { 8 8 url = "https://hg.nginx.org/nginx-quic"; 9 - rev = "3550b00d9dc8"; # branch=quic 10 - sha256 = "sha256-JtE5FO4FHlDuqXd4UTXXPIFAdyyhQbOSMTT0NXh2iH4="; 9 + rev = "3be953161026"; # branch=quic 10 + sha256 = "sha256-maWQ0RPI2pe6L8QL7TQ1YJts5ZJHhiTYG9sdwINGMDA="; 11 11 }; 12 12 13 13 preConfigure = '' ··· 19 19 "--with-stream_quic_module" 20 20 ]; 21 21 22 - version = "1.23.1-quic"; 22 + version = "1.23.2-quic"; 23 23 }
+2 -2
pkgs/servers/http/nginx/stable.nix
··· 1 1 { callPackage, ... } @ args: 2 2 3 3 callPackage ./generic.nix args { 4 - version = "1.22.0"; 5 - sha256 = "0lzb4sn8hv491zad9kbpvka3m5ayjf1pxqbwllri980idyd5cgdk"; 4 + version = "1.22.1"; 5 + sha256 = "sha256-nrszOp6CuVKs0+K0rrHU/2QG9ySRurbNn+afDepzfzE="; 6 6 }
+2 -2
pkgs/servers/kubemq-community/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "kubemq-community"; 5 - version = "2.3.1"; 5 + version = "2.3.2"; 6 6 src = fetchFromGitHub { 7 7 owner = "kubemq-io"; 8 8 repo = pname; 9 9 rev = "v${version}"; 10 - sha256 = "sha256-d5ZhQFVh7yzZsozlMaxkLMGdLraCFAvuQvQiSdF56wY="; 10 + sha256 = "sha256-uomC3bO+u46LvLapXXzx57nY5DdwBk7sWXuBX1Ntrz4="; 11 11 }; 12 12 13 13 CGO_ENABLED=0;
+2 -2
pkgs/servers/monitoring/nagios/plugins/check_ssl_cert.nix
··· 10 10 11 11 stdenv.mkDerivation rec { 12 12 pname = "check_ssl_cert"; 13 - version = "2.53.0"; 13 + version = "2.54.0"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "matteocorti"; 17 17 repo = "check_ssl_cert"; 18 18 rev = "v${version}"; 19 - hash = "sha256-Pj2g4eZqeIWV5kb2N9cnVwV0ZASOQflZD3sChhzPbfM="; 19 + hash = "sha256-rRzO5MYpQrDuMyQlOCupV6IR7ZZgpU2lhPpgqoEXiaY="; 20 20 }; 21 21 22 22 nativeBuildInputs = [
+5 -5
pkgs/servers/web-apps/wordpress/packages/languages.json
··· 1 1 { 2 2 "de_DE": { 3 3 "path": "de_DE", 4 - "rev": "963003", 5 - "sha256": "167zar1gp2jb6nx5nb5367mxk7b8c481gmg75m1s82y4mzlprc55", 6 - "version": "5.9" 4 + "rev": "963451", 5 + "sha256": "0zp1sz9f5vwz3ywj746la799nlaqxigja34qb83qqrsgkgaliff2", 6 + "version": "5.8" 7 7 }, 8 8 "fr_FR": { 9 9 "path": "fr_FR", 10 - "rev": "932480", 11 - "sha256": "0lmbalcvwfc6331vdazmhr2lp3w418rsp78mrj1rs7a44y8f1igj", 10 + "rev": "967096", 11 + "sha256": "0r40kkmm7an6zdqszqcgr07ffkfif5c9446fjxba20vslhgkj9mg", 12 12 "version": "5.8" 13 13 } 14 14 }
+10 -4
pkgs/servers/web-apps/wordpress/packages/plugins.json
··· 47 47 "sha256": "04x5dj79bx5avx8db991nlhrpd3qv3maniqmzwnyd8ab2zblzx83", 48 48 "version": "1.0.1" 49 49 }, 50 + "gutenberg": { 51 + "path": "gutenberg/tags/14.3.0", 52 + "rev": "2797654", 53 + "sha256": "0gf9spzsljhvmvhhqcgdcbrh95y2j0idmxjxsqnv2hk0miaka00d", 54 + "version": "14.3.0" 55 + }, 50 56 "jetpack": { 51 57 "path": "jetpack/tags/11.4", 52 58 "rev": "2794223", ··· 96 90 "version": "0.9.3" 97 91 }, 98 92 "webp-converter-for-media": { 99 - "path": "webp-converter-for-media/tags/5.3.0", 100 - "rev": "2797448", 101 - "sha256": "1w6i4z09rj9prj4skv9j2m45nsi1an092j2frfzf1wmdacvsrmvh", 102 - "version": "5.3.0" 93 + "path": "webp-converter-for-media/tags/5.3.1", 94 + "rev": "2798010", 95 + "sha256": "1flggxd6hw0ps3b0y32a2aj9g3zfpzbaiwzx1zn2s7zpxn508y1b", 96 + "version": "5.3.1" 103 97 }, 104 98 "worker": { 105 99 "path": "worker/tags/4.9.14",
+1
pkgs/servers/web-apps/wordpress/packages/wordpress-plugins.json
··· 7 7 , "cookie-notice" 8 8 , "co-authors-plus" 9 9 , "disable-xml-rpc" 10 + , "gutenberg" 10 11 , "jetpack" 11 12 , "jetpack-lite" 12 13 , "lightbox-photoswipe"
+2 -2
pkgs/tools/filesystems/bindfs/default.nix
··· 1 1 { lib, stdenv, fetchurl, fuse, pkg-config }: 2 2 3 3 stdenv.mkDerivation rec { 4 - version = "1.17.0"; 4 + version = "1.17.1"; 5 5 pname = "bindfs"; 6 6 7 7 src = fetchurl { 8 8 url = "https://bindfs.org/downloads/${pname}-${version}.tar.gz"; 9 - sha256 = "sha256-cNpX1J53lP5UuFdb/danlDqrVK2i6OL99L4E4AEUUdw="; 9 + sha256 = "sha256-7bSYkUTSj3Wv/E9bGAdPuXpY1u41rWkZrHXraky/41I="; 10 10 }; 11 11 12 12 nativeBuildInputs = [ pkg-config ];
+10 -2
pkgs/tools/graphics/viu/default.nix
··· 1 - { lib, rustPlatform, fetchFromGitHub }: 1 + { lib 2 + , rustPlatform 3 + , fetchFromGitHub 4 + , libsixel 5 + , withSixel ? false 6 + }: 2 7 3 8 rustPlatform.buildRustPackage rec { 4 9 pname = "viu"; ··· 21 16 22 17 cargoSha256 = "sha256-ildtjaYGbrQacJOdGDVwFv+kod+vZHqukWN6ARtJqI4="; 23 18 19 + buildFeatures = lib.optional withSixel "sixel"; 20 + buildInputs = lib.optional withSixel libsixel; 21 + 24 22 meta = with lib; { 25 23 description = "A command-line application to view images from the terminal written in Rust"; 26 24 homepage = "https://github.com/atanunq/viu"; 27 25 license = licenses.mit; 28 - maintainers = with maintainers; [ ]; 26 + maintainers = with maintainers; [ chuangzhu ]; 29 27 }; 30 28 }
+2 -2
pkgs/tools/misc/bdf2psf/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "bdf2psf"; 5 - version = "1.210"; 5 + version = "1.211"; 6 6 7 7 src = fetchurl { 8 8 url = "mirror://debian/pool/main/c/console-setup/bdf2psf_${version}_all.deb"; 9 - sha256 = "sha256-7kHUwKQoNCHphZiUs3jwYeosiL5Kxp3rimOJX8PmwJk="; 9 + sha256 = "sha256-Kzmqnctc2RUMbU3hVGmcfXFWiZhf5epaaj2eW4nVajU="; 10 10 }; 11 11 12 12 nativeBuildInputs = [ dpkg ];
+3 -3
pkgs/tools/misc/dsq/default.nix
··· 15 15 16 16 buildGoModule rec { 17 17 pname = "dsq"; 18 - version = "0.22.0"; 18 + version = "0.23.0"; 19 19 20 20 src = fetchFromGitHub { 21 21 owner = "multiprocessio"; 22 22 repo = "dsq"; 23 23 rev = "v${version}"; 24 - hash = "sha256-aFSal+MDJ7W50ZMgBkkyLaJjJoNeSGubylaRK0tbAzY="; 24 + hash = "sha256-FZBJe+2y4HV3Pgeap4yvD0a8M/j+6pAJEFpoQVVE1ec="; 25 25 }; 26 26 27 - vendorSha256 = "sha256-RW6DdMQeuKVP4rFN13Azq+zAx6dVXmdnIA6aDMCygcI="; 27 + vendorSha256 = "sha256-MbBR+OC1OGhZZGcZqc+Jzmabdc5ZfFEwzqP5YMrj6mY="; 28 28 29 29 ldflags = [ "-X" "main.Version=${version}" ]; 30 30
+48
pkgs/tools/misc/rfc/default.nix
··· 1 + { lib 2 + , stdenvNoCC 3 + , fetchFromGitHub 4 + , curl 5 + , installShellFiles 6 + , makeWrapper 7 + }: 8 + 9 + stdenvNoCC.mkDerivation rec { 10 + pname = "rfc"; 11 + version = "0.2.6"; 12 + 13 + src = fetchFromGitHub { 14 + owner = "bfontaine"; 15 + repo = "rfc"; 16 + rev = "v${version}"; 17 + hash = "sha256-dfaeTdJiJuKp8/k6LBP+RC60gTRHfHR5hhLD4ZWJufE="; 18 + }; 19 + 20 + nativeBuildInputs = [ installShellFiles makeWrapper ]; 21 + 22 + dontConfigure = true; 23 + dontBuild = true; 24 + 25 + installPhase = '' 26 + runHook preInstall 27 + 28 + install -Dm755 -t $out/bin rfc 29 + wrapProgram $out/bin/rfc \ 30 + --prefix PATH : ${lib.makeBinPath [ curl ]} 31 + installManPage man/rfc.1 32 + 33 + runHook postInstall 34 + ''; 35 + 36 + meta = with lib; { 37 + description = "A tool to read RFCs from the command line"; 38 + longDescription = '' 39 + rfc is a little tool written in Bash to read RFCs from the command-line. 40 + It fetches RFCs and drafts from the Web and caches them locally. 41 + ''; 42 + homepage = "https://github.com/bfontaine/rfc"; 43 + changelog = "https://github.com/bfontaine/rfc/blob/${src.rev}/CHANGELOG.md"; 44 + license = licenses.mit; 45 + maintainers = with maintainers; [ azahi ]; 46 + platforms = platforms.all; 47 + }; 48 + }
+2 -2
pkgs/tools/networking/checkip/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "checkip"; 8 - version = "0.41.0"; 8 + version = "0.42.0"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "jreisinger"; 12 12 repo = pname; 13 13 rev = "v${version}"; 14 - sha256 = "sha256-n8dKt18Ak+H+6NKMamUaeuaPKylOxFWrLAjMg5iqEdk="; 14 + sha256 = "sha256-cFnkuBA6cfVkhJQPUKAppWAVt3p+MXSFoyGD98HwAio="; 15 15 }; 16 16 17 17 vendorSha256 = "sha256-bFhSMjm9rqUUbCV9keeXm+yhzQMKrYKs1DbCt53J8aM=";
+4 -4
pkgs/tools/virtualization/linode-cli/default.nix
··· 11 11 }: 12 12 13 13 let 14 - sha256 = "1fv53wikx745kci86xrsq9kfsgv0a65srhywdw32cab1wywwpn2z"; 14 + sha256 = "1xwfbfh25kwbv8q24mcxdv0h4iya5r56cc8d6d1ihp92i1k7ggk9"; 15 15 # specVersion taken from: https://www.linode.com/docs/api/openapi.yaml at `info.version`. 16 - specVersion = "4.136.0"; 17 - specSha256 = "17cxg83cav9qnrnv7i45hsn0z4a6a5yyfhzy80x1v0fshnc52dpw"; 16 + specVersion = "4.138.0"; 17 + specSha256 = "0gcfnrgp18r49pvpi5s7x8vmz7jmps99pqhq3maad3xcrryjjrj4"; 18 18 spec = fetchurl { 19 19 url = "https://raw.githubusercontent.com/linode/linode-api-docs/v${specVersion}/openapi.yaml"; 20 20 sha256 = specSha256; ··· 24 24 25 25 buildPythonApplication rec { 26 26 pname = "linode-cli"; 27 - version = "5.23.0"; 27 + version = "5.24.0"; 28 28 29 29 src = fetchFromGitHub { 30 30 owner = "linode";
+14
pkgs/top-level/all-packages.nix
··· 4238 4238 4239 4239 hunt = callPackage ../tools/misc/hunt { }; 4240 4240 4241 + hypr = callPackage ../applications/window-managers/hyprwm/hypr { }; 4242 + 4241 4243 hyprland = callPackage ../applications/window-managers/hyprwm/hyprland { }; 4242 4244 4243 4245 hyprpaper = callPackage ../applications/window-managers/hyprwm/hyprpaper { }; ··· 8805 8803 libint = callPackage ../development/libraries/libint {}; 8806 8804 8807 8805 libipfix = callPackage ../development/libraries/libipfix { }; 8806 + 8807 + libirc = libsForQt5.callPackage ../development/libraries/libirc { }; 8808 8808 8809 8809 libircclient = callPackage ../development/libraries/libircclient { }; 8810 8810 ··· 29006 29002 29007 29003 haunt = callPackage ../applications/misc/haunt { }; 29008 29004 29005 + huggle = libsForQt5.callPackage ../applications/misc/huggle {}; 29006 + 29009 29007 hugo = callPackage ../applications/misc/hugo { 29010 29008 buildGoModule = buildGo119Module; 29011 29009 }; ··· 32336 32330 32337 32331 unison-ucm = callPackage ../development/compilers/unison { }; 32338 32332 32333 + upnp-router-control = callPackage ../applications/networking/upnp-router-control { }; 32334 + 32339 32335 urh = callPackage ../applications/radio/urh { }; 32340 32336 32341 32337 uroboros = callPackage ../tools/system/uroboros { }; ··· 34030 34022 hedgewars = libsForQt5.callPackage ../games/hedgewars { 34031 34023 inherit (haskellPackages) ghcWithPackages; 34032 34024 }; 34025 + 34026 + hikounomizu = callPackage ../games/hikounomizu { }; 34033 34027 34034 34028 hyperrogue = callPackage ../games/hyperrogue { }; 34035 34029 ··· 36712 36702 36713 36703 nhentai = callPackage ../applications/misc/nhentai { }; 36714 36704 36705 + nsncd = callPackage ../os-specific/linux/nsncd { }; 36706 + 36715 36707 nvd = callPackage ../tools/package-management/nvd { }; 36716 36708 36717 36709 solfege = python3Packages.callPackage ../misc/solfege { }; ··· 36852 36840 redprl = callPackage ../applications/science/logic/redprl { }; 36853 36841 36854 36842 renderizer = callPackage ../development/tools/renderizer {}; 36843 + 36844 + rfc = callPackage ../tools/misc/rfc { }; 36855 36845 36856 36846 rfc-bibtex = callPackage ../tools/typesetting/rfc-bibtex { }; 36857 36847
+2 -6
pkgs/top-level/python-packages.nix
··· 4776 4776 4777 4777 jaxlib-bin = callPackage ../development/python-modules/jaxlib/bin.nix { 4778 4778 cudaSupport = pkgs.config.cudaSupport or false; 4779 - # At the time of writing (2022-04-18), `cudaPackages.nccl` is broken, so we 4780 - # pin to `cudaPackages_11_6` instead. 4781 - cudaPackages = pkgs.cudaPackages_11_6; 4782 4779 }; 4783 4780 4784 4781 jaxlib-build = callPackage ../development/python-modules/jaxlib rec { ··· 4785 4788 }; 4786 4789 # Some platforms don't have `cudaSupport` defined, hence the need for 'or false'. 4787 4790 cudaSupport = pkgs.config.cudaSupport or false; 4788 - # At the time of writing (2022-04-18), `cudaPackages.nccl` is broken, so we 4789 - # pin to `cudaPackages_11_6` instead. 4790 - cudaPackages = pkgs.cudaPackages_11_6; 4791 4791 IOKit = pkgs.darwin.apple_sdk_11_0.IOKit; 4792 4792 protobuf = pkgs.protobuf3_20; # jaxlib-build 0.3.15 won't build with protobuf 3.21 4793 4793 }; ··· 8395 8401 pyproject-metadata = callPackage ../development/python-modules/pyproject-metadata { }; 8396 8402 8397 8403 pyprosegur = callPackage ../development/python-modules/pyprosegur { }; 8404 + 8405 + pyprusalink = callPackage ../development/python-modules/pyprusalink { }; 8398 8406 8399 8407 pyptlib = callPackage ../development/python-modules/pyptlib { }; 8400 8408