Merge master into staging-next

authored by github-actions[bot] and committed by GitHub ae91e9a9 2e0f3bc5

+1119 -581
+6
maintainers/maintainer-list.nix
··· 2325 githubId = 3212452; 2326 name = "Cameron Nemo"; 2327 }; 2328 campadrenalin = { 2329 email = "campadrenalin@gmail.com"; 2330 github = "campadrenalin";
··· 2325 githubId = 3212452; 2326 name = "Cameron Nemo"; 2327 }; 2328 + camillemndn = { 2329 + email = "camillemondon@free.fr"; 2330 + github = "camillemndn"; 2331 + githubId = 26444818; 2332 + name = "Camille M."; 2333 + }; 2334 campadrenalin = { 2335 email = "campadrenalin@gmail.com"; 2336 github = "campadrenalin";
+1
nixos/modules/module-list.nix
··· 195 ./programs/mdevctl.nix 196 ./programs/mepo.nix 197 ./programs/mininet.nix 198 ./programs/mosh.nix 199 ./programs/msmtp.nix 200 ./programs/mtr.nix
··· 195 ./programs/mdevctl.nix 196 ./programs/mepo.nix 197 ./programs/mininet.nix 198 + ./programs/miriway.nix 199 ./programs/mosh.nix 200 ./programs/msmtp.nix 201 ./programs/mtr.nix
+60
nixos/modules/programs/miriway.nix
···
··· 1 + { config, pkgs, lib, ... }: 2 + 3 + let 4 + cfg = config.programs.miriway; 5 + in { 6 + options.programs.miriway = { 7 + enable = lib.mkEnableOption (lib.mdDoc '' 8 + Miriway, a Mir based Wayland compositor. You can manually launch Miriway by 9 + executing "exec miriway" on a TTY, or launch it from a display manager. Copy 10 + /etc/xdg/xdg-miriway/miriway-shell.config to ~/.config/miriway-shell.config 11 + to modify the default configuration. See <https://github.com/Miriway/Miriway>, 12 + and "miriway --help" for more information''); 13 + 14 + config = lib.mkOption { 15 + type = lib.types.lines; 16 + default = '' 17 + x11-window-title=Miriway (Mir-on-X) 18 + idle-timeout=600 19 + ctrl-alt=t:miriway-terminal # Default "terminal emulator finder" 20 + 21 + shell-component=dbus-update-activation-environment --systemd DISPLAY WAYLAND_DISPLAY 22 + ''; 23 + example = '' 24 + idle-timeout=300 25 + ctrl-alt=t:weston-terminal 26 + add-wayland-extensions=all 27 + 28 + shell-components=dbus-update-activation-environment --systemd DISPLAY WAYLAND_DISPLAY 29 + 30 + shell-component=waybar 31 + shell-component=wbg Pictures/wallpaper 32 + 33 + shell-meta=a:synapse 34 + ''; 35 + description = lib.mdDoc '' 36 + Miriway's config. This will be installed system-wide. 37 + The default will install the miriway package's barebones example config. 38 + ''; 39 + }; 40 + }; 41 + 42 + config = lib.mkIf cfg.enable { 43 + environment = { 44 + systemPackages = [ pkgs.miriway ]; 45 + etc = { 46 + "xdg/xdg-miriway/miriway-shell.config".text = cfg.config; 47 + }; 48 + }; 49 + 50 + hardware.opengl.enable = lib.mkDefault true; 51 + fonts.enableDefaultFonts = lib.mkDefault true; 52 + programs.dconf.enable = lib.mkDefault true; 53 + programs.xwayland.enable = lib.mkDefault true; 54 + 55 + # To make the Miriway session available if a display manager like SDDM is enabled: 56 + services.xserver.displayManager.sessionPackages = [ pkgs.miriway ]; 57 + }; 58 + 59 + meta.maintainers = with lib.maintainers; [ OPNA2608 ]; 60 + }
+1
nixos/tests/all-tests.nix
··· 398 minidlna = handleTest ./minidlna.nix {}; 399 miniflux = handleTest ./miniflux.nix {}; 400 minio = handleTest ./minio.nix {}; 401 misc = handleTest ./misc.nix {}; 402 mjolnir = handleTest ./matrix/mjolnir.nix {}; 403 mod_perl = handleTest ./mod_perl.nix {};
··· 398 minidlna = handleTest ./minidlna.nix {}; 399 miniflux = handleTest ./miniflux.nix {}; 400 minio = handleTest ./minio.nix {}; 401 + miriway = handleTest ./miriway.nix {}; 402 misc = handleTest ./misc.nix {}; 403 mjolnir = handleTest ./matrix/mjolnir.nix {}; 404 mod_perl = handleTest ./mod_perl.nix {};
+126
nixos/tests/miriway.nix
···
··· 1 + import ./make-test-python.nix ({ pkgs, lib, ... }: { 2 + name = "miriway"; 3 + 4 + meta = { 5 + maintainers = with lib.maintainers; [ OPNA2608 ]; 6 + # FIXME On ARM Miriway inside the VM doesn't receive keyboard inputs, why? 7 + broken = pkgs.stdenv.hostPlatform.isAarch; 8 + }; 9 + 10 + nodes.machine = { config, ... }: { 11 + imports = [ 12 + ./common/auto.nix 13 + ./common/user-account.nix 14 + ]; 15 + 16 + # Seems to very rarely get interrupted by oom-killer 17 + virtualisation.memorySize = 2047; 18 + 19 + test-support.displayManager.auto = { 20 + enable = true; 21 + user = "alice"; 22 + }; 23 + 24 + services.xserver = { 25 + enable = true; 26 + displayManager.defaultSession = lib.mkForce "miriway"; 27 + }; 28 + 29 + programs.miriway = { 30 + enable = true; 31 + config = '' 32 + add-wayland-extensions=all 33 + 34 + ctrl-alt=t:foot --maximized 35 + ctrl-alt=a:env WINIT_UNIX_BACKEND=x11 WAYLAND_DISPLAY=invalid alacritty --option window.startup_mode=maximized 36 + 37 + shell-component=dbus-update-activation-environment --systemd DISPLAY WAYLAND_DISPLAY 38 + 39 + shell-component=foot --maximized 40 + ''; 41 + }; 42 + 43 + environment = { 44 + shellAliases = { 45 + test-wayland = "wayland-info | tee /tmp/test-wayland.out && touch /tmp/test-wayland-exit-ok"; 46 + test-x11 = "glinfo | tee /tmp/test-x11.out && touch /tmp/test-x11-exit-ok"; 47 + }; 48 + 49 + systemPackages = with pkgs; [ 50 + mesa-demos 51 + wayland-utils 52 + foot 53 + alacritty 54 + ]; 55 + 56 + # To help with OCR 57 + etc."xdg/foot/foot.ini".text = lib.generators.toINI { } { 58 + main = { 59 + font = "inconsolata:size=16"; 60 + }; 61 + colors = rec { 62 + foreground = "000000"; 63 + background = "ffffff"; 64 + regular2 = foreground; 65 + }; 66 + }; 67 + etc."xdg/alacritty/alacritty.yml".text = lib.generators.toYAML { } { 68 + font = rec { 69 + normal.family = "Inconsolata"; 70 + bold.family = normal.family; 71 + italic.family = normal.family; 72 + bold_italic.family = normal.family; 73 + size = 16; 74 + }; 75 + colors = rec { 76 + primary = { 77 + foreground = "0x000000"; 78 + background = "0xffffff"; 79 + }; 80 + normal = { 81 + green = primary.foreground; 82 + }; 83 + }; 84 + }; 85 + }; 86 + 87 + fonts.fonts = [ pkgs.inconsolata ]; 88 + }; 89 + 90 + enableOCR = true; 91 + 92 + testScript = { nodes, ... }: '' 93 + start_all() 94 + machine.wait_for_unit("multi-user.target") 95 + 96 + # Wait for Miriway to complete startup 97 + machine.wait_for_file("/run/user/1000/wayland-0") 98 + machine.succeed("pgrep miriway-shell") 99 + machine.screenshot("miriway_launched") 100 + 101 + # Test Wayland 102 + # We let Miriway start the first terminal, as we might get stuck if it's not ready to process the first keybind 103 + # machine.send_key("ctrl-alt-t") 104 + machine.wait_for_text("alice@machine") 105 + machine.send_chars("test-wayland\n") 106 + machine.wait_for_file("/tmp/test-wayland-exit-ok") 107 + machine.copy_from_vm("/tmp/test-wayland.out") 108 + machine.screenshot("foot_wayland_info") 109 + # Only succeeds when a mouse is moved inside an interactive session? 110 + # machine.send_chars("exit\n") 111 + # machine.wait_until_fails("pgrep foot") 112 + machine.succeed("pkill foot") 113 + 114 + # Test XWayland 115 + machine.send_key("ctrl-alt-a") 116 + machine.wait_for_text("alice@machine") 117 + machine.send_chars("test-x11\n") 118 + machine.wait_for_file("/tmp/test-x11-exit-ok") 119 + machine.copy_from_vm("/tmp/test-x11.out") 120 + machine.screenshot("alacritty_glinfo") 121 + # Only succeeds when a mouse is moved inside an interactive session? 122 + # machine.send_chars("exit\n") 123 + # machine.wait_until_fails("pgrep alacritty") 124 + machine.succeed("pkill alacritty") 125 + ''; 126 + })
+51
pkgs/applications/blockchains/ton/default.nix
···
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , cmake 5 + , git 6 + , gperf 7 + , libmicrohttpd 8 + , openssl 9 + , readline 10 + , zlib 11 + }: 12 + 13 + stdenv.mkDerivation rec { 14 + pname = "ton"; 15 + version = "2023.01"; 16 + 17 + src = fetchFromGitHub { 18 + owner = "ton-blockchain"; 19 + repo = "ton"; 20 + rev = "v${version}"; 21 + sha256 = "sha256-wb96vh0YcTBFE8EzBItdTf88cvRMLW2XxcGJpNetOi8="; 22 + fetchSubmodules = true; 23 + }; 24 + 25 + postPatch = '' 26 + # without this fails on aarch64-darwin with clang-11: error: the clang compiler does not support '-mcpu=apple-m1' 27 + substituteInPlace CMakeLists.txt \ 28 + --replace 'set(TON_ARCH "apple-m1")' "" 29 + ''; 30 + 31 + nativeBuildInputs = [ 32 + cmake 33 + git 34 + ]; 35 + 36 + buildInputs = [ 37 + gperf 38 + libmicrohttpd 39 + openssl 40 + readline 41 + zlib 42 + ]; 43 + 44 + meta = with lib; { 45 + description = "A fully decentralized layer-1 blockchain designed by Telegram"; 46 + homepage = "https://ton.org/"; 47 + license = licenses.lgpl2Only; 48 + platforms = platforms.all; 49 + maintainers = with maintainers; [ misuzu ]; 50 + }; 51 + }
+44 -44
pkgs/applications/editors/vim/plugins/generated.nix
··· 293 294 SchemaStore-nvim = buildVimPluginFrom2Nix { 295 pname = "SchemaStore.nvim"; 296 - version = "2023-01-30"; 297 src = fetchFromGitHub { 298 owner = "b0o"; 299 repo = "SchemaStore.nvim"; 300 - rev = "d98828169af99624031d8535785a099cdf60d4c3"; 301 - sha256 = "0j3lkz7lbd0naqqp6y2nlk9zawd453m41diia7f0saiyix76r6cp"; 302 }; 303 meta.homepage = "https://github.com/b0o/SchemaStore.nvim/"; 304 }; ··· 559 560 ale = buildVimPluginFrom2Nix { 561 pname = "ale"; 562 - version = "2023-02-02"; 563 src = fetchFromGitHub { 564 owner = "dense-analysis"; 565 repo = "ale"; 566 - rev = "98f466f9ce851edeb99fa14a75fca1f266f62d52"; 567 - sha256 = "12g90abfnb7nmb2s5q9w6hn27hpwplghhxz5w38m6dghy8nmfs4n"; 568 }; 569 meta.homepage = "https://github.com/dense-analysis/ale/"; 570 }; ··· 859 860 barbecue-nvim = buildVimPluginFrom2Nix { 861 pname = "barbecue.nvim"; 862 - version = "2023-02-01"; 863 src = fetchFromGitHub { 864 owner = "utilyre"; 865 repo = "barbecue.nvim"; 866 - rev = "e3db3c4e25f5531bcb74b7951f52e425731433e5"; 867 - sha256 = "0b69g3vr78x4hy5sj354iws43x4mm8qlqwfzl6cbiga16pa659ay"; 868 }; 869 meta.homepage = "https://github.com/utilyre/barbecue.nvim/"; 870 }; ··· 2155 2156 coq_nvim = buildVimPluginFrom2Nix { 2157 pname = "coq_nvim"; 2158 - version = "2023-01-29"; 2159 src = fetchFromGitHub { 2160 owner = "ms-jpq"; 2161 repo = "coq_nvim"; 2162 - rev = "b6032a67b53ca92b7bda401ef45284e888c5f4b6"; 2163 - sha256 = "1wxwwnbbz25idi4bwqzb9byf44awss97ca1925n5gmxq19g7x1gc"; 2164 }; 2165 meta.homepage = "https://github.com/ms-jpq/coq_nvim/"; 2166 }; ··· 2299 2300 dashboard-nvim = buildVimPluginFrom2Nix { 2301 pname = "dashboard-nvim"; 2302 - version = "2023-02-02"; 2303 src = fetchFromGitHub { 2304 owner = "glepnir"; 2305 repo = "dashboard-nvim"; 2306 - rev = "f4eedba90f0a55111351fd45444db5a82081727f"; 2307 - sha256 = "00h2n33m6mhvkxqdrwnfijwj2j5v0j6daa9422mmxf6m3qxgs03k"; 2308 }; 2309 meta.homepage = "https://github.com/glepnir/dashboard-nvim/"; 2310 }; ··· 3615 src = fetchFromGitHub { 3616 owner = "MrcJkb"; 3617 repo = "haskell-tools.nvim"; 3618 - rev = "6e19cdf88d0d681312db5e27a4a2ef6b8e43fc47"; 3619 - sha256 = "0i6l2fvwww7kljp3321j4vp5wlmnlgf8hk6v1r0jmi7qs172zg1d"; 3620 }; 3621 meta.homepage = "https://github.com/MrcJkb/haskell-tools.nvim/"; 3622 }; ··· 5243 5244 neoformat = buildVimPluginFrom2Nix { 5245 pname = "neoformat"; 5246 - version = "2023-01-11"; 5247 src = fetchFromGitHub { 5248 owner = "sbdchd"; 5249 repo = "neoformat"; 5250 - rev = "ec601d38a2e9309109f405ce038c5a6ce774f1a9"; 5251 - sha256 = "028xycbvjhs7mvnzlismjipibgqdhjm9s0asmjpg3g7y2qhkw3ix"; 5252 }; 5253 meta.homepage = "https://github.com/sbdchd/neoformat/"; 5254 }; ··· 5319 src = fetchFromGitHub { 5320 owner = "nvim-neorg"; 5321 repo = "neorg"; 5322 - rev = "6cc56c6b50fcac81471805d50db7cf5770cb5e8a"; 5323 - sha256 = "1zwcbfl23rnk7hq5d2m0blxwanlws3hikk7k89cbsc76kwqims2y"; 5324 }; 5325 meta.homepage = "https://github.com/nvim-neorg/neorg/"; 5326 }; ··· 5555 5556 nlsp-settings-nvim = buildVimPluginFrom2Nix { 5557 pname = "nlsp-settings.nvim"; 5558 - version = "2023-02-02"; 5559 src = fetchFromGitHub { 5560 owner = "tamago324"; 5561 repo = "nlsp-settings.nvim"; 5562 - rev = "5541d073b93a404445907e0aec3ebd9cf8914e53"; 5563 - sha256 = "0r4bbppp95rdhpz9j24w6smpzv891gk1ja6dis7j4gf3sra57hqy"; 5564 }; 5565 meta.homepage = "https://github.com/tamago324/nlsp-settings.nvim/"; 5566 }; ··· 6411 src = fetchFromGitHub { 6412 owner = "nvim-treesitter"; 6413 repo = "nvim-treesitter"; 6414 - rev = "588cdb6c0652356dacc7d29bb4bb2b273df2df86"; 6415 - sha256 = "087gdja192ziqzy3npz598l5yk0fly2n0g5748axsbbzb8l1a429"; 6416 }; 6417 meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter/"; 6418 }; ··· 6503 6504 nvim-ts-rainbow2 = buildVimPluginFrom2Nix { 6505 pname = "nvim-ts-rainbow2"; 6506 - version = "2023-01-19"; 6507 src = fetchgit { 6508 url = "https://gitlab.com/HiPhish/nvim-ts-rainbow2"; 6509 - rev = "2e0e2167f173df2f075fd52add2a0d6c66a2344a"; 6510 - sha256 = "0z5w6y6ynv4q8rjcrfi2vklf9l9h5azda73ragqbfijkx9ggniyy"; 6511 }; 6512 meta.homepage = "https://gitlab.com/HiPhish/nvim-ts-rainbow2"; 6513 }; ··· 6610 6611 oil-nvim = buildVimPluginFrom2Nix { 6612 pname = "oil.nvim"; 6613 - version = "2023-01-29"; 6614 src = fetchFromGitHub { 6615 owner = "stevearc"; 6616 repo = "oil.nvim"; 6617 - rev = "716dd8f9cf1ff2b9cda03497025612ce3c366307"; 6618 - sha256 = "14qydwhkr90w2bb1xza44pm2d1iiqmvijqik8qjs122i6z5hc7c6"; 6619 fetchSubmodules = true; 6620 }; 6621 meta.homepage = "https://github.com/stevearc/oil.nvim/"; ··· 7887 7888 switch-vim = buildVimPluginFrom2Nix { 7889 pname = "switch.vim"; 7890 - version = "2023-01-18"; 7891 src = fetchFromGitHub { 7892 owner = "AndrewRadev"; 7893 repo = "switch.vim"; 7894 - rev = "9aa594704eb63b81477bf7547342a5cc4012ef80"; 7895 - sha256 = "058nwj9rin11p9ifcl50i6ys5fv4v80kml4gnxqq89cd52sz07mh"; 7896 fetchSubmodules = true; 7897 }; 7898 meta.homepage = "https://github.com/AndrewRadev/switch.vim/"; ··· 8226 8227 telescope-manix = buildVimPluginFrom2Nix { 8228 pname = "telescope-manix"; 8229 - version = "2023-01-23"; 8230 src = fetchFromGitHub { 8231 owner = "MrcJkb"; 8232 repo = "telescope-manix"; 8233 - rev = "66feda7a276366edfc555cb0a7e56b8dd70aadc3"; 8234 - sha256 = "1n4ygj3jhgqfg7xrh3hd56x14yqk6rdy3099hy8azbrx40zx0zdw"; 8235 }; 8236 meta.homepage = "https://github.com/MrcJkb/telescope-manix/"; 8237 }; ··· 14017 14018 embark-vim = buildVimPluginFrom2Nix { 14019 pname = "embark-vim"; 14020 - version = "2022-09-12"; 14021 src = fetchFromGitHub { 14022 owner = "embark-theme"; 14023 repo = "vim"; 14024 - rev = "96fdfff7dac84dda937d843a0aceb1c39acba761"; 14025 - sha256 = "1yms82s3iwis6lk5h1kapa9vlhlhbk1kqxlywlvvy6kz7d1iyvjj"; 14026 }; 14027 meta.homepage = "https://github.com/embark-theme/vim/"; 14028 }; ··· 14045 src = fetchFromGitHub { 14046 owner = "glepnir"; 14047 repo = "lspsaga.nvim"; 14048 - rev = "a2e3f7cf76f4cb102d3fc165bd8c9a565053e84f"; 14049 - sha256 = "1d0ha7pjjzbhvkcn0z1dgnz2r3jkviad0hipvcw1xy5jnnym4sm5"; 14050 }; 14051 meta.homepage = "https://github.com/glepnir/lspsaga.nvim/"; 14052 };
··· 293 294 SchemaStore-nvim = buildVimPluginFrom2Nix { 295 pname = "SchemaStore.nvim"; 296 + version = "2023-02-03"; 297 src = fetchFromGitHub { 298 owner = "b0o"; 299 repo = "SchemaStore.nvim"; 300 + rev = "bb952ae19d2b227b549133a3b0ed69a3436d208e"; 301 + sha256 = "0lg5ibn3q1kw951k7j11f7c24qmf4sy9y3y2pqlpvk9bvc095jyl"; 302 }; 303 meta.homepage = "https://github.com/b0o/SchemaStore.nvim/"; 304 }; ··· 559 560 ale = buildVimPluginFrom2Nix { 561 pname = "ale"; 562 + version = "2023-02-03"; 563 src = fetchFromGitHub { 564 owner = "dense-analysis"; 565 repo = "ale"; 566 + rev = "45a3e3f574172028338de70ce8f8f606dec0a1b0"; 567 + sha256 = "0xyglfdqr8bq4s5mqq7wvj8czl1n9pgs16368q2zjj9j35x6m8xr"; 568 }; 569 meta.homepage = "https://github.com/dense-analysis/ale/"; 570 }; ··· 859 860 barbecue-nvim = buildVimPluginFrom2Nix { 861 pname = "barbecue.nvim"; 862 + version = "2023-02-03"; 863 src = fetchFromGitHub { 864 owner = "utilyre"; 865 repo = "barbecue.nvim"; 866 + rev = "ed0a85f5212124cafb611af8365c162b64e4064d"; 867 + sha256 = "05ya1zpg86w6q9r1s3i8bm42hw5h612aa2jghl34j7z7pdwcy3ns"; 868 }; 869 meta.homepage = "https://github.com/utilyre/barbecue.nvim/"; 870 }; ··· 2155 2156 coq_nvim = buildVimPluginFrom2Nix { 2157 pname = "coq_nvim"; 2158 + version = "2023-02-03"; 2159 src = fetchFromGitHub { 2160 owner = "ms-jpq"; 2161 repo = "coq_nvim"; 2162 + rev = "67b7623184406dda85ae0ea678cb82a6f2a509d0"; 2163 + sha256 = "0gzna1qyialp6b4iap9jnfhf3w7anp7xlg6hdal2r0i60h9f0igm"; 2164 }; 2165 meta.homepage = "https://github.com/ms-jpq/coq_nvim/"; 2166 }; ··· 2299 2300 dashboard-nvim = buildVimPluginFrom2Nix { 2301 pname = "dashboard-nvim"; 2302 + version = "2023-02-03"; 2303 src = fetchFromGitHub { 2304 owner = "glepnir"; 2305 repo = "dashboard-nvim"; 2306 + rev = "5d7b14dfa88a32040647649b1e714051235bfd32"; 2307 + sha256 = "1iknwbwiq2rykf36vr3agdzlyb54mkppjywh4qdgqgach71016l3"; 2308 }; 2309 meta.homepage = "https://github.com/glepnir/dashboard-nvim/"; 2310 }; ··· 3615 src = fetchFromGitHub { 3616 owner = "MrcJkb"; 3617 repo = "haskell-tools.nvim"; 3618 + rev = "03dfa7fa3d08a34cdef09ca05a6da166a1ba22a2"; 3619 + sha256 = "166ar0qy3pl2jvw7y6im7v7gmrsji44ph1aahxqdpgbf170xx6pa"; 3620 }; 3621 meta.homepage = "https://github.com/MrcJkb/haskell-tools.nvim/"; 3622 }; ··· 5243 5244 neoformat = buildVimPluginFrom2Nix { 5245 pname = "neoformat"; 5246 + version = "2023-02-03"; 5247 src = fetchFromGitHub { 5248 owner = "sbdchd"; 5249 repo = "neoformat"; 5250 + rev = "2b956364bfd64cceecb12cf43dfe81d6b831fb35"; 5251 + sha256 = "1ycr3s1g00imih7g8gqvyzj9rg0dh1qwdvn78cwfn0hqm24ab8dc"; 5252 }; 5253 meta.homepage = "https://github.com/sbdchd/neoformat/"; 5254 }; ··· 5319 src = fetchFromGitHub { 5320 owner = "nvim-neorg"; 5321 repo = "neorg"; 5322 + rev = "7cc4c95d685c96071f48d352b7378dfe8fcd24a1"; 5323 + sha256 = "0rhn1j9sx0wcp13fzlrsy39mvqb4djy29l18pyyig293gqbgjfd7"; 5324 }; 5325 meta.homepage = "https://github.com/nvim-neorg/neorg/"; 5326 }; ··· 5555 5556 nlsp-settings-nvim = buildVimPluginFrom2Nix { 5557 pname = "nlsp-settings.nvim"; 5558 + version = "2023-02-03"; 5559 src = fetchFromGitHub { 5560 owner = "tamago324"; 5561 repo = "nlsp-settings.nvim"; 5562 + rev = "dcd316d381c5768cd6a11d53a3331e92c3943f3b"; 5563 + sha256 = "06cd6hyckmp2jvrh8k2sp465yarkznk6adwh0lmd95i6wrb1zhky"; 5564 }; 5565 meta.homepage = "https://github.com/tamago324/nlsp-settings.nvim/"; 5566 }; ··· 6411 src = fetchFromGitHub { 6412 owner = "nvim-treesitter"; 6413 repo = "nvim-treesitter"; 6414 + rev = "0e6d4b4172f30c4aa44a9adc9ea5719723a1fac3"; 6415 + sha256 = "1n98salqvdh23yxkx1m490sf6hvjqjzpyxm459sk33znj2j7nzvv"; 6416 }; 6417 meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter/"; 6418 }; ··· 6503 6504 nvim-ts-rainbow2 = buildVimPluginFrom2Nix { 6505 pname = "nvim-ts-rainbow2"; 6506 + version = "2023-02-03"; 6507 src = fetchgit { 6508 url = "https://gitlab.com/HiPhish/nvim-ts-rainbow2"; 6509 + rev = "b915c4d4926f723c0a424e1a639384018e7d9efc"; 6510 + sha256 = "0sllv769q0v73alcxs1r8dpij8kp9f771sq93z9c413c35wwmcnz"; 6511 }; 6512 meta.homepage = "https://gitlab.com/HiPhish/nvim-ts-rainbow2"; 6513 }; ··· 6610 6611 oil-nvim = buildVimPluginFrom2Nix { 6612 pname = "oil.nvim"; 6613 + version = "2023-02-03"; 6614 src = fetchFromGitHub { 6615 owner = "stevearc"; 6616 repo = "oil.nvim"; 6617 + rev = "7371dd220f1d08789cc225846d8cafed938777e9"; 6618 + sha256 = "0rcx62q9vrx0w6qgkpz39173r0fba6xk9ja212s93l3zwqp49wwb"; 6619 fetchSubmodules = true; 6620 }; 6621 meta.homepage = "https://github.com/stevearc/oil.nvim/"; ··· 7887 7888 switch-vim = buildVimPluginFrom2Nix { 7889 pname = "switch.vim"; 7890 + version = "2023-02-03"; 7891 src = fetchFromGitHub { 7892 owner = "AndrewRadev"; 7893 repo = "switch.vim"; 7894 + rev = "41fec8581f4816291481ab6c6e0516bf904d4a7a"; 7895 + sha256 = "0gxipkigllr82gadgnhlhj4kk47131ykqac26zp6yxamgrnx43sq"; 7896 fetchSubmodules = true; 7897 }; 7898 meta.homepage = "https://github.com/AndrewRadev/switch.vim/"; ··· 8226 8227 telescope-manix = buildVimPluginFrom2Nix { 8228 pname = "telescope-manix"; 8229 + version = "2023-02-03"; 8230 src = fetchFromGitHub { 8231 owner = "MrcJkb"; 8232 repo = "telescope-manix"; 8233 + rev = "28c0100c90dc200dd42471003d458fa8a2b71428"; 8234 + sha256 = "0sd914iybjxrvfmakzw8wb6k97sjvw1nnmfli7a0wvrrbak562rk"; 8235 }; 8236 meta.homepage = "https://github.com/MrcJkb/telescope-manix/"; 8237 }; ··· 14017 14018 embark-vim = buildVimPluginFrom2Nix { 14019 pname = "embark-vim"; 14020 + version = "2023-02-03"; 14021 src = fetchFromGitHub { 14022 owner = "embark-theme"; 14023 repo = "vim"; 14024 + rev = "89a044730bf5402c49db03475a9fa56782ca9d1c"; 14025 + sha256 = "0d7956wi0lcbimxbn5cmghw11vb8gfsg2pd6yr4xja6bb4ldlbrk"; 14026 }; 14027 meta.homepage = "https://github.com/embark-theme/vim/"; 14028 }; ··· 14045 src = fetchFromGitHub { 14046 owner = "glepnir"; 14047 repo = "lspsaga.nvim"; 14048 + rev = "2afe6de953b76d43822cf8377c019ff831a7c73b"; 14049 + sha256 = "1japfd2f7yw2vbyk7mh1qr0x6dnnra1k7frl3k077spc3nanh57r"; 14050 }; 14051 meta.homepage = "https://github.com/glepnir/lspsaga.nvim/"; 14052 };
+14 -3
pkgs/applications/editors/vim/plugins/nvim-treesitter/generated.nix
··· 580 }; 581 meta.homepage = "https://github.com/camdencheek/tree-sitter-go-mod"; 582 }; 583 gowork = buildGrammar { 584 language = "gowork"; 585 version = "949a8a4"; ··· 824 }; 825 julia = buildGrammar { 826 language = "julia"; 827 - version = "9d36818"; 828 src = fetchFromGitHub { 829 owner = "tree-sitter"; 830 repo = "tree-sitter-julia"; 831 - rev = "9d368185be7e8139f2eda93d8b0acc2a54031718"; 832 - hash = "sha256-6jKiqDo8fSHrUGFIizNSKWoB0CVXJv6b3XfN9YjNLJc="; 833 }; 834 meta.homepage = "https://github.com/tree-sitter/tree-sitter-julia"; 835 };
··· 580 }; 581 meta.homepage = "https://github.com/camdencheek/tree-sitter-go-mod"; 582 }; 583 + gosum = buildGrammar { 584 + language = "gosum"; 585 + version = "68974b6"; 586 + src = fetchFromGitHub { 587 + owner = "amaanq"; 588 + repo = "tree-sitter-go-sum"; 589 + rev = "68974b63c19dc6e27214a5c76b6e26c0c40fe5b7"; 590 + hash = "sha256-Avk9nAICwy59VYIlLhp9FkozAna9kMwY60pAqKyJsK4="; 591 + }; 592 + meta.homepage = "https://github.com/amaanq/tree-sitter-go-sum"; 593 + }; 594 gowork = buildGrammar { 595 language = "gowork"; 596 version = "949a8a4"; ··· 835 }; 836 julia = buildGrammar { 837 language = "julia"; 838 + version = "e2f449e"; 839 src = fetchFromGitHub { 840 owner = "tree-sitter"; 841 repo = "tree-sitter-julia"; 842 + rev = "e2f449e2bcc95f1d07ceb62d67f986005f73a6be"; 843 + hash = "sha256-ZXnEvHtheP8rI/lwPf94lVCF5S5rw38bewuZ0GHxjr8="; 844 }; 845 meta.homepage = "https://github.com/tree-sitter/tree-sitter-julia"; 846 };
+1 -1
pkgs/applications/editors/vim/plugins/overrides.nix
··· 116 117 self: super: { 118 119 - barbecue-nvim = super.vimshell-vim.overrideAttrs (old: { 120 dependencies = with self; [ nvim-lspconfig nvim-navic nvim-web-devicons ]; 121 meta = { 122 description = "A VS Code like winbar for Neovim";
··· 116 117 self: super: { 118 119 + barbecue-nvim = super.barbecue-nvim.overrideAttrs (old: { 120 dependencies = with self; [ nvim-lspconfig nvim-navic nvim-web-devicons ]; 121 meta = { 122 description = "A VS Code like winbar for Neovim";
+6 -1
pkgs/applications/misc/diffuse/default.nix
··· 45 pygobject3 46 ]; 47 48 mesonFlags = [ 49 "-Db_ndebug=true" 50 ]; ··· 63 description = "Graphical tool for merging and comparing text files"; 64 license = licenses.gpl2; 65 maintainers = with maintainers; [ k3a ]; 66 - platforms = platforms.linux; 67 }; 68 }
··· 45 pygobject3 46 ]; 47 48 + preConfigure = '' 49 + # app bundle for macos 50 + substituteInPlace src/diffuse/meson.build data/icons/meson.build --replace "/Applications" "$out/Applications"; 51 + ''; 52 + 53 mesonFlags = [ 54 "-Db_ndebug=true" 55 ]; ··· 68 description = "Graphical tool for merging and comparing text files"; 69 license = licenses.gpl2; 70 maintainers = with maintainers; [ k3a ]; 71 + platforms = platforms.unix; 72 }; 73 }
+2 -2
pkgs/applications/misc/kaufkauflist/default.nix
··· 15 }; 16 in buildNpmPackage rec { 17 pname = "kaufkauflist"; 18 - version = "1.0.0"; 19 20 src = fetchFromGitea { 21 domain = "codeberg.org"; 22 owner = "annaaurora"; 23 repo = "kaufkauflist"; 24 rev = "v${version}"; 25 - hash = "sha256-feqk2FUs3lcnIgyPzhsow+xO9u7l9+9eZEk9jxRlpG4="; 26 }; 27 28 npmDepsHash = "sha256-lSnGLK7+ac/wEpAxlpkZS/kgr9F+8WK+nRjCzkrPJt0=";
··· 15 }; 16 in buildNpmPackage rec { 17 pname = "kaufkauflist"; 18 + version = "2.0.0"; 19 20 src = fetchFromGitea { 21 domain = "codeberg.org"; 22 owner = "annaaurora"; 23 repo = "kaufkauflist"; 24 rev = "v${version}"; 25 + hash = "sha256-oXrb6n1oD27bHt/zPWP0REQyCyZXI8BB57pdR/q42gY="; 26 }; 27 28 npmDepsHash = "sha256-lSnGLK7+ac/wEpAxlpkZS/kgr9F+8WK+nRjCzkrPJt0=";
+11
pkgs/applications/misc/octoprint/default.nix
··· 28 sha256 = "sha256-eWOdJ7m3cY08ASN/X+7ILJK99iLJJwCY8294fwJiDew="; 29 }; 30 }); 31 } 32 ) 33 # Built-in dependency
··· 28 sha256 = "sha256-eWOdJ7m3cY08ASN/X+7ILJK99iLJJwCY8294fwJiDew="; 29 }; 30 }); 31 + flask-babel = super.flask-babel.overridePythonAttrs (oldAttrs: rec { 32 + version = "2.0.0"; 33 + src = super.fetchPypi { 34 + pname = "Flask-Babel"; 35 + inherit version; 36 + sha256 = "sha256-+fr0XNsuGjLqLsFEA1h9QpUQjzUBenghorGsuM/ZJX0="; 37 + }; 38 + nativeBuildInputs = [ ]; 39 + format = "setuptools"; 40 + outputs = [ "out" ]; 41 + }); 42 } 43 ) 44 # Built-in dependency
+3 -3
pkgs/applications/networking/avalanchego/default.nix
··· 8 9 buildGoModule rec { 10 pname = "avalanchego"; 11 - version = "1.9.7"; 12 13 src = fetchFromGitHub { 14 owner = "ava-labs"; 15 repo = pname; 16 rev = "v${version}"; 17 - hash = "sha256-7WiIw2k0ZNm6jFHIiJlKuWFdEhb11qGVot1B50Za/GY="; 18 }; 19 20 - vendorHash = "sha256-2ezrasgGkMqr+dUF+TfsM5cevLGAFMyq9FlMxzKola8="; 21 # go mod vendor has a bug, see: https://github.com/golang/go/issues/57529 22 proxyVendor = true; 23
··· 8 9 buildGoModule rec { 10 pname = "avalanchego"; 11 + version = "1.9.8"; 12 13 src = fetchFromGitHub { 14 owner = "ava-labs"; 15 repo = pname; 16 rev = "v${version}"; 17 + hash = "sha256-5Zyrmo74k6Pl2pyVo3oX/haFsR8mHlM05ubPllintFQ="; 18 }; 19 20 + vendorHash = "sha256-CpXszXmySPHQehFy6XSOJFXq8ZGixO928+zrP7/vwCQ="; 21 # go mod vendor has a bug, see: https://github.com/golang/go/issues/57529 22 proxyVendor = true; 23
+393 -393
pkgs/applications/networking/browsers/firefox-bin/devedition_sources.nix
··· 1 { 2 - version = "110.0b7"; 3 sources = [ 4 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/ach/firefox-110.0b7.tar.bz2"; 5 locale = "ach"; 6 arch = "linux-x86_64"; 7 - sha256 = "3149d7d688edaaa71d2655c36eb2b36b114ca81ec9592148e277bbd553525f6d"; 8 } 9 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/af/firefox-110.0b7.tar.bz2"; 10 locale = "af"; 11 arch = "linux-x86_64"; 12 - sha256 = "3216a774f492dba8ad2def4d7796154615ebe3c09ee1fefc784936bb32b2153f"; 13 } 14 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/an/firefox-110.0b7.tar.bz2"; 15 locale = "an"; 16 arch = "linux-x86_64"; 17 - sha256 = "4fc5ef9bb0326b1a42a78383744a310d0ef27e063b525c9b0e7eae05c2ba8fe0"; 18 } 19 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/ar/firefox-110.0b7.tar.bz2"; 20 locale = "ar"; 21 arch = "linux-x86_64"; 22 - sha256 = "624004bac8804d4ea1a0ba64b85b69af2273ebf47e9d073cf45db5fe6b4a130e"; 23 } 24 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/ast/firefox-110.0b7.tar.bz2"; 25 locale = "ast"; 26 arch = "linux-x86_64"; 27 - sha256 = "bea272fea8ee71e259b7174e70992727c96fe2cdb463c6b6f45f49d7d630aefc"; 28 } 29 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/az/firefox-110.0b7.tar.bz2"; 30 locale = "az"; 31 arch = "linux-x86_64"; 32 - sha256 = "8e8a635f6c4748044d195ef00196900b7164e8bfcf698012c7468fec41e05b4a"; 33 } 34 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/be/firefox-110.0b7.tar.bz2"; 35 locale = "be"; 36 arch = "linux-x86_64"; 37 - sha256 = "de80218b6ede880e43a7710df08bba343f0038134a5209b363f2b48ff67679e9"; 38 } 39 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/bg/firefox-110.0b7.tar.bz2"; 40 locale = "bg"; 41 arch = "linux-x86_64"; 42 - sha256 = "21719f7c5400b6c5e3ec23ae0a357528536c536f129fed2ca6d50dcb52661924"; 43 } 44 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/bn/firefox-110.0b7.tar.bz2"; 45 locale = "bn"; 46 arch = "linux-x86_64"; 47 - sha256 = "ef194e6f20d6c7ff9ca6e93178cb9ec7ef3f192b277f762b8d21c9d0348bece8"; 48 } 49 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/br/firefox-110.0b7.tar.bz2"; 50 locale = "br"; 51 arch = "linux-x86_64"; 52 - sha256 = "c9e83011d1af6fa4cd16b25862e07e976a9b92d8b20488c53b7c6dced269bbc1"; 53 } 54 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/bs/firefox-110.0b7.tar.bz2"; 55 locale = "bs"; 56 arch = "linux-x86_64"; 57 - sha256 = "2fac9965eedc5ce6846833e3d9ae93075e4526b71a9acd2cc0a77c859bf2fa2e"; 58 } 59 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/ca-valencia/firefox-110.0b7.tar.bz2"; 60 locale = "ca-valencia"; 61 arch = "linux-x86_64"; 62 - sha256 = "803b7d18d184f988b0c53ba50da1c454f95fddc397a8a1ce78e99bfdea318c90"; 63 } 64 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/ca/firefox-110.0b7.tar.bz2"; 65 locale = "ca"; 66 arch = "linux-x86_64"; 67 - sha256 = "5c85412de3767eb33b1f81402e99079617cb392f064cfea512a1f0932129ca4f"; 68 } 69 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/cak/firefox-110.0b7.tar.bz2"; 70 locale = "cak"; 71 arch = "linux-x86_64"; 72 - sha256 = "c7ce5177bc827fa356e95e75a66c7cb57785766a43618abda8b27c74ba669635"; 73 } 74 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/cs/firefox-110.0b7.tar.bz2"; 75 locale = "cs"; 76 arch = "linux-x86_64"; 77 - sha256 = "1c87e5cbeba84d10e26b8cb2260a575bd3a09d164305e79df79fd2e5ddf3de58"; 78 } 79 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/cy/firefox-110.0b7.tar.bz2"; 80 locale = "cy"; 81 arch = "linux-x86_64"; 82 - sha256 = "05b6e4f546d8fb277fc01e75aa13935a58fc4f5dbf7d03e9e101e5261d0c4914"; 83 } 84 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/da/firefox-110.0b7.tar.bz2"; 85 locale = "da"; 86 arch = "linux-x86_64"; 87 - sha256 = "50e0e667231225f9b39f8bc3f5d17a2417ea92c0deda485f47d8fc5ad7291f66"; 88 } 89 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/de/firefox-110.0b7.tar.bz2"; 90 locale = "de"; 91 arch = "linux-x86_64"; 92 - sha256 = "afdd6408e18915ace3b4568ef374303200c0871564badf7ac835b853dfd62b35"; 93 } 94 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/dsb/firefox-110.0b7.tar.bz2"; 95 locale = "dsb"; 96 arch = "linux-x86_64"; 97 - sha256 = "fc3e13183ab8fea4e71881009894bd11919bde6a7d9590c7e8289a90d9105628"; 98 } 99 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/el/firefox-110.0b7.tar.bz2"; 100 locale = "el"; 101 arch = "linux-x86_64"; 102 - sha256 = "92f0b82a06bc42c765b7197d81f9f74083d3f52a651afe326c5621f0efe6d6ae"; 103 } 104 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/en-CA/firefox-110.0b7.tar.bz2"; 105 locale = "en-CA"; 106 arch = "linux-x86_64"; 107 - sha256 = "2d99cd7f37d2f7b9929ed20b2013abc654006d6e6bfb6f063b0108e08300813e"; 108 } 109 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/en-GB/firefox-110.0b7.tar.bz2"; 110 locale = "en-GB"; 111 arch = "linux-x86_64"; 112 - sha256 = "dd768a7a686e9233e1fefefb7c049974784241663b4e2a729898549aa5070122"; 113 } 114 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/en-US/firefox-110.0b7.tar.bz2"; 115 locale = "en-US"; 116 arch = "linux-x86_64"; 117 - sha256 = "aa7fdfff2c520bc78cc0e7a0a34bb4ab830a7f5332807398d10176e014dab24e"; 118 } 119 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/eo/firefox-110.0b7.tar.bz2"; 120 locale = "eo"; 121 arch = "linux-x86_64"; 122 - sha256 = "f89d84d6b39c04849a281e90dce354a0ad2ad0a39900a4bb4d9e991e361800de"; 123 } 124 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/es-AR/firefox-110.0b7.tar.bz2"; 125 locale = "es-AR"; 126 arch = "linux-x86_64"; 127 - sha256 = "87150f4958159ce9913faa9cf333648aa5ed5d52d64fd1ae91d79e7b06d1f65d"; 128 } 129 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/es-CL/firefox-110.0b7.tar.bz2"; 130 locale = "es-CL"; 131 arch = "linux-x86_64"; 132 - sha256 = "a6bc24603b2e2aef5277aeadbe639407ffdf5da7d75af871976f7984ba6dd775"; 133 } 134 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/es-ES/firefox-110.0b7.tar.bz2"; 135 locale = "es-ES"; 136 arch = "linux-x86_64"; 137 - sha256 = "039549d1b0f4d17acfb7d2b62a54dfcf161ff880420ff6f6df59631922df9b69"; 138 } 139 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/es-MX/firefox-110.0b7.tar.bz2"; 140 locale = "es-MX"; 141 arch = "linux-x86_64"; 142 - sha256 = "57ccc2d1bcacd0c1cee697d02b2333ac8ae9022caf39869b89435eb9e9247dd3"; 143 } 144 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/et/firefox-110.0b7.tar.bz2"; 145 locale = "et"; 146 arch = "linux-x86_64"; 147 - sha256 = "9a1479cfa6e246ece5e4093076378536b6838ba656efadec744ed7b0883ff78c"; 148 } 149 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/eu/firefox-110.0b7.tar.bz2"; 150 locale = "eu"; 151 arch = "linux-x86_64"; 152 - sha256 = "78305f9504cb89c3ecea1c0b235cf0d3df5dc15853863b31b446660f6c300eb6"; 153 } 154 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/fa/firefox-110.0b7.tar.bz2"; 155 locale = "fa"; 156 arch = "linux-x86_64"; 157 - sha256 = "39adfd21e57256ae8befcd7f39e9628695fda08a57fed972dd623d7e0759d9de"; 158 } 159 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/ff/firefox-110.0b7.tar.bz2"; 160 locale = "ff"; 161 arch = "linux-x86_64"; 162 - sha256 = "11c2d2fc7262ad9074d4842ffe0b0981e78cdcbd34d658bafd61457fb5b8cdb7"; 163 } 164 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/fi/firefox-110.0b7.tar.bz2"; 165 locale = "fi"; 166 arch = "linux-x86_64"; 167 - sha256 = "ec2a6eb8266c5f8ce56056a322478d308411c7cfeecfb0e6528f3464bd6dfa41"; 168 } 169 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/fr/firefox-110.0b7.tar.bz2"; 170 locale = "fr"; 171 arch = "linux-x86_64"; 172 - sha256 = "7b1fbe6a9becf5c4fa27a4c74672f8408e1028998a609febfc82568b0a0fce1f"; 173 } 174 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/fy-NL/firefox-110.0b7.tar.bz2"; 175 locale = "fy-NL"; 176 arch = "linux-x86_64"; 177 - sha256 = "d9be3385f0bae85c481d48a3246856ad160e5ea932e4f9ad763db98a4af1fa06"; 178 } 179 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/ga-IE/firefox-110.0b7.tar.bz2"; 180 locale = "ga-IE"; 181 arch = "linux-x86_64"; 182 - sha256 = "16fd254951cdb916cc7db0eeb64c14a291f8e4fea9fa4d936bb99cc4f5263e6e"; 183 } 184 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/gd/firefox-110.0b7.tar.bz2"; 185 locale = "gd"; 186 arch = "linux-x86_64"; 187 - sha256 = "037939f4a9be6bd265e7abb5d85e571e4c7a49334bcd932d279f17654a4f106a"; 188 } 189 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/gl/firefox-110.0b7.tar.bz2"; 190 locale = "gl"; 191 arch = "linux-x86_64"; 192 - sha256 = "8ea3531f711c78066bd79768bc2f8ee2cbf3974b5d2a6a15ad61cdd488a42798"; 193 } 194 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/gn/firefox-110.0b7.tar.bz2"; 195 locale = "gn"; 196 arch = "linux-x86_64"; 197 - sha256 = "d0d8a5776190ed28b92dc2429ae75ac6a25d48bb8217732c7fc246b94acf68e9"; 198 } 199 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/gu-IN/firefox-110.0b7.tar.bz2"; 200 locale = "gu-IN"; 201 arch = "linux-x86_64"; 202 - sha256 = "9997dbcffcf81c275302d8e8b5d025962c71b6a9c75fe7bc507b101eea260d98"; 203 } 204 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/he/firefox-110.0b7.tar.bz2"; 205 locale = "he"; 206 arch = "linux-x86_64"; 207 - sha256 = "0b5eefce3516e6d5b7ab572a0940ad5c8ef1c8528582d182ef56d8320ef4a99c"; 208 } 209 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/hi-IN/firefox-110.0b7.tar.bz2"; 210 locale = "hi-IN"; 211 arch = "linux-x86_64"; 212 - sha256 = "6b1905b83a7afa4c7269d7bf88351c26c9081945090cbb497869809d91be574b"; 213 } 214 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/hr/firefox-110.0b7.tar.bz2"; 215 locale = "hr"; 216 arch = "linux-x86_64"; 217 - sha256 = "324e55f1b4fedaf1d20dd9acc13727e51d6735c377ce58237eec51ca4c937ccd"; 218 } 219 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/hsb/firefox-110.0b7.tar.bz2"; 220 locale = "hsb"; 221 arch = "linux-x86_64"; 222 - sha256 = "4bf345897057ca2e215e53a50d79e45418da68c67090bfa1734d0dc43f4beede"; 223 } 224 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/hu/firefox-110.0b7.tar.bz2"; 225 locale = "hu"; 226 arch = "linux-x86_64"; 227 - sha256 = "eed32aa30eb35a074c9dd00576af9c4c2015c0487a02c0b66ea8db3095bc59ef"; 228 } 229 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/hy-AM/firefox-110.0b7.tar.bz2"; 230 locale = "hy-AM"; 231 arch = "linux-x86_64"; 232 - sha256 = "320f41e8de475f5957ba9547cf844ac571bad1ac6f991ce4f5ad87cdc26bf9dc"; 233 } 234 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/ia/firefox-110.0b7.tar.bz2"; 235 locale = "ia"; 236 arch = "linux-x86_64"; 237 - sha256 = "1e4348f56ec630f3969dcf4aef3ab263cf58fe449314928e5a4963f6c7ebfae4"; 238 } 239 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/id/firefox-110.0b7.tar.bz2"; 240 locale = "id"; 241 arch = "linux-x86_64"; 242 - sha256 = "6c54eee1ae9a361d49c6302c3a710fbbf0da51bfc54967134392c58eaaa9372f"; 243 } 244 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/is/firefox-110.0b7.tar.bz2"; 245 locale = "is"; 246 arch = "linux-x86_64"; 247 - sha256 = "8f40d12a2782845eb9b0565f1237e9b86eb750efdd420c1a7f1cd17d76e67d2e"; 248 } 249 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/it/firefox-110.0b7.tar.bz2"; 250 locale = "it"; 251 arch = "linux-x86_64"; 252 - sha256 = "d81c438b5ce1a124ebc4a935bab22a06fb4b664bf50c6158fd75878f111fecb5"; 253 } 254 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/ja/firefox-110.0b7.tar.bz2"; 255 locale = "ja"; 256 arch = "linux-x86_64"; 257 - sha256 = "6f20bb1b75b13acaf35a626d843842a804fd6a749020076dd783a2ebb8adf7f0"; 258 } 259 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/ka/firefox-110.0b7.tar.bz2"; 260 locale = "ka"; 261 arch = "linux-x86_64"; 262 - sha256 = "3ee2d13788a24bc9ad60f3f85eec6b11ee82bdde223903b73ae681ad5a0c8216"; 263 } 264 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/kab/firefox-110.0b7.tar.bz2"; 265 locale = "kab"; 266 arch = "linux-x86_64"; 267 - sha256 = "a42be81f1df3a2d18818bfc8654cb9cacf7602bab964509392d62439b3f67adb"; 268 } 269 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/kk/firefox-110.0b7.tar.bz2"; 270 locale = "kk"; 271 arch = "linux-x86_64"; 272 - sha256 = "24f29b0b78df615942c6984e160e9cee60552efbe9246ed290b6a01922b0116d"; 273 } 274 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/km/firefox-110.0b7.tar.bz2"; 275 locale = "km"; 276 arch = "linux-x86_64"; 277 - sha256 = "02cd6c8124331512fa7f57b9d165e1a189a1eb92923b0f0264fdb6c1b2d4b753"; 278 } 279 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/kn/firefox-110.0b7.tar.bz2"; 280 locale = "kn"; 281 arch = "linux-x86_64"; 282 - sha256 = "6fb11c1f5883f215cbccd22ab61f0acb72ca6860e93918d61f351ce1566e98ef"; 283 } 284 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/ko/firefox-110.0b7.tar.bz2"; 285 locale = "ko"; 286 arch = "linux-x86_64"; 287 - sha256 = "dce0fded8256a5061fb335cf42821cbbe198078390f7d417a33be03979f52b67"; 288 } 289 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/lij/firefox-110.0b7.tar.bz2"; 290 locale = "lij"; 291 arch = "linux-x86_64"; 292 - sha256 = "22ef4a8396ba5b3ed4eb9da028ec8652ed9999f42e2c5c6b409e7fdc45d17e96"; 293 } 294 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/lt/firefox-110.0b7.tar.bz2"; 295 locale = "lt"; 296 arch = "linux-x86_64"; 297 - sha256 = "55f9842ad40c137e70e306c8270435d5c22ea83c611e6151890e5cd2166f1b1c"; 298 } 299 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/lv/firefox-110.0b7.tar.bz2"; 300 locale = "lv"; 301 arch = "linux-x86_64"; 302 - sha256 = "c92b0d98c2a7ca81ca4f5f16d9a387a62e0992cd65707a3a529d8683541f298a"; 303 } 304 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/mk/firefox-110.0b7.tar.bz2"; 305 locale = "mk"; 306 arch = "linux-x86_64"; 307 - sha256 = "110f76a05dc366e50342be5e503d64112d2798ebb92267ef6aeabd18a23ff826"; 308 } 309 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/mr/firefox-110.0b7.tar.bz2"; 310 locale = "mr"; 311 arch = "linux-x86_64"; 312 - sha256 = "85623b9e9d69d7ed501752ec9b5863f8bb8390f4f53d7ceaf1497cf442e6978a"; 313 } 314 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/ms/firefox-110.0b7.tar.bz2"; 315 locale = "ms"; 316 arch = "linux-x86_64"; 317 - sha256 = "80b135385d8f622ab9639fdbdd119717d7a1c5fc105469cab07ac31f82a2e9d0"; 318 } 319 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/my/firefox-110.0b7.tar.bz2"; 320 locale = "my"; 321 arch = "linux-x86_64"; 322 - sha256 = "ab6967da3bc7028ab82b57a41469488a74394b7fa914a52c2e7dfc6c5edd08d2"; 323 } 324 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/nb-NO/firefox-110.0b7.tar.bz2"; 325 locale = "nb-NO"; 326 arch = "linux-x86_64"; 327 - sha256 = "cd22536cc93a47c78d41a3ee78415a3f57dab757c61719d31a70b172fef093c2"; 328 } 329 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/ne-NP/firefox-110.0b7.tar.bz2"; 330 locale = "ne-NP"; 331 arch = "linux-x86_64"; 332 - sha256 = "ee9b171561f09e52fb595135234803d95822772b722da5867cdc41ca43c8d03a"; 333 } 334 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/nl/firefox-110.0b7.tar.bz2"; 335 locale = "nl"; 336 arch = "linux-x86_64"; 337 - sha256 = "efc83b8b16496033943ae70f5c572319cac9d86c826eb64889f2b824e1c0aa9e"; 338 } 339 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/nn-NO/firefox-110.0b7.tar.bz2"; 340 locale = "nn-NO"; 341 arch = "linux-x86_64"; 342 - sha256 = "e74a0ca78df08e63ddb3162e71a22cab7200d5f317cd2eb936305e17b053ffd5"; 343 } 344 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/oc/firefox-110.0b7.tar.bz2"; 345 locale = "oc"; 346 arch = "linux-x86_64"; 347 - sha256 = "2ff7f6e219be38177895ebc30a511286d645120728caf4157b2d5fc03c4882f1"; 348 } 349 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/pa-IN/firefox-110.0b7.tar.bz2"; 350 locale = "pa-IN"; 351 arch = "linux-x86_64"; 352 - sha256 = "bbe935ee5a13b42e6bea6575f54930f44c8ff2d7e62f9ab4391baeda26bffed5"; 353 } 354 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/pl/firefox-110.0b7.tar.bz2"; 355 locale = "pl"; 356 arch = "linux-x86_64"; 357 - sha256 = "ce270a34203fa987a312c96c462a414ff65da9564b01598f1183b7f920bb9216"; 358 } 359 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/pt-BR/firefox-110.0b7.tar.bz2"; 360 locale = "pt-BR"; 361 arch = "linux-x86_64"; 362 - sha256 = "a082bb58d53c57d4728d49207e606ea3b79cba8e57541e098f867f8bfb76d6a7"; 363 } 364 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/pt-PT/firefox-110.0b7.tar.bz2"; 365 locale = "pt-PT"; 366 arch = "linux-x86_64"; 367 - sha256 = "ac696b2b104a3995b1b0f29425347c4d47277d0bd2786180ac4d6ef1f9f7cbf1"; 368 } 369 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/rm/firefox-110.0b7.tar.bz2"; 370 locale = "rm"; 371 arch = "linux-x86_64"; 372 - sha256 = "54841eed47416b836be393bb625152bcc1267cfeecb2bcfae8e67b012505b31c"; 373 } 374 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/ro/firefox-110.0b7.tar.bz2"; 375 locale = "ro"; 376 arch = "linux-x86_64"; 377 - sha256 = "f074ef2c5155ddd0562a3bc8afe3a3562e247b805dc71c1e45436f54025c25ea"; 378 } 379 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/ru/firefox-110.0b7.tar.bz2"; 380 locale = "ru"; 381 arch = "linux-x86_64"; 382 - sha256 = "cd16f9972b4e748f8f2a42acdcd2bd3d81d642b7261764a1f49e26b60933c180"; 383 } 384 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/sco/firefox-110.0b7.tar.bz2"; 385 locale = "sco"; 386 arch = "linux-x86_64"; 387 - sha256 = "2c612a1f2305384f4caf6b37ba57057a7fd9efff5d5bfd5d0d760c2baefe55c7"; 388 } 389 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/si/firefox-110.0b7.tar.bz2"; 390 locale = "si"; 391 arch = "linux-x86_64"; 392 - sha256 = "9abd847f93124ebdd50479ad38317fb8087a85a9add2d4e44ddb6f2a765207c5"; 393 } 394 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/sk/firefox-110.0b7.tar.bz2"; 395 locale = "sk"; 396 arch = "linux-x86_64"; 397 - sha256 = "a2c001910dc0e2d8b3d864e7cd23691ef13f7bcac15fe08599f38533951815d4"; 398 } 399 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/sl/firefox-110.0b7.tar.bz2"; 400 locale = "sl"; 401 arch = "linux-x86_64"; 402 - sha256 = "212f7dc19d62f8ae4b49eacfe87c2d3cba87da91b88cbf6e8bc4dad05b3ecc4e"; 403 } 404 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/son/firefox-110.0b7.tar.bz2"; 405 locale = "son"; 406 arch = "linux-x86_64"; 407 - sha256 = "ff6b3e368980b4325ec0e02948e0aef6aa86cc4dd5d454a5d6a2c50a790d3382"; 408 } 409 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/sq/firefox-110.0b7.tar.bz2"; 410 locale = "sq"; 411 arch = "linux-x86_64"; 412 - sha256 = "8e343437ba5a4f030b629882b73a0c23b2141f4ef5be0917444cfd9caf53edda"; 413 } 414 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/sr/firefox-110.0b7.tar.bz2"; 415 locale = "sr"; 416 arch = "linux-x86_64"; 417 - sha256 = "65da36df28fa13643773c1fe0338d63731e61c33fce38b4f5fd90e2793c6e210"; 418 } 419 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/sv-SE/firefox-110.0b7.tar.bz2"; 420 locale = "sv-SE"; 421 arch = "linux-x86_64"; 422 - sha256 = "19c7a44a670daa2ef9167105858ed0a1a7e03cd9cd2bb5caa3fd6d048d91f2df"; 423 } 424 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/szl/firefox-110.0b7.tar.bz2"; 425 locale = "szl"; 426 arch = "linux-x86_64"; 427 - sha256 = "d808d96a5fbbaf1a9dd72b2fde9bcded5759032fe272817fd5525d30e666acd9"; 428 } 429 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/ta/firefox-110.0b7.tar.bz2"; 430 locale = "ta"; 431 arch = "linux-x86_64"; 432 - sha256 = "fce003993a6d3b45b041271a33272f3fd8aa954ad150a96295013a9943da97bf"; 433 } 434 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/te/firefox-110.0b7.tar.bz2"; 435 locale = "te"; 436 arch = "linux-x86_64"; 437 - sha256 = "26e7d6c2df59f608d29763eaec24aa6f66c1f393f4b578c4e31fbc0b66d74872"; 438 } 439 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/th/firefox-110.0b7.tar.bz2"; 440 locale = "th"; 441 arch = "linux-x86_64"; 442 - sha256 = "e78b62b3a74aa1a6edc65786376cbc69ffcee57550f7bc01aa6eb1f3348e8049"; 443 } 444 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/tl/firefox-110.0b7.tar.bz2"; 445 locale = "tl"; 446 arch = "linux-x86_64"; 447 - sha256 = "d9e4e1a157bf0950b4f0e4a4bc65e0133712c7808bcd82bb7c2363b22f84f928"; 448 } 449 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/tr/firefox-110.0b7.tar.bz2"; 450 locale = "tr"; 451 arch = "linux-x86_64"; 452 - sha256 = "60faecf8397c5636f408f7179be02cdd4608def2f6e2255d0a6b4d4adf691255"; 453 } 454 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/trs/firefox-110.0b7.tar.bz2"; 455 locale = "trs"; 456 arch = "linux-x86_64"; 457 - sha256 = "2482b5c2a1ffa5d0c4bc0c4d94aa2570fffaca5882ca5d2dfab32f4adc999c7a"; 458 } 459 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/uk/firefox-110.0b7.tar.bz2"; 460 locale = "uk"; 461 arch = "linux-x86_64"; 462 - sha256 = "3cae3562bc6b215886c829ced2f7983bd86c2b471e6816a4df4898ec1bdbe938"; 463 } 464 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/ur/firefox-110.0b7.tar.bz2"; 465 locale = "ur"; 466 arch = "linux-x86_64"; 467 - sha256 = "77ba86200000852daf8530168ca4769679003a81688c044a5a44e817a3bdb573"; 468 } 469 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/uz/firefox-110.0b7.tar.bz2"; 470 locale = "uz"; 471 arch = "linux-x86_64"; 472 - sha256 = "911da79e7cf5d63a35c7410a0a18143d919109e0dc2823fd9caa88cb3b2c4589"; 473 } 474 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/vi/firefox-110.0b7.tar.bz2"; 475 locale = "vi"; 476 arch = "linux-x86_64"; 477 - sha256 = "9273b464a55cf3b4b8997bc54225e951a94f969ff83273316082102111e9b7e0"; 478 } 479 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/xh/firefox-110.0b7.tar.bz2"; 480 locale = "xh"; 481 arch = "linux-x86_64"; 482 - sha256 = "2c94b9461dde096ec4fc73eb3c024613ae57d17fb97220feec5a9de827d1e19b"; 483 } 484 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/zh-CN/firefox-110.0b7.tar.bz2"; 485 locale = "zh-CN"; 486 arch = "linux-x86_64"; 487 - sha256 = "c150000b9739aa32e3f5b9ed256550a0b91d14ddd6a3f88913171a263a11a843"; 488 } 489 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/zh-TW/firefox-110.0b7.tar.bz2"; 490 locale = "zh-TW"; 491 arch = "linux-x86_64"; 492 - sha256 = "7b704fbf8e7d3569c5cb7f7c2bc1548781c6d4d3acb50a4750c155dae8b610cf"; 493 } 494 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/ach/firefox-110.0b7.tar.bz2"; 495 locale = "ach"; 496 arch = "linux-i686"; 497 - sha256 = "4eb5efe5af863bd2106879a9f4deccf254adfa7b6231299fa9491d44013c898d"; 498 } 499 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/af/firefox-110.0b7.tar.bz2"; 500 locale = "af"; 501 arch = "linux-i686"; 502 - sha256 = "3b3362676e978b5521dbf251a51816d5fd9bc3ac0fb68c672d54442b38118789"; 503 } 504 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/an/firefox-110.0b7.tar.bz2"; 505 locale = "an"; 506 arch = "linux-i686"; 507 - sha256 = "41fd6dd1881cc260e63cd26ea1621a0d8d16702d6955a9bd918f3b05835b8342"; 508 } 509 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/ar/firefox-110.0b7.tar.bz2"; 510 locale = "ar"; 511 arch = "linux-i686"; 512 - sha256 = "ac82d5b42a9a48f6266d5a9d2db48793b77261735d11ed5c6d106cbf85b2e4c5"; 513 } 514 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/ast/firefox-110.0b7.tar.bz2"; 515 locale = "ast"; 516 arch = "linux-i686"; 517 - sha256 = "1c980a29e760a669fcf41585cee43398761103703bf7548efb666affee3288d3"; 518 } 519 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/az/firefox-110.0b7.tar.bz2"; 520 locale = "az"; 521 arch = "linux-i686"; 522 - sha256 = "f3fdfd74aaa5d02ac96d6fc2071a2dbec5a424f1263dd3d406e520033c811b88"; 523 } 524 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/be/firefox-110.0b7.tar.bz2"; 525 locale = "be"; 526 arch = "linux-i686"; 527 - sha256 = "5c878775746f8897754de3a5742ef3b88e743bc59ffb8f073ca43fe85d3c3733"; 528 } 529 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/bg/firefox-110.0b7.tar.bz2"; 530 locale = "bg"; 531 arch = "linux-i686"; 532 - sha256 = "2485924a0a2dad6a43e59b3c59b833000806770a4c170c9c9fe8818b9e9456a5"; 533 } 534 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/bn/firefox-110.0b7.tar.bz2"; 535 locale = "bn"; 536 arch = "linux-i686"; 537 - sha256 = "7ec788d014d24984c4a91740ab210d306dca6bd991b21f000a7ec62eb2922730"; 538 } 539 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/br/firefox-110.0b7.tar.bz2"; 540 locale = "br"; 541 arch = "linux-i686"; 542 - sha256 = "c3abadb8c90f5def1f1ac66a1f57f8cb72142b5bde767f4310aabdb9b19b2af8"; 543 } 544 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/bs/firefox-110.0b7.tar.bz2"; 545 locale = "bs"; 546 arch = "linux-i686"; 547 - sha256 = "dbcf629d2bd023a16ffda05a3068c78bc0aaae9c16d23bdd46dde5ed3623102c"; 548 } 549 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/ca-valencia/firefox-110.0b7.tar.bz2"; 550 locale = "ca-valencia"; 551 arch = "linux-i686"; 552 - sha256 = "fe6eee93d3f1299dd39c1cfb7f71b56ebfe76ff565679e24e78e9df48c15a05c"; 553 } 554 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/ca/firefox-110.0b7.tar.bz2"; 555 locale = "ca"; 556 arch = "linux-i686"; 557 - sha256 = "8b6beb770bf10e37e28f7fba3f13cadefddc54ab461f79158cac3dbcc4c6d189"; 558 } 559 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/cak/firefox-110.0b7.tar.bz2"; 560 locale = "cak"; 561 arch = "linux-i686"; 562 - sha256 = "4835a7f7e0c2aac5e7cc515b438f4ec8eef747e8eab43be27329d769111397df"; 563 } 564 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/cs/firefox-110.0b7.tar.bz2"; 565 locale = "cs"; 566 arch = "linux-i686"; 567 - sha256 = "5fbd0659bcf911f4227dbfac889f02515b2108e59c246b16bda3bb80855cd21b"; 568 } 569 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/cy/firefox-110.0b7.tar.bz2"; 570 locale = "cy"; 571 arch = "linux-i686"; 572 - sha256 = "3c20e9871614b0173a44f8f1d1c797de2ba1065c5ffde4881fbb46b7bdbc2229"; 573 } 574 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/da/firefox-110.0b7.tar.bz2"; 575 locale = "da"; 576 arch = "linux-i686"; 577 - sha256 = "4af7481914a29c321ae5ef1f6b1a1b72bdb62e0ca595f35f051a3968e0662580"; 578 } 579 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/de/firefox-110.0b7.tar.bz2"; 580 locale = "de"; 581 arch = "linux-i686"; 582 - sha256 = "04ed988e98f93a3938f03151e6df9594def3c406473974993223f907077fae18"; 583 } 584 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/dsb/firefox-110.0b7.tar.bz2"; 585 locale = "dsb"; 586 arch = "linux-i686"; 587 - sha256 = "c44401b4ff9bcf06c41723de20278848c1945051fc8ddfd7031bdc3d08a27470"; 588 } 589 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/el/firefox-110.0b7.tar.bz2"; 590 locale = "el"; 591 arch = "linux-i686"; 592 - sha256 = "41fb2592795c60fbb9af77e880e97a61055e9380b01d1bb7def76a1058bb741b"; 593 } 594 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/en-CA/firefox-110.0b7.tar.bz2"; 595 locale = "en-CA"; 596 arch = "linux-i686"; 597 - sha256 = "a549401e7357a0dc505342183a8c0f20a220e034565888d76e63998523c21944"; 598 } 599 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/en-GB/firefox-110.0b7.tar.bz2"; 600 locale = "en-GB"; 601 arch = "linux-i686"; 602 - sha256 = "a73359b22d92c21c439745b1d7b7c11dd562e9391873e1f6413280aca9fbfcaa"; 603 } 604 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/en-US/firefox-110.0b7.tar.bz2"; 605 locale = "en-US"; 606 arch = "linux-i686"; 607 - sha256 = "8f7876555697b4f853924848cec86c480fcc7d6374df5173a14d4694d0a26f24"; 608 } 609 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/eo/firefox-110.0b7.tar.bz2"; 610 locale = "eo"; 611 arch = "linux-i686"; 612 - sha256 = "fe9d258c7795bc543e32df33fc1db4f39eaaad543fc6c06620de2c86317564dd"; 613 } 614 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/es-AR/firefox-110.0b7.tar.bz2"; 615 locale = "es-AR"; 616 arch = "linux-i686"; 617 - sha256 = "35b687901ea7499b9d91e14e13549d4269db4ff11aa1c3a4cf7a0b169c781e40"; 618 } 619 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/es-CL/firefox-110.0b7.tar.bz2"; 620 locale = "es-CL"; 621 arch = "linux-i686"; 622 - sha256 = "fee072e0890c5ce4e88b2ca385177182bca52f21a9e5689c4886a08734c09844"; 623 } 624 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/es-ES/firefox-110.0b7.tar.bz2"; 625 locale = "es-ES"; 626 arch = "linux-i686"; 627 - sha256 = "9b23c740a58ac3a621d6afefa825c4698d263222a31997b0d1463c13b8a88f18"; 628 } 629 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/es-MX/firefox-110.0b7.tar.bz2"; 630 locale = "es-MX"; 631 arch = "linux-i686"; 632 - sha256 = "976be15d7cbd1e6dbbc21cff035b1ba79755c1c7b08878acf73b611d179b58a5"; 633 } 634 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/et/firefox-110.0b7.tar.bz2"; 635 locale = "et"; 636 arch = "linux-i686"; 637 - sha256 = "f5aa192deb8f4063888c4539568a1cfe14ac5efbb39890be0f626a44184527ee"; 638 } 639 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/eu/firefox-110.0b7.tar.bz2"; 640 locale = "eu"; 641 arch = "linux-i686"; 642 - sha256 = "27a6412ffef8191fe49f91f46981bef4eaafdba51af751b68ca784f425181572"; 643 } 644 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/fa/firefox-110.0b7.tar.bz2"; 645 locale = "fa"; 646 arch = "linux-i686"; 647 - sha256 = "ffa4e932d63aa0609de12194b97e9812eeda9d9995e85cc3571bf22307b551c6"; 648 } 649 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/ff/firefox-110.0b7.tar.bz2"; 650 locale = "ff"; 651 arch = "linux-i686"; 652 - sha256 = "e1bc2f4df952a0bcdbd94acd5a4ba9a147ea0625b43f1c2c2516c2033c493a0f"; 653 } 654 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/fi/firefox-110.0b7.tar.bz2"; 655 locale = "fi"; 656 arch = "linux-i686"; 657 - sha256 = "f7b426f07cad206f4ebfed3f7572415659328f91b2a892c79849a95391ed07b5"; 658 } 659 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/fr/firefox-110.0b7.tar.bz2"; 660 locale = "fr"; 661 arch = "linux-i686"; 662 - sha256 = "4724ccf94bec086fd5fd66368b03cc20c9ea07859113c9ae3d36a15aa9fb5fb2"; 663 } 664 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/fy-NL/firefox-110.0b7.tar.bz2"; 665 locale = "fy-NL"; 666 arch = "linux-i686"; 667 - sha256 = "13643cf94fa7ae3ba5fbd44a7d4f7e4d05f0512711f14e7eaa1387ab49a99cf8"; 668 } 669 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/ga-IE/firefox-110.0b7.tar.bz2"; 670 locale = "ga-IE"; 671 arch = "linux-i686"; 672 - sha256 = "f91a4493c6155e6f087158ce4b426fe131cacb558ea7ea0e5ce6eff162735f9d"; 673 } 674 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/gd/firefox-110.0b7.tar.bz2"; 675 locale = "gd"; 676 arch = "linux-i686"; 677 - sha256 = "41a9ef5fa0b2744fb6b92e14e85cd5dc4f44a7c7ce8af98a1a3a918d61dd0deb"; 678 } 679 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/gl/firefox-110.0b7.tar.bz2"; 680 locale = "gl"; 681 arch = "linux-i686"; 682 - sha256 = "788f9d3b57ba76f4910e0d36e6fc85e8fc1db04f5522fe166b3c835281a3d1fa"; 683 } 684 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/gn/firefox-110.0b7.tar.bz2"; 685 locale = "gn"; 686 arch = "linux-i686"; 687 - sha256 = "3dd1a7503e4586da4564ec849abc92e2804967ccfa24c2ac97ed0a950ab8d437"; 688 } 689 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/gu-IN/firefox-110.0b7.tar.bz2"; 690 locale = "gu-IN"; 691 arch = "linux-i686"; 692 - sha256 = "3e8e2b6845220caf1b55627e3015dc9b730ab5e3b83c89404a99b7360f635667"; 693 } 694 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/he/firefox-110.0b7.tar.bz2"; 695 locale = "he"; 696 arch = "linux-i686"; 697 - sha256 = "bb10af6a2bb65524549d49f4d9ae997f5e76b9fb7319a7c799d40024c9668103"; 698 } 699 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/hi-IN/firefox-110.0b7.tar.bz2"; 700 locale = "hi-IN"; 701 arch = "linux-i686"; 702 - sha256 = "81007114b51ca5609b6e396bb1beb50f4aeb34932996e6af43f2f06081a75a7c"; 703 } 704 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/hr/firefox-110.0b7.tar.bz2"; 705 locale = "hr"; 706 arch = "linux-i686"; 707 - sha256 = "35b3a5ad77dd74429626d25b8f103f5ebb4e2d6f820f127cd4dd5f1f3935be80"; 708 } 709 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/hsb/firefox-110.0b7.tar.bz2"; 710 locale = "hsb"; 711 arch = "linux-i686"; 712 - sha256 = "d1e58940ef2a555d4da136faa65f107ed14f2da90581b5a347222f836fdfb484"; 713 } 714 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/hu/firefox-110.0b7.tar.bz2"; 715 locale = "hu"; 716 arch = "linux-i686"; 717 - sha256 = "4a14463ba65c108f9db55af7722c33a41d3bc818a90006ec0dc8c0a137d8fc8b"; 718 } 719 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/hy-AM/firefox-110.0b7.tar.bz2"; 720 locale = "hy-AM"; 721 arch = "linux-i686"; 722 - sha256 = "6b23bd00965e7e2bb456c82f66dc931b93b30aff9f32cbecc548a86c12003577"; 723 } 724 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/ia/firefox-110.0b7.tar.bz2"; 725 locale = "ia"; 726 arch = "linux-i686"; 727 - sha256 = "9b021296624e5a73a039d7eb41e6d8c67d0b29d391ec91f2729f572fa626eb62"; 728 } 729 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/id/firefox-110.0b7.tar.bz2"; 730 locale = "id"; 731 arch = "linux-i686"; 732 - sha256 = "453984cebaa6bb6324bcad3f89816207b113280525e6c551a1f457a66d471b2c"; 733 } 734 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/is/firefox-110.0b7.tar.bz2"; 735 locale = "is"; 736 arch = "linux-i686"; 737 - sha256 = "136d6a2f17693569b2b1169b4afa7e4bd073b85758993a82a8807f47aa3c0eb7"; 738 } 739 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/it/firefox-110.0b7.tar.bz2"; 740 locale = "it"; 741 arch = "linux-i686"; 742 - sha256 = "b68387a725f930a3c8714620a80046f4ad13334046bfe186e5499139e95bd919"; 743 } 744 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/ja/firefox-110.0b7.tar.bz2"; 745 locale = "ja"; 746 arch = "linux-i686"; 747 - sha256 = "b46a39f4b36bdea5f1084d2c8b61d75aa717e6926c7f343348dc22199b141fd1"; 748 } 749 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/ka/firefox-110.0b7.tar.bz2"; 750 locale = "ka"; 751 arch = "linux-i686"; 752 - sha256 = "25a44788f981a713b66155e17ec3226dc3c7514a1edf4be02659bd43caf7fefc"; 753 } 754 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/kab/firefox-110.0b7.tar.bz2"; 755 locale = "kab"; 756 arch = "linux-i686"; 757 - sha256 = "d795e5d2396f24d43f1c24ebe18c1561d391d2859e7bdc6759f65cbab97cc3f6"; 758 } 759 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/kk/firefox-110.0b7.tar.bz2"; 760 locale = "kk"; 761 arch = "linux-i686"; 762 - sha256 = "e5bbb12d574c7d6460ebc0d704d0fcf47fc034fbf76e7ecb0780479777490a94"; 763 } 764 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/km/firefox-110.0b7.tar.bz2"; 765 locale = "km"; 766 arch = "linux-i686"; 767 - sha256 = "db19e45151808183201a5526d788d72929f46ad958ab20d87a29792eaf67e104"; 768 } 769 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/kn/firefox-110.0b7.tar.bz2"; 770 locale = "kn"; 771 arch = "linux-i686"; 772 - sha256 = "0efce05c5b640d5772a212b82a949c2c64842e85f42c31f3d79b87572afc5e03"; 773 } 774 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/ko/firefox-110.0b7.tar.bz2"; 775 locale = "ko"; 776 arch = "linux-i686"; 777 - sha256 = "c83f3d9920ed08763c3a0fed2069e29db4c6bb0f476e78792cf9fdedfac32456"; 778 } 779 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/lij/firefox-110.0b7.tar.bz2"; 780 locale = "lij"; 781 arch = "linux-i686"; 782 - sha256 = "96269f1e5ba3753fb49794ec4823283491b4abdb0626a6580b5b3f1efab2c069"; 783 } 784 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/lt/firefox-110.0b7.tar.bz2"; 785 locale = "lt"; 786 arch = "linux-i686"; 787 - sha256 = "71a277cc9fd8a61ba3dddad764b0c6a7fda5dfb6bf2177f8cc75ee3ffacd9786"; 788 } 789 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/lv/firefox-110.0b7.tar.bz2"; 790 locale = "lv"; 791 arch = "linux-i686"; 792 - sha256 = "86bf2b8b65f515bf58790f2bc30a632cf8a4751f264ec0259b869dc0813dc4ec"; 793 } 794 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/mk/firefox-110.0b7.tar.bz2"; 795 locale = "mk"; 796 arch = "linux-i686"; 797 - sha256 = "2caee54fdddb3f4874d808ee7610d64dce438deeec4f030e1675bd1133e8acd8"; 798 } 799 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/mr/firefox-110.0b7.tar.bz2"; 800 locale = "mr"; 801 arch = "linux-i686"; 802 - sha256 = "253d3ff0c4e244a10346eda07d63adc380cbea72fa052a17dbfa8af61a517af9"; 803 } 804 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/ms/firefox-110.0b7.tar.bz2"; 805 locale = "ms"; 806 arch = "linux-i686"; 807 - sha256 = "3936c9f4900488d31203057214c6c0121f65495686c099971cc6f3cf7a368735"; 808 } 809 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/my/firefox-110.0b7.tar.bz2"; 810 locale = "my"; 811 arch = "linux-i686"; 812 - sha256 = "04fe1a0361b7eda1b28fcfdf98a581f4a0e248a6db647bbf404589e398eac64a"; 813 } 814 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/nb-NO/firefox-110.0b7.tar.bz2"; 815 locale = "nb-NO"; 816 arch = "linux-i686"; 817 - sha256 = "41639bb0cbcbff85f2fec3318eefd8b0d643550a1adee4782d5a904372786732"; 818 } 819 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/ne-NP/firefox-110.0b7.tar.bz2"; 820 locale = "ne-NP"; 821 arch = "linux-i686"; 822 - sha256 = "a9f41809ee0526fdb322e1313ce7dfc23118f277c3db3a1e10bf27cd3c47b722"; 823 } 824 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/nl/firefox-110.0b7.tar.bz2"; 825 locale = "nl"; 826 arch = "linux-i686"; 827 - sha256 = "09320d70bfa669efe7871cd494b233e2b9fff320077e1304558c3039890884ae"; 828 } 829 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/nn-NO/firefox-110.0b7.tar.bz2"; 830 locale = "nn-NO"; 831 arch = "linux-i686"; 832 - sha256 = "737dccedbfbc9d2310a7e6870518a2f77e2b17d69da19a8929df3cd1b7f666b2"; 833 } 834 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/oc/firefox-110.0b7.tar.bz2"; 835 locale = "oc"; 836 arch = "linux-i686"; 837 - sha256 = "0ffa6b471aa356d9380ed5795f4e2b5e47a766d64679c985fe59ab913b14863d"; 838 } 839 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/pa-IN/firefox-110.0b7.tar.bz2"; 840 locale = "pa-IN"; 841 arch = "linux-i686"; 842 - sha256 = "c99a8c9ab9033455acb3eadca94cfc5c15efdc458172944802a39918c94f3651"; 843 } 844 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/pl/firefox-110.0b7.tar.bz2"; 845 locale = "pl"; 846 arch = "linux-i686"; 847 - sha256 = "6a9d49716621fb5a04182614265e6dc9c8b52618eaad4498a10b6188f35785b9"; 848 } 849 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/pt-BR/firefox-110.0b7.tar.bz2"; 850 locale = "pt-BR"; 851 arch = "linux-i686"; 852 - sha256 = "dfcf1c15fc3376da4bcb18d404e3330ad1d04a1307bdf8b5731b2bfbdaf11e1e"; 853 } 854 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/pt-PT/firefox-110.0b7.tar.bz2"; 855 locale = "pt-PT"; 856 arch = "linux-i686"; 857 - sha256 = "ebbcfad6776276ad0459e41dfd15dc5ef4ce2d099ca8aa0d5c992c833224ea20"; 858 } 859 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/rm/firefox-110.0b7.tar.bz2"; 860 locale = "rm"; 861 arch = "linux-i686"; 862 - sha256 = "0924391109336ee501cf1abf1a5c6b1776ade3ba61fba15f0b4e16fb1db996b3"; 863 } 864 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/ro/firefox-110.0b7.tar.bz2"; 865 locale = "ro"; 866 arch = "linux-i686"; 867 - sha256 = "ac1ba842e7f9cdf86f5d9b469b8621d683e7a5716f05871b761520a8bb3fdfee"; 868 } 869 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/ru/firefox-110.0b7.tar.bz2"; 870 locale = "ru"; 871 arch = "linux-i686"; 872 - sha256 = "d298dfe0e446e438d900e2501a9efe70c55f843d9590bdb4f65e3486807bb7e4"; 873 } 874 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/sco/firefox-110.0b7.tar.bz2"; 875 locale = "sco"; 876 arch = "linux-i686"; 877 - sha256 = "85c4ae41383c4686c3ccdb143e789414785189c24dd1aaf52ba0c8b69cc65862"; 878 } 879 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/si/firefox-110.0b7.tar.bz2"; 880 locale = "si"; 881 arch = "linux-i686"; 882 - sha256 = "f57401bb72a03b9e7676ed6839ba07eac65201a7c368122d3174bb17abd0052f"; 883 } 884 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/sk/firefox-110.0b7.tar.bz2"; 885 locale = "sk"; 886 arch = "linux-i686"; 887 - sha256 = "790ba626a5276bf13314ead2f8134809d254d2daa471cbb7139e79d2638f862c"; 888 } 889 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/sl/firefox-110.0b7.tar.bz2"; 890 locale = "sl"; 891 arch = "linux-i686"; 892 - sha256 = "c3fe71c0e08a4ec80384d32d04de91a6717f397d4a16ab357d2e160be39e62ef"; 893 } 894 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/son/firefox-110.0b7.tar.bz2"; 895 locale = "son"; 896 arch = "linux-i686"; 897 - sha256 = "c43f935f36a13d4405e84888849fa65a74db46170e7d70e8168513f0ed5a1293"; 898 } 899 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/sq/firefox-110.0b7.tar.bz2"; 900 locale = "sq"; 901 arch = "linux-i686"; 902 - sha256 = "a32fdc9295de5af65212232afc12a5551353bbe883603bfcb3b7455b5d724bc4"; 903 } 904 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/sr/firefox-110.0b7.tar.bz2"; 905 locale = "sr"; 906 arch = "linux-i686"; 907 - sha256 = "7ac06bd3e9d87d765f741329dd6123d61905150a895b08391ea9a721b688416f"; 908 } 909 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/sv-SE/firefox-110.0b7.tar.bz2"; 910 locale = "sv-SE"; 911 arch = "linux-i686"; 912 - sha256 = "f9b8c7b4498bb7878501a792a9e74a02426afa487df60bc69fe61b3e241c2e68"; 913 } 914 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/szl/firefox-110.0b7.tar.bz2"; 915 locale = "szl"; 916 arch = "linux-i686"; 917 - sha256 = "7a0ee765684a3a4b5ca72852980e5aa17b502e0536a89f22bd7f8606e9baa42d"; 918 } 919 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/ta/firefox-110.0b7.tar.bz2"; 920 locale = "ta"; 921 arch = "linux-i686"; 922 - sha256 = "b8e5e6f76501cf0e6d25df0d567bac8a59da80ab2958f49e4183deaf5f500480"; 923 } 924 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/te/firefox-110.0b7.tar.bz2"; 925 locale = "te"; 926 arch = "linux-i686"; 927 - sha256 = "af0b910c67ed734fa20d5a4259218352735cac6b8284d5b6a64ffa74d04b96b3"; 928 } 929 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/th/firefox-110.0b7.tar.bz2"; 930 locale = "th"; 931 arch = "linux-i686"; 932 - sha256 = "10df84e1903cf7fb703bc590cf27b670a4778562190914f7d0f4df3894bc6dd5"; 933 } 934 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/tl/firefox-110.0b7.tar.bz2"; 935 locale = "tl"; 936 arch = "linux-i686"; 937 - sha256 = "49fdfafee4020a914ab5edbe2b64b907b4195679a065f1c9bf53d4ac2ba10be1"; 938 } 939 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/tr/firefox-110.0b7.tar.bz2"; 940 locale = "tr"; 941 arch = "linux-i686"; 942 - sha256 = "5a266bd815e3c8569d263951bd91b0ee0383ff2157289ee8df4eeaca938bccbd"; 943 } 944 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/trs/firefox-110.0b7.tar.bz2"; 945 locale = "trs"; 946 arch = "linux-i686"; 947 - sha256 = "2eda65562b714f7700f6628c254fbcc526fc938f3d147eccdc2154e42f22dee7"; 948 } 949 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/uk/firefox-110.0b7.tar.bz2"; 950 locale = "uk"; 951 arch = "linux-i686"; 952 - sha256 = "8541334d7bcf99959d944eaa7263000f502b1ed2d0a1b52dff91481cf01c1460"; 953 } 954 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/ur/firefox-110.0b7.tar.bz2"; 955 locale = "ur"; 956 arch = "linux-i686"; 957 - sha256 = "dc0eb2f604c869b45c247f65f62b5f7c5982f5ec7e4a6f55b901d5ded0f92b03"; 958 } 959 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/uz/firefox-110.0b7.tar.bz2"; 960 locale = "uz"; 961 arch = "linux-i686"; 962 - sha256 = "8ee65711e182478c360e988b9d1cbb8636d737d961817f1bfb2f2dedd38a36e9"; 963 } 964 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/vi/firefox-110.0b7.tar.bz2"; 965 locale = "vi"; 966 arch = "linux-i686"; 967 - sha256 = "32b9654813638160541512f03befb998416ad142a0f12d50bc02d75b646d88d7"; 968 } 969 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/xh/firefox-110.0b7.tar.bz2"; 970 locale = "xh"; 971 arch = "linux-i686"; 972 - sha256 = "5317f9ada8234ff2bb305c8536d7aeb6b38f6047e8ef7907f1e01d60773e084b"; 973 } 974 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/zh-CN/firefox-110.0b7.tar.bz2"; 975 locale = "zh-CN"; 976 arch = "linux-i686"; 977 - sha256 = "20768d5d4943847fcbe4c8e549af0d03383c4ad20909b60421afba97fd3b5446"; 978 } 979 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/zh-TW/firefox-110.0b7.tar.bz2"; 980 locale = "zh-TW"; 981 arch = "linux-i686"; 982 - sha256 = "ed538524665e72125b820c4eefb5fed8983f84f42d7be65bea7c3915d9779002"; 983 } 984 ]; 985 }
··· 1 { 2 + version = "110.0b9"; 3 sources = [ 4 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/ach/firefox-110.0b9.tar.bz2"; 5 locale = "ach"; 6 arch = "linux-x86_64"; 7 + sha256 = "cc5d39722e3e98f42ff5c2ccb269b2cde56f207f2d6f53ee87cd1f1df4e0d071"; 8 } 9 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/af/firefox-110.0b9.tar.bz2"; 10 locale = "af"; 11 arch = "linux-x86_64"; 12 + sha256 = "7290b02e275f45a78eab3cd4ca333b06917604336dff966db451d10dddf011e1"; 13 } 14 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/an/firefox-110.0b9.tar.bz2"; 15 locale = "an"; 16 arch = "linux-x86_64"; 17 + sha256 = "a0320cc31ceb1f0bcad216dfd12953d8b7ae0356236be2223afd79a1f68e52ad"; 18 } 19 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/ar/firefox-110.0b9.tar.bz2"; 20 locale = "ar"; 21 arch = "linux-x86_64"; 22 + sha256 = "65c8404b0160ce88ff64076d6f8716f94ad1b7bece3424e2d660049e6dfb8935"; 23 } 24 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/ast/firefox-110.0b9.tar.bz2"; 25 locale = "ast"; 26 arch = "linux-x86_64"; 27 + sha256 = "b535076933c0d6b0ccbc98377fede33a4dc3b177b530b77904b1359b6d4d60ba"; 28 } 29 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/az/firefox-110.0b9.tar.bz2"; 30 locale = "az"; 31 arch = "linux-x86_64"; 32 + sha256 = "5d6d196a7d08fd59d6bde1b8e9adf8f0088011b0348c1755e47be0c5aa5bf221"; 33 } 34 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/be/firefox-110.0b9.tar.bz2"; 35 locale = "be"; 36 arch = "linux-x86_64"; 37 + sha256 = "7894ff185eac53a496bf1111e940ec53af1989c01f5cfbfb17e30f1be60ca131"; 38 } 39 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/bg/firefox-110.0b9.tar.bz2"; 40 locale = "bg"; 41 arch = "linux-x86_64"; 42 + sha256 = "46e9cb6bc007341fb69a4e428ccb531053fc35ade15e73aa859ebda27da460bc"; 43 } 44 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/bn/firefox-110.0b9.tar.bz2"; 45 locale = "bn"; 46 arch = "linux-x86_64"; 47 + sha256 = "8419763e7310b5f7c3ec27e6c0ffb895d5b2c36b3c2cbf5261185e412d23b8f6"; 48 } 49 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/br/firefox-110.0b9.tar.bz2"; 50 locale = "br"; 51 arch = "linux-x86_64"; 52 + sha256 = "0995bb17dc38a80398cf4e90a0b238dfeafd5a0d6c7a48251222b9f33c7b57d0"; 53 } 54 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/bs/firefox-110.0b9.tar.bz2"; 55 locale = "bs"; 56 arch = "linux-x86_64"; 57 + sha256 = "0a4f9be7ef766ea6381e4c66258ae415f45fdd05493d347e9fe602870dd74f43"; 58 } 59 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/ca-valencia/firefox-110.0b9.tar.bz2"; 60 locale = "ca-valencia"; 61 arch = "linux-x86_64"; 62 + sha256 = "3f0d4e7143d9f6f2d9f92dd886bacb7e381dd69623552f299c99668f8cc7f851"; 63 } 64 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/ca/firefox-110.0b9.tar.bz2"; 65 locale = "ca"; 66 arch = "linux-x86_64"; 67 + sha256 = "aa6fc57fc2cfe59f885bdd9fb9ac70a6b1d99f216e9ca59fdde82302a872a931"; 68 } 69 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/cak/firefox-110.0b9.tar.bz2"; 70 locale = "cak"; 71 arch = "linux-x86_64"; 72 + sha256 = "2e0ea9547dbbfc73da08f0b25c888ee8a05285c2e1b038facb6b60acd0735b21"; 73 } 74 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/cs/firefox-110.0b9.tar.bz2"; 75 locale = "cs"; 76 arch = "linux-x86_64"; 77 + sha256 = "b3f8300ab4235e5452308a9e61c6f25f3b288e7abc75899c2edfde9bccb71743"; 78 } 79 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/cy/firefox-110.0b9.tar.bz2"; 80 locale = "cy"; 81 arch = "linux-x86_64"; 82 + sha256 = "b1ff7f5b50080a0fd587b95855aa4378c77e9c7e9f297c401d7530bf62850897"; 83 } 84 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/da/firefox-110.0b9.tar.bz2"; 85 locale = "da"; 86 arch = "linux-x86_64"; 87 + sha256 = "7a4b1c42e4a7868b4c7eeb2837ca23bcc98439a9082893c9b6a27aa794db1c3d"; 88 } 89 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/de/firefox-110.0b9.tar.bz2"; 90 locale = "de"; 91 arch = "linux-x86_64"; 92 + sha256 = "ef1d6041e6f259568d0ba689774cc68c93b6657cf482617c2c9b7977aa59fa0f"; 93 } 94 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/dsb/firefox-110.0b9.tar.bz2"; 95 locale = "dsb"; 96 arch = "linux-x86_64"; 97 + sha256 = "be491c63b026a99a27f1fc07113cbac53afe2cf74b0c4a14e01b391a9f78afe3"; 98 } 99 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/el/firefox-110.0b9.tar.bz2"; 100 locale = "el"; 101 arch = "linux-x86_64"; 102 + sha256 = "c3a4971667eff47902451e2a4ae61f2360dafedafecbb70d0668021e0136e210"; 103 } 104 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/en-CA/firefox-110.0b9.tar.bz2"; 105 locale = "en-CA"; 106 arch = "linux-x86_64"; 107 + sha256 = "1c22322afbcf77b1042a88946313300ffbe28f2d46b9b746091bddc8ab4b9e73"; 108 } 109 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/en-GB/firefox-110.0b9.tar.bz2"; 110 locale = "en-GB"; 111 arch = "linux-x86_64"; 112 + sha256 = "7b52499d9bef9c077411d78c746dd25f28334ba55ee116f04e655b1dfe79d933"; 113 } 114 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/en-US/firefox-110.0b9.tar.bz2"; 115 locale = "en-US"; 116 arch = "linux-x86_64"; 117 + sha256 = "6f9a54afd92e9e4a7e28d9b2c98b9143c85e7756cc99814a6eec8eccc946ff0f"; 118 } 119 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/eo/firefox-110.0b9.tar.bz2"; 120 locale = "eo"; 121 arch = "linux-x86_64"; 122 + sha256 = "8d233b59c6efac13a5df6e49d75cfe1d8c583e6fd480c7f3cd14a854d93cf520"; 123 } 124 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/es-AR/firefox-110.0b9.tar.bz2"; 125 locale = "es-AR"; 126 arch = "linux-x86_64"; 127 + sha256 = "96030e4be739bb7ddbf71f1849b698e78de87355506eee026318a3d9e78d5062"; 128 } 129 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/es-CL/firefox-110.0b9.tar.bz2"; 130 locale = "es-CL"; 131 arch = "linux-x86_64"; 132 + sha256 = "8f1347c15674769afccc4a094366c744ee2e7cd2a72c0313b7472af2256c3192"; 133 } 134 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/es-ES/firefox-110.0b9.tar.bz2"; 135 locale = "es-ES"; 136 arch = "linux-x86_64"; 137 + sha256 = "0380e298dbd24b19748d1c959867e6af16203868ebb46bff1aa45c83dac9d987"; 138 } 139 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/es-MX/firefox-110.0b9.tar.bz2"; 140 locale = "es-MX"; 141 arch = "linux-x86_64"; 142 + sha256 = "dea1d2ef28f783ab316354a3a6d92309d3906cf55a82e5a7ff7f801c3a512617"; 143 } 144 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/et/firefox-110.0b9.tar.bz2"; 145 locale = "et"; 146 arch = "linux-x86_64"; 147 + sha256 = "83ed70566e1a0fb33120d9526ce3b14939077a1048054f59c301b33d07924433"; 148 } 149 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/eu/firefox-110.0b9.tar.bz2"; 150 locale = "eu"; 151 arch = "linux-x86_64"; 152 + sha256 = "0273dbea420a77a3f3331f5e80d3302b8d488f5bb421e55d9b3675f80132ddec"; 153 } 154 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/fa/firefox-110.0b9.tar.bz2"; 155 locale = "fa"; 156 arch = "linux-x86_64"; 157 + sha256 = "0f5a0f2614dfbf226855d9f1f4ae2b239ff884b7c4bfc4b1ea9f71e5681613db"; 158 } 159 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/ff/firefox-110.0b9.tar.bz2"; 160 locale = "ff"; 161 arch = "linux-x86_64"; 162 + sha256 = "637152fb27f03ad574db2169ffdebdfc5bf1d7fc8f9b8573994fbd854e8c848b"; 163 } 164 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/fi/firefox-110.0b9.tar.bz2"; 165 locale = "fi"; 166 arch = "linux-x86_64"; 167 + sha256 = "538908abd12b8dfc8beb583811fb1629e496222463f9487ba3e988da2b0d1ddd"; 168 } 169 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/fr/firefox-110.0b9.tar.bz2"; 170 locale = "fr"; 171 arch = "linux-x86_64"; 172 + sha256 = "7ba6d2259d7a33a98834fe7ba3f565ab5a412af0001d83fed5c449089a423fc9"; 173 } 174 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/fy-NL/firefox-110.0b9.tar.bz2"; 175 locale = "fy-NL"; 176 arch = "linux-x86_64"; 177 + sha256 = "1ba376f24244dee62fc296ce26e82db4f2dc27a73762a773eae63b24634f7627"; 178 } 179 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/ga-IE/firefox-110.0b9.tar.bz2"; 180 locale = "ga-IE"; 181 arch = "linux-x86_64"; 182 + sha256 = "ec0d2db7e771516515014f560635b03519797cf040c9ac53fb0bead6c553dc5a"; 183 } 184 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/gd/firefox-110.0b9.tar.bz2"; 185 locale = "gd"; 186 arch = "linux-x86_64"; 187 + sha256 = "cb20591866003e56ae1b9c99a0c124754e4a3dc2798596c2629eba16b51ccaaf"; 188 } 189 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/gl/firefox-110.0b9.tar.bz2"; 190 locale = "gl"; 191 arch = "linux-x86_64"; 192 + sha256 = "a29e76b31f75aed4df52dd3fe2f9b5d7a9649e010eee36f7bb964f988d980270"; 193 } 194 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/gn/firefox-110.0b9.tar.bz2"; 195 locale = "gn"; 196 arch = "linux-x86_64"; 197 + sha256 = "edbdf1000de809a5bdd0350f1c49e505cb593273734d05dd3ddd46710729fc78"; 198 } 199 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/gu-IN/firefox-110.0b9.tar.bz2"; 200 locale = "gu-IN"; 201 arch = "linux-x86_64"; 202 + sha256 = "570089326d80d06f013111020e6dcb87563b78cf0f5a6cd69552fb6d86255752"; 203 } 204 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/he/firefox-110.0b9.tar.bz2"; 205 locale = "he"; 206 arch = "linux-x86_64"; 207 + sha256 = "ce35df979ebd3761619174de68924dff38b4ff65a150167db195f8011bd2923e"; 208 } 209 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/hi-IN/firefox-110.0b9.tar.bz2"; 210 locale = "hi-IN"; 211 arch = "linux-x86_64"; 212 + sha256 = "b0793b48235be330e2ed749e152fd4a5f8f76fea88e2b4e192cf2c2c1a3c3c08"; 213 } 214 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/hr/firefox-110.0b9.tar.bz2"; 215 locale = "hr"; 216 arch = "linux-x86_64"; 217 + sha256 = "898793ef521956f564474d490beb0e3a77be2b6c20d790ac14b20e6279075864"; 218 } 219 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/hsb/firefox-110.0b9.tar.bz2"; 220 locale = "hsb"; 221 arch = "linux-x86_64"; 222 + sha256 = "bc4dddabb277b88180afec6c956488315e95b4e31a95f0969936f85e3adab5d2"; 223 } 224 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/hu/firefox-110.0b9.tar.bz2"; 225 locale = "hu"; 226 arch = "linux-x86_64"; 227 + sha256 = "8f9e755fa8c7b9173ec6e6d19fb0195e80e9884434812ec7b4b61f26596a3e95"; 228 } 229 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/hy-AM/firefox-110.0b9.tar.bz2"; 230 locale = "hy-AM"; 231 arch = "linux-x86_64"; 232 + sha256 = "db36bfdde0fa2b148c05d6e2ff147f1cdc3adf2bea469bb13057e157fa80c2ce"; 233 } 234 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/ia/firefox-110.0b9.tar.bz2"; 235 locale = "ia"; 236 arch = "linux-x86_64"; 237 + sha256 = "d2cbf20c9e43d8332c1fb24958e281438be856ccfa7a4b106e2c9bd95e4dc065"; 238 } 239 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/id/firefox-110.0b9.tar.bz2"; 240 locale = "id"; 241 arch = "linux-x86_64"; 242 + sha256 = "14a10b4dc15d7e910570f941fd146d8e82bad752557e710c8c676f427bd289d7"; 243 } 244 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/is/firefox-110.0b9.tar.bz2"; 245 locale = "is"; 246 arch = "linux-x86_64"; 247 + sha256 = "fbbfb16a9525665d9c7212534cab21922f547f0992734fb96ddaa4099914b0ce"; 248 } 249 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/it/firefox-110.0b9.tar.bz2"; 250 locale = "it"; 251 arch = "linux-x86_64"; 252 + sha256 = "e8d3c681149aa041480165eafcaba09a6a05fe4f8297d068b97899eabce9c2e2"; 253 } 254 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/ja/firefox-110.0b9.tar.bz2"; 255 locale = "ja"; 256 arch = "linux-x86_64"; 257 + sha256 = "ca9ed83b48cfb7218b718af754a091d2ff7bba146f76f01181ed4be1b581a9e1"; 258 } 259 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/ka/firefox-110.0b9.tar.bz2"; 260 locale = "ka"; 261 arch = "linux-x86_64"; 262 + sha256 = "cc05de864bc532d9cd659b17b486ae6ff4ecc9f71ccd74d34c51cc35018ddb65"; 263 } 264 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/kab/firefox-110.0b9.tar.bz2"; 265 locale = "kab"; 266 arch = "linux-x86_64"; 267 + sha256 = "907b54cf52376a82652926ee91b12db7444e481aec18733d163eb4e9ff29f814"; 268 } 269 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/kk/firefox-110.0b9.tar.bz2"; 270 locale = "kk"; 271 arch = "linux-x86_64"; 272 + sha256 = "5547347e1afcb9a65b48be27d44323d104d9bde2b47509e79c264df257cd30bb"; 273 } 274 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/km/firefox-110.0b9.tar.bz2"; 275 locale = "km"; 276 arch = "linux-x86_64"; 277 + sha256 = "ea079774e5f57b38e617cd2675a1d4a98bc890b02006a7632914bd91de42f2aa"; 278 } 279 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/kn/firefox-110.0b9.tar.bz2"; 280 locale = "kn"; 281 arch = "linux-x86_64"; 282 + sha256 = "32099eb48e8f1365d8a958fdc9acbf9e8f74822289aea5c180ad7cd557095ac3"; 283 } 284 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/ko/firefox-110.0b9.tar.bz2"; 285 locale = "ko"; 286 arch = "linux-x86_64"; 287 + sha256 = "8f0aa7bad3ea61a41b7be760e4d7d720f694a1480f3ed1d7006d96cda65065dd"; 288 } 289 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/lij/firefox-110.0b9.tar.bz2"; 290 locale = "lij"; 291 arch = "linux-x86_64"; 292 + sha256 = "21348cf4a7808eec0f42cc4afddd01b103d4f289d59b8fe36022a625db89278b"; 293 } 294 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/lt/firefox-110.0b9.tar.bz2"; 295 locale = "lt"; 296 arch = "linux-x86_64"; 297 + sha256 = "5a8d6fafd65e90ecde3000a1fb7724ddba69c3f08e86ca2a5ad841994eb4971f"; 298 } 299 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/lv/firefox-110.0b9.tar.bz2"; 300 locale = "lv"; 301 arch = "linux-x86_64"; 302 + sha256 = "91758b8b14251fb17bbdfc6ee12dcd1c677c0da8e422eda05ac896e436affccc"; 303 } 304 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/mk/firefox-110.0b9.tar.bz2"; 305 locale = "mk"; 306 arch = "linux-x86_64"; 307 + sha256 = "49c08e7b1a57dfa10325ee65cf155d64f9e08190bae2487431f2a91d64f97446"; 308 } 309 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/mr/firefox-110.0b9.tar.bz2"; 310 locale = "mr"; 311 arch = "linux-x86_64"; 312 + sha256 = "a11875fdcf2a93dba485e72b1fd908c14b43ec97096dbbe78c37ac5834f06f1e"; 313 } 314 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/ms/firefox-110.0b9.tar.bz2"; 315 locale = "ms"; 316 arch = "linux-x86_64"; 317 + sha256 = "b4664837f25808a7e0f9a3e9570e8534f1a5e82fbe51137bcafac91fcb8ca737"; 318 } 319 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/my/firefox-110.0b9.tar.bz2"; 320 locale = "my"; 321 arch = "linux-x86_64"; 322 + sha256 = "f345e87b07fdb431c4c69f96e83fcfd4aaeeabcbb0fca6e6d3a71c263d710b65"; 323 } 324 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/nb-NO/firefox-110.0b9.tar.bz2"; 325 locale = "nb-NO"; 326 arch = "linux-x86_64"; 327 + sha256 = "006ef1aa2500a795782fa9820886ae7d201ed7380cd488618e9b5eaf3263aeee"; 328 } 329 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/ne-NP/firefox-110.0b9.tar.bz2"; 330 locale = "ne-NP"; 331 arch = "linux-x86_64"; 332 + sha256 = "dc9a7c502bf5395e7976e3160865fa8360b25af396976ed95c21e8bd84d8226c"; 333 } 334 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/nl/firefox-110.0b9.tar.bz2"; 335 locale = "nl"; 336 arch = "linux-x86_64"; 337 + sha256 = "d9753724c425d3c9cadc20436a8995f591720c30668f0453b036fcb65b67c30c"; 338 } 339 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/nn-NO/firefox-110.0b9.tar.bz2"; 340 locale = "nn-NO"; 341 arch = "linux-x86_64"; 342 + sha256 = "6e776774da71652b62e4daa4b4e4600ce2ca2eaa68fd41acc127fec17a21e0a0"; 343 } 344 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/oc/firefox-110.0b9.tar.bz2"; 345 locale = "oc"; 346 arch = "linux-x86_64"; 347 + sha256 = "5f3405900c6b81198efc3b22ea77318e3fdd8984e0f6410adf3f66f7fb39eda1"; 348 } 349 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/pa-IN/firefox-110.0b9.tar.bz2"; 350 locale = "pa-IN"; 351 arch = "linux-x86_64"; 352 + sha256 = "5efaee9f9eb16fbf1b3d3d0bb4d09c0cf451dbe9dfc27d46e85d2d80c1b838ff"; 353 } 354 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/pl/firefox-110.0b9.tar.bz2"; 355 locale = "pl"; 356 arch = "linux-x86_64"; 357 + sha256 = "65b9e3e1155c4325c827871c1a236932ab210fdc0384078dd5f827b7454ec5c8"; 358 } 359 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/pt-BR/firefox-110.0b9.tar.bz2"; 360 locale = "pt-BR"; 361 arch = "linux-x86_64"; 362 + sha256 = "f23cb718e99fae10967cca330ba6bb6a28293ebdaf9b6681c3eebccbb8555281"; 363 } 364 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/pt-PT/firefox-110.0b9.tar.bz2"; 365 locale = "pt-PT"; 366 arch = "linux-x86_64"; 367 + sha256 = "c0dcaefbe0a00e2ff8300dc6b23f25cdfcf02b80f43cafd0f5c23db91635a784"; 368 } 369 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/rm/firefox-110.0b9.tar.bz2"; 370 locale = "rm"; 371 arch = "linux-x86_64"; 372 + sha256 = "1cfea13a5987f28820caf577927cf464950735ed7fa23c05ba59e0ce41628146"; 373 } 374 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/ro/firefox-110.0b9.tar.bz2"; 375 locale = "ro"; 376 arch = "linux-x86_64"; 377 + sha256 = "82c36e3645da1a77917a8ba3ae00ffbbf82094cae66d62740da6d847e3aac9b6"; 378 } 379 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/ru/firefox-110.0b9.tar.bz2"; 380 locale = "ru"; 381 arch = "linux-x86_64"; 382 + sha256 = "c48d252b64961ab476ccb8a85cf5802941cbe90448be72d8af69a31a952962ed"; 383 } 384 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/sco/firefox-110.0b9.tar.bz2"; 385 locale = "sco"; 386 arch = "linux-x86_64"; 387 + sha256 = "8908f00ab128111535f872463fe3a7e63e8bfa6d35af31169d927464fb5097f7"; 388 } 389 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/si/firefox-110.0b9.tar.bz2"; 390 locale = "si"; 391 arch = "linux-x86_64"; 392 + sha256 = "eb069f23422fbca8df06fc1382c684e74c6af5dcd01b58d9d6e190c21a8bc493"; 393 } 394 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/sk/firefox-110.0b9.tar.bz2"; 395 locale = "sk"; 396 arch = "linux-x86_64"; 397 + sha256 = "c485954037807b81acd348083292ae4fdf779727593c9a1fe97ed094a29ddc15"; 398 } 399 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/sl/firefox-110.0b9.tar.bz2"; 400 locale = "sl"; 401 arch = "linux-x86_64"; 402 + sha256 = "c6f506b0d14582b2db01e766a9da73c3b9385eb60782e99aadf5807aedb02426"; 403 } 404 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/son/firefox-110.0b9.tar.bz2"; 405 locale = "son"; 406 arch = "linux-x86_64"; 407 + sha256 = "50603367de317c86b042a41996fb47f35cb7758e1cf3c48149c4a892e31d6381"; 408 } 409 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/sq/firefox-110.0b9.tar.bz2"; 410 locale = "sq"; 411 arch = "linux-x86_64"; 412 + sha256 = "26b278dc225b3bae852b74f81e8898a2b5f30cfc242971683d4f21a345f2dcd7"; 413 } 414 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/sr/firefox-110.0b9.tar.bz2"; 415 locale = "sr"; 416 arch = "linux-x86_64"; 417 + sha256 = "70032ae28bdcdb00d8a2b9528d5d09dcf67316fb91ee411539c59f3b3b6a075a"; 418 } 419 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/sv-SE/firefox-110.0b9.tar.bz2"; 420 locale = "sv-SE"; 421 arch = "linux-x86_64"; 422 + sha256 = "10fb48222a2ffe31576784973c305d02aee180044e11298b2b97e772c8518933"; 423 } 424 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/szl/firefox-110.0b9.tar.bz2"; 425 locale = "szl"; 426 arch = "linux-x86_64"; 427 + sha256 = "13039a67c2cea4dd2c128665e25bda28a4334465311417db6ee71846c440e754"; 428 } 429 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/ta/firefox-110.0b9.tar.bz2"; 430 locale = "ta"; 431 arch = "linux-x86_64"; 432 + sha256 = "66aeda2367e34915e9ab8c284ddf4f6d10d217654f0aa6663e50bdcf3f4bc2f1"; 433 } 434 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/te/firefox-110.0b9.tar.bz2"; 435 locale = "te"; 436 arch = "linux-x86_64"; 437 + sha256 = "f9a617f3fab610d6600a7cc8b118785ad77b9cc0447f89fd55f2f4acb4444226"; 438 } 439 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/th/firefox-110.0b9.tar.bz2"; 440 locale = "th"; 441 arch = "linux-x86_64"; 442 + sha256 = "4d4194bc163d7ad55cfde98cf2324a6a719b60c54f27a394c58977582c99989e"; 443 } 444 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/tl/firefox-110.0b9.tar.bz2"; 445 locale = "tl"; 446 arch = "linux-x86_64"; 447 + sha256 = "fb559731bb3226c4963158b1cb8332dac7e71c0a975429e112e456f2a9f3863c"; 448 } 449 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/tr/firefox-110.0b9.tar.bz2"; 450 locale = "tr"; 451 arch = "linux-x86_64"; 452 + sha256 = "0d6e05a3993673ab612319e3b287893193480a0a82bd3e1d0f9adde5b7b43c03"; 453 } 454 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/trs/firefox-110.0b9.tar.bz2"; 455 locale = "trs"; 456 arch = "linux-x86_64"; 457 + sha256 = "2bfaae0ea692e6d65787ba6751e24802dc458e0b17e1972290574d612536a0c8"; 458 } 459 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/uk/firefox-110.0b9.tar.bz2"; 460 locale = "uk"; 461 arch = "linux-x86_64"; 462 + sha256 = "410016df2f79e3a14210686ca594f6994bffedf73eeb37d536a9ac206e731e50"; 463 } 464 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/ur/firefox-110.0b9.tar.bz2"; 465 locale = "ur"; 466 arch = "linux-x86_64"; 467 + sha256 = "cec6bf39cf4893c6430ce679b9f3115308cc846e9008083bc97ffd731885bcb9"; 468 } 469 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/uz/firefox-110.0b9.tar.bz2"; 470 locale = "uz"; 471 arch = "linux-x86_64"; 472 + sha256 = "8a7d363a41ac5dad399a6215186affc9a4a4e4fd56c75f5ee0d43b0b08eb2739"; 473 } 474 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/vi/firefox-110.0b9.tar.bz2"; 475 locale = "vi"; 476 arch = "linux-x86_64"; 477 + sha256 = "187e08e5f39dae028c6b0d819eb570f4881171b6432fed2cbcbc732288a98b96"; 478 } 479 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/xh/firefox-110.0b9.tar.bz2"; 480 locale = "xh"; 481 arch = "linux-x86_64"; 482 + sha256 = "1225b62db14ddd681b1aac4b40064c9987a1138551655dbc5c49f12b8e47c80d"; 483 } 484 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/zh-CN/firefox-110.0b9.tar.bz2"; 485 locale = "zh-CN"; 486 arch = "linux-x86_64"; 487 + sha256 = "2ae18aa0a672b35d15265e26bcd015bfa93ca8fc76911301ac1b0fb214fab1a3"; 488 } 489 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-x86_64/zh-TW/firefox-110.0b9.tar.bz2"; 490 locale = "zh-TW"; 491 arch = "linux-x86_64"; 492 + sha256 = "91a601746d936b09ceb20c6e71b2e66337cf6dcf73a5a8a49e120b242b9fbd09"; 493 } 494 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/ach/firefox-110.0b9.tar.bz2"; 495 locale = "ach"; 496 arch = "linux-i686"; 497 + sha256 = "4b6c3439750c59a389a92977502b69d21823aaec8a8a369ccec947cc0ecc6e11"; 498 } 499 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/af/firefox-110.0b9.tar.bz2"; 500 locale = "af"; 501 arch = "linux-i686"; 502 + sha256 = "40fe16b22f74bc2b03e46df4845158b6f5da90eedee86a41a2d65e1212bc6f1c"; 503 } 504 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/an/firefox-110.0b9.tar.bz2"; 505 locale = "an"; 506 arch = "linux-i686"; 507 + sha256 = "efd1f055797cf33cafa891ebd6bccf159f65086daa56ef82d43b4db54f37db8b"; 508 } 509 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/ar/firefox-110.0b9.tar.bz2"; 510 locale = "ar"; 511 arch = "linux-i686"; 512 + sha256 = "bd9b5d1e9e7e3abac4db52e0c37456dfd5a4eb56a8ac8b0505fd04c0d30df6a4"; 513 } 514 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/ast/firefox-110.0b9.tar.bz2"; 515 locale = "ast"; 516 arch = "linux-i686"; 517 + sha256 = "12238eaa1d0b07932dd8ee5a9f80e8997f7ac53dfaac3f444935ae5a6f4642e7"; 518 } 519 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/az/firefox-110.0b9.tar.bz2"; 520 locale = "az"; 521 arch = "linux-i686"; 522 + sha256 = "dd97327299ca2972451a94ab969f6242e1ee80b5b5f8b4a8d3afd7a6c4df0ffb"; 523 } 524 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/be/firefox-110.0b9.tar.bz2"; 525 locale = "be"; 526 arch = "linux-i686"; 527 + sha256 = "95c5e5c5dc279301b4110d32f8f6517567986522c7fe5f7b23161a3e8d74d141"; 528 } 529 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/bg/firefox-110.0b9.tar.bz2"; 530 locale = "bg"; 531 arch = "linux-i686"; 532 + sha256 = "5733949bfd0a8dcbec55cbcbf2cc8cea9cb06929270559dce8ae0bf04aebb82c"; 533 } 534 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/bn/firefox-110.0b9.tar.bz2"; 535 locale = "bn"; 536 arch = "linux-i686"; 537 + sha256 = "9a8e143e9038dd6028a7da697d72ed9410cb839e635dbc30b0ecdb11b0759bfb"; 538 } 539 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/br/firefox-110.0b9.tar.bz2"; 540 locale = "br"; 541 arch = "linux-i686"; 542 + sha256 = "7d87af6eb4d45bb0c3db1469c000a116a5531ece9767e5d732f5fd5d44873d34"; 543 } 544 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/bs/firefox-110.0b9.tar.bz2"; 545 locale = "bs"; 546 arch = "linux-i686"; 547 + sha256 = "59958109f2cd19548c76a03450f77737f1e793f1d14490d501990e5243640fd8"; 548 } 549 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/ca-valencia/firefox-110.0b9.tar.bz2"; 550 locale = "ca-valencia"; 551 arch = "linux-i686"; 552 + sha256 = "e830fe6e33bf8bd5508d1f31a51b177664897719efee4bd80ad9f1874769c541"; 553 } 554 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/ca/firefox-110.0b9.tar.bz2"; 555 locale = "ca"; 556 arch = "linux-i686"; 557 + sha256 = "e5d84bfa1395fdf797f4eddeec0f99fcf6138012afd1ca9c4fbae4031b542130"; 558 } 559 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/cak/firefox-110.0b9.tar.bz2"; 560 locale = "cak"; 561 arch = "linux-i686"; 562 + sha256 = "d9c5538b25a0c277e61b6ec5bad760c203b45ab8f607de3620de6337678824ef"; 563 } 564 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/cs/firefox-110.0b9.tar.bz2"; 565 locale = "cs"; 566 arch = "linux-i686"; 567 + sha256 = "bbbe1ac4e17bc1c86cd35e990f30a167ade5d3e50b2b739a35b81ec7ba44315a"; 568 } 569 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/cy/firefox-110.0b9.tar.bz2"; 570 locale = "cy"; 571 arch = "linux-i686"; 572 + sha256 = "b42bf9a0093006a9580a4b7be0d6211fe7d73a4cf92d73d11c8c6f310400abce"; 573 } 574 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/da/firefox-110.0b9.tar.bz2"; 575 locale = "da"; 576 arch = "linux-i686"; 577 + sha256 = "c8bae91a80832cda174a9156ce4f5ea8f27d1ee951ec2248c3a14e95814cc4a3"; 578 } 579 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/de/firefox-110.0b9.tar.bz2"; 580 locale = "de"; 581 arch = "linux-i686"; 582 + sha256 = "6363710caa0789a1c09579919a4303f7738b5dd79f4a975f79c8aebcb8ff1c43"; 583 } 584 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/dsb/firefox-110.0b9.tar.bz2"; 585 locale = "dsb"; 586 arch = "linux-i686"; 587 + sha256 = "f7806c9e4f73bb9176e6f37f00ea945b246b52b13d486819298efb49af5ddde4"; 588 } 589 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/el/firefox-110.0b9.tar.bz2"; 590 locale = "el"; 591 arch = "linux-i686"; 592 + sha256 = "a25be78d906d57d759cf8bde280f1ee813c88a2f40b5977de944b40a8a3b1cb1"; 593 } 594 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/en-CA/firefox-110.0b9.tar.bz2"; 595 locale = "en-CA"; 596 arch = "linux-i686"; 597 + sha256 = "8b21e8635b1e3e747497d431e974e764ca35e662417200120669cc55b22147ec"; 598 } 599 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/en-GB/firefox-110.0b9.tar.bz2"; 600 locale = "en-GB"; 601 arch = "linux-i686"; 602 + sha256 = "8cbceca22e3a3d3541ac89fce5fccdc1758469258df28e0b271ecbbc162ccf9b"; 603 } 604 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/en-US/firefox-110.0b9.tar.bz2"; 605 locale = "en-US"; 606 arch = "linux-i686"; 607 + sha256 = "380e5d288bbe0d33a144ef51059e0dbfa8586b8a17c4084a9c00b11a66aab816"; 608 } 609 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/eo/firefox-110.0b9.tar.bz2"; 610 locale = "eo"; 611 arch = "linux-i686"; 612 + sha256 = "d0b7e7a4a5efd7d86eff1f5e5ead40be5c878f1ea72e7ee7d23c385a38a69a64"; 613 } 614 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/es-AR/firefox-110.0b9.tar.bz2"; 615 locale = "es-AR"; 616 arch = "linux-i686"; 617 + sha256 = "2434f4d2522614f2c6e12aceb84a4148577eb0e8f86b55a8fe6b1b39ebb03743"; 618 } 619 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/es-CL/firefox-110.0b9.tar.bz2"; 620 locale = "es-CL"; 621 arch = "linux-i686"; 622 + sha256 = "f54355926490abb8ba8499563389702dc0ba40c793f7de8da188b47a95f397ce"; 623 } 624 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/es-ES/firefox-110.0b9.tar.bz2"; 625 locale = "es-ES"; 626 arch = "linux-i686"; 627 + sha256 = "22aef078ccc04844bbb59de7b1226ed3a4435f2a46448ef0ba7e9796c69ac2f0"; 628 } 629 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/es-MX/firefox-110.0b9.tar.bz2"; 630 locale = "es-MX"; 631 arch = "linux-i686"; 632 + sha256 = "7ec6a9ebb479adff3fdd894a1992e1377cd8aa898126b7a51d7bd3e8c314a2cf"; 633 } 634 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/et/firefox-110.0b9.tar.bz2"; 635 locale = "et"; 636 arch = "linux-i686"; 637 + sha256 = "5c6d7c0148d66da0fd6394a38dc1052df059a620285a8277b0b166b57f96e3d4"; 638 } 639 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/eu/firefox-110.0b9.tar.bz2"; 640 locale = "eu"; 641 arch = "linux-i686"; 642 + sha256 = "16d393fa5ca5bcf93da4d1e469a025482850b88067c0cb601e1a6e0373bfe4ef"; 643 } 644 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/fa/firefox-110.0b9.tar.bz2"; 645 locale = "fa"; 646 arch = "linux-i686"; 647 + sha256 = "a7b2e5e4b4d3d43757e34ca07de604a94a1bb069e030e3dd5d1e8adfb5446ca1"; 648 } 649 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/ff/firefox-110.0b9.tar.bz2"; 650 locale = "ff"; 651 arch = "linux-i686"; 652 + sha256 = "a818607d5b9faa7f10f1b887e3d7ab31773e19ac4fe1cdd902d71d93148b9e34"; 653 } 654 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/fi/firefox-110.0b9.tar.bz2"; 655 locale = "fi"; 656 arch = "linux-i686"; 657 + sha256 = "c8fa7b5af6b02f9cb4076a0ae213e75d386f0740bf8f4560fcfdfe8b15ee5bd6"; 658 } 659 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/fr/firefox-110.0b9.tar.bz2"; 660 locale = "fr"; 661 arch = "linux-i686"; 662 + sha256 = "8eec0ed9afc6199bdcd7ccd1ad9742c5a06ad74f04c617f828debac47f81b623"; 663 } 664 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/fy-NL/firefox-110.0b9.tar.bz2"; 665 locale = "fy-NL"; 666 arch = "linux-i686"; 667 + sha256 = "a91d8e6b007264530c829ca6d49510f7c452cdfa2cc8bb6939a5ccea1ec2ba44"; 668 } 669 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/ga-IE/firefox-110.0b9.tar.bz2"; 670 locale = "ga-IE"; 671 arch = "linux-i686"; 672 + sha256 = "2029d5533e77417d4e696872cdd3f95d06120fea1fb50d350e62d65e85e71765"; 673 } 674 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/gd/firefox-110.0b9.tar.bz2"; 675 locale = "gd"; 676 arch = "linux-i686"; 677 + sha256 = "d85048cef87445e131f0b0cdd25739cc6e792eaa3520b583fc9231182c2a00c7"; 678 } 679 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/gl/firefox-110.0b9.tar.bz2"; 680 locale = "gl"; 681 arch = "linux-i686"; 682 + sha256 = "3a4ff2e4f8f4bbb83db4dfedbf2584ed1db3250c725d3d834926ff8e1129f3b9"; 683 } 684 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/gn/firefox-110.0b9.tar.bz2"; 685 locale = "gn"; 686 arch = "linux-i686"; 687 + sha256 = "f0a92cab7f2fe2b81f92d3c17ca43d3a7598f7ed879a7ae4daeb303500a5c5c4"; 688 } 689 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/gu-IN/firefox-110.0b9.tar.bz2"; 690 locale = "gu-IN"; 691 arch = "linux-i686"; 692 + sha256 = "076dd689e5397f0a347db0ea50c328e097e1fc75633ddb65867ea2edd0ec8a4f"; 693 } 694 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/he/firefox-110.0b9.tar.bz2"; 695 locale = "he"; 696 arch = "linux-i686"; 697 + sha256 = "8a32c0f4b791f6036e04776229dd4676615acb5778800bc8b227bfcc19b5516b"; 698 } 699 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/hi-IN/firefox-110.0b9.tar.bz2"; 700 locale = "hi-IN"; 701 arch = "linux-i686"; 702 + sha256 = "cea795afbfc273f27cafc9e57ea2cbd2ff66fd527289a76e606d55bfef1c2c53"; 703 } 704 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/hr/firefox-110.0b9.tar.bz2"; 705 locale = "hr"; 706 arch = "linux-i686"; 707 + sha256 = "c6ad7e4b6aa871ab89f6ac9d592fa624f081930f9846e1b26b8b9853161def93"; 708 } 709 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/hsb/firefox-110.0b9.tar.bz2"; 710 locale = "hsb"; 711 arch = "linux-i686"; 712 + sha256 = "38bc020e7655190a60ca8b61335c5a17dde9e258a7829e675257e932fda8a98a"; 713 } 714 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/hu/firefox-110.0b9.tar.bz2"; 715 locale = "hu"; 716 arch = "linux-i686"; 717 + sha256 = "b09d278de29d76c2165b7c69fccd9841cd4dc8d38f41bd0321f9d19840bcd3c6"; 718 } 719 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/hy-AM/firefox-110.0b9.tar.bz2"; 720 locale = "hy-AM"; 721 arch = "linux-i686"; 722 + sha256 = "3da24edb261b08399afcecb5e7dd87209655bb80e990f31954f211aa214c6682"; 723 } 724 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/ia/firefox-110.0b9.tar.bz2"; 725 locale = "ia"; 726 arch = "linux-i686"; 727 + sha256 = "d0c176e5ab1cda84944b708c0c82956e244b9fe8fe371976bbc00a752605eae9"; 728 } 729 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/id/firefox-110.0b9.tar.bz2"; 730 locale = "id"; 731 arch = "linux-i686"; 732 + sha256 = "191547c29106ded2b7aa4ac8be95d70d6485ed934b7d8f14e92660db413eebe9"; 733 } 734 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/is/firefox-110.0b9.tar.bz2"; 735 locale = "is"; 736 arch = "linux-i686"; 737 + sha256 = "d794ff4a91ecd73a199d31392601817108c3e60d7dbb23620abff361b064d2bf"; 738 } 739 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/it/firefox-110.0b9.tar.bz2"; 740 locale = "it"; 741 arch = "linux-i686"; 742 + sha256 = "0f2f16a7d4a1f6ae71f403211d9448597fdb6bf179846e425d03d823eac7b995"; 743 } 744 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/ja/firefox-110.0b9.tar.bz2"; 745 locale = "ja"; 746 arch = "linux-i686"; 747 + sha256 = "2ca0bc651b02daa555ca4a065454181e14096da0c375a181d2ff87fb2d2ed1f8"; 748 } 749 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/ka/firefox-110.0b9.tar.bz2"; 750 locale = "ka"; 751 arch = "linux-i686"; 752 + sha256 = "4f941d02ddc7a1222418565b243bae82d0d214dbaf2040280632ef2f5c1e734d"; 753 } 754 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/kab/firefox-110.0b9.tar.bz2"; 755 locale = "kab"; 756 arch = "linux-i686"; 757 + sha256 = "6c53d1419966645bcf88ae4aec7cf858b91c1185d5041cdb04e822931dac4bbe"; 758 } 759 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/kk/firefox-110.0b9.tar.bz2"; 760 locale = "kk"; 761 arch = "linux-i686"; 762 + sha256 = "934e6b854b47155cdc46e189442fbf41e1d1de2ba828f3c63009c3a1d43ff29e"; 763 } 764 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/km/firefox-110.0b9.tar.bz2"; 765 locale = "km"; 766 arch = "linux-i686"; 767 + sha256 = "6809d8143e23e73861a3ac998aabc12027e91cffd8e963a55da041c3940365e7"; 768 } 769 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/kn/firefox-110.0b9.tar.bz2"; 770 locale = "kn"; 771 arch = "linux-i686"; 772 + sha256 = "8be5a243efc4887a44a3440bd3c894f0c45a67fa510bf1648f44e5640f0d44c7"; 773 } 774 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/ko/firefox-110.0b9.tar.bz2"; 775 locale = "ko"; 776 arch = "linux-i686"; 777 + sha256 = "b965d61600c1abf44428478f4eb92f7e3e2dd276e79402be0bd4023feba935b1"; 778 } 779 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/lij/firefox-110.0b9.tar.bz2"; 780 locale = "lij"; 781 arch = "linux-i686"; 782 + sha256 = "bdefa9af4a13b676bf7c818ac4efcb9a5f2a2d12705d7ba36571792be0695f20"; 783 } 784 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/lt/firefox-110.0b9.tar.bz2"; 785 locale = "lt"; 786 arch = "linux-i686"; 787 + sha256 = "c73514da05816640f9ce48e778814d257a3004e12970f57354454daa89966a73"; 788 } 789 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/lv/firefox-110.0b9.tar.bz2"; 790 locale = "lv"; 791 arch = "linux-i686"; 792 + sha256 = "e7d75dc5dcd6e546e180f8652faae7f4a9185ce08988734385baecd405434751"; 793 } 794 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/mk/firefox-110.0b9.tar.bz2"; 795 locale = "mk"; 796 arch = "linux-i686"; 797 + sha256 = "ce0be71233cb425fe048733efa8752a97b735f87eacc9745d6876dabb2fb86bc"; 798 } 799 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/mr/firefox-110.0b9.tar.bz2"; 800 locale = "mr"; 801 arch = "linux-i686"; 802 + sha256 = "827c6b9756972ba8d50650b561913942655a8526250729a73f2be1db2b8cce33"; 803 } 804 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/ms/firefox-110.0b9.tar.bz2"; 805 locale = "ms"; 806 arch = "linux-i686"; 807 + sha256 = "c6bb360c3c75b120d1b60eb4e0b036fb4b740482279bbbd7901c27fba5c54d4e"; 808 } 809 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/my/firefox-110.0b9.tar.bz2"; 810 locale = "my"; 811 arch = "linux-i686"; 812 + sha256 = "7ca65e1306d0a81cedc065e65974b891dadc8b5a253239c68b92e8356e1e803e"; 813 } 814 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/nb-NO/firefox-110.0b9.tar.bz2"; 815 locale = "nb-NO"; 816 arch = "linux-i686"; 817 + sha256 = "168e9939831e146176542fb61d3e86b05a5cfc911143e6f639563f7f0f3e6be1"; 818 } 819 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/ne-NP/firefox-110.0b9.tar.bz2"; 820 locale = "ne-NP"; 821 arch = "linux-i686"; 822 + sha256 = "7618535a3942c7cdd9eebd7e07095e70ec8500aec641de7cbe1279cc6a65b5ce"; 823 } 824 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/nl/firefox-110.0b9.tar.bz2"; 825 locale = "nl"; 826 arch = "linux-i686"; 827 + sha256 = "a8232e3ca17a2bc13bc16f44ccaca500005aa8a6ab26302d10af6c7d145a942d"; 828 } 829 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/nn-NO/firefox-110.0b9.tar.bz2"; 830 locale = "nn-NO"; 831 arch = "linux-i686"; 832 + sha256 = "b0713aa09bf6329abaa77791777d4a128e20c3279d07665912fc528524e7479f"; 833 } 834 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/oc/firefox-110.0b9.tar.bz2"; 835 locale = "oc"; 836 arch = "linux-i686"; 837 + sha256 = "830744f6015dafb560d4e9957467864d91f534c8a6646558bc6391f62f213949"; 838 } 839 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/pa-IN/firefox-110.0b9.tar.bz2"; 840 locale = "pa-IN"; 841 arch = "linux-i686"; 842 + sha256 = "655100186a68188c159a0927bba75d6534e932dd6ce613c91ca48649eea49aa6"; 843 } 844 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/pl/firefox-110.0b9.tar.bz2"; 845 locale = "pl"; 846 arch = "linux-i686"; 847 + sha256 = "2ddcc433c1072c76f76601c259063b3e582a690f47ebf79d49186582e6aab3f7"; 848 } 849 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/pt-BR/firefox-110.0b9.tar.bz2"; 850 locale = "pt-BR"; 851 arch = "linux-i686"; 852 + sha256 = "57bc3a85b39d738d54f9326e693c99f0125f8ffe1e380023b55d372afb4c7c80"; 853 } 854 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/pt-PT/firefox-110.0b9.tar.bz2"; 855 locale = "pt-PT"; 856 arch = "linux-i686"; 857 + sha256 = "7c6169bebb351077bb7e290d4448eaa97d12c964eacb890d1ede10c2f5d76d8e"; 858 } 859 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/rm/firefox-110.0b9.tar.bz2"; 860 locale = "rm"; 861 arch = "linux-i686"; 862 + sha256 = "0d870b54174229b3763dcae71b2b3198a426c230d3598cf619505e1ed35d6add"; 863 } 864 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/ro/firefox-110.0b9.tar.bz2"; 865 locale = "ro"; 866 arch = "linux-i686"; 867 + sha256 = "5cf581dbf61a962c255fb52a1072de263c00da1be74771525649469d2a9fd3ee"; 868 } 869 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/ru/firefox-110.0b9.tar.bz2"; 870 locale = "ru"; 871 arch = "linux-i686"; 872 + sha256 = "852eacf7321fef6bf9ba241028a0026370dd9fbbb0be77e82bb8068a98677aed"; 873 } 874 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/sco/firefox-110.0b9.tar.bz2"; 875 locale = "sco"; 876 arch = "linux-i686"; 877 + sha256 = "0069ed75e547a028f6140678d93356ed2be04e896d502a74c45b4e66e1dfa509"; 878 } 879 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/si/firefox-110.0b9.tar.bz2"; 880 locale = "si"; 881 arch = "linux-i686"; 882 + sha256 = "9efcd39e2194b5ad1ff94c17d948a293bbede4c8b5eb9dc3b22d79064a93c4d4"; 883 } 884 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/sk/firefox-110.0b9.tar.bz2"; 885 locale = "sk"; 886 arch = "linux-i686"; 887 + sha256 = "81f963046d3400bcc95ada2c114e0a7a8d852b10a79297d51c42cd4144499ed1"; 888 } 889 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/sl/firefox-110.0b9.tar.bz2"; 890 locale = "sl"; 891 arch = "linux-i686"; 892 + sha256 = "8c18f9736f2c647286f4a594b769364e2f78fbbc60c3ea0d30bba25675f6bbf3"; 893 } 894 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/son/firefox-110.0b9.tar.bz2"; 895 locale = "son"; 896 arch = "linux-i686"; 897 + sha256 = "dc563e36867cc4b66a644b21b76b39eca8208dbef75dda5591a2cf7fd1d3fd4f"; 898 } 899 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/sq/firefox-110.0b9.tar.bz2"; 900 locale = "sq"; 901 arch = "linux-i686"; 902 + sha256 = "7e6ecb27a4827dcbe8b69a9dd1333e18e059b93134fe09560ad36a7a3cd487cf"; 903 } 904 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/sr/firefox-110.0b9.tar.bz2"; 905 locale = "sr"; 906 arch = "linux-i686"; 907 + sha256 = "25506c620fc67d533d67508431e451fbc966c0f51d0d95fff019e726201d151a"; 908 } 909 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/sv-SE/firefox-110.0b9.tar.bz2"; 910 locale = "sv-SE"; 911 arch = "linux-i686"; 912 + sha256 = "67a96f19b8abdd776f33e7a7ea6d38325b256930da884e57286df7978868ec0a"; 913 } 914 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/szl/firefox-110.0b9.tar.bz2"; 915 locale = "szl"; 916 arch = "linux-i686"; 917 + sha256 = "c1cae0cb88b9025fee9a23f1ea6a3654d9c0d81f37e34f6b693f0b79c55e03e7"; 918 } 919 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/ta/firefox-110.0b9.tar.bz2"; 920 locale = "ta"; 921 arch = "linux-i686"; 922 + sha256 = "10affe60eae4746154f4659fe0e305f2588d0baafcd898e01bd2031237623060"; 923 } 924 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/te/firefox-110.0b9.tar.bz2"; 925 locale = "te"; 926 arch = "linux-i686"; 927 + sha256 = "907f1beeb68fca20a2635e42cd2849f89a828e5033d64a8e6df9f9b99ab5d85b"; 928 } 929 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/th/firefox-110.0b9.tar.bz2"; 930 locale = "th"; 931 arch = "linux-i686"; 932 + sha256 = "fc3f884d44c2df1c8e78ac21297f8e06dd8d9ae88e6346b318fb1bda8d432c23"; 933 } 934 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/tl/firefox-110.0b9.tar.bz2"; 935 locale = "tl"; 936 arch = "linux-i686"; 937 + sha256 = "ccec6a6f0e0571d0048a137d3a01f3183912740a58ad1d71903eee0b3839e4ba"; 938 } 939 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/tr/firefox-110.0b9.tar.bz2"; 940 locale = "tr"; 941 arch = "linux-i686"; 942 + sha256 = "faff586ab4b72727307a0f5d94ac2adefb8e854bf9519b158fc04b61cb03aa96"; 943 } 944 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/trs/firefox-110.0b9.tar.bz2"; 945 locale = "trs"; 946 arch = "linux-i686"; 947 + sha256 = "1ee44718fbfa37b936f029174deaa809b52a79eebf721da789724cb1fc5d98f1"; 948 } 949 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/uk/firefox-110.0b9.tar.bz2"; 950 locale = "uk"; 951 arch = "linux-i686"; 952 + sha256 = "420ec9e9cb8f76f17c35c7fd7ffdfbad9fcd6ee6a99d576c21dbafd729967a8b"; 953 } 954 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/ur/firefox-110.0b9.tar.bz2"; 955 locale = "ur"; 956 arch = "linux-i686"; 957 + sha256 = "cb9653c4a616f34cb2ae31d48f91d0e129354e0846aeaba200120f1314b13193"; 958 } 959 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/uz/firefox-110.0b9.tar.bz2"; 960 locale = "uz"; 961 arch = "linux-i686"; 962 + sha256 = "2197bf705b85a4767ccea51845bb2f79b0b8a3ba6458fa49c8d70673cb9ddfe6"; 963 } 964 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/vi/firefox-110.0b9.tar.bz2"; 965 locale = "vi"; 966 arch = "linux-i686"; 967 + sha256 = "afde552ce97783f075d400ca7703d80f6182ffe96c18ec239bc28917ddf6fb59"; 968 } 969 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/xh/firefox-110.0b9.tar.bz2"; 970 locale = "xh"; 971 arch = "linux-i686"; 972 + sha256 = "42dc4fbb837bcf1d206628f8a38f78814aa9b8db992389f98b4dee7cb9e39fb7"; 973 } 974 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/zh-CN/firefox-110.0b9.tar.bz2"; 975 locale = "zh-CN"; 976 arch = "linux-i686"; 977 + sha256 = "506437149ec7a6ca45b645b8635cedad6c6f540731ff3cba1de8cde944e507c9"; 978 } 979 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b9/linux-i686/zh-TW/firefox-110.0b9.tar.bz2"; 980 locale = "zh-TW"; 981 arch = "linux-i686"; 982 + sha256 = "ef860460d4322058a70741f32c5b5935ede0e2aee84299d165210ae987e27824"; 983 } 984 ]; 985 }
+17 -21
pkgs/applications/networking/cluster/terraform-providers/providers.json
··· 1 { 2 "aci": { 3 - "deleteVendor": true, 4 - "hash": "sha256-vTDuSZjO3ZHCUBaIYB7fvXvBPYywGJy307x2rCejOzk=", 5 "homepage": "https://registry.terraform.io/providers/CiscoDevNet/aci", 6 "owner": "CiscoDevNet", 7 - "proxyVendor": true, 8 "repo": "terraform-provider-aci", 9 - "rev": "v2.6.0", 10 "spdx": "MPL-2.0", 11 - "vendorHash": "sha256-dEnQa1GaYrx2jxsRSJWlMmy1hGsXACsp+5PtGmSDL6E=" 12 }, 13 "acme": { 14 "hash": "sha256-fK34A45plTqtOYGbq8CAtFnyMYOvdOKFycY7X5ZlRRY=", ··· 130 "vendorHash": null 131 }, 132 "azurerm": { 133 - "hash": "sha256-eDlRnJUo561edblydjBGePJzMFRqtEqKnS+8HOhKGdA=", 134 "homepage": "https://registry.terraform.io/providers/hashicorp/azurerm", 135 "owner": "hashicorp", 136 "repo": "terraform-provider-azurerm", 137 - "rev": "v3.41.0", 138 "spdx": "MPL-2.0", 139 "vendorHash": null 140 }, ··· 148 "vendorHash": null 149 }, 150 "baiducloud": { 151 - "deleteVendor": true, 152 "hash": "sha256-CYU8PI/gMVC9lMiQaPd/M1SKjvZ6vaj5iBfLDTieZR4=", 153 "homepage": "https://registry.terraform.io/providers/baidubce/baiducloud", 154 "owner": "baidubce", 155 "repo": "terraform-provider-baiducloud", 156 "rev": "v1.19.4", 157 "spdx": "MPL-2.0", 158 - "vendorHash": "sha256-3PLBs8LSE5JPtrhmdx+jQsnCrfZQQEUGA7wnf9M72yY=" 159 }, 160 "bigip": { 161 "hash": "sha256-nlk3ckrLNtPQ9s8uQ2jvARinPVF+A2T0IUY2rBcUFDk=", ··· 424 "vendorHash": "sha256-uWTY8cFztXFrQQ7GW6/R+x9M6vHmsb934ldq+oeW5vk=" 425 }, 426 "github": { 427 - "hash": "sha256-o/kJwByQDXgbazZPoYW4YeV7BK4Bb3pwQhnWMhW4klE=", 428 "homepage": "https://registry.terraform.io/providers/integrations/github", 429 "owner": "integrations", 430 "repo": "terraform-provider-github", 431 - "rev": "v5.16.0", 432 "spdx": "MIT", 433 "vendorHash": null 434 }, ··· 700 "hash": "sha256-2YqziG5HZbD/Io/vKYZFZK1PFYVYHOjzHah7s3xEtR0=", 701 "homepage": "https://registry.terraform.io/providers/terraform-lxd/lxd", 702 "owner": "terraform-lxd", 703 - "proxyVendor": true, 704 "repo": "terraform-provider-lxd", 705 "rev": "v1.9.0", 706 "spdx": "MPL-2.0", 707 - "vendorHash": "sha256-omaslX89hMAdIppBfILsGO6133Q3UgihgiJcy/Gn83M=" 708 }, 709 "mailgun": { 710 "hash": "sha256-r1E2Y5JRu77T29ebUNTXUEypnrsfYYbBhvpKZGt5T9w=", ··· 969 "vendorHash": null 970 }, 971 "scaleway": { 972 - "hash": "sha256-k02p6eoo152SWalGCX4iXhkE5xN55HpQ9A31j7wuIPE=", 973 "homepage": "https://registry.terraform.io/providers/scaleway/scaleway", 974 "owner": "scaleway", 975 "repo": "terraform-provider-scaleway", 976 - "rev": "v2.9.1", 977 "spdx": "MPL-2.0", 978 - "vendorHash": "sha256-FbWLXt7MFn/86NlSwCYpSV/6Ft3xRcESoNcVxM1A4ng=" 979 }, 980 "secret": { 981 "hash": "sha256-MmAnA/4SAPqLY/gYcJSTnEttQTsDd2kEdkQjQj6Bb+A=", ··· 1095 "vendorHash": "sha256-2wPmLpjhG6QgG+BUCO0oIzHjBOWIOYuptgdtSIm9TZw=" 1096 }, 1097 "tencentcloud": { 1098 - "hash": "sha256-CLXW1takpsySUo8lpDe6DzRFczts1zRriHZge5uCb3A=", 1099 "homepage": "https://registry.terraform.io/providers/tencentcloudstack/tencentcloud", 1100 "owner": "tencentcloudstack", 1101 "repo": "terraform-provider-tencentcloud", 1102 - "rev": "v1.79.6", 1103 "spdx": "MPL-2.0", 1104 "vendorHash": null 1105 }, ··· 1168 "vendorHash": null 1169 }, 1170 "utils": { 1171 - "hash": "sha256-gJUnsuRRDrnFUSoqDugJQPAGl/V3GBDQq9i+pE87wVE=", 1172 "homepage": "https://registry.terraform.io/providers/cloudposse/utils", 1173 "owner": "cloudposse", 1174 "repo": "terraform-provider-utils", 1175 - "rev": "1.7.0", 1176 "spdx": "Apache-2.0", 1177 - "vendorHash": "sha256-4V2StvyVj8fRZo5iRrpojMW36VDswOhLaBNDfrvH00s=" 1178 }, 1179 "vault": { 1180 "hash": "sha256-aNyCUDV1yjpmbPNYlxuJNaiXtG3fJySxRsDLJx/hZ04=",
··· 1 { 2 "aci": { 3 + "hash": "sha256-rgPqf8PopvzXiIOjng7DNOv920MPI81EVMUu3DaS8o4=", 4 "homepage": "https://registry.terraform.io/providers/CiscoDevNet/aci", 5 "owner": "CiscoDevNet", 6 "repo": "terraform-provider-aci", 7 + "rev": "v2.6.1", 8 "spdx": "MPL-2.0", 9 + "vendorHash": null 10 }, 11 "acme": { 12 "hash": "sha256-fK34A45plTqtOYGbq8CAtFnyMYOvdOKFycY7X5ZlRRY=", ··· 128 "vendorHash": null 129 }, 130 "azurerm": { 131 + "hash": "sha256-eZwQsvIXYwpx/uLJKmYnNaOFWBue1ADeyhVbvl3fAy0=", 132 "homepage": "https://registry.terraform.io/providers/hashicorp/azurerm", 133 "owner": "hashicorp", 134 "repo": "terraform-provider-azurerm", 135 + "rev": "v3.42.0", 136 "spdx": "MPL-2.0", 137 "vendorHash": null 138 }, ··· 146 "vendorHash": null 147 }, 148 "baiducloud": { 149 "hash": "sha256-CYU8PI/gMVC9lMiQaPd/M1SKjvZ6vaj5iBfLDTieZR4=", 150 "homepage": "https://registry.terraform.io/providers/baidubce/baiducloud", 151 "owner": "baidubce", 152 "repo": "terraform-provider-baiducloud", 153 "rev": "v1.19.4", 154 "spdx": "MPL-2.0", 155 + "vendorHash": null 156 }, 157 "bigip": { 158 "hash": "sha256-nlk3ckrLNtPQ9s8uQ2jvARinPVF+A2T0IUY2rBcUFDk=", ··· 421 "vendorHash": "sha256-uWTY8cFztXFrQQ7GW6/R+x9M6vHmsb934ldq+oeW5vk=" 422 }, 423 "github": { 424 + "hash": "sha256-QobAIpDDl5SXG9hmpdq8lDm8Sg5w2oK4A+e8WKw52Cc=", 425 "homepage": "https://registry.terraform.io/providers/integrations/github", 426 "owner": "integrations", 427 "repo": "terraform-provider-github", 428 + "rev": "v5.17.0", 429 "spdx": "MIT", 430 "vendorHash": null 431 }, ··· 697 "hash": "sha256-2YqziG5HZbD/Io/vKYZFZK1PFYVYHOjzHah7s3xEtR0=", 698 "homepage": "https://registry.terraform.io/providers/terraform-lxd/lxd", 699 "owner": "terraform-lxd", 700 "repo": "terraform-provider-lxd", 701 "rev": "v1.9.0", 702 "spdx": "MPL-2.0", 703 + "vendorHash": "sha256-CLr28g/uI9ZU4xIcA76v/BX6gJV91elvFIlYFoSxkfw=" 704 }, 705 "mailgun": { 706 "hash": "sha256-r1E2Y5JRu77T29ebUNTXUEypnrsfYYbBhvpKZGt5T9w=", ··· 965 "vendorHash": null 966 }, 967 "scaleway": { 968 + "hash": "sha256-tLSTRoiqhi+CbdF8fmNLNMYN7FrDeoK/5XXyqCJnUKk=", 969 "homepage": "https://registry.terraform.io/providers/scaleway/scaleway", 970 "owner": "scaleway", 971 "repo": "terraform-provider-scaleway", 972 + "rev": "v2.10.0", 973 "spdx": "MPL-2.0", 974 + "vendorHash": "sha256-cT9W2fP56TPOIoxWBWF0VXDuSKXZsJNs/GPpBq/0zZs=" 975 }, 976 "secret": { 977 "hash": "sha256-MmAnA/4SAPqLY/gYcJSTnEttQTsDd2kEdkQjQj6Bb+A=", ··· 1091 "vendorHash": "sha256-2wPmLpjhG6QgG+BUCO0oIzHjBOWIOYuptgdtSIm9TZw=" 1092 }, 1093 "tencentcloud": { 1094 + "hash": "sha256-QJUxLwKG3XabACbAvLLKBG9+cmCYRQFpRTWRU6rKwfI=", 1095 "homepage": "https://registry.terraform.io/providers/tencentcloudstack/tencentcloud", 1096 "owner": "tencentcloudstack", 1097 "repo": "terraform-provider-tencentcloud", 1098 + "rev": "v1.79.7", 1099 "spdx": "MPL-2.0", 1100 "vendorHash": null 1101 }, ··· 1164 "vendorHash": null 1165 }, 1166 "utils": { 1167 + "hash": "sha256-nLi6aczJdADzdYNJaZldUOFFjgf3ujDdRrhSCuphIn8=", 1168 "homepage": "https://registry.terraform.io/providers/cloudposse/utils", 1169 "owner": "cloudposse", 1170 "repo": "terraform-provider-utils", 1171 + "rev": "1.7.1", 1172 "spdx": "Apache-2.0", 1173 + "vendorHash": "sha256-yTcroKTdYv0O8cX80A451I1vjYclVjA8P69fsb0wY/U=" 1174 }, 1175 "vault": { 1176 "hash": "sha256-aNyCUDV1yjpmbPNYlxuJNaiXtG3fJySxRsDLJx/hZ04=",
+2 -2
pkgs/applications/networking/cluster/terragrunt/default.nix
··· 5 6 buildGoModule rec { 7 pname = "terragrunt"; 8 - version = "0.43.0"; 9 10 src = fetchFromGitHub { 11 owner = "gruntwork-io"; 12 repo = pname; 13 rev = "refs/tags/v${version}"; 14 - hash = "sha256-GOYSFhKfe8+9YBNyfCEUDCMssH9cXZi1S/KJTqPgBhY="; 15 }; 16 17 vendorHash = "sha256-niU6DGKNhSV+nm+8jIP//AItBu5eWTasyeL/ADvY2zA=";
··· 5 6 buildGoModule rec { 7 pname = "terragrunt"; 8 + version = "0.43.2"; 9 10 src = fetchFromGitHub { 11 owner = "gruntwork-io"; 12 repo = pname; 13 rev = "refs/tags/v${version}"; 14 + hash = "sha256-PojwY5sLfO8n1obyb9aHp0ym5RDD6SLLth4977gTc+U="; 15 }; 16 17 vendorHash = "sha256-niU6DGKNhSV+nm+8jIP//AItBu5eWTasyeL/ADvY2zA=";
+2 -2
pkgs/applications/networking/instant-messengers/telegram/tdesktop/default.nix
··· 75 in 76 env.mkDerivation rec { 77 pname = "telegram-desktop"; 78 - version = "4.5.3"; 79 # Note: Update via pkgs/applications/networking/instant-messengers/telegram/tdesktop/update.py 80 81 # Telegram-Desktop with submodules ··· 84 repo = "tdesktop"; 85 rev = "v${version}"; 86 fetchSubmodules = true; 87 - sha256 = "060ajv9dd87qs202jr09i842vww1x25mg7vriyvmyw6rz0qf0d8l"; 88 }; 89 90 postPatch = ''
··· 75 in 76 env.mkDerivation rec { 77 pname = "telegram-desktop"; 78 + version = "4.6.0"; 79 # Note: Update via pkgs/applications/networking/instant-messengers/telegram/tdesktop/update.py 80 81 # Telegram-Desktop with submodules ··· 84 repo = "tdesktop"; 85 rev = "v${version}"; 86 fetchSubmodules = true; 87 + sha256 = "1kwg286mbpf0gj57702fqddmyn5iihzny3da425psnwa10s217yf"; 88 }; 89 90 postPatch = ''
+8 -5
pkgs/applications/networking/p2p/storrent/default.nix
··· 1 { lib, buildGoModule, fetchFromGitHub }: 2 3 buildGoModule rec { 4 - pname = "storrent-unstable"; 5 - version = "2021-10-10"; 6 7 src = fetchFromGitHub { 8 owner = "jech"; 9 repo = "storrent"; 10 - rev = "681733cf74de08bea251ada672ea8c666eb1b679"; 11 - sha256 = "0grrqgawswb44fahf40060jl691rlyccwlqkljvgy8mzzw1kjzj4"; 12 }; 13 14 - vendorSha256 = "0sz2fz7bqgwd5i7sacyxs7bmb8ly6xrxrakqi9c446vzlkh898hj"; 15 16 meta = with lib; { 17 homepage = "https://github.com/jech/storrent"; 18 description = "An implementation of the BitTorrent protocol that is optimised for streaming media"; 19 license = licenses.mit; 20 maintainers = [ maintainers.marsam ]; 21 }; 22 }
··· 1 { lib, buildGoModule, fetchFromGitHub }: 2 3 buildGoModule rec { 4 + pname = "storrent"; 5 + version = "unstable-2023-01-14"; 6 7 src = fetchFromGitHub { 8 owner = "jech"; 9 repo = "storrent"; 10 + rev = "86270ee777a19a521f8898a179485e0347f90ce0"; 11 + hash = "sha256-JYNtuyk4hhe1jZgY/5Bz91Ropdw/U7n1VKHYkdUjZ0I="; 12 }; 13 14 + vendorHash = "sha256-iPKZPXsa6ya29N/u9QYd5LAm42+FtHZLGStRDxsAxe4="; 15 + 16 + ldflags = [ "-s" "-w" ]; 17 18 meta = with lib; { 19 homepage = "https://github.com/jech/storrent"; 20 description = "An implementation of the BitTorrent protocol that is optimised for streaming media"; 21 license = licenses.mit; 22 + platforms = platforms.linux; 23 maintainers = [ maintainers.marsam ]; 24 }; 25 }
+15 -5
pkgs/applications/science/electronics/openboardview/default.nix
··· 9 , fontconfig 10 , gtk3 11 , wrapGAppsHook 12 }: 13 14 stdenv.mkDerivation rec { 15 pname = "openboardview"; 16 version = "9.0.3"; ··· 24 }; 25 26 nativeBuildInputs = [ cmake pkg-config python3 wrapGAppsHook ]; 27 - buildInputs = [ SDL2 fontconfig gtk3 ]; 28 29 postPatch = '' 30 substituteInPlace src/openboardview/CMakeLists.txt \ 31 --replace "SDL2::SDL2main" "" 32 ''; 33 34 cmakeFlags = [ ··· 37 ]; 38 39 dontWrapGApps = true; 40 - postFixup = '' 41 - wrapGApp "$out/bin/${pname}" \ 42 - --prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [ gtk3 ]} 43 ''; 44 45 passthru.updateScript = gitUpdater { ··· 50 description = "Linux SDL/ImGui edition software for viewing .brd files"; 51 homepage = "https://github.com/OpenBoardView/OpenBoardView"; 52 license = licenses.mit; 53 - platforms = platforms.linux; 54 maintainers = with maintainers; [ k3a ]; 55 }; 56 }
··· 9 , fontconfig 10 , gtk3 11 , wrapGAppsHook 12 + , darwin 13 }: 14 15 + let 16 + inherit (darwin.apple_sdk.frameworks) Cocoa; 17 + in 18 stdenv.mkDerivation rec { 19 pname = "openboardview"; 20 version = "9.0.3"; ··· 28 }; 29 30 nativeBuildInputs = [ cmake pkg-config python3 wrapGAppsHook ]; 31 + buildInputs = [ SDL2 fontconfig gtk3 ] ++ lib.optionals stdenv.isDarwin [ 32 + Cocoa 33 + ]; 34 35 postPatch = '' 36 substituteInPlace src/openboardview/CMakeLists.txt \ 37 --replace "SDL2::SDL2main" "" 38 + substituteInPlace CMakeLists.txt --replace "fixup_bundle" "#fixup_bundle" 39 ''; 40 41 cmakeFlags = [ ··· 44 ]; 45 46 dontWrapGApps = true; 47 + postFixup = lib.optionalString stdenv.isDarwin '' 48 + mkdir -p "$out/Applications" 49 + mv "$out/openboardview.app" "$out/Applications/OpenBoardView.app" 50 + '' + lib.optionalString (!stdenv.isDarwin) '' 51 + wrapGApp "$out/bin/${pname}" \ 52 + --prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [ gtk3 ]} 53 ''; 54 55 passthru.updateScript = gitUpdater { ··· 60 description = "Linux SDL/ImGui edition software for viewing .brd files"; 61 homepage = "https://github.com/OpenBoardView/OpenBoardView"; 62 license = licenses.mit; 63 + platforms = platforms.unix; 64 maintainers = with maintainers; [ k3a ]; 65 }; 66 }
+57
pkgs/applications/version-management/scriv/default.nix
···
··· 1 + { lib 2 + , python3 3 + , fetchPypi 4 + , pandoc 5 + , git 6 + , scriv 7 + , testers 8 + }: 9 + 10 + python3.pkgs.buildPythonApplication rec { 11 + pname = "scriv"; 12 + version = "1.2.0"; 13 + 14 + src = fetchPypi { 15 + inherit pname version; 16 + hash = "sha256-u2HDD+pzFYpNGMKLu1eCHDCCRWg++w2Je9ReSnhWtHI="; 17 + }; 18 + 19 + propagatedBuildInputs = with python3.pkgs; [ 20 + attrs 21 + click 22 + click-log 23 + jinja2 24 + requests 25 + ] ++ lib.optionals (python3.pythonOlder "3.11") [ 26 + tomli 27 + ]; 28 + 29 + nativeCheckInputs = with python3.pkgs; [ 30 + pytestCheckHook 31 + coverage 32 + freezegun 33 + pudb 34 + pytest-mock 35 + responses 36 + pyyaml 37 + 38 + pandoc 39 + git 40 + ]; 41 + disabledTests = [ 42 + # assumes we have checked out the full repo (including remotes) 43 + "test_real_get_github_repos" 44 + ]; 45 + 46 + passthru.tests = { 47 + version = testers.testVersion { package = scriv; }; 48 + }; 49 + 50 + meta = { 51 + description = "Command-line tool for helping developers maintain useful changelogs."; 52 + homepage = "https://github.com/nedbat/scriv"; 53 + changelog = "https://github.com/nedbat/scriv/releases/tag/${version}"; 54 + license = lib.licenses.asl20; 55 + maintainers = with lib.maintainers; [ amesgen ]; 56 + }; 57 + }
+80
pkgs/applications/window-managers/miriway/default.nix
···
··· 1 + { stdenv 2 + , lib 3 + , fetchFromGitHub 4 + , unstableGitUpdater 5 + , nixosTests 6 + , cmake 7 + , pkg-config 8 + , mir 9 + , libxkbcommon 10 + }: 11 + 12 + stdenv.mkDerivation rec { 13 + pname = "miriway"; 14 + version = "unstable-2022-12-18"; 15 + 16 + src = fetchFromGitHub { 17 + owner = "Miriway"; 18 + repo = "Miriway"; 19 + rev = "d294c303cb99b7becb0d6686be9a09f0a1f57596"; 20 + hash = "sha256-H+IZgI1IQxNl5yAygbDKXkyXajGHV/mp9gEqZcp0TeE="; 21 + }; 22 + 23 + postPatch = '' 24 + substituteInPlace CMakeLists.txt \ 25 + --replace "\''${CMAKE_INSTALL_PREFIX}/bin" "\''${CMAKE_INSTALL_BINDIR}" \ 26 + --replace "/usr/share" "\''${CMAKE_INSTALL_DATADIR}" \ 27 + --replace "/etc" "\''${CMAKE_INSTALL_SYSCONFDIR}" 28 + 29 + sed -i -e '/project(/a include(GNUInstallDirs)' CMakeLists.txt 30 + ''; 31 + 32 + strictDeps = true; 33 + 34 + nativeBuildInputs = [ 35 + cmake 36 + pkg-config 37 + ]; 38 + 39 + buildInputs = [ 40 + mir 41 + libxkbcommon 42 + ]; 43 + 44 + passthru = { 45 + updateScript = unstableGitUpdater { }; 46 + providedSessions = [ "miriway" ]; 47 + tests = { 48 + inherit (nixosTests) miriway; 49 + }; 50 + }; 51 + 52 + meta = with lib; { 53 + description = "Mir based Wayland compositor"; 54 + longDescription = '' 55 + Miriway is a starting point for creating a Wayland based desktop environment using Mir. 56 + 57 + At the core of Miriway is miriway-shell, a Mir based Wayland compositor that provides: 58 + 59 + - A "floating windows" window managament policy; 60 + - Support for Wayland (and via Xwayland) X11 applications; 61 + - Dynamic workspaces; 62 + - Additional Wayland support for "shell components" such as panels and docs; and, 63 + - Configurable shortcuts for launching standard apps such as launcher and terminal emulator. 64 + 65 + In addition to miriway-shell, Miriway has: 66 + 67 + - A "terminal emulator finder" script miriway-terminal, that works with most terminal emulators; 68 + - A launch script miriway to simplify starting Miriway; 69 + - A default configuration file miriway-shell.config; and, 70 + - A greeter configuration miriway.desktop so Miriway can be selected at login 71 + 72 + Miriway has been tested with shell components from several desktop environments and there are notes on 73 + enabling these in miriway-shell.config. 74 + ''; 75 + homepage = "https://github.com/Miriway/Miriway"; 76 + license = licenses.gpl3Only; 77 + platforms = platforms.linux; 78 + maintainers = with maintainers; [ OPNA2608 ]; 79 + }; 80 + }
+2 -2
pkgs/data/fonts/samim-fonts/default.nix
··· 2 3 stdenvNoCC.mkDerivation rec { 4 pname = "samim-fonts"; 5 - version = "4.0.4"; 6 7 src = fetchFromGitHub { 8 owner = "rastikerdar"; 9 repo = "samim-font"; 10 rev = "v${version}"; 11 - hash = "sha256-erT8iV5YHbEN47nEE5p5CbQYUgm8daOjymLAWF4fpVk="; 12 }; 13 14 installPhase = ''
··· 2 3 stdenvNoCC.mkDerivation rec { 4 pname = "samim-fonts"; 5 + version = "4.0.5"; 6 7 src = fetchFromGitHub { 8 owner = "rastikerdar"; 9 repo = "samim-font"; 10 rev = "v${version}"; 11 + hash = "sha256-DVBMsNOVAVwzlZ3cDus/3CSsC05bLZalQ2KeueEvwXs="; 12 }; 13 14 installPhase = ''
+2 -2
pkgs/development/libraries/faudio/default.nix
··· 4 5 stdenv.mkDerivation rec { 6 pname = "faudio"; 7 - version = "23.01"; 8 9 src = fetchFromGitHub { 10 owner = "FNA-XNA"; 11 repo = "FAudio"; 12 rev = version; 13 - sha256 = "sha256-/XfwQUkhn82vAKa7ZyiPbD4c7XJhCIncxvWkj/m2P0M="; 14 }; 15 16 nativeBuildInputs = [cmake];
··· 4 5 stdenv.mkDerivation rec { 6 pname = "faudio"; 7 + version = "23.02"; 8 9 src = fetchFromGitHub { 10 owner = "FNA-XNA"; 11 repo = "FAudio"; 12 rev = version; 13 + sha256 = "sha256-ycBwkFPzmOMG3umsznVtmE4MXunqCdjPpHgV73T/PMY="; 14 }; 15 16 nativeBuildInputs = [cmake];
+22 -26
pkgs/development/libraries/rocfft/default.nix
··· 19 }: 20 21 let 22 - rocfft = stdenv.mkDerivation (finalAttrs: { 23 pname = "rocfft"; 24 version = "5.4.2"; 25 ··· 112 }; 113 }); 114 115 - rocfft-zero = runCommand "rocfft-zero" { preferLocalBuild = true; } '' 116 - mkdir -p $out 117 - cp -a ${rocfft}/lib/librocfft-device-0* $out 118 ''; 119 120 - rocfft-one = runCommand "rocfft-one" { preferLocalBuild = true; } '' 121 - mkdir -p $out 122 - cp -a ${rocfft}/lib/librocfft-device-1* $out 123 ''; 124 125 - rocfft-two = runCommand "rocfft-two" { preferLocalBuild = true; } '' 126 - mkdir -p $out 127 - cp -a ${rocfft}/lib/librocfft-device-2* $out 128 ''; 129 130 - rocfft-three = runCommand "rocfft-three" { preferLocalBuild = true; } '' 131 - mkdir -p $out 132 - cp -a ${rocfft}/lib/librocfft-device-3* $out 133 ''; 134 in stdenv.mkDerivation { 135 - inherit (rocfft) pname version outputs src passthru meta; 136 137 dontUnpack = true; 138 dontPatch = true; ··· 143 runHook preInstall 144 145 mkdir -p $out/lib 146 - 147 - for path in ${rocfft-zero} ${rocfft-one} ${rocfft-two} ${rocfft-three}; do 148 - cp -as $path/* $out/lib 149 - done 150 - 151 - cp -an ${rocfft}/* $out 152 '' + lib.optionalString buildTests '' 153 - cp -a ${rocfft.test} $test 154 '' + lib.optionalString buildBenchmarks '' 155 - cp -a ${rocfft.benchmark} $benchmark 156 '' + '' 157 runHook postInstall 158 ''; ··· 160 # Fix paths 161 preFixup = '' 162 substituteInPlace $out/include/*.h $out/rocfft/include/*.h \ 163 - --replace "${rocfft}" "$out" 164 165 patchelf --set-rpath \ 166 - $(patchelf --print-rpath $out/lib/librocfft.so | sed 's,${rocfft}/lib,'"$out/lib"',') \ 167 $out/lib/librocfft.so 168 '' + lib.optionalString buildTests '' 169 patchelf --set-rpath \ 170 - $(patchelf --print-rpath $test/bin/rocfft-test | sed 's,${rocfft}/lib,'"$out/lib"',') \ 171 $test/bin/rocfft-test 172 '' + lib.optionalString buildBenchmarks '' 173 patchelf --set-rpath \ 174 - $(patchelf --print-rpath $benchmark/bin/rocfft-rider | sed 's,${rocfft}/lib,'"$out/lib"',') \ 175 $benchmark/bin/rocfft-rider 176 ''; 177 }
··· 19 }: 20 21 let 22 + # This is over 3GB, to allow hydra caching we separate it 23 + rf = stdenv.mkDerivation (finalAttrs: { 24 pname = "rocfft"; 25 version = "5.4.2"; 26 ··· 113 }; 114 }); 115 116 + rf-zero = runCommand "librocfft-device-0.so.0.1" { preferLocalBuild = true; } '' 117 + cp -a ${rf}/lib/$name $out 118 ''; 119 120 + rf-one = runCommand "librocfft-device-1.so.0.1" { preferLocalBuild = true; } '' 121 + cp -a ${rf}/lib/$name $out 122 ''; 123 124 + rf-two = runCommand "librocfft-device-2.so.0.1" { preferLocalBuild = true; } '' 125 + cp -a ${rf}/lib/$name $out 126 ''; 127 128 + rf-three = runCommand "librocfft-device-3.so.0.1" { preferLocalBuild = true; } '' 129 + cp -a ${rf}/lib/$name $out 130 ''; 131 in stdenv.mkDerivation { 132 + inherit (rf) pname version outputs src passthru meta; 133 134 dontUnpack = true; 135 dontPatch = true; ··· 140 runHook preInstall 141 142 mkdir -p $out/lib 143 + cp -as ${rf-zero} $out/lib/${rf-zero.name} 144 + cp -as ${rf-one} $out/lib/${rf-one.name} 145 + cp -as ${rf-two} $out/lib/${rf-two.name} 146 + cp -as ${rf-three} $out/lib/${rf-three.name} 147 + cp -an ${rf}/* $out 148 '' + lib.optionalString buildTests '' 149 + cp -a ${rf.test} $test 150 '' + lib.optionalString buildBenchmarks '' 151 + cp -a ${rf.benchmark} $benchmark 152 '' + '' 153 runHook postInstall 154 ''; ··· 156 # Fix paths 157 preFixup = '' 158 substituteInPlace $out/include/*.h $out/rocfft/include/*.h \ 159 + --replace "${rf}" "$out" 160 161 patchelf --set-rpath \ 162 + $(patchelf --print-rpath $out/lib/librocfft.so | sed 's,${rf}/lib,'"$out/lib"',') \ 163 $out/lib/librocfft.so 164 '' + lib.optionalString buildTests '' 165 patchelf --set-rpath \ 166 + $(patchelf --print-rpath $test/bin/rocfft-test | sed 's,${rf}/lib,'"$out/lib"',') \ 167 $test/bin/rocfft-test 168 '' + lib.optionalString buildBenchmarks '' 169 patchelf --set-rpath \ 170 + $(patchelf --print-rpath $benchmark/bin/rocfft-rider | sed 's,${rf}/lib,'"$out/lib"',') \ 171 $benchmark/bin/rocfft-rider 172 ''; 173 }
+2 -2
pkgs/development/python-modules/ansible-compat/default.nix
··· 12 13 buildPythonPackage rec { 14 pname = "ansible-compat"; 15 - version = "2.2.7"; 16 format = "pyproject"; 17 18 src = fetchPypi { 19 inherit pname version; 20 - sha256 = "sha256-CN7dzQodxrqr5nSwfG/4ghGEksEj0oH1bwGQUnGn/8Q="; 21 }; 22 23 nativeBuildInputs = [
··· 12 13 buildPythonPackage rec { 14 pname = "ansible-compat"; 15 + version = "3.0.1"; 16 format = "pyproject"; 17 18 src = fetchPypi { 19 inherit pname version; 20 + sha256 = "sha256-19xeS3+t6bc3XFaKJEdbe+gQJMrCogyu8yYO8LUSh7Q="; 21 }; 22 23 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/ansible/default.nix
··· 20 21 let 22 pname = "ansible"; 23 - version = "7.1.0"; 24 in 25 buildPythonPackage { 26 inherit pname version; ··· 30 31 src = fetchPypi { 32 inherit pname version; 33 - sha256 = "sha256-HkcjjEqp5owMU2ej/XB7psOUm0qvkSsGRArXjdK/AY0="; 34 }; 35 36 postPatch = ''
··· 20 21 let 22 pname = "ansible"; 23 + version = "7.2.0"; 24 in 25 buildPythonPackage { 26 inherit pname version; ··· 30 31 src = fetchPypi { 32 inherit pname version; 33 + sha256 = "sha256-YOLBpY8c6zShkLfDgPezOG0ec2kGGVSx+LjKPfdgY8w="; 34 }; 35 36 postPatch = ''
+2 -2
pkgs/development/python-modules/dataset/default.nix
··· 9 10 buildPythonPackage rec { 11 pname = "dataset"; 12 - version = "1.5.2"; 13 format = "setuptools"; 14 15 disabled = pythonOlder "3.7"; 16 17 src = fetchPypi { 18 inherit pname version; 19 - hash = "sha256-TDZ6fAqFxOdI79o07uMAw/zD8HbHXDKQt0mnoFM1yEc="; 20 }; 21 22 propagatedBuildInputs = [
··· 9 10 buildPythonPackage rec { 11 pname = "dataset"; 12 + version = "1.6.0"; 13 format = "setuptools"; 14 15 disabled = pythonOlder "3.7"; 16 17 src = fetchPypi { 18 inherit pname version; 19 + hash = "sha256-fNvJBdZjtYKvhGzwULfP2iDNUrqhxiwRlhlFrHfmGdU="; 20 }; 21 22 propagatedBuildInputs = [
+54
pkgs/development/python-modules/peewee-migrate/default.nix
···
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , pythonOlder 5 + 6 + # runtime 7 + , cached-property 8 + , click 9 + , peewee 10 + 11 + # tests 12 + , psycopg2 13 + , pytestCheckHook 14 + }: 15 + 16 + buildPythonPackage rec { 17 + pname = "peewee-migrate"; 18 + version = "1.6.6"; 19 + format = "setuptools"; 20 + 21 + src = fetchFromGitHub { 22 + owner = "klen"; 23 + repo = "peewee_migrate"; 24 + rev = "refs/tags/${version}"; 25 + hash = "sha256-gUtxsvPj8pwzijia313d553j9U2LP5vKJHxVU1SqsV8="; 26 + }; 27 + 28 + postPatch = '' 29 + sed -i '/addopts/d' setup.cfg 30 + ''; 31 + 32 + propagatedBuildInputs = [ 33 + peewee 34 + click 35 + ] ++ lib.optionals (pythonOlder "3.8") [ 36 + cached-property 37 + ]; 38 + 39 + pythonImportsCheck = [ 40 + "peewee_migrate" 41 + ]; 42 + 43 + nativeCheckInputs = [ 44 + psycopg2 45 + pytestCheckHook 46 + ]; 47 + 48 + meta = with lib; { 49 + description = "Simple migration engine for Peewee"; 50 + homepage = "https://github.com/klen/peewee_migrate"; 51 + license = licenses.bsd3; 52 + maintainers = with maintainers; [ hexa ]; 53 + }; 54 + }
+2 -2
pkgs/development/python-modules/pikepdf/default.nix
··· 24 25 buildPythonPackage rec { 26 pname = "pikepdf"; 27 - version = "6.2.8"; 28 format = "setuptools"; 29 30 disabled = pythonOlder "3.7"; ··· 39 postFetch = '' 40 rm "$out/.git_archival.txt" 41 ''; 42 - hash = "sha256-0E+kkvxT1jLfoBg3C9BfbSqfIX3K/Z5kK1kCdOks2Hk="; 43 }; 44 45 patches = [
··· 24 25 buildPythonPackage rec { 26 pname = "pikepdf"; 27 + version = "6.2.9"; 28 format = "setuptools"; 29 30 disabled = pythonOlder "3.7"; ··· 39 postFetch = '' 40 rm "$out/.git_archival.txt" 41 ''; 42 + hash = "sha256-Obsg5fsTv/7uiFRbzGp90+d90e2dX7CWMMRMgiQvNyc="; 43 }; 44 45 patches = [
+2 -2
pkgs/development/python-modules/pyrogram/default.nix
··· 10 11 buildPythonPackage rec { 12 pname = "pyrogram"; 13 - version = "2.0.62"; 14 15 disabled = pythonOlder "3.7"; 16 ··· 20 owner = "pyrogram"; 21 repo = "pyrogram"; 22 rev = "v${version}"; 23 - hash = "sha256-Kex9xIjcAYCzHeqWoDAIgTMuih0s42/O2zfTYxWEqbM="; 24 }; 25 26 propagatedBuildInputs = [
··· 10 11 buildPythonPackage rec { 12 pname = "pyrogram"; 13 + version = "2.0.97"; 14 15 disabled = pythonOlder "3.7"; 16 ··· 20 owner = "pyrogram"; 21 repo = "pyrogram"; 22 rev = "v${version}"; 23 + hash = "sha256-cYwH2o2ss8qnOST8Cjh+88PNM5NTO2B11PW7mWS1ctk="; 24 }; 25 26 propagatedBuildInputs = [
+33
pkgs/development/python-modules/qpageview/default.nix
···
··· 1 + { lib 2 + , fetchFromGitHub 3 + , buildPythonPackage 4 + , python3Packages 5 + , pythonOlder 6 + }: 7 + 8 + python3Packages.buildPythonPackage rec { 9 + pname = "qpageview"; 10 + version = "0.6.2"; 11 + format = "setuptools"; 12 + 13 + disabled = pythonOlder "3.6"; 14 + 15 + src = fetchFromGitHub { 16 + owner = "frescobaldi"; 17 + repo = pname; 18 + rev = "v${version}"; 19 + hash = "sha256-XFMTOD7ums8sbFHUViEI9q6/rCjUmEtXAdd3/OmLsHU="; 20 + }; 21 + 22 + propagatedBuildInputs = with python3Packages; [ pyqt5 poppler-qt5 pycups ]; 23 + 24 + pythonImportsCheck = [ "qpageview" ]; 25 + 26 + meta = with lib; { 27 + description = "A page-based viewer widget for Qt5/PyQt5"; 28 + homepage = "https://github.com/frescobaldi/qpageview"; 29 + changelog = "https://github.com/frescobaldi/qpageview/blob/${src.rev}/ChangeLog"; 30 + license = licenses.gpl3Only; 31 + maintainers = with maintainers; [ camillemndn ]; 32 + }; 33 + }
+2 -2
pkgs/development/python-modules/trimesh/default.nix
··· 6 7 buildPythonPackage rec { 8 pname = "trimesh"; 9 - version = "3.18.1"; 10 11 src = fetchPypi { 12 inherit pname version; 13 - sha256 = "sha256-8Jw5YmHsATchcchiPqxqxA+PYgl7elqZLqG8vTu/b0k="; 14 }; 15 16 propagatedBuildInputs = [ numpy ];
··· 6 7 buildPythonPackage rec { 8 pname = "trimesh"; 9 + version = "3.18.3"; 10 11 src = fetchPypi { 12 inherit pname version; 13 + sha256 = "sha256-lVoBBBrzyhrSmR2FM0xo8UJBCOShwaYOrIpeAwQn76M="; 14 }; 15 16 propagatedBuildInputs = [ numpy ];
+2 -2
pkgs/development/python-modules/trove-classifiers/default.nix
··· 8 9 buildPythonPackage rec { 10 pname = "trove-classifiers"; 11 - version = "2023.1.12"; 12 format = "setuptools"; 13 14 disabled = pythonOlder "3.7"; 15 16 src = fetchPypi { 17 inherit pname version; 18 - hash = "sha256-66Rg2DJg/PNkjXyKy/IgQ0T9eF+JD7rstoZKf7nwaS4="; 19 }; 20 21 nativeBuildInputs = [
··· 8 9 buildPythonPackage rec { 10 pname = "trove-classifiers"; 11 + version = "2023.1.20"; 12 format = "setuptools"; 13 14 disabled = pythonOlder "3.7"; 15 16 src = fetchPypi { 17 inherit pname version; 18 + hash = "sha256-7T/U4dLqd8qe03k4BYJWbmADpU1wo+VSGpsqeJZgk2I="; 19 }; 20 21 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/twitchapi/default.nix
··· 9 10 buildPythonPackage rec { 11 pname = "twitchapi"; 12 - version = "3.4.1"; 13 14 disabled = pythonOlder "3.7"; 15 ··· 18 src = fetchPypi { 19 pname = "twitchAPI"; 20 inherit version; 21 - hash = "sha256-q35ijx4zDR07k9al11T1H7SPYG9M8g8+rD/TNrkL2Ek="; 22 }; 23 24 propagatedBuildInputs = [
··· 9 10 buildPythonPackage rec { 11 pname = "twitchapi"; 12 + version = "3.7.0"; 13 14 disabled = pythonOlder "3.7"; 15 ··· 18 src = fetchPypi { 19 pname = "twitchAPI"; 20 inherit version; 21 + hash = "sha256-zmMzHuaSsuj2MxkmQyzROrZ/zxO0/I7llKlnpZzauDw="; 22 }; 23 24 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/webauthn/default.nix
··· 11 12 buildPythonPackage rec { 13 pname = "webauthn"; 14 - version = "1.6.0"; 15 format = "setuptools"; 16 17 disabled = pythonOlder "3.7"; ··· 20 owner = "duo-labs"; 21 repo = "py_webauthn"; 22 rev = "refs/tags/v${version}"; 23 - hash = "sha256-Ts0zKnQg1EaBNB9xQmzOpEVwDSFwHNjIhEP1jTwEOFI="; 24 }; 25 26 propagatedBuildInputs = [
··· 11 12 buildPythonPackage rec { 13 pname = "webauthn"; 14 + version = "1.7.0"; 15 format = "setuptools"; 16 17 disabled = pythonOlder "3.7"; ··· 20 owner = "duo-labs"; 21 repo = "py_webauthn"; 22 rev = "refs/tags/v${version}"; 23 + hash = "sha256-iAEvWFxJGf4H2PEseG+ykt9sriGyNvbmj4+NZFcPGPk="; 24 }; 25 26 propagatedBuildInputs = [
+2 -2
pkgs/development/tools/ddosify/default.nix
··· 2 3 buildGoModule rec { 4 pname = "ddosify"; 5 - version = "0.13.1"; 6 7 src = fetchFromGitHub { 8 owner = pname; 9 repo = pname; 10 rev = "v${version}"; 11 - sha256 = "sha256-bS/7S4PxZSTYvxLFmC486PBHNhkGUIPAnUJQztp3ouw="; 12 }; 13 14 vendorHash = "sha256-3y5ppTtvGqwWhgnVBpP4gf26DHKPnSNYK4jfhBiYDwY=";
··· 2 3 buildGoModule rec { 4 pname = "ddosify"; 5 + version = "0.13.2"; 6 7 src = fetchFromGitHub { 8 owner = pname; 9 repo = pname; 10 rev = "v${version}"; 11 + sha256 = "sha256-56VznyGZtSYKyjQRej1QduG/99OYObYNmplsGSckgKg="; 12 }; 13 14 vendorHash = "sha256-3y5ppTtvGqwWhgnVBpP4gf26DHKPnSNYK4jfhBiYDwY=";
+3 -3
pkgs/development/tools/documentation/mdsh/default.nix
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "mdsh"; 5 - version = "0.6.0"; 6 7 src = fetchFromGitHub { 8 owner = "zimbatm"; 9 repo = "mdsh"; 10 rev = "v${version}"; 11 - sha256 = "1ki6w3qf8ipcf7ch5120mj16vs7yan8k9zjd25v8x6vbsd1iccgy"; 12 }; 13 14 - cargoSha256 = "0x5fd47rjmzzmwgj14gbj0rbxwbphd7f63mis4ivwlwc9ikjxdxb"; 15 16 meta = with lib; { 17 description = "Markdown shell pre-processor";
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "mdsh"; 5 + version = "0.7.0"; 6 7 src = fetchFromGitHub { 8 owner = "zimbatm"; 9 repo = "mdsh"; 10 rev = "v${version}"; 11 + hash = "sha256-Y8ss/aw01zpgM6Z6fCGshP21kcdSOTVG/VqL8H3tlls="; 12 }; 13 14 + cargoSha256 = "sha256-8o4gN6mqUU+o80IqlAYAD5qpZBSQ/FY5HoNbpwzTm0A="; 15 16 meta = with lib; { 17 description = "Markdown shell pre-processor";
+2 -2
pkgs/development/tools/okteto/default.nix
··· 2 3 buildGoModule rec { 4 pname = "okteto"; 5 - version = "2.11.1"; 6 7 src = fetchFromGitHub { 8 owner = "okteto"; 9 repo = "okteto"; 10 rev = version; 11 - hash = "sha256-Eprsy/wd5lMBXk3yVGhofYD9ZBfdmjGMwXZ61RMgd4k="; 12 }; 13 14 vendorHash = "sha256-Yi+4fGCHLH/kA4DuPI2uQ/27xhMd4cPFkTWlI6Bc13A=";
··· 2 3 buildGoModule rec { 4 pname = "okteto"; 5 + version = "2.12.0"; 6 7 src = fetchFromGitHub { 8 owner = "okteto"; 9 repo = "okteto"; 10 rev = version; 11 + hash = "sha256-0pnPffvKcBpBir0l6rpp7iVbF9XlMTCG2mifzYkEQ7s="; 12 }; 13 14 vendorHash = "sha256-Yi+4fGCHLH/kA4DuPI2uQ/27xhMd4cPFkTWlI6Bc13A=";
+3 -3
pkgs/development/tools/ruff/default.nix
··· 8 9 rustPlatform.buildRustPackage rec { 10 pname = "ruff"; 11 - version = "0.0.240"; 12 13 src = fetchFromGitHub { 14 owner = "charliermarsh"; 15 repo = pname; 16 rev = "v${version}"; 17 - sha256 = "sha256-10pGcvMz+5obtk1lo2pg3D/VtBDhsVRsCZ+Tg1lp3qM="; 18 }; 19 20 - cargoSha256 = "sha256-4u05UeMw0dX0A1SjFsaUvFgPPAFbCS4POrsZuePEafc="; 21 22 nativeBuildInputs = [ 23 installShellFiles
··· 8 9 rustPlatform.buildRustPackage rec { 10 pname = "ruff"; 11 + version = "0.0.241"; 12 13 src = fetchFromGitHub { 14 owner = "charliermarsh"; 15 repo = pname; 16 rev = "v${version}"; 17 + sha256 = "sha256-yrwrkU19LBM3gac70Y1UamZTdamuJdrMX4U88zGgJJs="; 18 }; 19 20 + cargoSha256 = "sha256-RzGYh0zspP+sG7k+XwDy9kaTIGIEoOEV3ZoqVf0X0GA="; 21 22 nativeBuildInputs = [ 23 installShellFiles
+3 -3
pkgs/development/tools/zed/default.nix
··· 5 6 buildGoModule rec { 7 pname = "zed"; 8 - version = "1.4.0"; 9 10 src = fetchFromGitHub { 11 owner = "brimdata"; 12 repo = pname; 13 rev = "v${version}"; 14 - sha256 = "sha256-ias2HKwZo5Q/0M4YZI4wLgzMVWmannruXlhp8IsOuyU="; 15 }; 16 17 - vendorHash = "sha256-h5NYx6xhIh4i/tS5cGHXBomnVZCUn8jJuzL6k1+IdKk="; 18 19 subPackages = [ "cmd/zed" "cmd/zq" ]; 20
··· 5 6 buildGoModule rec { 7 pname = "zed"; 8 + version = "1.5.0"; 9 10 src = fetchFromGitHub { 11 owner = "brimdata"; 12 repo = pname; 13 rev = "v${version}"; 14 + sha256 = "sha256-er3BPQ10ERCIBn0xx0jjyMBybnUBMyX76tqYEYe2WYQ="; 15 }; 16 17 + vendorHash = "sha256-3PyyR9d5m33ohbcstREvTOtWwMIrbFNvFyBY1F+6R+4="; 18 19 subPackages = [ "cmd/zed" "cmd/zq" ]; 20
+3 -3
pkgs/misc/fastly/default.nix
··· 8 9 buildGoModule rec { 10 pname = "fastly"; 11 - version = "5.1.0"; 12 13 src = fetchFromGitHub { 14 owner = "fastly"; 15 repo = "cli"; 16 rev = "refs/tags/v${version}"; 17 - hash = "sha256-IbLSNgf4uB8JFNsCXkmkK+w4qhirpd8/ALEfVzGCTUA="; 18 # The git commit is part of the `fastly version` original output; 19 # leave that output the same in nixpkgs. Use the `.git` directory 20 # to retrieve the commit SHA, and remove the directory afterwards, ··· 31 "cmd/fastly" 32 ]; 33 34 - vendorHash = "sha256-fBU7829heM6T6Ba2r984qdd19VCuOP72jYwYCP7ECBU="; 35 36 nativeBuildInputs = [ 37 installShellFiles
··· 8 9 buildGoModule rec { 10 pname = "fastly"; 11 + version = "5.1.1"; 12 13 src = fetchFromGitHub { 14 owner = "fastly"; 15 repo = "cli"; 16 rev = "refs/tags/v${version}"; 17 + hash = "sha256-gPToEeLymKIRjL52wb5AjMpDM6vU0Yb0rbcpouev4rQ="; 18 # The git commit is part of the `fastly version` original output; 19 # leave that output the same in nixpkgs. Use the `.git` directory 20 # to retrieve the commit SHA, and remove the directory afterwards, ··· 31 "cmd/fastly" 32 ]; 33 34 + vendorHash = "sha256-yyptdLkC0x2npZu2oEbvSJXIWShnSrQ0n6cPrDUlrCw="; 35 36 nativeBuildInputs = [ 37 installShellFiles
+2 -2
pkgs/servers/home-automation/evcc/default.nix
··· 16 17 buildGoModule rec { 18 pname = "evcc"; 19 - version = "0.112.0"; 20 21 src = fetchFromGitHub { 22 owner = "evcc-io"; 23 repo = pname; 24 rev = version; 25 - hash = "sha256-v8qYQLYBZJSXENJXqwxp0JeA1wuWMLCs8kOK6FOoa9c="; 26 }; 27 28 vendorHash = "sha256-sfASvLsNUp+7T0ib87HkLNBDp5fbk3hEV0LIKK46O4g=";
··· 16 17 buildGoModule rec { 18 pname = "evcc"; 19 + version = "0.112.1"; 20 21 src = fetchFromGitHub { 22 owner = "evcc-io"; 23 repo = pname; 24 rev = version; 25 + hash = "sha256-Y/Py7WTv8tiPdbPswpVhqpBW5l2XJB7T3KDm+xWfl8s="; 26 }; 27 28 vendorHash = "sha256-sfASvLsNUp+7T0ib87HkLNBDp5fbk3hEV0LIKK46O4g=";
+4 -15
pkgs/servers/mail/vsmtp/default.nix
··· 1 { lib 2 , rustPlatform 3 , fetchFromGitHub 4 - , fetchpatch 5 , installShellFiles 6 , testers 7 , vsmtp ··· 9 10 rustPlatform.buildRustPackage rec { 11 pname = "vsmtp"; 12 - version = "2.0.0"; 13 14 src = fetchFromGitHub { 15 owner = "viridIT"; 16 repo = "vsmtp"; 17 rev = "v${version}"; 18 - hash = "sha256-uyu2NpHFDqJDcfQukG6TdRH7KuZnrYTULvLiABdvAog="; 19 }; 20 21 - patches = [ 22 - # https://github.com/viridIT/vSMTP/pull/952 23 - # treewide: set GIT_HASH to unknown if git rev-parse HEAD fails 24 - (fetchpatch { 25 - url = "https://github.com/viridIT/vSMTP/commit/0ac4820c079e459f515825dfb451980119eaae9e.patch"; 26 - includes = [ "src/vsmtp/vsmtp-core/build.rs" "src/vqueue/build.rs" ]; 27 - hash = "sha256-kGjXsVokP6039rksaxw1EM/0zOlKIus1EaIEsFJvLE8="; 28 - }) 29 - ]; 30 - 31 - cargoHash = "sha256-A0Q6ciZJL13VzJgZIWZalrRElSNGHUN/9b8Csj4Tdak="; 32 33 nativeBuildInputs = [ installShellFiles ]; 34 35 - # too many upstream failures 36 doCheck = false; 37 38 postInstall = ''
··· 1 { lib 2 , rustPlatform 3 , fetchFromGitHub 4 , installShellFiles 5 , testers 6 , vsmtp ··· 8 9 rustPlatform.buildRustPackage rec { 10 pname = "vsmtp"; 11 + version = "2.1.0"; 12 13 src = fetchFromGitHub { 14 owner = "viridIT"; 15 repo = "vsmtp"; 16 rev = "v${version}"; 17 + hash = "sha256-FI4BvU+83nTzRLJQZ1l1eOn41ZeA62Db+p3d//5o0Wk="; 18 }; 19 20 + cargoHash = "sha256-Qhhh0riM1qeD3/JZINvY0t5fEOj+prI0fyXagdR43sc="; 21 22 nativeBuildInputs = [ installShellFiles ]; 23 24 + # tests do not run well in the nix sandbox 25 doCheck = false; 26 27 postInstall = ''
+8 -6
pkgs/servers/openvscode-server/default.nix
··· 1 { lib, stdenv, fetchFromGitHub, buildGoModule, makeWrapper, runCommand 2 , cacert, moreutils, jq, git, pkg-config, yarn, python3 3 - , esbuild, nodejs-16_x-openssl_1_1, libsecret, xorg, ripgrep 4 , AppKit, Cocoa, Security, cctools }: 5 6 let 7 system = stdenv.hostPlatform.system; 8 9 - nodejs = nodejs-16_x-openssl_1_1; 10 yarn' = yarn.override { inherit nodejs; }; 11 defaultYarnOpts = [ "frozen-lockfile" "non-interactive" "no-progress"]; 12 ··· 40 41 in stdenv.mkDerivation rec { 42 pname = "openvscode-server"; 43 - version = "1.73.1"; 44 45 src = fetchFromGitHub { 46 owner = "gitpod-io"; 47 repo = "openvscode-server"; 48 rev = "openvscode-server-v${version}"; 49 - sha256 = "DZWAzNRRRZ/eElwRGvSK7TxstKK6X1Tj+uAxD4SOScQ="; 50 }; 51 52 yarnCache = stdenv.mkDerivation { 53 name = "${pname}-${version}-${system}-yarn-cache"; 54 inherit src; 55 - nativeBuildInputs = [ cacert yarn git ]; 56 buildPhase = '' 57 export HOME=$PWD 58 ··· 69 70 outputHashMode = "recursive"; 71 outputHashAlgo = "sha256"; 72 - outputHash = "sha256-7UBXigQj7c+fuHPIM5BbRe02DuL+cs6VbQ/D84Yk8i4="; 73 }; 74 75 nativeBuildInputs = [ ··· 142 jq "del(.scripts) | .gypfile = false" ./package.json | sponge ./package.json 143 popd 144 '' + '' 145 # rebuild binaries, we use npm here, as yarn does not provide an alternative 146 # that would not attempt to try to reinstall everything and break our 147 # patching attempts
··· 1 { lib, stdenv, fetchFromGitHub, buildGoModule, makeWrapper, runCommand 2 , cacert, moreutils, jq, git, pkg-config, yarn, python3 3 + , esbuild, nodejs-16_x, libsecret, xorg, ripgrep 4 , AppKit, Cocoa, Security, cctools }: 5 6 let 7 system = stdenv.hostPlatform.system; 8 9 + nodejs = nodejs-16_x; 10 yarn' = yarn.override { inherit nodejs; }; 11 defaultYarnOpts = [ "frozen-lockfile" "non-interactive" "no-progress"]; 12 ··· 40 41 in stdenv.mkDerivation rec { 42 pname = "openvscode-server"; 43 + version = "1.74.3"; 44 45 src = fetchFromGitHub { 46 owner = "gitpod-io"; 47 repo = "openvscode-server"; 48 rev = "openvscode-server-v${version}"; 49 + sha256 = "2+/5I0dpQsmoWA7Q0dCgPO85dkOKQWHeO34cueH4sjQ="; 50 }; 51 52 yarnCache = stdenv.mkDerivation { 53 name = "${pname}-${version}-${system}-yarn-cache"; 54 inherit src; 55 + nativeBuildInputs = [ cacert yarn' git ]; 56 buildPhase = '' 57 export HOME=$PWD 58 ··· 69 70 outputHashMode = "recursive"; 71 outputHashAlgo = "sha256"; 72 + outputHash = "sha256-4B/ESi4lM2p+pY0dfUKWgwmYkwqPYaNuCLJ99ByjwWE="; 73 }; 74 75 nativeBuildInputs = [ ··· 142 jq "del(.scripts) | .gypfile = false" ./package.json | sponge ./package.json 143 popd 144 '' + '' 145 + export NODE_OPTIONS=--openssl-legacy-provider 146 + 147 # rebuild binaries, we use npm here, as yarn does not provide an alternative 148 # that would not attempt to try to reinstall everything and break our 149 # patching attempts
+4 -3
pkgs/servers/web-apps/vikunja/api.nix
··· 2 3 buildGoModule rec { 4 pname = "vikunja-api"; 5 - version = "0.20.1"; 6 7 src = fetchFromGitea { 8 domain = "kolaente.dev"; 9 owner = "vikunja"; 10 repo = "api"; 11 rev = "v${version}"; 12 - sha256 = "sha256-KBUN/vBm2st5mfqmrwUv8w4QcgSKerfY51LQbWRn7To="; 13 }; 14 15 nativeBuildInputs = ··· 24 ''; 25 in [ fakeGit mage ]; 26 27 - vendorSha256 = "sha256-ke4jhOhD24zSpQI1nxKoJ05yN/SfCku+wiNuDKr78rw="; 28 29 # checks need to be disabled because of needed internet for some checks 30 doCheck = false; ··· 48 passthru.tests.vikunja = nixosTests.vikunja; 49 50 meta = { 51 description = "API of the Vikunja to-do list app"; 52 homepage = "https://vikunja.io/"; 53 license = lib.licenses.agpl3Plus;
··· 2 3 buildGoModule rec { 4 pname = "vikunja-api"; 5 + version = "0.20.2"; 6 7 src = fetchFromGitea { 8 domain = "kolaente.dev"; 9 owner = "vikunja"; 10 repo = "api"; 11 rev = "v${version}"; 12 + sha256 = "sha256-VSzjP6fC9zxUnY3ZhapRUXUS4V7+BVvXJKrxm71CK4o="; 13 }; 14 15 nativeBuildInputs = ··· 24 ''; 25 in [ fakeGit mage ]; 26 27 + vendorSha256 = "sha256-8qaEMHBZcop1wH3tmNKAAMEYA4qrE6dlwxhRsCDeZaY="; 28 29 # checks need to be disabled because of needed internet for some checks 30 doCheck = false; ··· 48 passthru.tests.vikunja = nixosTests.vikunja; 49 50 meta = { 51 + changelog = "https://kolaente.dev/vikunja/api/src/tag/v${version}/CHANGELOG.md"; 52 description = "API of the Vikunja to-do list app"; 53 homepage = "https://vikunja.io/"; 54 license = lib.licenses.agpl3Plus;
+4 -2
pkgs/servers/web-apps/vikunja/frontend.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "vikunja-frontend"; 5 - version = "0.20.2"; 6 src = fetchurl { 7 url = "https://dl.vikunja.io/frontend/${pname}-${version}.zip"; 8 - sha256 = "sha256-7WvitR40eJPPdqwZm8C7spvEIdFIY3SGc/w4VY7spgk="; 9 }; 10 11 nativeBuildInputs = [ unzip ]; ··· 24 passthru.tests.vikunja = nixosTests.vikunja; 25 26 meta = { 27 description = "Frontend of the Vikunja to-do list app"; 28 homepage = "https://vikunja.io/"; 29 license = lib.licenses.agpl3Plus;
··· 2 3 stdenv.mkDerivation rec { 4 pname = "vikunja-frontend"; 5 + version = "0.20.3"; 6 + 7 src = fetchurl { 8 url = "https://dl.vikunja.io/frontend/${pname}-${version}.zip"; 9 + sha256 = "sha256-+VtdgbJaXcPlO70Gqsur6osBb7iAvVnPv2iaHbs2Rmk="; 10 }; 11 12 nativeBuildInputs = [ unzip ]; ··· 25 passthru.tests.vikunja = nixosTests.vikunja; 26 27 meta = { 28 + changelog = "https://kolaente.dev/vikunja/frontend/src/tag/v${version}/CHANGELOG.md"; 29 description = "Frontend of the Vikunja to-do list app"; 30 homepage = "https://vikunja.io/"; 31 license = lib.licenses.agpl3Plus;
+2 -2
pkgs/tools/audio/abcmidi/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "abcMIDI"; 5 - version = "2023.01.08"; 6 7 src = fetchzip { 8 url = "https://ifdo.ca/~seymour/runabc/${pname}-${version}.zip"; 9 - hash = "sha256-PUaGjZFMYwG9BduIgmzhi5DTkGfSN9VtAUkqrAZ2xbo="; 10 }; 11 12 meta = with lib; {
··· 2 3 stdenv.mkDerivation rec { 4 pname = "abcMIDI"; 5 + version = "2023.01.21"; 6 7 src = fetchzip { 8 url = "https://ifdo.ca/~seymour/runabc/${pname}-${version}.zip"; 9 + hash = "sha256-BantnVvIGJ3BKAKjK/6JQS1Kk1E8PDJFP/WuOjYbSy8="; 10 }; 11 12 meta = with lib; {
+3 -3
pkgs/tools/misc/nurl/default.nix
··· 12 13 rustPlatform.buildRustPackage rec { 14 pname = "nurl"; 15 - version = "0.3.6"; 16 17 src = fetchFromGitHub { 18 owner = "nix-community"; 19 repo = "nurl"; 20 rev = "v${version}"; 21 - hash = "sha256-AJHmHTkKHd99GCBlVv2t8Q9kUlCtOcK+ukYzEs5U3S4="; 22 }; 23 24 - cargoSha256 = "sha256-0QUuYNzKN8dbGiJq2JxElR39zIlqvHXjPzT1dGc6cRM="; 25 26 nativeBuildInputs = [ 27 installShellFiles
··· 12 13 rustPlatform.buildRustPackage rec { 14 pname = "nurl"; 15 + version = "0.3.7"; 16 17 src = fetchFromGitHub { 18 owner = "nix-community"; 19 repo = "nurl"; 20 rev = "v${version}"; 21 + hash = "sha256-TtH0sfWFWe3oYK/8jJslqjrEY5rR7HGAVDD5iQ2+spY="; 22 }; 23 24 + cargoSha256 = "sha256-vwLlqRjiJU3ecLURAZabmIBivYW1zAfMLUhaJzh57ig="; 25 26 nativeBuildInputs = [ 27 installShellFiles
+2 -2
pkgs/tools/networking/dnscrypt-proxy2/default.nix
··· 2 3 buildGoModule rec { 4 pname = "dnscrypt-proxy2"; 5 - version = "2.1.2"; 6 7 vendorSha256 = null; 8 ··· 12 owner = "DNSCrypt"; 13 repo = "dnscrypt-proxy"; 14 rev = version; 15 - sha256 = "sha256-vFUbsgLgwQGb/2rValFRuZXguxyAJzOBMLnbVs0swes="; 16 }; 17 18 meta = with lib; {
··· 2 3 buildGoModule rec { 4 pname = "dnscrypt-proxy2"; 5 + version = "2.1.3"; 6 7 vendorSha256 = null; 8 ··· 12 owner = "DNSCrypt"; 13 repo = "dnscrypt-proxy"; 14 rev = version; 15 + sha256 = "sha256-5wfxjx8SxynY6DpPIvOLwSsBdM/0zSzfaVDQTI/RUD0="; 16 }; 17 18 meta = with lib; {
+31
pkgs/tools/text/mdbook-emojicodes/default.nix
···
··· 1 + { lib 2 + , rustPlatform 3 + , fetchFromGitHub 4 + , stdenv 5 + , darwin 6 + }: 7 + 8 + rustPlatform.buildRustPackage rec { 9 + pname = "mdbook-emojicodes"; 10 + version = "0.1.3"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "blyxyas"; 14 + repo = "mdbook-emojicodes"; 15 + rev = "${version}.1"; 16 + hash = "sha256-SWT01R/+FuzkkOUd/2wpRo0HIaPEtzDelTSh7ewo9gQ="; 17 + }; 18 + 19 + cargoHash = "sha256-z9UKBBCr8R1I9k48JsEBnVokQDfaj9lt+qfIUvJ/5lE="; 20 + 21 + buildInputs = lib.optionals stdenv.isDarwin [ 22 + darwin.apple_sdk.frameworks.CoreFoundation 23 + ]; 24 + 25 + meta = with lib; { 26 + description = "MDBook preprocessor for converting emojicodes (e.g. `: cat :`) into emojis 🐱"; 27 + homepage = "https://github.com/blyxyas/mdbook-emojicodes"; 28 + license = licenses.mit; 29 + maintainers = with maintainers; [ blaggacao ]; 30 + }; 31 + }
+8
pkgs/top-level/all-packages.nix
··· 2482 2483 sakura = callPackage ../applications/terminal-emulators/sakura { }; 2484 2485 st = callPackage ../applications/terminal-emulators/st { 2486 conf = config.st.conf or null; 2487 patches = config.st.patches or []; ··· 9024 mdbook = callPackage ../tools/text/mdbook { 9025 inherit (darwin.apple_sdk.frameworks) CoreServices; 9026 }; 9027 9028 mdbook-epub = callPackage ../tools/text/mdbook-epub { 9029 inherit (darwin.apple_sdk.frameworks) CoreServices; ··· 24881 24882 mir = callPackage ../servers/mir { }; 24883 24884 icinga2 = callPackage ../servers/monitoring/icinga2 { }; 24885 24886 icinga2-agent = callPackage ../servers/monitoring/icinga2 { ··· 34485 terra-station = callPackage ../applications/blockchains/terra-station { }; 34486 34487 tessera = callPackage ../applications/blockchains/tessera { }; 34488 34489 torq = callPackage ../applications/blockchains/torq { }; 34490
··· 2482 2483 sakura = callPackage ../applications/terminal-emulators/sakura { }; 2484 2485 + scriv = callPackage ../applications/version-management/scriv { }; 2486 + 2487 st = callPackage ../applications/terminal-emulators/st { 2488 conf = config.st.conf or null; 2489 patches = config.st.patches or []; ··· 9026 mdbook = callPackage ../tools/text/mdbook { 9027 inherit (darwin.apple_sdk.frameworks) CoreServices; 9028 }; 9029 + 9030 + mdbook-emojicodes = callPackage ../tools/text/mdbook-emojicodes { }; 9031 9032 mdbook-epub = callPackage ../tools/text/mdbook-epub { 9033 inherit (darwin.apple_sdk.frameworks) CoreServices; ··· 24885 24886 mir = callPackage ../servers/mir { }; 24887 24888 + miriway = callPackage ../applications/window-managers/miriway { }; 24889 + 24890 icinga2 = callPackage ../servers/monitoring/icinga2 { }; 24891 24892 icinga2-agent = callPackage ../servers/monitoring/icinga2 { ··· 34491 terra-station = callPackage ../applications/blockchains/terra-station { }; 34492 34493 tessera = callPackage ../applications/blockchains/tessera { }; 34494 + 34495 + ton = callPackage ../applications/blockchains/ton { }; 34496 34497 torq = callPackage ../applications/blockchains/torq { }; 34498
+4
pkgs/top-level/python-packages.nix
··· 6979 6980 peewee = callPackage ../development/python-modules/peewee { }; 6981 6982 pefile = callPackage ../development/python-modules/pefile { }; 6983 6984 pelican = callPackage ../development/python-modules/pelican { ··· 9730 qnap-qsw = callPackage ../development/python-modules/qnap-qsw{ }; 9731 9732 qnapstats = callPackage ../development/python-modules/qnapstats { }; 9733 9734 qrcode = callPackage ../development/python-modules/qrcode { }; 9735
··· 6979 6980 peewee = callPackage ../development/python-modules/peewee { }; 6981 6982 + peewee-migrate = callPackage ../development/python-modules/peewee-migrate { }; 6983 + 6984 pefile = callPackage ../development/python-modules/pefile { }; 6985 6986 pelican = callPackage ../development/python-modules/pelican { ··· 9732 qnap-qsw = callPackage ../development/python-modules/qnap-qsw{ }; 9733 9734 qnapstats = callPackage ../development/python-modules/qnapstats { }; 9735 + 9736 + qpageview = callPackage ../development/python-modules/qpageview { }; 9737 9738 qrcode = callPackage ../development/python-modules/qrcode { }; 9739