lol

Merge master into staging-next

authored by

github-actions[bot] and committed by
GitHub
ffbbb55e 2cc6469b

+2477 -1308
+7
maintainers/maintainer-list.nix
··· 6595 6595 githubId = 20176306; 6596 6596 name = "jammerful"; 6597 6597 }; 6598 + janik = { 6599 + name = "Janik"; 6600 + email = "janik@aq0.de"; 6601 + matrix = "@janik0:matrix.org"; 6602 + github = "Janik-Haag"; 6603 + githubId = 80165193; 6604 + }; 6598 6605 jansol = { 6599 6606 email = "jan.solanti@paivola.fi"; 6600 6607 github = "jansol";
+8
nixos/doc/manual/from_md/release-notes/rl-2305.section.xml
··· 115 115 </listitem> 116 116 <listitem> 117 117 <para> 118 + <link xlink:href="https://dm3mat.darc.de/qdmr/">QDMR</link>, a 119 + gui application and command line tool for programming cheap 120 + DMR radios 121 + <link linkend="opt-programs.qdmr.enable">programs.qdmr</link> 122 + </para> 123 + </listitem> 124 + <listitem> 125 + <para> 118 126 <link xlink:href="https://v2raya.org">v2rayA</link>, a Linux 119 127 web GUI client of Project V which supports V2Ray, Xray, SS, 120 128 SSR, Trojan and Pingtunnel. Available as
+2
nixos/doc/manual/release-notes/rl-2305.section.md
··· 38 38 39 39 - [mmsd](https://gitlab.com/kop316/mmsd), a lower level daemon that transmits and recieves MMSes. Available as [services.mmsd](#opt-services.mmsd.enable). 40 40 41 + - [QDMR](https://dm3mat.darc.de/qdmr/), a gui application and command line tool for programming cheap DMR radios [programs.qdmr](#opt-programs.qdmr.enable) 42 + 41 43 - [v2rayA](https://v2raya.org), a Linux web GUI client of Project V which supports V2Ray, Xray, SS, SSR, Trojan and Pingtunnel. Available as [services.v2raya](options.html#opt-services.v2raya.enable). 42 44 43 45 - [ulogd](https://www.netfilter.org/projects/ulogd/index.html), a userspace logging daemon for netfilter/iptables related logging. Available as [services.ulogd](options.html#opt-services.ulogd.enable).
+1
nixos/modules/module-list.nix
··· 214 214 ./programs/partition-manager.nix 215 215 ./programs/plotinus.nix 216 216 ./programs/proxychains.nix 217 + ./programs/qdmr.nix 217 218 ./programs/qt5ct.nix 218 219 ./programs/rog-control-center.nix 219 220 ./programs/rust-motd.nix
+25
nixos/modules/programs/qdmr.nix
··· 1 + { 2 + config, 3 + lib, 4 + pkgs, 5 + ... 6 + }: 7 + 8 + let 9 + cfg = config.programs.qdmr; 10 + in { 11 + meta.maintainers = [ lib.maintainers.janik ]; 12 + 13 + options = { 14 + programs.qdmr = { 15 + enable = lib.mkEnableOption (lib.mdDoc "QDMR - a GUI application and command line tool for programming DMR radios"); 16 + package = lib.mkPackageOptionMD pkgs "qdmr" { }; 17 + }; 18 + }; 19 + 20 + config = lib.mkIf cfg.enable { 21 + environment.systemPackages = [ cfg.package ]; 22 + services.udev.packages = [ cfg.package ]; 23 + users.groups.wireshark = {}; 24 + }; 25 + }
+4
nixos/modules/services/home-automation/home-assistant.nix
··· 438 438 "aranet" 439 439 "bluemaestro" 440 440 "bluetooth" 441 + "bluetooth_adapters" 441 442 "bluetooth_le_tracker" 442 443 "bluetooth_tracker" 443 444 "bthome" 444 445 "default_config" 445 446 "eq3btsmart" 447 + "eufylife_ble" 446 448 "esphome" 447 449 "fjaraskupan" 448 450 "govee_ble" ··· 452 454 "led_ble" 453 455 "melnor" 454 456 "moat" 457 + "mopeka" 455 458 "oralb" 456 459 "qingping" 460 + "ruuvi_gateway" 457 461 "ruuvitag_ble" 458 462 "sensirion_ble" 459 463 "sensorpro"
+1 -1
nixos/modules/services/web-servers/nginx/default.nix
··· 117 117 # used by most other Linux distributions by default. 118 118 include ${pkgs.mailcap}/etc/nginx/mime.types; 119 119 # When recommendedOptimisation is disabled nginx fails to start because the mailmap mime.types database 120 - # contains 1026 enries and the default is only 1024. Setting to a higher number to remove the need to 120 + # contains 1026 entries and the default is only 1024. Setting to a higher number to remove the need to 121 121 # overwrite it because nginx does not allow duplicated settings. 122 122 types_hash_max_size 4096; 123 123
+1
nixos/tests/all-tests.nix
··· 753 753 zigbee2mqtt = handleTest ./zigbee2mqtt.nix {}; 754 754 zoneminder = handleTest ./zoneminder.nix {}; 755 755 zookeeper = handleTest ./zookeeper.nix {}; 756 + zram-generator = handleTest ./zram-generator.nix {}; 756 757 zrepl = handleTest ./zrepl.nix {}; 757 758 zsh-history = handleTest ./zsh-history.nix {}; 758 759 }
+19 -8
nixos/tests/tracee.nix
··· 2 2 name = "tracee-integration"; 3 3 nodes = { 4 4 machine = { config, pkgs, ... }: { 5 - # EventFilters/trace_only_events_from_new_containers requires docker 6 - # podman with docker compat will suffice 7 - virtualisation.podman.enable = true; 8 - virtualisation.podman.dockerCompat = true; 5 + # EventFilters/trace_only_events_from_new_containers and 6 + # Test_EventFilters/trace_only_events_from_"dockerd"_binary_and_contain_it's_pid 7 + # require docker/dockerd 8 + virtualisation.docker.enable = true; 9 9 10 10 environment.systemPackages = [ 11 + # required by Test_EventFilters/trace_events_from_ls_and_which_binary_in_separate_scopes 12 + pkgs.which 11 13 # build the go integration tests as a binary 12 14 (pkgs.tracee.overrideAttrs (oa: { 13 15 pname = oa.pname + "-integration"; 14 16 postPatch = oa.postPatch or "" + '' 15 - # prepare tester.sh 17 + # prepare tester.sh (which will be embedded in the test binary) 16 18 patchShebangs tests/integration/tester.sh 19 + 17 20 # fix the test to look at nixos paths for running programs 18 21 substituteInPlace tests/integration/integration_test.go \ 19 - --replace "/usr/bin" "/run" 22 + --replace "bin=/usr/bin/" "comm=" \ 23 + --replace "/usr/bin/dockerd" "dockerd" \ 24 + --replace "/usr/bin" "/run/current-system/sw/bin" 20 25 ''; 21 26 nativeBuildInputs = oa.nativeBuildInputs or [ ] ++ [ pkgs.makeWrapper ]; 22 27 buildPhase = '' ··· 40 45 }; 41 46 42 47 testScript = '' 48 + machine.wait_for_unit("docker.service") 49 + 43 50 with subtest("run integration tests"): 44 51 # EventFilters/trace_only_events_from_new_containers also requires a container called "alpine" 45 - machine.succeed('tar cv -C ${pkgs.pkgsStatic.busybox} . | podman import - alpine --change ENTRYPOINT=sleep') 52 + machine.succeed('tar c -C ${pkgs.pkgsStatic.busybox} . | docker import - alpine --change "ENTRYPOINT [\"sleep\"]"') 46 53 47 - print(machine.succeed('tracee-integration -test.v')) 54 + # Test_EventFilters/trace_event_set_in_a_specific_scope expects to be in a dir that includes "integration" 55 + print(machine.succeed( 56 + 'mkdir /tmp/integration', 57 + 'cd /tmp/integration && tracee-integration -test.v' 58 + )) 48 59 ''; 49 60 })
+18
nixos/tests/zram-generator.nix
··· 1 + import ./make-test-python.nix { 2 + name = "zram-generator"; 3 + 4 + nodes.machine = { pkgs, ... }: { 5 + environment.etc."systemd/zram-generator.conf".text = '' 6 + [zram0] 7 + zram-size = ram / 2 8 + ''; 9 + systemd.packages = [ pkgs.zram-generator ]; 10 + systemd.services."systemd-zram-setup@".path = [ pkgs.util-linux ]; # for mkswap 11 + }; 12 + 13 + testScript = '' 14 + machine.wait_for_unit("systemd-zram-setup@zram0.service") 15 + assert "zram0" in machine.succeed("zramctl -n") 16 + assert "zram0" in machine.succeed("swapon --show --noheadings") 17 + ''; 18 + }
+7 -2
pkgs/applications/misc/mysql-workbench/default.nix
··· 140 140 patchShebangs tools/get_wb_version.sh 141 141 ''; 142 142 143 - # error: 'OGRErr OGRSpatialReference::importFromWkt(char**)' is deprecated 144 - NIX_CFLAGS_COMPILE = "-Wno-error=deprecated-declarations"; 143 + NIX_CFLAGS_COMPILE = toString ([ 144 + # error: 'OGRErr OGRSpatialReference::importFromWkt(char**)' is deprecated 145 + "-Wno-error=deprecated-declarations" 146 + ] ++ lib.optionals stdenv.isAarch64 [ 147 + # error: narrowing conversion of '-1' from 'int' to 'char' 148 + "-Wno-error=narrowing" 149 + ]); 145 150 146 151 cmakeFlags = [ 147 152 "-DMySQL_CONFIG_PATH=${mysql}/bin/mysql_config"
+2 -1
pkgs/applications/misc/sioyek/default.nix
··· 62 62 cp pdf_viewer/keys_user.config sioyek.app/Contents/MacOS/ 63 63 cp tutorial.pdf sioyek.app/Contents/MacOS/ 64 64 65 - mkdir -p $out/Applications 65 + mkdir -p $out/Applications $out/bin 66 66 cp -r sioyek.app $out/Applications 67 + ln -s $out/Applications/sioyek.app/Contents/MacOS/sioyek $out/bin/sioyek 67 68 '' else '' 68 69 install -Dm644 tutorial.pdf $out/share/tutorial.pdf 69 70 cp -r pdf_viewer/shaders $out/share/
+393 -393
pkgs/applications/networking/browsers/firefox-bin/beta_sources.nix
··· 1 1 { 2 - version = "110.0b7"; 2 + version = "110.0b8"; 3 3 sources = [ 4 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/ach/firefox-110.0b7.tar.bz2"; 4 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/ach/firefox-110.0b8.tar.bz2"; 5 5 locale = "ach"; 6 6 arch = "linux-x86_64"; 7 - sha256 = "92b620e6ab603758a48f1ebb1a860675f4034e994e15c8eb260f838f65eef0b7"; 7 + sha256 = "ed485ff5d4df09a247e5325f7119f18a60dd089561bfbba4fd0defcbc74e49d6"; 8 8 } 9 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/af/firefox-110.0b7.tar.bz2"; 9 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/af/firefox-110.0b8.tar.bz2"; 10 10 locale = "af"; 11 11 arch = "linux-x86_64"; 12 - sha256 = "f20e60796b489b2a4755708fdebf430e4d436ff9710ac5bbb0f7311b8b3479f8"; 12 + sha256 = "a8998faee88db140727fb4d38e00ae105afbdd5dfbf995ee840eecb77f5b4fc0"; 13 13 } 14 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/an/firefox-110.0b7.tar.bz2"; 14 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/an/firefox-110.0b8.tar.bz2"; 15 15 locale = "an"; 16 16 arch = "linux-x86_64"; 17 - sha256 = "087a34a9354d6150f0fd4363a3b848389f5f069b57bdb0314f6c588e111abadf"; 17 + sha256 = "04161f5668253852b91d873fec38b0a55576e0055af214e6fe452b6e58fea228"; 18 18 } 19 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/ar/firefox-110.0b7.tar.bz2"; 19 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/ar/firefox-110.0b8.tar.bz2"; 20 20 locale = "ar"; 21 21 arch = "linux-x86_64"; 22 - sha256 = "bb3146c66f6ce2850cb987495f83b606bda37d60f6426485d7fe495070e79a15"; 22 + sha256 = "a86e49d7960cb2662cae59e681338140be1296ae14691b3cdaf349166ed2189f"; 23 23 } 24 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/ast/firefox-110.0b7.tar.bz2"; 24 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/ast/firefox-110.0b8.tar.bz2"; 25 25 locale = "ast"; 26 26 arch = "linux-x86_64"; 27 - sha256 = "93e455dcaf9b03b427035a9f0d0bee7806c2497896bac44605eddb60c759881e"; 27 + sha256 = "942b97bd1fafe71995f3d17bcc5d651e67fdfe292b65e617bb204d119e0744d9"; 28 28 } 29 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/az/firefox-110.0b7.tar.bz2"; 29 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/az/firefox-110.0b8.tar.bz2"; 30 30 locale = "az"; 31 31 arch = "linux-x86_64"; 32 - sha256 = "7b557d4ebf83e252aaf19e70fea793d3cc4bf73c9f2510bd2a2abe3a63440b40"; 32 + sha256 = "4e1054551c830ac7d14f2f6286a3eec6f054c4a7a7fd26a3860c010bf5459d98"; 33 33 } 34 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/be/firefox-110.0b7.tar.bz2"; 34 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/be/firefox-110.0b8.tar.bz2"; 35 35 locale = "be"; 36 36 arch = "linux-x86_64"; 37 - sha256 = "f8b8e8fe66d5cf2d747e331b2d0b1fd2720c7bebcf3dbd6142e3efbde0ea8acf"; 37 + sha256 = "0308d8776afc25f9ce0791d406289ef8e1909f88ae0cb7c91f9e6116ae1afb6e"; 38 38 } 39 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/bg/firefox-110.0b7.tar.bz2"; 39 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/bg/firefox-110.0b8.tar.bz2"; 40 40 locale = "bg"; 41 41 arch = "linux-x86_64"; 42 - sha256 = "fda68c558eb5f70ff7ac0f5cb564c7492144b779b9eb94cdbf550c70542e3496"; 42 + sha256 = "3236f9eb8c7ebd860c4629b46dacbcc9f72cd4d2af3dd7930fbe79eaa6f76e65"; 43 43 } 44 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/bn/firefox-110.0b7.tar.bz2"; 44 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/bn/firefox-110.0b8.tar.bz2"; 45 45 locale = "bn"; 46 46 arch = "linux-x86_64"; 47 - sha256 = "4c1b0b87706625cc65c2d060c04eed441f009f75ebe6f6c781f935caf191983e"; 47 + sha256 = "6dd832f1ba0119e3b2e84b34ca0a7af0aea2f3615aa4c5f10fa6d52e27ca25e3"; 48 48 } 49 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/br/firefox-110.0b7.tar.bz2"; 49 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/br/firefox-110.0b8.tar.bz2"; 50 50 locale = "br"; 51 51 arch = "linux-x86_64"; 52 - sha256 = "ccd26c778dbe49ad3d63d4ae9e36f9476e046e57d29478bc6c5fd4459949ad3b"; 52 + sha256 = "39dc415cb13964a73598df7e8852c04eb68093704bc368842918c7651d469571"; 53 53 } 54 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/bs/firefox-110.0b7.tar.bz2"; 54 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/bs/firefox-110.0b8.tar.bz2"; 55 55 locale = "bs"; 56 56 arch = "linux-x86_64"; 57 - sha256 = "7528eb97210348d167c11ef7816c12f1324f11d3f2109c96a6be908442d5b186"; 57 + sha256 = "f550885ad47858803262cc56a01ff94ca98dbe70ef647d45ef07704d320aeb10"; 58 58 } 59 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/ca-valencia/firefox-110.0b7.tar.bz2"; 59 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/ca-valencia/firefox-110.0b8.tar.bz2"; 60 60 locale = "ca-valencia"; 61 61 arch = "linux-x86_64"; 62 - sha256 = "ca2f352ff998355404dd21c45478257e481fc25ae5490060c781181bc260f60d"; 62 + sha256 = "35bedf1be1a9666deee43f1fba4b5d929997b68626d0cd5d34f1f874bdfc145b"; 63 63 } 64 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/ca/firefox-110.0b7.tar.bz2"; 64 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/ca/firefox-110.0b8.tar.bz2"; 65 65 locale = "ca"; 66 66 arch = "linux-x86_64"; 67 - sha256 = "4b8c2be81e6aee03987a126d44f647d7d681d53190d61c9dd6199323f6d4414c"; 67 + sha256 = "50e3be2fc9c0ee6d81fc21e93f500007e660eb465a4efdfc1182ab3f361db9f0"; 68 68 } 69 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/cak/firefox-110.0b7.tar.bz2"; 69 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/cak/firefox-110.0b8.tar.bz2"; 70 70 locale = "cak"; 71 71 arch = "linux-x86_64"; 72 - sha256 = "f44cabf1d06ecd47b49e071cbe9be1863ca9e171c5d45ccc37e45ff741d26336"; 72 + sha256 = "f76a35618b17552eb7ba1f4c221ac2c1b279f39a23b90a3c801a214bdb6a90ea"; 73 73 } 74 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/cs/firefox-110.0b7.tar.bz2"; 74 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/cs/firefox-110.0b8.tar.bz2"; 75 75 locale = "cs"; 76 76 arch = "linux-x86_64"; 77 - sha256 = "424c4bcf3a61799f9f5218e44621ed1c910895126538177a572302fdbae01635"; 77 + sha256 = "dac3d9822d05821535aa87c013e64bd11fe7bfb241817bb4943fb9476794327b"; 78 78 } 79 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/cy/firefox-110.0b7.tar.bz2"; 79 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/cy/firefox-110.0b8.tar.bz2"; 80 80 locale = "cy"; 81 81 arch = "linux-x86_64"; 82 - sha256 = "471a1ab92ec953428b24f7136ce065fac53ed91df00b9d762116d7d2959ed9c5"; 82 + sha256 = "2a93da71a12b78c55c125c8a71a3b5e5c9785ddbef1eb57bda0ff6c7c2f4fa90"; 83 83 } 84 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/da/firefox-110.0b7.tar.bz2"; 84 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/da/firefox-110.0b8.tar.bz2"; 85 85 locale = "da"; 86 86 arch = "linux-x86_64"; 87 - sha256 = "ec86bd2ccabc745749f13aa5125411347279db84f275870e606f83afe3c9a32b"; 87 + sha256 = "9b63c1ff561acf270ceba10907371f63fd3ec5104fa9fd723c41cc88d207d860"; 88 88 } 89 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/de/firefox-110.0b7.tar.bz2"; 89 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/de/firefox-110.0b8.tar.bz2"; 90 90 locale = "de"; 91 91 arch = "linux-x86_64"; 92 - sha256 = "323d3ae9bfe4c14a7e1bfc93ceb6416e7716583d9556848b9a9a88730e085f86"; 92 + sha256 = "b85d11c9fe7af3b3913f772aeeca37bbae95bc4bcaa9d9e2e711025b861a0713"; 93 93 } 94 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/dsb/firefox-110.0b7.tar.bz2"; 94 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/dsb/firefox-110.0b8.tar.bz2"; 95 95 locale = "dsb"; 96 96 arch = "linux-x86_64"; 97 - sha256 = "04392a0ce88feb26e2447d013c8504ed228ca77aeaf4909e2cb38a70998ad576"; 97 + sha256 = "9a54cd55fe019b5f902aa9f6e21dc03629c35cc7acf8112b98b77881df88c894"; 98 98 } 99 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/el/firefox-110.0b7.tar.bz2"; 99 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/el/firefox-110.0b8.tar.bz2"; 100 100 locale = "el"; 101 101 arch = "linux-x86_64"; 102 - sha256 = "7dac7a1393def3a3e24ef5f1c51c40d226cf77b9a1f77b33bcae39ad4b422db4"; 102 + sha256 = "a659eca2a2bb201ff27e989ba748abffc1bd44ddf6c69312c8829a91887d9e3a"; 103 103 } 104 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/en-CA/firefox-110.0b7.tar.bz2"; 104 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/en-CA/firefox-110.0b8.tar.bz2"; 105 105 locale = "en-CA"; 106 106 arch = "linux-x86_64"; 107 - sha256 = "baa9a459c7686ea2c6ed74d976fef6bf00af83fa2ad71c0b644a60cb8c5db2ab"; 107 + sha256 = "45e5b039f0e2b425d1051af5bde8a447b1f738b3dcf0c2321043af28d370ff1e"; 108 108 } 109 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/en-GB/firefox-110.0b7.tar.bz2"; 109 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/en-GB/firefox-110.0b8.tar.bz2"; 110 110 locale = "en-GB"; 111 111 arch = "linux-x86_64"; 112 - sha256 = "54b25f31e8292b56a360cf36550d7263c916adbe835c831434f11ed931e0d5d4"; 112 + sha256 = "f53fed0d18ece63d2e94840ae1023d261b07a3556a4fbb8d4e2c8c4fad016b86"; 113 113 } 114 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/en-US/firefox-110.0b7.tar.bz2"; 114 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/en-US/firefox-110.0b8.tar.bz2"; 115 115 locale = "en-US"; 116 116 arch = "linux-x86_64"; 117 - sha256 = "ffd6f0fe0cd9dceeeff8b5a7373de41849896706d2856a8c89d39e546594fb8d"; 117 + sha256 = "230b771a572ca8bcd9e85dda0a967bdfa504664222e9ade51839b5c22735e7c2"; 118 118 } 119 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/eo/firefox-110.0b7.tar.bz2"; 119 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/eo/firefox-110.0b8.tar.bz2"; 120 120 locale = "eo"; 121 121 arch = "linux-x86_64"; 122 - sha256 = "ea02d09fc67b6bd3468c04a8d72b9927f905a396211b584203530847bca57540"; 122 + sha256 = "1d171c124c45b2c22f4d64a51366f1840f2b72117d0ef65fa33a4b44623a88cd"; 123 123 } 124 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/es-AR/firefox-110.0b7.tar.bz2"; 124 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/es-AR/firefox-110.0b8.tar.bz2"; 125 125 locale = "es-AR"; 126 126 arch = "linux-x86_64"; 127 - sha256 = "651111ca6dd6b83fc10d5d72d17144b1ba496531b4fa5820bed51af344b6aff8"; 127 + sha256 = "eb7d67d7cf5460d8830e9c3ec6ddc4724857d94f15e809cbf02a26d7d9fcd6d5"; 128 128 } 129 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/es-CL/firefox-110.0b7.tar.bz2"; 129 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/es-CL/firefox-110.0b8.tar.bz2"; 130 130 locale = "es-CL"; 131 131 arch = "linux-x86_64"; 132 - sha256 = "45a45b30dd8b4a2edf7f0b497a47dfdb3b0e07aa8aa59d8be77d1a1a398f2147"; 132 + sha256 = "55a45cb18fb2f2aa61de068629a1770dd37096ddb9424fa83031354c1e3a6f46"; 133 133 } 134 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/es-ES/firefox-110.0b7.tar.bz2"; 134 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/es-ES/firefox-110.0b8.tar.bz2"; 135 135 locale = "es-ES"; 136 136 arch = "linux-x86_64"; 137 - sha256 = "f6fdbf3e3feb70e3e69f19645544726e79a50462040ab91892c18522d41c1c42"; 137 + sha256 = "3dfa2760508777cb93b44650bb6f1a70de2d10c3ec43e7350e901794fcae4f4b"; 138 138 } 139 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/es-MX/firefox-110.0b7.tar.bz2"; 139 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/es-MX/firefox-110.0b8.tar.bz2"; 140 140 locale = "es-MX"; 141 141 arch = "linux-x86_64"; 142 - sha256 = "77ce45e0cfe689de99fc91d4a16e0fd442a42b19fd3606fb67b1213050686fe3"; 142 + sha256 = "39875c88fce55c54aa8f323b9530472dcafbc6c1f93fb8061f61c90b866d74b8"; 143 143 } 144 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/et/firefox-110.0b7.tar.bz2"; 144 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/et/firefox-110.0b8.tar.bz2"; 145 145 locale = "et"; 146 146 arch = "linux-x86_64"; 147 - sha256 = "56a0d02ce080d1e3dc67a44f39cd96f8aa8238077482dd52a8e3d6648c8acb4b"; 147 + sha256 = "e041c7c050ab3aa3360e8f7a47552ac7e9e8f74367169227d2b1985cb1f4f611"; 148 148 } 149 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/eu/firefox-110.0b7.tar.bz2"; 149 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/eu/firefox-110.0b8.tar.bz2"; 150 150 locale = "eu"; 151 151 arch = "linux-x86_64"; 152 - sha256 = "340e9353f49de3ea88da3e861f184a2d4ebb6aae6031b0b475afd6bcecc0157e"; 152 + sha256 = "60327e88db690ff8851da6979929b88a272f2bffa22b131ab47c69e7b508020a"; 153 153 } 154 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/fa/firefox-110.0b7.tar.bz2"; 154 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/fa/firefox-110.0b8.tar.bz2"; 155 155 locale = "fa"; 156 156 arch = "linux-x86_64"; 157 - sha256 = "d2588f3ea6d97253f1a8718cc95399ec1222fef5826547522846c01023616ea1"; 157 + sha256 = "91657f9b44d1ca43bcf9b11fbe3426ad352e98945936439d3db33486d664ee29"; 158 158 } 159 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/ff/firefox-110.0b7.tar.bz2"; 159 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/ff/firefox-110.0b8.tar.bz2"; 160 160 locale = "ff"; 161 161 arch = "linux-x86_64"; 162 - sha256 = "c469ec84c739b7e865a116a3a3ad746c165eac531cb0c18c203fc1c634e66cac"; 162 + sha256 = "ea713dd820cfae67ee4af92c2e5b1561e638631043790e7e11ec8ec95f7dee8d"; 163 163 } 164 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/fi/firefox-110.0b7.tar.bz2"; 164 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/fi/firefox-110.0b8.tar.bz2"; 165 165 locale = "fi"; 166 166 arch = "linux-x86_64"; 167 - sha256 = "a4efd03aa334b2d52ce7c504c5a83f7ed3fde2bfa79783e09aeea77ef4b4e032"; 167 + sha256 = "cac98b1458dad786bc5260771ecf9c434c3458fbfc0325b528bb268736b02276"; 168 168 } 169 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/fr/firefox-110.0b7.tar.bz2"; 169 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/fr/firefox-110.0b8.tar.bz2"; 170 170 locale = "fr"; 171 171 arch = "linux-x86_64"; 172 - sha256 = "bb721c623fde67a8438694066301fd2823b56930b0e8972a116c599fdf472e9b"; 172 + sha256 = "8433f80253931ddf0c76ae09536da4d4f2d6fda042228f6c2421e3dba684ec8b"; 173 173 } 174 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/fy-NL/firefox-110.0b7.tar.bz2"; 174 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/fy-NL/firefox-110.0b8.tar.bz2"; 175 175 locale = "fy-NL"; 176 176 arch = "linux-x86_64"; 177 - sha256 = "f9eb091431be5dee981377c6c7d97559f5cfceb2202b46f4f3baa37701c54088"; 177 + sha256 = "e4291c6245d3f6f7d3eab0614e690eda1e6fa1880776cc7cafbc1e892ae67dea"; 178 178 } 179 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/ga-IE/firefox-110.0b7.tar.bz2"; 179 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/ga-IE/firefox-110.0b8.tar.bz2"; 180 180 locale = "ga-IE"; 181 181 arch = "linux-x86_64"; 182 - sha256 = "9a99e94cd50ec52d16c777de65b992992f70916a7a188918d942d89afbbf3668"; 182 + sha256 = "db193e8f7bc6ca08d80d30c4062afd4d64063da93360a5be48b359c572733b83"; 183 183 } 184 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/gd/firefox-110.0b7.tar.bz2"; 184 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/gd/firefox-110.0b8.tar.bz2"; 185 185 locale = "gd"; 186 186 arch = "linux-x86_64"; 187 - sha256 = "2ed55b6dc2f4a24f4bb78ead431652dcd9049ae9907ac37bd8025eca62241a08"; 187 + sha256 = "5f11dc3c2d447d4307979e1fa684847770eb7737931998523b78e96cc8750c7b"; 188 188 } 189 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/gl/firefox-110.0b7.tar.bz2"; 189 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/gl/firefox-110.0b8.tar.bz2"; 190 190 locale = "gl"; 191 191 arch = "linux-x86_64"; 192 - sha256 = "5aa8cb191c29d134d19baa1e3bc4d26d4bcfe7778bcb895f7612165ee74197e0"; 192 + sha256 = "61d21f0c5f0c0b281f53f83833f419f3e2791dd0a642f7f91740f86d13b58c12"; 193 193 } 194 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/gn/firefox-110.0b7.tar.bz2"; 194 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/gn/firefox-110.0b8.tar.bz2"; 195 195 locale = "gn"; 196 196 arch = "linux-x86_64"; 197 - sha256 = "94dfa7584da128d2e79c9d4156b24e229cd1146509192b177693e9d315935f24"; 197 + sha256 = "7f3eae32a8b0ebe89af9f456c90390c0ebcfab855be960c120ad65f2ac871f66"; 198 198 } 199 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/gu-IN/firefox-110.0b7.tar.bz2"; 199 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/gu-IN/firefox-110.0b8.tar.bz2"; 200 200 locale = "gu-IN"; 201 201 arch = "linux-x86_64"; 202 - sha256 = "60669f8b91b050d605e80ac2185fda57a8d374c92c30e6dc4281bf7f3b815b25"; 202 + sha256 = "3c8b5dfb00e7395de9bd7a47122e51ac98f568d58a604079de736550bddd770d"; 203 203 } 204 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/he/firefox-110.0b7.tar.bz2"; 204 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/he/firefox-110.0b8.tar.bz2"; 205 205 locale = "he"; 206 206 arch = "linux-x86_64"; 207 - sha256 = "1c34580e1e058a6a3969c000eeb5718895cb74f48de5f8dde78bd9b38c7647f2"; 207 + sha256 = "f1d1eced9c70c17f82db231531127a76b7b9ae2d7cf7c8db6d5a367f284e56c5"; 208 208 } 209 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/hi-IN/firefox-110.0b7.tar.bz2"; 209 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/hi-IN/firefox-110.0b8.tar.bz2"; 210 210 locale = "hi-IN"; 211 211 arch = "linux-x86_64"; 212 - sha256 = "05ae118bcd2ecc6993ef9122b4417c3563713cb2eb217218ddfce97839ae8595"; 212 + sha256 = "240c6757b39796b47360927418b25346bdda14c68581811e61870c0e775d2a14"; 213 213 } 214 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/hr/firefox-110.0b7.tar.bz2"; 214 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/hr/firefox-110.0b8.tar.bz2"; 215 215 locale = "hr"; 216 216 arch = "linux-x86_64"; 217 - sha256 = "f46d78482713a7cb29bd8ef33307a3aad5eca15b7c3fb0836b5b8085431daf45"; 217 + sha256 = "ef9d90acbcd8a8e6351864030078d648c4a5149646c262a03c8f6c1de19afc93"; 218 218 } 219 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/hsb/firefox-110.0b7.tar.bz2"; 219 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/hsb/firefox-110.0b8.tar.bz2"; 220 220 locale = "hsb"; 221 221 arch = "linux-x86_64"; 222 - sha256 = "12067c08e4b9f34f58195d1a0ffd7977db696c95990bedc8ea34f67e3fbadcc9"; 222 + sha256 = "9c8c7bc9437e58984a42ce622722cf52bc23c10f3394c698c939f7bf1c6cee4d"; 223 223 } 224 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/hu/firefox-110.0b7.tar.bz2"; 224 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/hu/firefox-110.0b8.tar.bz2"; 225 225 locale = "hu"; 226 226 arch = "linux-x86_64"; 227 - sha256 = "1515f75f0219b988e9c78d581179a175e699da6e7706fc8cef730f17acd62397"; 227 + sha256 = "f4a42365f10144bdfa293e064c6f2a8a93344649b0b7d1ca29b6aa1cd928d282"; 228 228 } 229 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/hy-AM/firefox-110.0b7.tar.bz2"; 229 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/hy-AM/firefox-110.0b8.tar.bz2"; 230 230 locale = "hy-AM"; 231 231 arch = "linux-x86_64"; 232 - sha256 = "f8194fed507e073ba5d1bd9988a538f7023c95964e78e742780541ba2a6a8c93"; 232 + sha256 = "767e6e39c11252a7ed5604c79385e8ffd6e72ed59ee7013188b75a868c280f12"; 233 233 } 234 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/ia/firefox-110.0b7.tar.bz2"; 234 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/ia/firefox-110.0b8.tar.bz2"; 235 235 locale = "ia"; 236 236 arch = "linux-x86_64"; 237 - sha256 = "ee8bba43ce0d4206bec6f418b47375a87d4212a7b8d5d87424561130a6bfe655"; 237 + sha256 = "4a948be5f55b0dbd64574e53fa058ac1e37c3ebd07b2c7b31bca9a4df9ec729f"; 238 238 } 239 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/id/firefox-110.0b7.tar.bz2"; 239 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/id/firefox-110.0b8.tar.bz2"; 240 240 locale = "id"; 241 241 arch = "linux-x86_64"; 242 - sha256 = "329f87790197514b1a7b702b55fa0bc851b444f771f8eb573461fce54f83a496"; 242 + sha256 = "172d6b7f6471b30ecec9928be73e86e6cb4c700d7b0f036754675a955a07233b"; 243 243 } 244 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/is/firefox-110.0b7.tar.bz2"; 244 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/is/firefox-110.0b8.tar.bz2"; 245 245 locale = "is"; 246 246 arch = "linux-x86_64"; 247 - sha256 = "940f6e07ea316f1354d032ea49f9d24dd128f3fcb16276427ce0828d01b2bbc3"; 247 + sha256 = "82dfe1ea54cf9dcc0a3c3bea2538f2c7bb2c9a8120361ca718160e2cc5faabdd"; 248 248 } 249 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/it/firefox-110.0b7.tar.bz2"; 249 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/it/firefox-110.0b8.tar.bz2"; 250 250 locale = "it"; 251 251 arch = "linux-x86_64"; 252 - sha256 = "cd77be4ab24dd05e32004df01761d61897cc8b873349344fb6e8cba33a9f1c50"; 252 + sha256 = "5ee0de017187bae620553ee7d387e0a7fbdd828007f509b2799e5b4a42529e7c"; 253 253 } 254 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/ja/firefox-110.0b7.tar.bz2"; 254 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/ja/firefox-110.0b8.tar.bz2"; 255 255 locale = "ja"; 256 256 arch = "linux-x86_64"; 257 - sha256 = "05ea39fbf1f8f961210d7c0edaa0fcb6906ab5d2adad58e9018e95d1d9b30bd6"; 257 + sha256 = "e1c4d3b19caea149985ad839c5a5eefae61fe489825363a7dc600158aa393ca6"; 258 258 } 259 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/ka/firefox-110.0b7.tar.bz2"; 259 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/ka/firefox-110.0b8.tar.bz2"; 260 260 locale = "ka"; 261 261 arch = "linux-x86_64"; 262 - sha256 = "0bdac10f673a073e39e14b2d85cab7047c9e20415ad6747244e62de9389f04f5"; 262 + sha256 = "066acc56597a25502041628781ab9cb1d9ae8b28cb34d20651c7a5b37f7cbbbe"; 263 263 } 264 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/kab/firefox-110.0b7.tar.bz2"; 264 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/kab/firefox-110.0b8.tar.bz2"; 265 265 locale = "kab"; 266 266 arch = "linux-x86_64"; 267 - sha256 = "3601101bd8b4106609d59ab843a6a55b04c46ad3811ba4e08adb425228ce90ba"; 267 + sha256 = "f1f851d0d5e2a4b4dc4c6e1e8cef8bf0536a0d87c149fa0a7f5634494e253e02"; 268 268 } 269 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/kk/firefox-110.0b7.tar.bz2"; 269 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/kk/firefox-110.0b8.tar.bz2"; 270 270 locale = "kk"; 271 271 arch = "linux-x86_64"; 272 - sha256 = "e131df51351beeec1cebbe06da1a6293d4c6bff33eb75d0d9ae40d01ca486f45"; 272 + sha256 = "e49afedbdf6e979aac6f76d25564d48fadc2a7042715edff107752da20d54951"; 273 273 } 274 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/km/firefox-110.0b7.tar.bz2"; 274 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/km/firefox-110.0b8.tar.bz2"; 275 275 locale = "km"; 276 276 arch = "linux-x86_64"; 277 - sha256 = "3bbd68a9dac8a5949daaf98556d4d0a1c2948f932e3f6eae04cc6cbb3d1539c2"; 277 + sha256 = "626802d920890971e7e70865dc8cf02848eac285bd11c7905c76f1b8d3d45c47"; 278 278 } 279 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/kn/firefox-110.0b7.tar.bz2"; 279 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/kn/firefox-110.0b8.tar.bz2"; 280 280 locale = "kn"; 281 281 arch = "linux-x86_64"; 282 - sha256 = "7d680235f84143dd580f80349761963b3dbccc31bc1e38c5dc8df8a8210409ef"; 282 + sha256 = "f4a3c4730fe26412fbec6280059ee60dcb14dcc120c34bc866e63f2b59337ab9"; 283 283 } 284 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/ko/firefox-110.0b7.tar.bz2"; 284 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/ko/firefox-110.0b8.tar.bz2"; 285 285 locale = "ko"; 286 286 arch = "linux-x86_64"; 287 - sha256 = "ef80407630660ca8ab9f0d0406b46c755d0cf78e996ba2f69abbb90b996026fc"; 287 + sha256 = "a86e103fa646e69806c3e602a3377daefb29e0b522293b919fdd480d6cdf12b0"; 288 288 } 289 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/lij/firefox-110.0b7.tar.bz2"; 289 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/lij/firefox-110.0b8.tar.bz2"; 290 290 locale = "lij"; 291 291 arch = "linux-x86_64"; 292 - sha256 = "d9d2525745a262300f7d650e28e0bf1ea22aea28c6359f5d0af093ee8a4e3ab9"; 292 + sha256 = "001967897e7d43ccb814aa3da320f06ab92d7dd152b0d174fc5d7f37c49f4bbe"; 293 293 } 294 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/lt/firefox-110.0b7.tar.bz2"; 294 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/lt/firefox-110.0b8.tar.bz2"; 295 295 locale = "lt"; 296 296 arch = "linux-x86_64"; 297 - sha256 = "5020f41d503258fe25cba1feba4ce079b365cc05446bec561083507599f08127"; 297 + sha256 = "78030269b2fe5f151a0236112e0ecd4b43b61d577171e9b0544b2ac60be5869d"; 298 298 } 299 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/lv/firefox-110.0b7.tar.bz2"; 299 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/lv/firefox-110.0b8.tar.bz2"; 300 300 locale = "lv"; 301 301 arch = "linux-x86_64"; 302 - sha256 = "4b88c5fecbc4cab7f741b55cec75cf6442b142632469efe8e00a424a4d86695e"; 302 + sha256 = "b944ab8296cedb7cbb405b1db330e9011064dbf4353a2f3bb1741d21cff312ff"; 303 303 } 304 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/mk/firefox-110.0b7.tar.bz2"; 304 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/mk/firefox-110.0b8.tar.bz2"; 305 305 locale = "mk"; 306 306 arch = "linux-x86_64"; 307 - sha256 = "10f54c0c1ac4df041fec2f1f014491eb18e564dac4226127bf699b49ee2f1a18"; 307 + sha256 = "d28f87dd4e040dee024e384c686fda5ed1bb5bca8807581e094a9bfa7a763ddb"; 308 308 } 309 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/mr/firefox-110.0b7.tar.bz2"; 309 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/mr/firefox-110.0b8.tar.bz2"; 310 310 locale = "mr"; 311 311 arch = "linux-x86_64"; 312 - sha256 = "3666ba4c4662d07cae1fff56da955990c64b8569066e15bca1323598099d4648"; 312 + sha256 = "0cba8c59d778577b8ca9d2d7bec95d57dafe90470867b7ad0675bec1fecb4b90"; 313 313 } 314 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/ms/firefox-110.0b7.tar.bz2"; 314 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/ms/firefox-110.0b8.tar.bz2"; 315 315 locale = "ms"; 316 316 arch = "linux-x86_64"; 317 - sha256 = "436263d531bba64f556f38afd86468adb4e496611504f5a3698cc5b2febf430e"; 317 + sha256 = "989c7785d91d2fce8a37f0e79ec1e047397b2bf3addf8859fb742426c5279038"; 318 318 } 319 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/my/firefox-110.0b7.tar.bz2"; 319 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/my/firefox-110.0b8.tar.bz2"; 320 320 locale = "my"; 321 321 arch = "linux-x86_64"; 322 - sha256 = "54f399a622cb8273fdb32b53b759f3b4465a4bd81ca89e5810315846c8443e23"; 322 + sha256 = "730c8d4ff818e03dbfd88f2e9a8ee131dc5144ee6b753fcfde2825c8cfb309c1"; 323 323 } 324 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/nb-NO/firefox-110.0b7.tar.bz2"; 324 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/nb-NO/firefox-110.0b8.tar.bz2"; 325 325 locale = "nb-NO"; 326 326 arch = "linux-x86_64"; 327 - sha256 = "3e5392688830c8fa7c129c79619efc8da24dc6ed98708f019c1c66fc8dd29a12"; 327 + sha256 = "32219c5b17363f0e7cb5a6b762bef28cc8af7aff7f0f7a3558510884505077d0"; 328 328 } 329 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/ne-NP/firefox-110.0b7.tar.bz2"; 329 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/ne-NP/firefox-110.0b8.tar.bz2"; 330 330 locale = "ne-NP"; 331 331 arch = "linux-x86_64"; 332 - sha256 = "adebf0d50f0829d872b6072d6e004fbef29e0433674ad51d9f4dc589bb8d8df3"; 332 + sha256 = "e8cc257a762c8b62fd00a640104d115416f1be3841b304acc6c4dd25a3145aa0"; 333 333 } 334 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/nl/firefox-110.0b7.tar.bz2"; 334 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/nl/firefox-110.0b8.tar.bz2"; 335 335 locale = "nl"; 336 336 arch = "linux-x86_64"; 337 - sha256 = "66b2db5baef45dc7db2a8b8561913e8efc052ff1370da778f714d4d14da1acf7"; 337 + sha256 = "b4535c4b7683ad89368c2a156d580d94ce678e858e34f56b2d2eddd4326cddc7"; 338 338 } 339 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/nn-NO/firefox-110.0b7.tar.bz2"; 339 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/nn-NO/firefox-110.0b8.tar.bz2"; 340 340 locale = "nn-NO"; 341 341 arch = "linux-x86_64"; 342 - sha256 = "3421744a83f405e528190596c3ae3abeaa43bf4a1b59e33246783c1ef9a9ab70"; 342 + sha256 = "0ebad9a365e2f7da6119dd821e8cb4c26abd939c942e4bfb451ca9ce93cab68f"; 343 343 } 344 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/oc/firefox-110.0b7.tar.bz2"; 344 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/oc/firefox-110.0b8.tar.bz2"; 345 345 locale = "oc"; 346 346 arch = "linux-x86_64"; 347 - sha256 = "ae30959bfea5d80701e666bb6960ed1550046e4da36ebf8fa136db0021ef6021"; 347 + sha256 = "c66df579bf6b9f23a87937d544f10f5b5a165e18205b8ceceae100a01074c1e8"; 348 348 } 349 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/pa-IN/firefox-110.0b7.tar.bz2"; 349 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/pa-IN/firefox-110.0b8.tar.bz2"; 350 350 locale = "pa-IN"; 351 351 arch = "linux-x86_64"; 352 - sha256 = "b7210a8df3f53bdca8a69e6c7492bfdd8485371e4d8d3ec5110467ff613b48f8"; 352 + sha256 = "1a60b5aed38933f2d5898f4ce502057c8f3f5207cb133709ec10ec4f4f7016db"; 353 353 } 354 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/pl/firefox-110.0b7.tar.bz2"; 354 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/pl/firefox-110.0b8.tar.bz2"; 355 355 locale = "pl"; 356 356 arch = "linux-x86_64"; 357 - sha256 = "08b657a39414bf6be79961489075b37ba1c561d1a6d9198f5923d418599ca5ee"; 357 + sha256 = "bc52ce2b2189763296d891259dc131f7a3be3287eb4e615d13ba01083ccec7fb"; 358 358 } 359 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/pt-BR/firefox-110.0b7.tar.bz2"; 359 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/pt-BR/firefox-110.0b8.tar.bz2"; 360 360 locale = "pt-BR"; 361 361 arch = "linux-x86_64"; 362 - sha256 = "ca698a71e4d375acce90f9215fbf0a9b7faa2323d58e4bf89b13abeb7a3b9220"; 362 + sha256 = "257045f51d0f3b78b86b8657add634acd67a9f7eb40ee21e41c475df28ffe19c"; 363 363 } 364 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/pt-PT/firefox-110.0b7.tar.bz2"; 364 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/pt-PT/firefox-110.0b8.tar.bz2"; 365 365 locale = "pt-PT"; 366 366 arch = "linux-x86_64"; 367 - sha256 = "492d61314ea59aea023e5738bc7ee849f47a745e41b3093b91c7d929e35658a2"; 367 + sha256 = "bdfd19bbbc264bb69ee68f0c07e10fe65a0333305d9e2c22fd0015343b9b8993"; 368 368 } 369 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/rm/firefox-110.0b7.tar.bz2"; 369 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/rm/firefox-110.0b8.tar.bz2"; 370 370 locale = "rm"; 371 371 arch = "linux-x86_64"; 372 - sha256 = "97b9bdbe16d9fa67d74a834867f9df0958022e6d65f83757cdbe7194b0f025ae"; 372 + sha256 = "0a80709da5676bc49758d0adb791c6e663dda5326600926be4059c03fa241e1d"; 373 373 } 374 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/ro/firefox-110.0b7.tar.bz2"; 374 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/ro/firefox-110.0b8.tar.bz2"; 375 375 locale = "ro"; 376 376 arch = "linux-x86_64"; 377 - sha256 = "df3bc82768768bc35f73a4d14aaa7dcb4c5bfd6238176a9ed82149a700de679f"; 377 + sha256 = "58c6b48d460c424662a82ebaa48a655af938b84f30e27e4bf8b6e4481e3eebd0"; 378 378 } 379 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/ru/firefox-110.0b7.tar.bz2"; 379 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/ru/firefox-110.0b8.tar.bz2"; 380 380 locale = "ru"; 381 381 arch = "linux-x86_64"; 382 - sha256 = "879792662def74af3ad11b8b9c44c0b7bd822e883c338124f7dcb0a11e6d225f"; 382 + sha256 = "a85d28c3f4671380a39be21bd9c1c8eacc7677aacca05ce6951bc58dc38c1940"; 383 383 } 384 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/sco/firefox-110.0b7.tar.bz2"; 384 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/sco/firefox-110.0b8.tar.bz2"; 385 385 locale = "sco"; 386 386 arch = "linux-x86_64"; 387 - sha256 = "3e592ef8306d7cc157122e723fb03503b6bb7fb5884e37d6abd39f03afd38a95"; 387 + sha256 = "a4157c14e1f35b6603a3abf50ae2a03c368ae37cd9e36f5b72607481523b3305"; 388 388 } 389 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/si/firefox-110.0b7.tar.bz2"; 389 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/si/firefox-110.0b8.tar.bz2"; 390 390 locale = "si"; 391 391 arch = "linux-x86_64"; 392 - sha256 = "076ca9ea7d32a2fe67f854dbd87902a7c5154c2ac3132ced57864e60e14fd254"; 392 + sha256 = "da52abc50cd0aaf67f3daf9f78b87415015f2133eb2879713f97d360f0ba633d"; 393 393 } 394 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/sk/firefox-110.0b7.tar.bz2"; 394 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/sk/firefox-110.0b8.tar.bz2"; 395 395 locale = "sk"; 396 396 arch = "linux-x86_64"; 397 - sha256 = "bc3af5564f432ce4399aca59b0861fdf54d2725ab32ee6b3a998915ebbf9f0b4"; 397 + sha256 = "f82fcd00aa59756ee7e11d3a003c871dad71b651b3aee51d40dee250358db070"; 398 398 } 399 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/sl/firefox-110.0b7.tar.bz2"; 399 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/sl/firefox-110.0b8.tar.bz2"; 400 400 locale = "sl"; 401 401 arch = "linux-x86_64"; 402 - sha256 = "f965c9735c3468d5830554a51a78c329769ff922fa5d90945bad776710452d1c"; 402 + sha256 = "e682fac35628626e6d99b32c7ac08fa768b27e27e9ed6ab0ca054d6a337015c1"; 403 403 } 404 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/son/firefox-110.0b7.tar.bz2"; 404 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/son/firefox-110.0b8.tar.bz2"; 405 405 locale = "son"; 406 406 arch = "linux-x86_64"; 407 - sha256 = "901942b73373c6b89e7a278a5f2b3a8bf88220bbd4fb77ab86454ead0a43e090"; 407 + sha256 = "901abf7cb8189875fc23556d0599ec56467ead6d01f7132be2cd7ad8ae0342bf"; 408 408 } 409 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/sq/firefox-110.0b7.tar.bz2"; 409 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/sq/firefox-110.0b8.tar.bz2"; 410 410 locale = "sq"; 411 411 arch = "linux-x86_64"; 412 - sha256 = "e933c921694e03357c2872f16cf29bf1f4ad62297943d6a8c9182b9be603daab"; 412 + sha256 = "9a0401842eac013a5618b00fce32a048ae401dd7b02e5237207987799bc80ad2"; 413 413 } 414 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/sr/firefox-110.0b7.tar.bz2"; 414 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/sr/firefox-110.0b8.tar.bz2"; 415 415 locale = "sr"; 416 416 arch = "linux-x86_64"; 417 - sha256 = "2d6d34e90d2e1149056d5e4920ea21824401d1975df7d17a143944bedb0b22f0"; 417 + sha256 = "753ef3fdc0bb3c538c2fe65db2c3db27184e0430c8d3ef78248e68e1706cbc54"; 418 418 } 419 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/sv-SE/firefox-110.0b7.tar.bz2"; 419 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/sv-SE/firefox-110.0b8.tar.bz2"; 420 420 locale = "sv-SE"; 421 421 arch = "linux-x86_64"; 422 - sha256 = "93623693ac414ab424320f863b36b6513ff0f30b27dcbcc248837cce2599c4c6"; 422 + sha256 = "2977dc95a24581051f4f0234ad4cb21bb5742af5933313442d5f3f4c2f869550"; 423 423 } 424 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/szl/firefox-110.0b7.tar.bz2"; 424 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/szl/firefox-110.0b8.tar.bz2"; 425 425 locale = "szl"; 426 426 arch = "linux-x86_64"; 427 - sha256 = "a56417926df43aae7a716628ad9a3095d21840859c465616ace4fc21da40269c"; 427 + sha256 = "4c58983a77e3485edb8d2035391ea9d098196f1e19dc1ad070f7f77ddb5c0f97"; 428 428 } 429 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/ta/firefox-110.0b7.tar.bz2"; 429 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/ta/firefox-110.0b8.tar.bz2"; 430 430 locale = "ta"; 431 431 arch = "linux-x86_64"; 432 - sha256 = "ca44efb45b39c75c08973d140b724f852b017b64cc1d759485bd98e0491488d7"; 432 + sha256 = "1204336c6feb2ef3c116a043151715f05d0498a1a85a0b008dcc3e4e378ff6ef"; 433 433 } 434 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/te/firefox-110.0b7.tar.bz2"; 434 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/te/firefox-110.0b8.tar.bz2"; 435 435 locale = "te"; 436 436 arch = "linux-x86_64"; 437 - sha256 = "31f8b5e3900889a4832498fe4056f27ec6645191d7d962d4d491cd6a25f3c7ca"; 437 + sha256 = "214d936d334f0ad7d7a0a417b9c73cdfd38e6ba72dd8fd17e80eb45bb1216b06"; 438 438 } 439 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/th/firefox-110.0b7.tar.bz2"; 439 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/th/firefox-110.0b8.tar.bz2"; 440 440 locale = "th"; 441 441 arch = "linux-x86_64"; 442 - sha256 = "05615a0d71e6c313c7ab49af6be8f76e51735bf3e21c7c49abbb32d63d0408b0"; 442 + sha256 = "aeee496b32287f98880594bb07ad217e6cd90184a3f8615c01f77c5321055fd9"; 443 443 } 444 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/tl/firefox-110.0b7.tar.bz2"; 444 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/tl/firefox-110.0b8.tar.bz2"; 445 445 locale = "tl"; 446 446 arch = "linux-x86_64"; 447 - sha256 = "977e5443033cb0c936bc90e4679fc4bcaaaf8ebf4781383dd3fd680132cea31c"; 447 + sha256 = "242b207f636b7c25e6f6b3de964ee47eedae9380b764b05324ba633c93c93a81"; 448 448 } 449 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/tr/firefox-110.0b7.tar.bz2"; 449 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/tr/firefox-110.0b8.tar.bz2"; 450 450 locale = "tr"; 451 451 arch = "linux-x86_64"; 452 - sha256 = "6d9cc515713d158653aa13b16200bc5096d266c863f4bc53bcc74e8e8fa353ab"; 452 + sha256 = "bf8122a581172b5cd97160899b253bdb9f6c67a37dbe9a7285117092adf68c94"; 453 453 } 454 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/trs/firefox-110.0b7.tar.bz2"; 454 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/trs/firefox-110.0b8.tar.bz2"; 455 455 locale = "trs"; 456 456 arch = "linux-x86_64"; 457 - sha256 = "a5dd9e188dd9f78d6fd90d6a5a7765985fb219c247f414ea911b5f5f9c0f8c52"; 457 + sha256 = "7995c69237e99c42101c1ace2d9a591e099192a8b8a5c2779a1764541d279f1d"; 458 458 } 459 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/uk/firefox-110.0b7.tar.bz2"; 459 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/uk/firefox-110.0b8.tar.bz2"; 460 460 locale = "uk"; 461 461 arch = "linux-x86_64"; 462 - sha256 = "62f00894426fc75378dda288fc2a1cd4c7be629602632b0b0e5f175d467db107"; 462 + sha256 = "65db0c950d4626ccfbd9d9129cdf7a5baaabe9f37d78eaf58dd14c459d7be4a0"; 463 463 } 464 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/ur/firefox-110.0b7.tar.bz2"; 464 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/ur/firefox-110.0b8.tar.bz2"; 465 465 locale = "ur"; 466 466 arch = "linux-x86_64"; 467 - sha256 = "333a1364ee4117fb40f4bdf2de0433b7fa34299770b69081b7cd05403d71872e"; 467 + sha256 = "107e8e0f224a67b3bd69dd6f956dd8887fb475e02326ede21c408cb0a44f07a4"; 468 468 } 469 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/uz/firefox-110.0b7.tar.bz2"; 469 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/uz/firefox-110.0b8.tar.bz2"; 470 470 locale = "uz"; 471 471 arch = "linux-x86_64"; 472 - sha256 = "159cad78149dfaa69c6efb22bb9789fc44a7880b6d944fc099e9d89e6f54bd42"; 472 + sha256 = "fbca32000d6cdc39d447341e08d2ad587e1545e1f7dbc28dc2efa13b47a31210"; 473 473 } 474 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/vi/firefox-110.0b7.tar.bz2"; 474 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/vi/firefox-110.0b8.tar.bz2"; 475 475 locale = "vi"; 476 476 arch = "linux-x86_64"; 477 - sha256 = "8620db9130e7bd80613c2f2bfa3c9d4df8b9de8d59ebf8b822cceeb279ec649f"; 477 + sha256 = "78364adb4b166b0ad5852b8f8eb3d7c3f0a38eb7a58866e4f12754c4e8ecc265"; 478 478 } 479 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/xh/firefox-110.0b7.tar.bz2"; 479 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/xh/firefox-110.0b8.tar.bz2"; 480 480 locale = "xh"; 481 481 arch = "linux-x86_64"; 482 - sha256 = "3e1fbb4fb5feb39bd671cd576812d5fc2498fb0c73e0b058744e393bfd012716"; 482 + sha256 = "4e9290326419205d52a588a9f44f2d53693e6b987c01842fcda7e708d77d7984"; 483 483 } 484 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/zh-CN/firefox-110.0b7.tar.bz2"; 484 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/zh-CN/firefox-110.0b8.tar.bz2"; 485 485 locale = "zh-CN"; 486 486 arch = "linux-x86_64"; 487 - sha256 = "39aad118cb71b8e7e7460c690ed914ee3892691a6d8e62153b03c479b78ada23"; 487 + sha256 = "4f5bba83fb22c21922680469a484a9c2a2d2bcdd070e998dbe36785a880d756f"; 488 488 } 489 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-x86_64/zh-TW/firefox-110.0b7.tar.bz2"; 489 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-x86_64/zh-TW/firefox-110.0b8.tar.bz2"; 490 490 locale = "zh-TW"; 491 491 arch = "linux-x86_64"; 492 - sha256 = "1f8a4572bd8e75964b6105f3a8d3bcc68d811b92eb26080b014bc046ecc9edd1"; 492 + sha256 = "ba932bce9c5920395e154703522b0752ccd666ff111f7cb822cb27bc17941a3b"; 493 493 } 494 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/ach/firefox-110.0b7.tar.bz2"; 494 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/ach/firefox-110.0b8.tar.bz2"; 495 495 locale = "ach"; 496 496 arch = "linux-i686"; 497 - sha256 = "087f33cf2fab955f017634ce780d7f5c2cb8bfa888b6ed83f99c6a9a70d6b354"; 497 + sha256 = "ec500c8c4c8fec8635279c5423d322e621766f56772a4e5a63dc34bcbe3d61ed"; 498 498 } 499 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/af/firefox-110.0b7.tar.bz2"; 499 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/af/firefox-110.0b8.tar.bz2"; 500 500 locale = "af"; 501 501 arch = "linux-i686"; 502 - sha256 = "1a103ba3db1cbb66de687f9c3903061c830dce1ea572511c697f1f2a8296c5c1"; 502 + sha256 = "8810a1cefe5545a7dafe58174421ba9d631d22ae49462544637cfe167a97d2bf"; 503 503 } 504 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/an/firefox-110.0b7.tar.bz2"; 504 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/an/firefox-110.0b8.tar.bz2"; 505 505 locale = "an"; 506 506 arch = "linux-i686"; 507 - sha256 = "a731279bda038053c3b79eebc09985d6af74c5c31ec438f13ffde59908148383"; 507 + sha256 = "d8bfc06a0fc67ce4c84b339a28177ff7066f72f5cb77b37922170e073ac74e99"; 508 508 } 509 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/ar/firefox-110.0b7.tar.bz2"; 509 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/ar/firefox-110.0b8.tar.bz2"; 510 510 locale = "ar"; 511 511 arch = "linux-i686"; 512 - sha256 = "1e8ab65e878a4d4139e3b76d36e1d69b814da191052ab2c7cd41801ff73c13d5"; 512 + sha256 = "ec6674a2241852a443d0d22d34eb094c0de075e7d255f9bb026251dfa6aee85e"; 513 513 } 514 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/ast/firefox-110.0b7.tar.bz2"; 514 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/ast/firefox-110.0b8.tar.bz2"; 515 515 locale = "ast"; 516 516 arch = "linux-i686"; 517 - sha256 = "f4d7176d611a93a0153e367a20c817c6bace9011bd8f0466b52769023a4077cf"; 517 + sha256 = "70b5050c81b7f0c1045e868c87925f1d0526cc3b133c15ef9edaade6ef7f50aa"; 518 518 } 519 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/az/firefox-110.0b7.tar.bz2"; 519 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/az/firefox-110.0b8.tar.bz2"; 520 520 locale = "az"; 521 521 arch = "linux-i686"; 522 - sha256 = "0d3ceff5f5dd2143994603b707dd049c46f20c7c95513429b6749b62b1307246"; 522 + sha256 = "1eba11cd825d691b0bfdc71e4e7f017d3b52992c5fc1a7db89a85cf6b8723680"; 523 523 } 524 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/be/firefox-110.0b7.tar.bz2"; 524 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/be/firefox-110.0b8.tar.bz2"; 525 525 locale = "be"; 526 526 arch = "linux-i686"; 527 - sha256 = "692715493278ed1af2f14cae406b78dc78693177e0cfb7aa3d6deb786049a5fc"; 527 + sha256 = "9e604836e097c1b5412fa4acab74b650881590c3430c1b822d5b1f7f6edb4e9d"; 528 528 } 529 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/bg/firefox-110.0b7.tar.bz2"; 529 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/bg/firefox-110.0b8.tar.bz2"; 530 530 locale = "bg"; 531 531 arch = "linux-i686"; 532 - sha256 = "5515025b46068c7e8e588ab7e53fc5770e3b140f9c28dabe0941c481041d9f22"; 532 + sha256 = "4e756271ec8af70d67ceddb75962de3d398bb183e28fbb8b18f77c92d453b6e8"; 533 533 } 534 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/bn/firefox-110.0b7.tar.bz2"; 534 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/bn/firefox-110.0b8.tar.bz2"; 535 535 locale = "bn"; 536 536 arch = "linux-i686"; 537 - sha256 = "fb44bc2046389982c0f2c60b80a8ac9a15a8d8888b64c63bdb2dcf6a71bfc6be"; 537 + sha256 = "089315934a955fd48f4a546eeec9a74ac483a742dc1456c4bb078f927a1a990b"; 538 538 } 539 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/br/firefox-110.0b7.tar.bz2"; 539 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/br/firefox-110.0b8.tar.bz2"; 540 540 locale = "br"; 541 541 arch = "linux-i686"; 542 - sha256 = "518269cec028a721d718574398abe5a5b741d0429bb5104ca14fd31139504ac8"; 542 + sha256 = "0448de8755a6d48e012224db25acfe11c20b6f41e7b39935cba9501ff513037f"; 543 543 } 544 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/bs/firefox-110.0b7.tar.bz2"; 544 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/bs/firefox-110.0b8.tar.bz2"; 545 545 locale = "bs"; 546 546 arch = "linux-i686"; 547 - sha256 = "54b5c948f0d2f9232ccc2011a272890eaf430dad483863fee486b1028f1c30d5"; 547 + sha256 = "2c749a81052756da521076a67fc0ae06f110e80278de0588b252354667fc85b3"; 548 548 } 549 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/ca-valencia/firefox-110.0b7.tar.bz2"; 549 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/ca-valencia/firefox-110.0b8.tar.bz2"; 550 550 locale = "ca-valencia"; 551 551 arch = "linux-i686"; 552 - sha256 = "c06b0fde02bbd0ae124547c38b5174848cb901eabe2a4d47efd296ce46994145"; 552 + sha256 = "784fb8bf6a32caf67052c653924b9fa51fad94d3177f8f8f29c6c210324e6f84"; 553 553 } 554 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/ca/firefox-110.0b7.tar.bz2"; 554 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/ca/firefox-110.0b8.tar.bz2"; 555 555 locale = "ca"; 556 556 arch = "linux-i686"; 557 - sha256 = "8fbb138aeb632e47fdcd2ec435a5940f33b6718e5fa69f323e700eb299e29336"; 557 + sha256 = "9133696b439986db2a1fe79359c341b9868dc44a2167e8a4f645942753f562b9"; 558 558 } 559 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/cak/firefox-110.0b7.tar.bz2"; 559 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/cak/firefox-110.0b8.tar.bz2"; 560 560 locale = "cak"; 561 561 arch = "linux-i686"; 562 - sha256 = "b4ea7698f05ed439644f6f2e6c0dc9c9deed33e7dcaa353839b713a71009db95"; 562 + sha256 = "2b7a3a15e6c2326420b3e82ab0e126370b9a88ca32e96d99b47238857cf57c4e"; 563 563 } 564 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/cs/firefox-110.0b7.tar.bz2"; 564 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/cs/firefox-110.0b8.tar.bz2"; 565 565 locale = "cs"; 566 566 arch = "linux-i686"; 567 - sha256 = "882110d77a5a432718734cfe0b36086eb853434936d80e1e8d003a5b391eb10c"; 567 + sha256 = "51bf4a01e29710079536bf4000368f1087f707a1916c20ee2d5d14644fed6e2b"; 568 568 } 569 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/cy/firefox-110.0b7.tar.bz2"; 569 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/cy/firefox-110.0b8.tar.bz2"; 570 570 locale = "cy"; 571 571 arch = "linux-i686"; 572 - sha256 = "52db3775d786db676fbdb14cd9630d8a89411699997f4e83eb112bf64f7d49f5"; 572 + sha256 = "5b5073c00de486045e38232f680ffbd49ed21a378b0d7ed7814e00b908e59596"; 573 573 } 574 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/da/firefox-110.0b7.tar.bz2"; 574 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/da/firefox-110.0b8.tar.bz2"; 575 575 locale = "da"; 576 576 arch = "linux-i686"; 577 - sha256 = "20ad2fc0e7a7a5a3299ba418824c7b7c1cc1b3d4b05fc9a71b1bbd1b24e17465"; 577 + sha256 = "aa786c2c368d7d51888e85703b19cb5c12c70d55452922d3b68945366c0ad5be"; 578 578 } 579 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/de/firefox-110.0b7.tar.bz2"; 579 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/de/firefox-110.0b8.tar.bz2"; 580 580 locale = "de"; 581 581 arch = "linux-i686"; 582 - sha256 = "3aa77c6ebba69ab350dc0bbf0e2711c29ceadf519a1c720c512e72c38ca8fa1b"; 582 + sha256 = "f5e3e08881fe08da2177b6906b76a0885cadae8b1d02591185f0f702ceb4d12d"; 583 583 } 584 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/dsb/firefox-110.0b7.tar.bz2"; 584 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/dsb/firefox-110.0b8.tar.bz2"; 585 585 locale = "dsb"; 586 586 arch = "linux-i686"; 587 - sha256 = "e2419464cb5d7b12d5adb915f59320e6268e797175e73516109de2540a1f1c0a"; 587 + sha256 = "182669ab7334a9b5e74dd8f922a69e010f3db2a2d0ebde4c318176d4c66cdaf1"; 588 588 } 589 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/el/firefox-110.0b7.tar.bz2"; 589 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/el/firefox-110.0b8.tar.bz2"; 590 590 locale = "el"; 591 591 arch = "linux-i686"; 592 - sha256 = "1652e24aa351f17b65e1f5aee895f28b2383ecb3df069c6a9e1dce0e7b59bde8"; 592 + sha256 = "664bd97d14219f58ef767e7beb1b4795d85be49814ae56db8780829511dd4b60"; 593 593 } 594 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/en-CA/firefox-110.0b7.tar.bz2"; 594 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/en-CA/firefox-110.0b8.tar.bz2"; 595 595 locale = "en-CA"; 596 596 arch = "linux-i686"; 597 - sha256 = "7973cee03a4e0395caf6d93903d3b1192133634adb9a1f468a218d2196e59d96"; 597 + sha256 = "fc6b10b31e9d8228c0fa89c226efd8d0fee9e170251369bc096e86a98a2cfffe"; 598 598 } 599 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/en-GB/firefox-110.0b7.tar.bz2"; 599 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/en-GB/firefox-110.0b8.tar.bz2"; 600 600 locale = "en-GB"; 601 601 arch = "linux-i686"; 602 - sha256 = "c03ef3a829ec20a48b5fc767511e7500f2cd0a61b431feeec92249c7835060fe"; 602 + sha256 = "e2b5a1fbdeef06d94f2abff9c1e9fa5e5772ba1e3cef31839d47240b1201faed"; 603 603 } 604 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/en-US/firefox-110.0b7.tar.bz2"; 604 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/en-US/firefox-110.0b8.tar.bz2"; 605 605 locale = "en-US"; 606 606 arch = "linux-i686"; 607 - sha256 = "ff24f93e7f6e20e69bfb3f0498c298c0a24a2c5b6d2a3cc7dcf86efbd1ed646b"; 607 + sha256 = "26b6bdf7f5b184f5878622c22861b37299cf2ef720056ea452a0ab1daaacb2a6"; 608 608 } 609 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/eo/firefox-110.0b7.tar.bz2"; 609 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/eo/firefox-110.0b8.tar.bz2"; 610 610 locale = "eo"; 611 611 arch = "linux-i686"; 612 - sha256 = "5a8ab87d0ba32dd39c8ed2e4a96b1d9fb81a9c08e75463a3fcb832872373a700"; 612 + sha256 = "307ba5a4477a1234d0bc3f73c6e8e28692212c5d7f58203e4e336100f9d0498d"; 613 613 } 614 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/es-AR/firefox-110.0b7.tar.bz2"; 614 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/es-AR/firefox-110.0b8.tar.bz2"; 615 615 locale = "es-AR"; 616 616 arch = "linux-i686"; 617 - sha256 = "6c47cd6618df40e918a5f1037a250c58a6c5c9aba69d61f81cf600f13fcb3246"; 617 + sha256 = "a35b01a8569d34b627bb3a9a24e670f865fdc33d0606f1b0eab9e8c1b7f73601"; 618 618 } 619 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/es-CL/firefox-110.0b7.tar.bz2"; 619 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/es-CL/firefox-110.0b8.tar.bz2"; 620 620 locale = "es-CL"; 621 621 arch = "linux-i686"; 622 - sha256 = "32f7e8aad08e9a47d49d1ed4a6f498649e3a1972a3bafb52302c5ffe3cc40ffc"; 622 + sha256 = "6910b74dec7071a2b33b2bd09f5ae61bdee7b77030287d243de90b7f4e326c22"; 623 623 } 624 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/es-ES/firefox-110.0b7.tar.bz2"; 624 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/es-ES/firefox-110.0b8.tar.bz2"; 625 625 locale = "es-ES"; 626 626 arch = "linux-i686"; 627 - sha256 = "7727f95d6af5d3b50a2721d3e650ee28db48f258861ecd4cd7f11ec594035864"; 627 + sha256 = "be75ed4c9c6572d92bdde9dab331854eadd07fd5321792c65665a207fd3c5904"; 628 628 } 629 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/es-MX/firefox-110.0b7.tar.bz2"; 629 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/es-MX/firefox-110.0b8.tar.bz2"; 630 630 locale = "es-MX"; 631 631 arch = "linux-i686"; 632 - sha256 = "bafdc566604fc9c22a0f798b8918ebaeaa88efd85f80284a05c01774eaf48e8e"; 632 + sha256 = "ff98f40124d28f441215fd19199f2b99b7ed2370842af1045add334c3cf5825c"; 633 633 } 634 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/et/firefox-110.0b7.tar.bz2"; 634 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/et/firefox-110.0b8.tar.bz2"; 635 635 locale = "et"; 636 636 arch = "linux-i686"; 637 - sha256 = "b1b99dcce7b4bd9f9b061993e318b3167575767c9dce53ad8f523a60352bba42"; 637 + sha256 = "65158799c952aeff6e72ff675f6fb69b8fd981b8315bb45d0712326ee973b543"; 638 638 } 639 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/eu/firefox-110.0b7.tar.bz2"; 639 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/eu/firefox-110.0b8.tar.bz2"; 640 640 locale = "eu"; 641 641 arch = "linux-i686"; 642 - sha256 = "c780e78aef0e58d88dec5401d5b7bd11afb2dbebda3e5a5ea149d480bcd0ad8f"; 642 + sha256 = "1d1cc6139aada38bc8c5bad570e7722165eee34081140e97cb3f726ee07b322d"; 643 643 } 644 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/fa/firefox-110.0b7.tar.bz2"; 644 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/fa/firefox-110.0b8.tar.bz2"; 645 645 locale = "fa"; 646 646 arch = "linux-i686"; 647 - sha256 = "51f9102321077e0e4b07a95fbf4a481e812e6196db5c646687850e3e2a5da883"; 647 + sha256 = "1771265328653411950394f9688078816b1cf518a8adcdf5c086d18008af39c0"; 648 648 } 649 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/ff/firefox-110.0b7.tar.bz2"; 649 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/ff/firefox-110.0b8.tar.bz2"; 650 650 locale = "ff"; 651 651 arch = "linux-i686"; 652 - sha256 = "ee7831ea2b5a762a975bd5536682c2153f69ba414ea14ef6c5cd922c4cab80ff"; 652 + sha256 = "b0602ea788eb7804f749ca088850f4832c58b52fc3527b42db121a90a8b5e757"; 653 653 } 654 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/fi/firefox-110.0b7.tar.bz2"; 654 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/fi/firefox-110.0b8.tar.bz2"; 655 655 locale = "fi"; 656 656 arch = "linux-i686"; 657 - sha256 = "250b50459321ac6ea4d000770e76e9e802cda686cc1915fb115764eea60923d9"; 657 + sha256 = "3ddc1726866b9c20eaf5e59e55ffdc0f1ffe335b072637feab1e37fa75c71245"; 658 658 } 659 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/fr/firefox-110.0b7.tar.bz2"; 659 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/fr/firefox-110.0b8.tar.bz2"; 660 660 locale = "fr"; 661 661 arch = "linux-i686"; 662 - sha256 = "e44fa4fba61be3854b63d1f8d387c84fbeffab008277246524f6eae9bcff7c3e"; 662 + sha256 = "738c5902dcb0cdab1f8e3a12243a8276dd1a5df34c9b6014b2373bc3a5c307f7"; 663 663 } 664 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/fy-NL/firefox-110.0b7.tar.bz2"; 664 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/fy-NL/firefox-110.0b8.tar.bz2"; 665 665 locale = "fy-NL"; 666 666 arch = "linux-i686"; 667 - sha256 = "287893ecfa83777518d7a341beef2681921b90cb5106915fd0331066aba63979"; 667 + sha256 = "701139fed71032ba9e0f039deebd51c0b212e656c19c377f081398d29a04262f"; 668 668 } 669 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/ga-IE/firefox-110.0b7.tar.bz2"; 669 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/ga-IE/firefox-110.0b8.tar.bz2"; 670 670 locale = "ga-IE"; 671 671 arch = "linux-i686"; 672 - sha256 = "ed42aeae5dcb79f45593ddcdc66c6b8188cb8304ed82400e355d75a4e53b03ed"; 672 + sha256 = "449b503b56a53ed10bb6d48721be494a983884e0544a80d95433cf621d31cdc4"; 673 673 } 674 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/gd/firefox-110.0b7.tar.bz2"; 674 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/gd/firefox-110.0b8.tar.bz2"; 675 675 locale = "gd"; 676 676 arch = "linux-i686"; 677 - sha256 = "5bc49a642ce8928c6f46b2fa22bc61915aad660ab1ac5352f5cde0b5c44a8800"; 677 + sha256 = "8105073ef11ed62c347d2720d095b3a2faad65e11a50c6dd7c8b1d06c381eb7d"; 678 678 } 679 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/gl/firefox-110.0b7.tar.bz2"; 679 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/gl/firefox-110.0b8.tar.bz2"; 680 680 locale = "gl"; 681 681 arch = "linux-i686"; 682 - sha256 = "9f24feee5b7fc0d13e4e17374c519ceb411cf629936b2e06700dcc6a63de74d7"; 682 + sha256 = "faf007e32a4dc925d7695754c426f3660acc08ca772597648735b0c8d92e80a1"; 683 683 } 684 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/gn/firefox-110.0b7.tar.bz2"; 684 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/gn/firefox-110.0b8.tar.bz2"; 685 685 locale = "gn"; 686 686 arch = "linux-i686"; 687 - sha256 = "a64db5547fbd8451ece0d43169525289355e397c9a2af95efb42603a23422972"; 687 + sha256 = "52fb45eeba6446a8fe23f976acda920a5167e8d6396c0e364dab906addff9e52"; 688 688 } 689 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/gu-IN/firefox-110.0b7.tar.bz2"; 689 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/gu-IN/firefox-110.0b8.tar.bz2"; 690 690 locale = "gu-IN"; 691 691 arch = "linux-i686"; 692 - sha256 = "bf07cb9e3c257dd6a34a42851a78032260657c6763ccf255091fd2f3f29ba10a"; 692 + sha256 = "7a4e841acc56dfbc34cce46ff8dbc0e24cec260b8567486dce7480b60af60982"; 693 693 } 694 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/he/firefox-110.0b7.tar.bz2"; 694 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/he/firefox-110.0b8.tar.bz2"; 695 695 locale = "he"; 696 696 arch = "linux-i686"; 697 - sha256 = "7112abf91af307c3304614c1c880b282ed24faab39a7111dea5cb2293328ca7a"; 697 + sha256 = "da7e501b8c1593cb3dee96b10f822615cfe58351d8f058228fd9af4e861d3a5d"; 698 698 } 699 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/hi-IN/firefox-110.0b7.tar.bz2"; 699 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/hi-IN/firefox-110.0b8.tar.bz2"; 700 700 locale = "hi-IN"; 701 701 arch = "linux-i686"; 702 - sha256 = "998da861a738665b932b014b164ca69bb047dce7b2060c005ce7525832c8000b"; 702 + sha256 = "83dfe9cc2116c5fa780dcc6709a81325ff23314b726ed7b3f02fbca5621d1ba6"; 703 703 } 704 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/hr/firefox-110.0b7.tar.bz2"; 704 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/hr/firefox-110.0b8.tar.bz2"; 705 705 locale = "hr"; 706 706 arch = "linux-i686"; 707 - sha256 = "29eaeb3ce5e36f3704087a7a202ab56e8c0d97bf7884e083a01ff526edb4d9f4"; 707 + sha256 = "10f68c3e7672f6d021861eb4041d546663d6095ababca87e60734e9cfd09ab19"; 708 708 } 709 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/hsb/firefox-110.0b7.tar.bz2"; 709 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/hsb/firefox-110.0b8.tar.bz2"; 710 710 locale = "hsb"; 711 711 arch = "linux-i686"; 712 - sha256 = "e3ed50d7bca83a3cbc5bd5f10f93a44244e6c3f808bbaa76265f83450824b311"; 712 + sha256 = "18266c49bf2ef7b383e69d2f12a4866b34b592c6650c8468104d2c3274d6bbc2"; 713 713 } 714 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/hu/firefox-110.0b7.tar.bz2"; 714 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/hu/firefox-110.0b8.tar.bz2"; 715 715 locale = "hu"; 716 716 arch = "linux-i686"; 717 - sha256 = "052ba5d76c6eeb1e4d66a6c6425f37e03d6ae69e78953d1f0d335e1c6e34ba5d"; 717 + sha256 = "a67efddc94b7045c34e500322ae9138c60dece5df38b1c73c8a806a49c51bdc6"; 718 718 } 719 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/hy-AM/firefox-110.0b7.tar.bz2"; 719 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/hy-AM/firefox-110.0b8.tar.bz2"; 720 720 locale = "hy-AM"; 721 721 arch = "linux-i686"; 722 - sha256 = "8283129029aa358c15cfb58404b2d1d59e063d697bc73ecfcccc5bbc259c3871"; 722 + sha256 = "3c3cd679598a1ee33cb85552cca8da37805e28bcbac18a1954c44479332027dd"; 723 723 } 724 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/ia/firefox-110.0b7.tar.bz2"; 724 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/ia/firefox-110.0b8.tar.bz2"; 725 725 locale = "ia"; 726 726 arch = "linux-i686"; 727 - sha256 = "d72a8f87608a01e72803e728588756e76b8635fcf79895ca220d9c3c1e9e28d2"; 727 + sha256 = "e3a4b3fff1ac65e6c5013b33acf92bdc9a5d73be588969ae911ee57fc156bec9"; 728 728 } 729 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/id/firefox-110.0b7.tar.bz2"; 729 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/id/firefox-110.0b8.tar.bz2"; 730 730 locale = "id"; 731 731 arch = "linux-i686"; 732 - sha256 = "d77a76b2ef8c9b2a76d05318d0a52bfb975adf68f90a6d1427859cc115240a34"; 732 + sha256 = "c21dbdd5fba0f80ec211c2d678c97c45c15d4c38c7a9ef2df3ebe419cbc159d7"; 733 733 } 734 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/is/firefox-110.0b7.tar.bz2"; 734 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/is/firefox-110.0b8.tar.bz2"; 735 735 locale = "is"; 736 736 arch = "linux-i686"; 737 - sha256 = "6313e71419b14e0a80f9b4f3a6781610ffcc217e7fae8e8198eac7598170fede"; 737 + sha256 = "c0c4999106db151910a9092959c0e1cb1792f4feb1c06e391209ba27e59e50cf"; 738 738 } 739 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/it/firefox-110.0b7.tar.bz2"; 739 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/it/firefox-110.0b8.tar.bz2"; 740 740 locale = "it"; 741 741 arch = "linux-i686"; 742 - sha256 = "21d62df2f19513d6c1554f88dd089b1d8395fbe5d575b73adf53f82be75c49f7"; 742 + sha256 = "1f4f9d9f2501e024e1556a81f86dadc53a15aa87ba2afd18e24c671f097bfc28"; 743 743 } 744 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/ja/firefox-110.0b7.tar.bz2"; 744 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/ja/firefox-110.0b8.tar.bz2"; 745 745 locale = "ja"; 746 746 arch = "linux-i686"; 747 - sha256 = "823d5850feea222c884c70d1cd1d26e819cf3512652b0967482b4f81546f8180"; 747 + sha256 = "0418505229d99088fff72c145a9dbb54f893033dfd0688e4cfdca5d166a9b1dc"; 748 748 } 749 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/ka/firefox-110.0b7.tar.bz2"; 749 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/ka/firefox-110.0b8.tar.bz2"; 750 750 locale = "ka"; 751 751 arch = "linux-i686"; 752 - sha256 = "18a6328ff12f058fc982e7e5e9db18c1e01137046ff569d27e2281da60ea7642"; 752 + sha256 = "cb2799206f8ebeac345dd3cf9cec63ffaab369c191b056816f86024eace0cdab"; 753 753 } 754 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/kab/firefox-110.0b7.tar.bz2"; 754 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/kab/firefox-110.0b8.tar.bz2"; 755 755 locale = "kab"; 756 756 arch = "linux-i686"; 757 - sha256 = "f03e001fe3456f19ce3c1ec769d938034d7b93ffbde22cf592953ecea79be08e"; 757 + sha256 = "8ae745f6130fd0be975662f1ca2f73693b2e6eef28495b154f1e45cfc029650a"; 758 758 } 759 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/kk/firefox-110.0b7.tar.bz2"; 759 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/kk/firefox-110.0b8.tar.bz2"; 760 760 locale = "kk"; 761 761 arch = "linux-i686"; 762 - sha256 = "ede5525fa61b020e63386562d52025579c31b9309238d1960bd0fe8e0544609d"; 762 + sha256 = "184448dc29505c50a9e8c0bcf0974c5a02cd91fce5fae168b7bbb8743b552a8f"; 763 763 } 764 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/km/firefox-110.0b7.tar.bz2"; 764 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/km/firefox-110.0b8.tar.bz2"; 765 765 locale = "km"; 766 766 arch = "linux-i686"; 767 - sha256 = "800628c8e2e3f4a79c88b86d0e35a1f95afd5f0b910e23ffe47fffce15f663d8"; 767 + sha256 = "b2e8732b0f85aec1cce3c17b7a01805d7fb63852dd2940ab16557e42f11e4eb4"; 768 768 } 769 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/kn/firefox-110.0b7.tar.bz2"; 769 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/kn/firefox-110.0b8.tar.bz2"; 770 770 locale = "kn"; 771 771 arch = "linux-i686"; 772 - sha256 = "e04f625d658f27b74115db26adecf5c9eecf7b10317f025bcc9a56e47f9c6309"; 772 + sha256 = "504ae6d4df7241c99f36a59fc8d9fda35afd42a73e5871968e29a8cd052a7f4f"; 773 773 } 774 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/ko/firefox-110.0b7.tar.bz2"; 774 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/ko/firefox-110.0b8.tar.bz2"; 775 775 locale = "ko"; 776 776 arch = "linux-i686"; 777 - sha256 = "ebca3d23397626e42f41a88ebc9271da9b25c3605e79ef3c952400e876975297"; 777 + sha256 = "06d8be7f8a727115819bc49fefe0a2a362f0598cb01bed17424c9a964b305cdb"; 778 778 } 779 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/lij/firefox-110.0b7.tar.bz2"; 779 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/lij/firefox-110.0b8.tar.bz2"; 780 780 locale = "lij"; 781 781 arch = "linux-i686"; 782 - sha256 = "a6c033d120e27830f89f6fba1af6332251d3e0a820901729bf5c3f4633cf7012"; 782 + sha256 = "489089ee5f413ab46c69a9981625f5f07aa95ea1ba06fafcb8e9d14047255af6"; 783 783 } 784 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/lt/firefox-110.0b7.tar.bz2"; 784 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/lt/firefox-110.0b8.tar.bz2"; 785 785 locale = "lt"; 786 786 arch = "linux-i686"; 787 - sha256 = "34a9e7a2cb57366e4bd4732a767228208defd0880768c989c6b5b9bc94a2247e"; 787 + sha256 = "fe86a88921f10d76c0ed8ac1c0b4ac56406b9c8c09a9c212ba8f20f0be879418"; 788 788 } 789 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/lv/firefox-110.0b7.tar.bz2"; 789 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/lv/firefox-110.0b8.tar.bz2"; 790 790 locale = "lv"; 791 791 arch = "linux-i686"; 792 - sha256 = "831ca204a770068ce4105cf1033b5586872bd0071ddbe9d9bbb0f2495efc28cd"; 792 + sha256 = "845c7bf589cac1dd0d292d573d939fbad9462f980a9d2d8390132a8dabfef0b9"; 793 793 } 794 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/mk/firefox-110.0b7.tar.bz2"; 794 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/mk/firefox-110.0b8.tar.bz2"; 795 795 locale = "mk"; 796 796 arch = "linux-i686"; 797 - sha256 = "cd16ea3a977ff335bfe8636cca62c46d12d0de22ba4429eded5a2ce79a53818d"; 797 + sha256 = "573f1e0fcd6053c64957a87fb9f5f5a48a3ee266eb712c9b09157ed690df0a18"; 798 798 } 799 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/mr/firefox-110.0b7.tar.bz2"; 799 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/mr/firefox-110.0b8.tar.bz2"; 800 800 locale = "mr"; 801 801 arch = "linux-i686"; 802 - sha256 = "22a12d923e87800bb0998fadf6763d0fefa4be7a0df39e85a76200f5d1e641b4"; 802 + sha256 = "9b7ea4b5f67ca110ba1586d2abbb506a832988e6a278b83ea6620fb0e0c7dac7"; 803 803 } 804 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/ms/firefox-110.0b7.tar.bz2"; 804 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/ms/firefox-110.0b8.tar.bz2"; 805 805 locale = "ms"; 806 806 arch = "linux-i686"; 807 - sha256 = "9ebf9de1970c562b68207f7051217497059235d2c5ed12caee5144923e1e05a7"; 807 + sha256 = "e4c035196bba510e0b0caf699c24683b44219a4d51ac9dfcfe7874afdeb4f91f"; 808 808 } 809 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/my/firefox-110.0b7.tar.bz2"; 809 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/my/firefox-110.0b8.tar.bz2"; 810 810 locale = "my"; 811 811 arch = "linux-i686"; 812 - sha256 = "245f82a08ef506715abdd248577023d4f785a832b3dbd6190fa4bb1d60dd6fd7"; 812 + sha256 = "be04fcc80b42505922d564dcc71f59ad18977e8bcaedfdb051b0037650685abb"; 813 813 } 814 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/nb-NO/firefox-110.0b7.tar.bz2"; 814 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/nb-NO/firefox-110.0b8.tar.bz2"; 815 815 locale = "nb-NO"; 816 816 arch = "linux-i686"; 817 - sha256 = "2680ba8aed6bc7e3aac9648e27045560b625948ec50a5a849130713184344038"; 817 + sha256 = "4b97136ee0f64b4e0978871b8618e5a59f390a1cdf14a857d7c3d0474278e747"; 818 818 } 819 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/ne-NP/firefox-110.0b7.tar.bz2"; 819 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/ne-NP/firefox-110.0b8.tar.bz2"; 820 820 locale = "ne-NP"; 821 821 arch = "linux-i686"; 822 - sha256 = "9445de860d2de2154481aff7479be96e0a1c6929a6345ef8028d3c62afdd9d9b"; 822 + sha256 = "e1d3c4ff0d67c3f927e1846678d687f9b1fcacf2c810a228a263385d0844d151"; 823 823 } 824 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/nl/firefox-110.0b7.tar.bz2"; 824 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/nl/firefox-110.0b8.tar.bz2"; 825 825 locale = "nl"; 826 826 arch = "linux-i686"; 827 - sha256 = "336c25dcf9c23c7a3e008afba5cac728f94de9b9b2dc475da416fccce815e872"; 827 + sha256 = "8532106ddc363e24b76fa2d8326f88e98da2bafe588badef3b29658526aebfc1"; 828 828 } 829 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/nn-NO/firefox-110.0b7.tar.bz2"; 829 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/nn-NO/firefox-110.0b8.tar.bz2"; 830 830 locale = "nn-NO"; 831 831 arch = "linux-i686"; 832 - sha256 = "4fd7a750b4339dadb7ec606d5fb2286003e8dc435a9c691fa9ae32cb53f5e9d2"; 832 + sha256 = "a2e289e59aa8ea7213b771cc1c249406b28cfbf1624efa06bd700b15f40bf9e7"; 833 833 } 834 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/oc/firefox-110.0b7.tar.bz2"; 834 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/oc/firefox-110.0b8.tar.bz2"; 835 835 locale = "oc"; 836 836 arch = "linux-i686"; 837 - sha256 = "ffc7e5383d3e6fe74079b255cd2148406ba0fab1b1d0a139ab6004fe3c46309c"; 837 + sha256 = "fcad2ca73437f84d8e500e329da800bd15f5758b99ac896cfa1d7eb2525a141f"; 838 838 } 839 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/pa-IN/firefox-110.0b7.tar.bz2"; 839 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/pa-IN/firefox-110.0b8.tar.bz2"; 840 840 locale = "pa-IN"; 841 841 arch = "linux-i686"; 842 - sha256 = "863025ea1ebc894c0522cde1042866eeeb698967eec044d79c6d2eb0d76f1348"; 842 + sha256 = "ee61ee0a16045d0919407758261f749ab6d4a612439521166dfce0e9208f6cb0"; 843 843 } 844 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/pl/firefox-110.0b7.tar.bz2"; 844 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/pl/firefox-110.0b8.tar.bz2"; 845 845 locale = "pl"; 846 846 arch = "linux-i686"; 847 - sha256 = "1dc6ab6b213cdf1a431c0e85879a03bacc4dc66c9c29042a678248c89800f4a9"; 847 + sha256 = "7bc34d9a72a0c9197bce9730262dcb9a254a40c27641022e854a37daf9756b39"; 848 848 } 849 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/pt-BR/firefox-110.0b7.tar.bz2"; 849 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/pt-BR/firefox-110.0b8.tar.bz2"; 850 850 locale = "pt-BR"; 851 851 arch = "linux-i686"; 852 - sha256 = "cb20f0107e580e27c0b226b2ebe32ea26fb7f3818703af9994be0d59020551eb"; 852 + sha256 = "7b3344c25a5ac842d565525dcf8e771da15c30fb936721c469e739b18f9dfdec"; 853 853 } 854 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/pt-PT/firefox-110.0b7.tar.bz2"; 854 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/pt-PT/firefox-110.0b8.tar.bz2"; 855 855 locale = "pt-PT"; 856 856 arch = "linux-i686"; 857 - sha256 = "95001d06104329f3bc5c6228aa11bbefdd76c49b7acf2cf41d3bc77a7f9aa2f7"; 857 + sha256 = "ac1024a1f0183960116b604f2d2a7abfb321f91aedcdf67d3ae9befe2b49051a"; 858 858 } 859 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/rm/firefox-110.0b7.tar.bz2"; 859 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/rm/firefox-110.0b8.tar.bz2"; 860 860 locale = "rm"; 861 861 arch = "linux-i686"; 862 - sha256 = "7f39d3673ba4c3ee2ddcaaee45013c0613426ffe61f46b33efd9fccf841a7f24"; 862 + sha256 = "bd90d0110d0c5f1273f3d82b38e5690dfe7eec8dbfa29f9ce7627d75c495c968"; 863 863 } 864 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/ro/firefox-110.0b7.tar.bz2"; 864 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/ro/firefox-110.0b8.tar.bz2"; 865 865 locale = "ro"; 866 866 arch = "linux-i686"; 867 - sha256 = "d7c20ac79977897823ea0da217542bd57970eebf5406e97c2e9ae7675d69a6ee"; 867 + sha256 = "26f09bd30df370c65327728cda50206df8a0b9bb50d1273c81249cfaebae37e8"; 868 868 } 869 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/ru/firefox-110.0b7.tar.bz2"; 869 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/ru/firefox-110.0b8.tar.bz2"; 870 870 locale = "ru"; 871 871 arch = "linux-i686"; 872 - sha256 = "dea8ef23f97436885f878a8dea2fcba2e3976c3dd07c5e8cef1988d0d22231b1"; 872 + sha256 = "0f9b03dff8c002b7a56c6d7f125d411652a6c1b00eecf317454f936cb887e4f9"; 873 873 } 874 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/sco/firefox-110.0b7.tar.bz2"; 874 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/sco/firefox-110.0b8.tar.bz2"; 875 875 locale = "sco"; 876 876 arch = "linux-i686"; 877 - sha256 = "aab56b5773e2c288d01966badd966af26b63cf67eb4c83d1a2ca0e6fcae98706"; 877 + sha256 = "a7d2e6266a1e15a3b6e4bc851963ac7b2ccb181eb83a4fe4e83e99a56804aa3c"; 878 878 } 879 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/si/firefox-110.0b7.tar.bz2"; 879 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/si/firefox-110.0b8.tar.bz2"; 880 880 locale = "si"; 881 881 arch = "linux-i686"; 882 - sha256 = "411207727c4c48fb69f228108f3d6d370de2b5a2f74bf11aac1d161cefa83383"; 882 + sha256 = "6452b61aa8acde4d2a0bb82f8070357309a4a963a4aada36fe5460055a9bedf6"; 883 883 } 884 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/sk/firefox-110.0b7.tar.bz2"; 884 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/sk/firefox-110.0b8.tar.bz2"; 885 885 locale = "sk"; 886 886 arch = "linux-i686"; 887 - sha256 = "f177d85c34359e4d956e53f8f7d8ace69cbca8d67a539d763d422f4208a344fe"; 887 + sha256 = "37f801f1c9a0f020ce9729c70788024f0e71b62ae8860c3b301d95bebb89efcb"; 888 888 } 889 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/sl/firefox-110.0b7.tar.bz2"; 889 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/sl/firefox-110.0b8.tar.bz2"; 890 890 locale = "sl"; 891 891 arch = "linux-i686"; 892 - sha256 = "7bb5820d67de6cc6a8630f22a8dc7b68069e6e2bb845dcf165aecd0fb5500076"; 892 + sha256 = "0afbacd201d903aa3341477450977c1a233f2843c43e77d7a73393c34b342c62"; 893 893 } 894 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/son/firefox-110.0b7.tar.bz2"; 894 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/son/firefox-110.0b8.tar.bz2"; 895 895 locale = "son"; 896 896 arch = "linux-i686"; 897 - sha256 = "8642e3eb16df9beffda8cd73aa7a4bff48fbe8f14c912679df487e7cce4a79fc"; 897 + sha256 = "21c132be9a28d7c18d3045182d47a541b0af37c6306f8c08b8b4d28a6d3835f3"; 898 898 } 899 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/sq/firefox-110.0b7.tar.bz2"; 899 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/sq/firefox-110.0b8.tar.bz2"; 900 900 locale = "sq"; 901 901 arch = "linux-i686"; 902 - sha256 = "1d8da9e05a5ecaa73f4f0913dd8af682ebef382604b477bd72f5c6df6daa4ef3"; 902 + sha256 = "74d545cb511311c0d2648b994a79c5f63bf1ae6044638180117c38c6575dc882"; 903 903 } 904 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/sr/firefox-110.0b7.tar.bz2"; 904 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/sr/firefox-110.0b8.tar.bz2"; 905 905 locale = "sr"; 906 906 arch = "linux-i686"; 907 - sha256 = "7c33d0a47a03de39afc1fa0a0be1849b40b37dc0b5ca8db41d63577c2f6adf60"; 907 + sha256 = "4e3d14eef5f10d9cc6d25c840d26445f1a26a3c558265093b76ebfe00e05f2f1"; 908 908 } 909 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/sv-SE/firefox-110.0b7.tar.bz2"; 909 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/sv-SE/firefox-110.0b8.tar.bz2"; 910 910 locale = "sv-SE"; 911 911 arch = "linux-i686"; 912 - sha256 = "b6fbe43d6d5e035211d714432791eb8a09f329a6312906566785de297db7cadf"; 912 + sha256 = "f8e98568cf4f5ed59ed662b2829354ebd7e9dc40bcceae5a5992257c125819b1"; 913 913 } 914 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/szl/firefox-110.0b7.tar.bz2"; 914 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/szl/firefox-110.0b8.tar.bz2"; 915 915 locale = "szl"; 916 916 arch = "linux-i686"; 917 - sha256 = "30591017dccd546a1e15375d938656454e172677a0a42fd76cfceba990380add"; 917 + sha256 = "a9727f8f1cca9aac9b608cfde33775fe1418ff9aab7fdc5229dca68c17314b14"; 918 918 } 919 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/ta/firefox-110.0b7.tar.bz2"; 919 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/ta/firefox-110.0b8.tar.bz2"; 920 920 locale = "ta"; 921 921 arch = "linux-i686"; 922 - sha256 = "c53546213d604f108a8119018a32e500b6b4ff7b8ffdbf1206d8be0650634988"; 922 + sha256 = "8803d98769b0b634825374db86d63ed7d12936a57c62f77cf86599f8448ccb90"; 923 923 } 924 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/te/firefox-110.0b7.tar.bz2"; 924 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/te/firefox-110.0b8.tar.bz2"; 925 925 locale = "te"; 926 926 arch = "linux-i686"; 927 - sha256 = "3a5f91fefa03abca8f1f1f72e10bc6d178a31aca5d7d73707afe8e531842a123"; 927 + sha256 = "649cbbefc93e18871782a8134005b4ca6f89066ac0ac65f43e489f00535d6a5c"; 928 928 } 929 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/th/firefox-110.0b7.tar.bz2"; 929 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/th/firefox-110.0b8.tar.bz2"; 930 930 locale = "th"; 931 931 arch = "linux-i686"; 932 - sha256 = "6c56f8503ce28d77aa3a0b19165cc0a93533ded03fdddf8690bda182962769c1"; 932 + sha256 = "6b9a1e53671ab8a67bbffe421c1304fd754edd7b8c30aa73876ac88947c3d72a"; 933 933 } 934 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/tl/firefox-110.0b7.tar.bz2"; 934 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/tl/firefox-110.0b8.tar.bz2"; 935 935 locale = "tl"; 936 936 arch = "linux-i686"; 937 - sha256 = "d01d4387a07c96abe24f24666fb96b1b1b50693b8a113ac607200113fd42a6fb"; 937 + sha256 = "f79832e73b7d7cd9e34f258ba2b449e91882e0eaad368a8130d5a1e10ab0d3e2"; 938 938 } 939 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/tr/firefox-110.0b7.tar.bz2"; 939 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/tr/firefox-110.0b8.tar.bz2"; 940 940 locale = "tr"; 941 941 arch = "linux-i686"; 942 - sha256 = "1c77d202fb5b6431f5c60aecc9c87d5d46e9b0fb54118b89f8b80264869b56fa"; 942 + sha256 = "b7472eb28a207448fbd3be48fa0a33fe1a495d3f10c49a90a1a53c37b5efddc7"; 943 943 } 944 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/trs/firefox-110.0b7.tar.bz2"; 944 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/trs/firefox-110.0b8.tar.bz2"; 945 945 locale = "trs"; 946 946 arch = "linux-i686"; 947 - sha256 = "778f6752b91b0bf349602c256ed0c214e20cfbcce6012828d33c9e48e67dffff"; 947 + sha256 = "a2ae5913f10775ff99cb5408a5ee06ff4e95711b7b57bbd605c1720d5111e5cf"; 948 948 } 949 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/uk/firefox-110.0b7.tar.bz2"; 949 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/uk/firefox-110.0b8.tar.bz2"; 950 950 locale = "uk"; 951 951 arch = "linux-i686"; 952 - sha256 = "e488fe2904dfa7fa673d0b19d218650a8897ace5ef6f642a08081221ec169b30"; 952 + sha256 = "15837064ff0328a52221e64061e565999132dfa06543e21aede2fe86f74ec4f6"; 953 953 } 954 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/ur/firefox-110.0b7.tar.bz2"; 954 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/ur/firefox-110.0b8.tar.bz2"; 955 955 locale = "ur"; 956 956 arch = "linux-i686"; 957 - sha256 = "c3e745820f63a40213cd61d0db32af54c4a1f13bb97d32180e802e321a89fa52"; 957 + sha256 = "d04154c2e0de0c36f8408cdb5c479ffaf7c19208b6c1208a0b302d915375aada"; 958 958 } 959 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/uz/firefox-110.0b7.tar.bz2"; 959 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/uz/firefox-110.0b8.tar.bz2"; 960 960 locale = "uz"; 961 961 arch = "linux-i686"; 962 - sha256 = "a6d316eb44cde8f9633522451374f0b972dce8899658a1f8235ee39e1253bc7e"; 962 + sha256 = "503ed687154d63d05a033cbe420171661d815011f7373fa32928f9c4d28e0a87"; 963 963 } 964 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/vi/firefox-110.0b7.tar.bz2"; 964 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/vi/firefox-110.0b8.tar.bz2"; 965 965 locale = "vi"; 966 966 arch = "linux-i686"; 967 - sha256 = "67797131b09335e1fc28fed46c63933e953b123f004229506b01de43a830378c"; 967 + sha256 = "ffc193551227f39463e25085cceabd6000bc4754929fa9071862339c9b8f0c97"; 968 968 } 969 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/xh/firefox-110.0b7.tar.bz2"; 969 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/xh/firefox-110.0b8.tar.bz2"; 970 970 locale = "xh"; 971 971 arch = "linux-i686"; 972 - sha256 = "2743d59ec8373e49528d8a16894752f60e4fb914cf0ad8b3e04a53b5ac7664c3"; 972 + sha256 = "a32c9c7ceb2c38d2151ebcf4af15a613066f2965205eec3270aa42853a7ef341"; 973 973 } 974 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/zh-CN/firefox-110.0b7.tar.bz2"; 974 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/zh-CN/firefox-110.0b8.tar.bz2"; 975 975 locale = "zh-CN"; 976 976 arch = "linux-i686"; 977 - sha256 = "550a344dbec2ce163932e407debe69df20c12057bfa45c065c2e916138108e1c"; 977 + sha256 = "aa3f165da56c9ee61d2c48939b07e6aa854e674571ef2dd27c83d508aadba869"; 978 978 } 979 - { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b7/linux-i686/zh-TW/firefox-110.0b7.tar.bz2"; 979 + { url = "https://archive.mozilla.org/pub/firefox/releases/110.0b8/linux-i686/zh-TW/firefox-110.0b8.tar.bz2"; 980 980 locale = "zh-TW"; 981 981 arch = "linux-i686"; 982 - sha256 = "f17911ebad92aa7df6f85faaa0e91f3b339c95ac1b0702f4caf2ef20dcfdca55"; 982 + sha256 = "a697c3f1a075269589ff8c66387489c14b83fa3c4e3d773f9bedd9abb32caf59"; 983 983 } 984 984 ]; 985 985 }
+393 -393
pkgs/applications/networking/browsers/firefox-bin/devedition_sources.nix
··· 1 1 { 2 - version = "110.0b6"; 2 + version = "110.0b7"; 3 3 sources = [ 4 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/ach/firefox-110.0b6.tar.bz2"; 4 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/ach/firefox-110.0b7.tar.bz2"; 5 5 locale = "ach"; 6 6 arch = "linux-x86_64"; 7 - sha256 = "d58ac25b6b2c856dd95c9115fd94152759a316dace3eb23c41e36b847687d677"; 7 + sha256 = "3149d7d688edaaa71d2655c36eb2b36b114ca81ec9592148e277bbd553525f6d"; 8 8 } 9 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/af/firefox-110.0b6.tar.bz2"; 9 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/af/firefox-110.0b7.tar.bz2"; 10 10 locale = "af"; 11 11 arch = "linux-x86_64"; 12 - sha256 = "53245e007122b3a9c0ced31a5675e6f070d95d4fd62872b9abc841c7691f8b0a"; 12 + sha256 = "3216a774f492dba8ad2def4d7796154615ebe3c09ee1fefc784936bb32b2153f"; 13 13 } 14 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/an/firefox-110.0b6.tar.bz2"; 14 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/an/firefox-110.0b7.tar.bz2"; 15 15 locale = "an"; 16 16 arch = "linux-x86_64"; 17 - sha256 = "31b00129611ed7475d1425c6acd3a2013e5ef9dd18d2d71acad0a1d6283b53ff"; 17 + sha256 = "4fc5ef9bb0326b1a42a78383744a310d0ef27e063b525c9b0e7eae05c2ba8fe0"; 18 18 } 19 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/ar/firefox-110.0b6.tar.bz2"; 19 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/ar/firefox-110.0b7.tar.bz2"; 20 20 locale = "ar"; 21 21 arch = "linux-x86_64"; 22 - sha256 = "a6df28b1fe4caf8cd4d279e55c009b716921985f0e2c9868a728c41379090939"; 22 + sha256 = "624004bac8804d4ea1a0ba64b85b69af2273ebf47e9d073cf45db5fe6b4a130e"; 23 23 } 24 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/ast/firefox-110.0b6.tar.bz2"; 24 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/ast/firefox-110.0b7.tar.bz2"; 25 25 locale = "ast"; 26 26 arch = "linux-x86_64"; 27 - sha256 = "bd7dc0dba016b0b7a4547fe44434152404794fc37efc847740eb95a06141130e"; 27 + sha256 = "bea272fea8ee71e259b7174e70992727c96fe2cdb463c6b6f45f49d7d630aefc"; 28 28 } 29 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/az/firefox-110.0b6.tar.bz2"; 29 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/az/firefox-110.0b7.tar.bz2"; 30 30 locale = "az"; 31 31 arch = "linux-x86_64"; 32 - sha256 = "3169e1bc1e88910ef0dc071bc792e3e500ec8381be30a9682f3a6bcd6b64546a"; 32 + sha256 = "8e8a635f6c4748044d195ef00196900b7164e8bfcf698012c7468fec41e05b4a"; 33 33 } 34 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/be/firefox-110.0b6.tar.bz2"; 34 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/be/firefox-110.0b7.tar.bz2"; 35 35 locale = "be"; 36 36 arch = "linux-x86_64"; 37 - sha256 = "a0e1d6a102b7ca1b85421831b45ab2114a72ba24ed69094745e0a2472238292f"; 37 + sha256 = "de80218b6ede880e43a7710df08bba343f0038134a5209b363f2b48ff67679e9"; 38 38 } 39 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/bg/firefox-110.0b6.tar.bz2"; 39 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/bg/firefox-110.0b7.tar.bz2"; 40 40 locale = "bg"; 41 41 arch = "linux-x86_64"; 42 - sha256 = "bb09489d8092f75d72ae8d83e90f57005738be8f67b4a092a0d0ea2cf8d8f5f4"; 42 + sha256 = "21719f7c5400b6c5e3ec23ae0a357528536c536f129fed2ca6d50dcb52661924"; 43 43 } 44 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/bn/firefox-110.0b6.tar.bz2"; 44 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/bn/firefox-110.0b7.tar.bz2"; 45 45 locale = "bn"; 46 46 arch = "linux-x86_64"; 47 - sha256 = "fe74b86f66ce6a791a4a15c4c29069af7c9e0407979187512060b4761280a3e9"; 47 + sha256 = "ef194e6f20d6c7ff9ca6e93178cb9ec7ef3f192b277f762b8d21c9d0348bece8"; 48 48 } 49 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/br/firefox-110.0b6.tar.bz2"; 49 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/br/firefox-110.0b7.tar.bz2"; 50 50 locale = "br"; 51 51 arch = "linux-x86_64"; 52 - sha256 = "057aa82b4527908731891061bc9d1e900eab9c87bba6cf7c421d9638420c55a0"; 52 + sha256 = "c9e83011d1af6fa4cd16b25862e07e976a9b92d8b20488c53b7c6dced269bbc1"; 53 53 } 54 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/bs/firefox-110.0b6.tar.bz2"; 54 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/bs/firefox-110.0b7.tar.bz2"; 55 55 locale = "bs"; 56 56 arch = "linux-x86_64"; 57 - sha256 = "e73a37f7dfb9189a423438d553995ecbbf1482695bb47a32082c707a50322099"; 57 + sha256 = "2fac9965eedc5ce6846833e3d9ae93075e4526b71a9acd2cc0a77c859bf2fa2e"; 58 58 } 59 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/ca-valencia/firefox-110.0b6.tar.bz2"; 59 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/ca-valencia/firefox-110.0b7.tar.bz2"; 60 60 locale = "ca-valencia"; 61 61 arch = "linux-x86_64"; 62 - sha256 = "14298e1611ac3ebadbda97d91543fc05e66ac807b0abcb2b42cc737608cee96d"; 62 + sha256 = "803b7d18d184f988b0c53ba50da1c454f95fddc397a8a1ce78e99bfdea318c90"; 63 63 } 64 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/ca/firefox-110.0b6.tar.bz2"; 64 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/ca/firefox-110.0b7.tar.bz2"; 65 65 locale = "ca"; 66 66 arch = "linux-x86_64"; 67 - sha256 = "455784a96e937ccc420a1e253cef7de10a224f17eb58e2873c687961641c8385"; 67 + sha256 = "5c85412de3767eb33b1f81402e99079617cb392f064cfea512a1f0932129ca4f"; 68 68 } 69 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/cak/firefox-110.0b6.tar.bz2"; 69 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/cak/firefox-110.0b7.tar.bz2"; 70 70 locale = "cak"; 71 71 arch = "linux-x86_64"; 72 - sha256 = "302205011101b5398a75574a58f283536f9ce527adbfb22a69c016afe41c0e4a"; 72 + sha256 = "c7ce5177bc827fa356e95e75a66c7cb57785766a43618abda8b27c74ba669635"; 73 73 } 74 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/cs/firefox-110.0b6.tar.bz2"; 74 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/cs/firefox-110.0b7.tar.bz2"; 75 75 locale = "cs"; 76 76 arch = "linux-x86_64"; 77 - sha256 = "c06d0a1735c9129c06558fea3039b15cfc195ef68af4b7f46073213f5c038106"; 77 + sha256 = "1c87e5cbeba84d10e26b8cb2260a575bd3a09d164305e79df79fd2e5ddf3de58"; 78 78 } 79 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/cy/firefox-110.0b6.tar.bz2"; 79 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/cy/firefox-110.0b7.tar.bz2"; 80 80 locale = "cy"; 81 81 arch = "linux-x86_64"; 82 - sha256 = "0315aea72cd937e414ae75a36b4547cf65b2b98fdff13e562f5d90655678c7ac"; 82 + sha256 = "05b6e4f546d8fb277fc01e75aa13935a58fc4f5dbf7d03e9e101e5261d0c4914"; 83 83 } 84 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/da/firefox-110.0b6.tar.bz2"; 84 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/da/firefox-110.0b7.tar.bz2"; 85 85 locale = "da"; 86 86 arch = "linux-x86_64"; 87 - sha256 = "3fbc7d39c22c96b1e553024a8f42f1429e23697f8289772f32567ee00d090784"; 87 + sha256 = "50e0e667231225f9b39f8bc3f5d17a2417ea92c0deda485f47d8fc5ad7291f66"; 88 88 } 89 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/de/firefox-110.0b6.tar.bz2"; 89 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/de/firefox-110.0b7.tar.bz2"; 90 90 locale = "de"; 91 91 arch = "linux-x86_64"; 92 - sha256 = "86c931c34b643171db4a83717c602629f8a624104d9a8c7e94cae67e23e30e29"; 92 + sha256 = "afdd6408e18915ace3b4568ef374303200c0871564badf7ac835b853dfd62b35"; 93 93 } 94 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/dsb/firefox-110.0b6.tar.bz2"; 94 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/dsb/firefox-110.0b7.tar.bz2"; 95 95 locale = "dsb"; 96 96 arch = "linux-x86_64"; 97 - sha256 = "3270e22573b95ffd2f453c884399df21a89350ea0be8185082f2028d19278e41"; 97 + sha256 = "fc3e13183ab8fea4e71881009894bd11919bde6a7d9590c7e8289a90d9105628"; 98 98 } 99 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/el/firefox-110.0b6.tar.bz2"; 99 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/el/firefox-110.0b7.tar.bz2"; 100 100 locale = "el"; 101 101 arch = "linux-x86_64"; 102 - sha256 = "af03eacd4d324a25dfb5be31ec380a738794f88a57a3a8d644138577afdd8b48"; 102 + sha256 = "92f0b82a06bc42c765b7197d81f9f74083d3f52a651afe326c5621f0efe6d6ae"; 103 103 } 104 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/en-CA/firefox-110.0b6.tar.bz2"; 104 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/en-CA/firefox-110.0b7.tar.bz2"; 105 105 locale = "en-CA"; 106 106 arch = "linux-x86_64"; 107 - sha256 = "f227ebae1ced21e8c7c3a8ef75f628a6dc6a2b3ab8968a162e4d3d7f702cfeb6"; 107 + sha256 = "2d99cd7f37d2f7b9929ed20b2013abc654006d6e6bfb6f063b0108e08300813e"; 108 108 } 109 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/en-GB/firefox-110.0b6.tar.bz2"; 109 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/en-GB/firefox-110.0b7.tar.bz2"; 110 110 locale = "en-GB"; 111 111 arch = "linux-x86_64"; 112 - sha256 = "11e09c73900c886cace2fe89b9bf45355602595f014d93346b31e979486a91db"; 112 + sha256 = "dd768a7a686e9233e1fefefb7c049974784241663b4e2a729898549aa5070122"; 113 113 } 114 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/en-US/firefox-110.0b6.tar.bz2"; 114 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/en-US/firefox-110.0b7.tar.bz2"; 115 115 locale = "en-US"; 116 116 arch = "linux-x86_64"; 117 - sha256 = "804fe918058d533226c4c5ddb559dad57e70637be2ef8919eef471f305450943"; 117 + sha256 = "aa7fdfff2c520bc78cc0e7a0a34bb4ab830a7f5332807398d10176e014dab24e"; 118 118 } 119 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/eo/firefox-110.0b6.tar.bz2"; 119 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/eo/firefox-110.0b7.tar.bz2"; 120 120 locale = "eo"; 121 121 arch = "linux-x86_64"; 122 - sha256 = "eb526757f1bdadfe3c4f7e32be2d34439f7094e5c93f9c7dbdf3e187e0a60a63"; 122 + sha256 = "f89d84d6b39c04849a281e90dce354a0ad2ad0a39900a4bb4d9e991e361800de"; 123 123 } 124 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/es-AR/firefox-110.0b6.tar.bz2"; 124 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/es-AR/firefox-110.0b7.tar.bz2"; 125 125 locale = "es-AR"; 126 126 arch = "linux-x86_64"; 127 - sha256 = "96a792c30328c398200c7221f1dd575e0413e388dcaabdf949fa16a98f33ed6d"; 127 + sha256 = "87150f4958159ce9913faa9cf333648aa5ed5d52d64fd1ae91d79e7b06d1f65d"; 128 128 } 129 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/es-CL/firefox-110.0b6.tar.bz2"; 129 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/es-CL/firefox-110.0b7.tar.bz2"; 130 130 locale = "es-CL"; 131 131 arch = "linux-x86_64"; 132 - sha256 = "60507daf16e595ea851383e0239ba767df3d9e218513199c20b29b9351b57188"; 132 + sha256 = "a6bc24603b2e2aef5277aeadbe639407ffdf5da7d75af871976f7984ba6dd775"; 133 133 } 134 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/es-ES/firefox-110.0b6.tar.bz2"; 134 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/es-ES/firefox-110.0b7.tar.bz2"; 135 135 locale = "es-ES"; 136 136 arch = "linux-x86_64"; 137 - sha256 = "aab5ba877d87ad7689eabe0d9b73c30dce8d56b9c271b4bc5bff5efe621db490"; 137 + sha256 = "039549d1b0f4d17acfb7d2b62a54dfcf161ff880420ff6f6df59631922df9b69"; 138 138 } 139 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/es-MX/firefox-110.0b6.tar.bz2"; 139 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/es-MX/firefox-110.0b7.tar.bz2"; 140 140 locale = "es-MX"; 141 141 arch = "linux-x86_64"; 142 - sha256 = "c41d7cef4b5ab32b4490859c12f304397e4b6314fe75eb44e438414877f15bb6"; 142 + sha256 = "57ccc2d1bcacd0c1cee697d02b2333ac8ae9022caf39869b89435eb9e9247dd3"; 143 143 } 144 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/et/firefox-110.0b6.tar.bz2"; 144 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/et/firefox-110.0b7.tar.bz2"; 145 145 locale = "et"; 146 146 arch = "linux-x86_64"; 147 - sha256 = "9aca0af11619345f7eeeb13f95c0ddf3ec8cd7989d096f0be57066fe4eca9063"; 147 + sha256 = "9a1479cfa6e246ece5e4093076378536b6838ba656efadec744ed7b0883ff78c"; 148 148 } 149 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/eu/firefox-110.0b6.tar.bz2"; 149 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/eu/firefox-110.0b7.tar.bz2"; 150 150 locale = "eu"; 151 151 arch = "linux-x86_64"; 152 - sha256 = "3a70046a765171e089c9faa08d73e318f3489a9a1f6a986091da11b54968631a"; 152 + sha256 = "78305f9504cb89c3ecea1c0b235cf0d3df5dc15853863b31b446660f6c300eb6"; 153 153 } 154 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/fa/firefox-110.0b6.tar.bz2"; 154 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/fa/firefox-110.0b7.tar.bz2"; 155 155 locale = "fa"; 156 156 arch = "linux-x86_64"; 157 - sha256 = "8ab42100d6fbb757c644b1e2f97aef89786cc53337ed196ba1c9f1c3b8f1a5a5"; 157 + sha256 = "39adfd21e57256ae8befcd7f39e9628695fda08a57fed972dd623d7e0759d9de"; 158 158 } 159 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/ff/firefox-110.0b6.tar.bz2"; 159 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/ff/firefox-110.0b7.tar.bz2"; 160 160 locale = "ff"; 161 161 arch = "linux-x86_64"; 162 - sha256 = "cdaed7efe0e6c25aeda5df07967c3a5e1107eeecd96101a250306c47b56aa2cb"; 162 + sha256 = "11c2d2fc7262ad9074d4842ffe0b0981e78cdcbd34d658bafd61457fb5b8cdb7"; 163 163 } 164 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/fi/firefox-110.0b6.tar.bz2"; 164 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/fi/firefox-110.0b7.tar.bz2"; 165 165 locale = "fi"; 166 166 arch = "linux-x86_64"; 167 - sha256 = "880c07188dc865b9b63389eacd3b7921e978ef9ef99d170d17067003530524ca"; 167 + sha256 = "ec2a6eb8266c5f8ce56056a322478d308411c7cfeecfb0e6528f3464bd6dfa41"; 168 168 } 169 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/fr/firefox-110.0b6.tar.bz2"; 169 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/fr/firefox-110.0b7.tar.bz2"; 170 170 locale = "fr"; 171 171 arch = "linux-x86_64"; 172 - sha256 = "f8e1e31a6f28bbb448040c73e5e401a4f85b56f30d747c0d0aad78a28eaaf3ea"; 172 + sha256 = "7b1fbe6a9becf5c4fa27a4c74672f8408e1028998a609febfc82568b0a0fce1f"; 173 173 } 174 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/fy-NL/firefox-110.0b6.tar.bz2"; 174 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/fy-NL/firefox-110.0b7.tar.bz2"; 175 175 locale = "fy-NL"; 176 176 arch = "linux-x86_64"; 177 - sha256 = "eeea4e054158bbcf1f36e2a095580f84a82e2cf5b1349193d7c25fb9ced3990f"; 177 + sha256 = "d9be3385f0bae85c481d48a3246856ad160e5ea932e4f9ad763db98a4af1fa06"; 178 178 } 179 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/ga-IE/firefox-110.0b6.tar.bz2"; 179 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/ga-IE/firefox-110.0b7.tar.bz2"; 180 180 locale = "ga-IE"; 181 181 arch = "linux-x86_64"; 182 - sha256 = "7e0d975063cad460774c066b8df6035426763e3955f0c1893c1fa900a2ba8635"; 182 + sha256 = "16fd254951cdb916cc7db0eeb64c14a291f8e4fea9fa4d936bb99cc4f5263e6e"; 183 183 } 184 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/gd/firefox-110.0b6.tar.bz2"; 184 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/gd/firefox-110.0b7.tar.bz2"; 185 185 locale = "gd"; 186 186 arch = "linux-x86_64"; 187 - sha256 = "30947b08f03ec20cac0752c1103637de61f48e4b9c76a426027f39738350eedc"; 187 + sha256 = "037939f4a9be6bd265e7abb5d85e571e4c7a49334bcd932d279f17654a4f106a"; 188 188 } 189 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/gl/firefox-110.0b6.tar.bz2"; 189 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/gl/firefox-110.0b7.tar.bz2"; 190 190 locale = "gl"; 191 191 arch = "linux-x86_64"; 192 - sha256 = "5d8f15e31a5c92721f4d932dfa511eae33317b27af74fbd52b6bc71ad92696d3"; 192 + sha256 = "8ea3531f711c78066bd79768bc2f8ee2cbf3974b5d2a6a15ad61cdd488a42798"; 193 193 } 194 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/gn/firefox-110.0b6.tar.bz2"; 194 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/gn/firefox-110.0b7.tar.bz2"; 195 195 locale = "gn"; 196 196 arch = "linux-x86_64"; 197 - sha256 = "dc0b0d5be4d541cf054130685082b98ef8d4b134e1888a52a94c54a76114bf97"; 197 + sha256 = "d0d8a5776190ed28b92dc2429ae75ac6a25d48bb8217732c7fc246b94acf68e9"; 198 198 } 199 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/gu-IN/firefox-110.0b6.tar.bz2"; 199 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/gu-IN/firefox-110.0b7.tar.bz2"; 200 200 locale = "gu-IN"; 201 201 arch = "linux-x86_64"; 202 - sha256 = "5ae1b55dda9dc1cf5f40394afc891b4db204b337229908deffbabad4716a0e05"; 202 + sha256 = "9997dbcffcf81c275302d8e8b5d025962c71b6a9c75fe7bc507b101eea260d98"; 203 203 } 204 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/he/firefox-110.0b6.tar.bz2"; 204 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/he/firefox-110.0b7.tar.bz2"; 205 205 locale = "he"; 206 206 arch = "linux-x86_64"; 207 - sha256 = "5d6d0a701a7e81139f2e67768de8eba61526a7a2e3b585f0579d6ff388f6a422"; 207 + sha256 = "0b5eefce3516e6d5b7ab572a0940ad5c8ef1c8528582d182ef56d8320ef4a99c"; 208 208 } 209 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/hi-IN/firefox-110.0b6.tar.bz2"; 209 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/hi-IN/firefox-110.0b7.tar.bz2"; 210 210 locale = "hi-IN"; 211 211 arch = "linux-x86_64"; 212 - sha256 = "c8f38939afbcabf6c0e188193dcf3e83aa18c7da657f05fef8ee73caaefdf651"; 212 + sha256 = "6b1905b83a7afa4c7269d7bf88351c26c9081945090cbb497869809d91be574b"; 213 213 } 214 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/hr/firefox-110.0b6.tar.bz2"; 214 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/hr/firefox-110.0b7.tar.bz2"; 215 215 locale = "hr"; 216 216 arch = "linux-x86_64"; 217 - sha256 = "e864462685428bd2615607afb1d81dfcbd06d15791f9a167f08e3e24a2f57693"; 217 + sha256 = "324e55f1b4fedaf1d20dd9acc13727e51d6735c377ce58237eec51ca4c937ccd"; 218 218 } 219 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/hsb/firefox-110.0b6.tar.bz2"; 219 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/hsb/firefox-110.0b7.tar.bz2"; 220 220 locale = "hsb"; 221 221 arch = "linux-x86_64"; 222 - sha256 = "fc105ce60fcf91e8b1ec5ac08bcdeca1970d2644c22f63f88319fbbdb869c904"; 222 + sha256 = "4bf345897057ca2e215e53a50d79e45418da68c67090bfa1734d0dc43f4beede"; 223 223 } 224 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/hu/firefox-110.0b6.tar.bz2"; 224 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/hu/firefox-110.0b7.tar.bz2"; 225 225 locale = "hu"; 226 226 arch = "linux-x86_64"; 227 - sha256 = "4c6662b6e10792d5eae7edfb21fbeb5e6041132a6e4d7597e8c060da670b5095"; 227 + sha256 = "eed32aa30eb35a074c9dd00576af9c4c2015c0487a02c0b66ea8db3095bc59ef"; 228 228 } 229 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/hy-AM/firefox-110.0b6.tar.bz2"; 229 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/hy-AM/firefox-110.0b7.tar.bz2"; 230 230 locale = "hy-AM"; 231 231 arch = "linux-x86_64"; 232 - sha256 = "1eca6c874c23e4126cc8dc46c981d8440cfad977d8012aa73adfe50a82ef6359"; 232 + sha256 = "320f41e8de475f5957ba9547cf844ac571bad1ac6f991ce4f5ad87cdc26bf9dc"; 233 233 } 234 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/ia/firefox-110.0b6.tar.bz2"; 234 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/ia/firefox-110.0b7.tar.bz2"; 235 235 locale = "ia"; 236 236 arch = "linux-x86_64"; 237 - sha256 = "1f8fe6fbdd8b034b884e63f875a3319cf5a9b4cf4fa8d2f9d09dfdd8b84bd75e"; 237 + sha256 = "1e4348f56ec630f3969dcf4aef3ab263cf58fe449314928e5a4963f6c7ebfae4"; 238 238 } 239 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/id/firefox-110.0b6.tar.bz2"; 239 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/id/firefox-110.0b7.tar.bz2"; 240 240 locale = "id"; 241 241 arch = "linux-x86_64"; 242 - sha256 = "656bc89c2eac2720f043d2885559f79a1292a8e73316b476edfbf009cc67ae89"; 242 + sha256 = "6c54eee1ae9a361d49c6302c3a710fbbf0da51bfc54967134392c58eaaa9372f"; 243 243 } 244 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/is/firefox-110.0b6.tar.bz2"; 244 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/is/firefox-110.0b7.tar.bz2"; 245 245 locale = "is"; 246 246 arch = "linux-x86_64"; 247 - sha256 = "e357947de26e7c0b6df4a92bd88cb072539a5f4b9909bcc426dcebe6c08ec51b"; 247 + sha256 = "8f40d12a2782845eb9b0565f1237e9b86eb750efdd420c1a7f1cd17d76e67d2e"; 248 248 } 249 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/it/firefox-110.0b6.tar.bz2"; 249 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/it/firefox-110.0b7.tar.bz2"; 250 250 locale = "it"; 251 251 arch = "linux-x86_64"; 252 - sha256 = "32b50df510f4d02cbd40818d46ecdf33bea6ea6d5161f317e522a5d60f088a75"; 252 + sha256 = "d81c438b5ce1a124ebc4a935bab22a06fb4b664bf50c6158fd75878f111fecb5"; 253 253 } 254 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/ja/firefox-110.0b6.tar.bz2"; 254 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/ja/firefox-110.0b7.tar.bz2"; 255 255 locale = "ja"; 256 256 arch = "linux-x86_64"; 257 - sha256 = "90bc9ed4a5079ff97c005a736d3ad7d8c3efd664bd8a942917351e78f5b921c6"; 257 + sha256 = "6f20bb1b75b13acaf35a626d843842a804fd6a749020076dd783a2ebb8adf7f0"; 258 258 } 259 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/ka/firefox-110.0b6.tar.bz2"; 259 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/ka/firefox-110.0b7.tar.bz2"; 260 260 locale = "ka"; 261 261 arch = "linux-x86_64"; 262 - sha256 = "43b28d60cd99707b0d9d63a6585be52466621c9a3094d76b934dcacbd1440c8f"; 262 + sha256 = "3ee2d13788a24bc9ad60f3f85eec6b11ee82bdde223903b73ae681ad5a0c8216"; 263 263 } 264 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/kab/firefox-110.0b6.tar.bz2"; 264 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/kab/firefox-110.0b7.tar.bz2"; 265 265 locale = "kab"; 266 266 arch = "linux-x86_64"; 267 - sha256 = "167b8c489d4379cd6be56620916bef3364f31e32300d845d2d0e2eb549a4ad35"; 267 + sha256 = "a42be81f1df3a2d18818bfc8654cb9cacf7602bab964509392d62439b3f67adb"; 268 268 } 269 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/kk/firefox-110.0b6.tar.bz2"; 269 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/kk/firefox-110.0b7.tar.bz2"; 270 270 locale = "kk"; 271 271 arch = "linux-x86_64"; 272 - sha256 = "88ee4f4fb9b0f784e664cf547d13bcc66687954a18dcc3eddf1f2ac6a2567e85"; 272 + sha256 = "24f29b0b78df615942c6984e160e9cee60552efbe9246ed290b6a01922b0116d"; 273 273 } 274 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/km/firefox-110.0b6.tar.bz2"; 274 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/km/firefox-110.0b7.tar.bz2"; 275 275 locale = "km"; 276 276 arch = "linux-x86_64"; 277 - sha256 = "d33a662bf17cc18f0046f5a5f9bf9e8a7e928dd7aaa1fd2be9f1f8f80f5ff31c"; 277 + sha256 = "02cd6c8124331512fa7f57b9d165e1a189a1eb92923b0f0264fdb6c1b2d4b753"; 278 278 } 279 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/kn/firefox-110.0b6.tar.bz2"; 279 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/kn/firefox-110.0b7.tar.bz2"; 280 280 locale = "kn"; 281 281 arch = "linux-x86_64"; 282 - sha256 = "e8879544f4467c1932b58820e83ca521b71ee0626e35be304bf793ee5cef4417"; 282 + sha256 = "6fb11c1f5883f215cbccd22ab61f0acb72ca6860e93918d61f351ce1566e98ef"; 283 283 } 284 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/ko/firefox-110.0b6.tar.bz2"; 284 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/ko/firefox-110.0b7.tar.bz2"; 285 285 locale = "ko"; 286 286 arch = "linux-x86_64"; 287 - sha256 = "72bd36fd3056a3f09e460bae77dac011ce70dc5b4416d0f012f33bd40f17b9bd"; 287 + sha256 = "dce0fded8256a5061fb335cf42821cbbe198078390f7d417a33be03979f52b67"; 288 288 } 289 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/lij/firefox-110.0b6.tar.bz2"; 289 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/lij/firefox-110.0b7.tar.bz2"; 290 290 locale = "lij"; 291 291 arch = "linux-x86_64"; 292 - sha256 = "554000e3ad2430605e67186fae3833a2391302f00f0f37a83128d7f9df819ba1"; 292 + sha256 = "22ef4a8396ba5b3ed4eb9da028ec8652ed9999f42e2c5c6b409e7fdc45d17e96"; 293 293 } 294 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/lt/firefox-110.0b6.tar.bz2"; 294 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/lt/firefox-110.0b7.tar.bz2"; 295 295 locale = "lt"; 296 296 arch = "linux-x86_64"; 297 - sha256 = "97ea154af434f7fc3e112bfa66418100d355b4c9bdd1c2232fee5e2033dbb0cb"; 297 + sha256 = "55f9842ad40c137e70e306c8270435d5c22ea83c611e6151890e5cd2166f1b1c"; 298 298 } 299 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/lv/firefox-110.0b6.tar.bz2"; 299 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/lv/firefox-110.0b7.tar.bz2"; 300 300 locale = "lv"; 301 301 arch = "linux-x86_64"; 302 - sha256 = "275a7e55e334af91ca444ad1cc1f198124003a44ca12941a66253dd6518653c3"; 302 + sha256 = "c92b0d98c2a7ca81ca4f5f16d9a387a62e0992cd65707a3a529d8683541f298a"; 303 303 } 304 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/mk/firefox-110.0b6.tar.bz2"; 304 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/mk/firefox-110.0b7.tar.bz2"; 305 305 locale = "mk"; 306 306 arch = "linux-x86_64"; 307 - sha256 = "3b33efbda1bcbbec82e5895cee5b132d7f8d656875cde85cbf6c3d505f65f172"; 307 + sha256 = "110f76a05dc366e50342be5e503d64112d2798ebb92267ef6aeabd18a23ff826"; 308 308 } 309 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/mr/firefox-110.0b6.tar.bz2"; 309 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/mr/firefox-110.0b7.tar.bz2"; 310 310 locale = "mr"; 311 311 arch = "linux-x86_64"; 312 - sha256 = "11b434d6ecde5e687faa1e6fb6905694276a39d81ee86513e58c69b83375f33c"; 312 + sha256 = "85623b9e9d69d7ed501752ec9b5863f8bb8390f4f53d7ceaf1497cf442e6978a"; 313 313 } 314 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/ms/firefox-110.0b6.tar.bz2"; 314 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/ms/firefox-110.0b7.tar.bz2"; 315 315 locale = "ms"; 316 316 arch = "linux-x86_64"; 317 - sha256 = "becbfe58a9e4fa766747b203d477ca3f879eb90eb40854a053d3848f33b92d6d"; 317 + sha256 = "80b135385d8f622ab9639fdbdd119717d7a1c5fc105469cab07ac31f82a2e9d0"; 318 318 } 319 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/my/firefox-110.0b6.tar.bz2"; 319 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/my/firefox-110.0b7.tar.bz2"; 320 320 locale = "my"; 321 321 arch = "linux-x86_64"; 322 - sha256 = "5122ef37b076ce6977232eb0e1060aa82855f1c6dc1cf43739f2679038645ead"; 322 + sha256 = "ab6967da3bc7028ab82b57a41469488a74394b7fa914a52c2e7dfc6c5edd08d2"; 323 323 } 324 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/nb-NO/firefox-110.0b6.tar.bz2"; 324 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/nb-NO/firefox-110.0b7.tar.bz2"; 325 325 locale = "nb-NO"; 326 326 arch = "linux-x86_64"; 327 - sha256 = "4e788d6a680b0b00e062304d11891c00883f31d47122fe354a8d312d380ea394"; 327 + sha256 = "cd22536cc93a47c78d41a3ee78415a3f57dab757c61719d31a70b172fef093c2"; 328 328 } 329 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/ne-NP/firefox-110.0b6.tar.bz2"; 329 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/ne-NP/firefox-110.0b7.tar.bz2"; 330 330 locale = "ne-NP"; 331 331 arch = "linux-x86_64"; 332 - sha256 = "9cfe08ee440b9f59fa4986416f84c785a0eb6557b505142e35b86bf03ab25318"; 332 + sha256 = "ee9b171561f09e52fb595135234803d95822772b722da5867cdc41ca43c8d03a"; 333 333 } 334 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/nl/firefox-110.0b6.tar.bz2"; 334 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/nl/firefox-110.0b7.tar.bz2"; 335 335 locale = "nl"; 336 336 arch = "linux-x86_64"; 337 - sha256 = "f8e0efe035ec7fddf99ed7afadceb83027b2093263092ad2134aac335f6b889f"; 337 + sha256 = "efc83b8b16496033943ae70f5c572319cac9d86c826eb64889f2b824e1c0aa9e"; 338 338 } 339 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/nn-NO/firefox-110.0b6.tar.bz2"; 339 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/nn-NO/firefox-110.0b7.tar.bz2"; 340 340 locale = "nn-NO"; 341 341 arch = "linux-x86_64"; 342 - sha256 = "ef2647f67d76eb3c436886694d52c470cc4489e5ba45d3a25d760ec1292d52ce"; 342 + sha256 = "e74a0ca78df08e63ddb3162e71a22cab7200d5f317cd2eb936305e17b053ffd5"; 343 343 } 344 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/oc/firefox-110.0b6.tar.bz2"; 344 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/oc/firefox-110.0b7.tar.bz2"; 345 345 locale = "oc"; 346 346 arch = "linux-x86_64"; 347 - sha256 = "cb404eca7416c17e28d4330a2858eec08f2a2bede14bf2b6d0cc5ed6a4ac48b8"; 347 + sha256 = "2ff7f6e219be38177895ebc30a511286d645120728caf4157b2d5fc03c4882f1"; 348 348 } 349 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/pa-IN/firefox-110.0b6.tar.bz2"; 349 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/pa-IN/firefox-110.0b7.tar.bz2"; 350 350 locale = "pa-IN"; 351 351 arch = "linux-x86_64"; 352 - sha256 = "5d7aad3cc21b7660b8ef0578df04d1a004c63158be8a8becf6096ab6b283e1af"; 352 + sha256 = "bbe935ee5a13b42e6bea6575f54930f44c8ff2d7e62f9ab4391baeda26bffed5"; 353 353 } 354 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/pl/firefox-110.0b6.tar.bz2"; 354 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/pl/firefox-110.0b7.tar.bz2"; 355 355 locale = "pl"; 356 356 arch = "linux-x86_64"; 357 - sha256 = "3f61a66df834dce6851b0473fb2aa0c6ecbd050670a4d877448265998f6a207a"; 357 + sha256 = "ce270a34203fa987a312c96c462a414ff65da9564b01598f1183b7f920bb9216"; 358 358 } 359 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/pt-BR/firefox-110.0b6.tar.bz2"; 359 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/pt-BR/firefox-110.0b7.tar.bz2"; 360 360 locale = "pt-BR"; 361 361 arch = "linux-x86_64"; 362 - sha256 = "0abf18def49d3f9217a1837bafeffc197481f98575ad1b756a0d4a6096890a71"; 362 + sha256 = "a082bb58d53c57d4728d49207e606ea3b79cba8e57541e098f867f8bfb76d6a7"; 363 363 } 364 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/pt-PT/firefox-110.0b6.tar.bz2"; 364 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/pt-PT/firefox-110.0b7.tar.bz2"; 365 365 locale = "pt-PT"; 366 366 arch = "linux-x86_64"; 367 - sha256 = "503d366bf87e4d1474d5d3ed5920d7103ed5ad8bcbf28e4312d2e624d75eb723"; 367 + sha256 = "ac696b2b104a3995b1b0f29425347c4d47277d0bd2786180ac4d6ef1f9f7cbf1"; 368 368 } 369 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/rm/firefox-110.0b6.tar.bz2"; 369 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/rm/firefox-110.0b7.tar.bz2"; 370 370 locale = "rm"; 371 371 arch = "linux-x86_64"; 372 - sha256 = "09adac72c69940d3b38893a54eeb1b299ef58eb3ad3788d91ff6aad6e75cc9c3"; 372 + sha256 = "54841eed47416b836be393bb625152bcc1267cfeecb2bcfae8e67b012505b31c"; 373 373 } 374 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/ro/firefox-110.0b6.tar.bz2"; 374 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/ro/firefox-110.0b7.tar.bz2"; 375 375 locale = "ro"; 376 376 arch = "linux-x86_64"; 377 - sha256 = "79a75e1fbaa0443281165a554d18394981da86650fae2095d5fea97e7c5fd687"; 377 + sha256 = "f074ef2c5155ddd0562a3bc8afe3a3562e247b805dc71c1e45436f54025c25ea"; 378 378 } 379 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/ru/firefox-110.0b6.tar.bz2"; 379 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/ru/firefox-110.0b7.tar.bz2"; 380 380 locale = "ru"; 381 381 arch = "linux-x86_64"; 382 - sha256 = "2ad10c8e9a3a6fec5063c6bf937c28fe3f6911dc023947a7201b6561ee44b8d5"; 382 + sha256 = "cd16f9972b4e748f8f2a42acdcd2bd3d81d642b7261764a1f49e26b60933c180"; 383 383 } 384 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/sco/firefox-110.0b6.tar.bz2"; 384 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/sco/firefox-110.0b7.tar.bz2"; 385 385 locale = "sco"; 386 386 arch = "linux-x86_64"; 387 - sha256 = "313d7abb711aa0a5d4b756ae7b61bf2b0453f6354d77a446d86b9a1dcf722a45"; 387 + sha256 = "2c612a1f2305384f4caf6b37ba57057a7fd9efff5d5bfd5d0d760c2baefe55c7"; 388 388 } 389 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/si/firefox-110.0b6.tar.bz2"; 389 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/si/firefox-110.0b7.tar.bz2"; 390 390 locale = "si"; 391 391 arch = "linux-x86_64"; 392 - sha256 = "127939fc5dd2e4bba57fefd1216dcbb84510e9ad32d42df2a7b516c56d229792"; 392 + sha256 = "9abd847f93124ebdd50479ad38317fb8087a85a9add2d4e44ddb6f2a765207c5"; 393 393 } 394 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/sk/firefox-110.0b6.tar.bz2"; 394 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/sk/firefox-110.0b7.tar.bz2"; 395 395 locale = "sk"; 396 396 arch = "linux-x86_64"; 397 - sha256 = "8eb240f16dbd2b49820f95b7f1cd51409e0acc054741af796a7c82d763020762"; 397 + sha256 = "a2c001910dc0e2d8b3d864e7cd23691ef13f7bcac15fe08599f38533951815d4"; 398 398 } 399 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/sl/firefox-110.0b6.tar.bz2"; 399 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/sl/firefox-110.0b7.tar.bz2"; 400 400 locale = "sl"; 401 401 arch = "linux-x86_64"; 402 - sha256 = "7a30f1a124e5474d393f383308ead7be800d6ef140493c20d8cbe6b9385539cf"; 402 + sha256 = "212f7dc19d62f8ae4b49eacfe87c2d3cba87da91b88cbf6e8bc4dad05b3ecc4e"; 403 403 } 404 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/son/firefox-110.0b6.tar.bz2"; 404 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/son/firefox-110.0b7.tar.bz2"; 405 405 locale = "son"; 406 406 arch = "linux-x86_64"; 407 - sha256 = "6b400711a41c2099ee7c9384df8ca24d2c35524ea1cde9ff308dd0c384d40f96"; 407 + sha256 = "ff6b3e368980b4325ec0e02948e0aef6aa86cc4dd5d454a5d6a2c50a790d3382"; 408 408 } 409 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/sq/firefox-110.0b6.tar.bz2"; 409 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/sq/firefox-110.0b7.tar.bz2"; 410 410 locale = "sq"; 411 411 arch = "linux-x86_64"; 412 - sha256 = "c4c84ee54c36b58852f4923cb67ef681fe8f3e87c2aca702960bb50860d0bc7d"; 412 + sha256 = "8e343437ba5a4f030b629882b73a0c23b2141f4ef5be0917444cfd9caf53edda"; 413 413 } 414 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/sr/firefox-110.0b6.tar.bz2"; 414 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/sr/firefox-110.0b7.tar.bz2"; 415 415 locale = "sr"; 416 416 arch = "linux-x86_64"; 417 - sha256 = "3173255340e61f6a62cbbb212a2510702eb8afe2e43aae1d5509f54a5f384389"; 417 + sha256 = "65da36df28fa13643773c1fe0338d63731e61c33fce38b4f5fd90e2793c6e210"; 418 418 } 419 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/sv-SE/firefox-110.0b6.tar.bz2"; 419 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/sv-SE/firefox-110.0b7.tar.bz2"; 420 420 locale = "sv-SE"; 421 421 arch = "linux-x86_64"; 422 - sha256 = "74c06e4190210f8eea3cb345d683b6e9139184cbc63b60a3f865974164897de2"; 422 + sha256 = "19c7a44a670daa2ef9167105858ed0a1a7e03cd9cd2bb5caa3fd6d048d91f2df"; 423 423 } 424 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/szl/firefox-110.0b6.tar.bz2"; 424 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/szl/firefox-110.0b7.tar.bz2"; 425 425 locale = "szl"; 426 426 arch = "linux-x86_64"; 427 - sha256 = "2e78b36dd45f948edb711ecedc0aba1fb395a2d64fd45c617b28c1ec2b4c722d"; 427 + sha256 = "d808d96a5fbbaf1a9dd72b2fde9bcded5759032fe272817fd5525d30e666acd9"; 428 428 } 429 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/ta/firefox-110.0b6.tar.bz2"; 429 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/ta/firefox-110.0b7.tar.bz2"; 430 430 locale = "ta"; 431 431 arch = "linux-x86_64"; 432 - sha256 = "33ee712589984766b7f2744b2c17ec6961fe467b7beae725f0a0fb05576e12d3"; 432 + sha256 = "fce003993a6d3b45b041271a33272f3fd8aa954ad150a96295013a9943da97bf"; 433 433 } 434 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/te/firefox-110.0b6.tar.bz2"; 434 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/te/firefox-110.0b7.tar.bz2"; 435 435 locale = "te"; 436 436 arch = "linux-x86_64"; 437 - sha256 = "b8ac204fef254b6ebca66896203ffaafee03da035eebb59a7fcb28bf4e438af9"; 437 + sha256 = "26e7d6c2df59f608d29763eaec24aa6f66c1f393f4b578c4e31fbc0b66d74872"; 438 438 } 439 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/th/firefox-110.0b6.tar.bz2"; 439 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/th/firefox-110.0b7.tar.bz2"; 440 440 locale = "th"; 441 441 arch = "linux-x86_64"; 442 - sha256 = "39f3d3916f1b098a0692af6f9697cb1cc72e50e3790bd4cbf29427fe3165d5e5"; 442 + sha256 = "e78b62b3a74aa1a6edc65786376cbc69ffcee57550f7bc01aa6eb1f3348e8049"; 443 443 } 444 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/tl/firefox-110.0b6.tar.bz2"; 444 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/tl/firefox-110.0b7.tar.bz2"; 445 445 locale = "tl"; 446 446 arch = "linux-x86_64"; 447 - sha256 = "242bc1e78b59d5a1b94319379694aabd760c8638eb199c8905b082cab3c67a45"; 447 + sha256 = "d9e4e1a157bf0950b4f0e4a4bc65e0133712c7808bcd82bb7c2363b22f84f928"; 448 448 } 449 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/tr/firefox-110.0b6.tar.bz2"; 449 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/tr/firefox-110.0b7.tar.bz2"; 450 450 locale = "tr"; 451 451 arch = "linux-x86_64"; 452 - sha256 = "0ee80eefeefc785bfc1a72e9afd402fa18697aa2f6a8ad3d5a151583903f8948"; 452 + sha256 = "60faecf8397c5636f408f7179be02cdd4608def2f6e2255d0a6b4d4adf691255"; 453 453 } 454 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/trs/firefox-110.0b6.tar.bz2"; 454 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/trs/firefox-110.0b7.tar.bz2"; 455 455 locale = "trs"; 456 456 arch = "linux-x86_64"; 457 - sha256 = "0596c6d16f9e644557b65259d263606b5173174953fb1f0ef26513f57dff167c"; 457 + sha256 = "2482b5c2a1ffa5d0c4bc0c4d94aa2570fffaca5882ca5d2dfab32f4adc999c7a"; 458 458 } 459 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/uk/firefox-110.0b6.tar.bz2"; 459 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/uk/firefox-110.0b7.tar.bz2"; 460 460 locale = "uk"; 461 461 arch = "linux-x86_64"; 462 - sha256 = "4e77c94f07a501768629fdacb16cb60f5b6830ddc04134f9b00c0039316975f0"; 462 + sha256 = "3cae3562bc6b215886c829ced2f7983bd86c2b471e6816a4df4898ec1bdbe938"; 463 463 } 464 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/ur/firefox-110.0b6.tar.bz2"; 464 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/ur/firefox-110.0b7.tar.bz2"; 465 465 locale = "ur"; 466 466 arch = "linux-x86_64"; 467 - sha256 = "0b4affb2c343013ac1d6078e86c79ce74f21ab07c5c4e1c4587bef18e8d35c9f"; 467 + sha256 = "77ba86200000852daf8530168ca4769679003a81688c044a5a44e817a3bdb573"; 468 468 } 469 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/uz/firefox-110.0b6.tar.bz2"; 469 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/uz/firefox-110.0b7.tar.bz2"; 470 470 locale = "uz"; 471 471 arch = "linux-x86_64"; 472 - sha256 = "028a92039fb698d96d28958bf6eff4ea3a0501cb1d74f66c2d5038979701b3f6"; 472 + sha256 = "911da79e7cf5d63a35c7410a0a18143d919109e0dc2823fd9caa88cb3b2c4589"; 473 473 } 474 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/vi/firefox-110.0b6.tar.bz2"; 474 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/vi/firefox-110.0b7.tar.bz2"; 475 475 locale = "vi"; 476 476 arch = "linux-x86_64"; 477 - sha256 = "cbad3b31cbec3a8e87b90b126aaa9b2d298daf93b212015bdabad1b9b42eff81"; 477 + sha256 = "9273b464a55cf3b4b8997bc54225e951a94f969ff83273316082102111e9b7e0"; 478 478 } 479 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/xh/firefox-110.0b6.tar.bz2"; 479 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/xh/firefox-110.0b7.tar.bz2"; 480 480 locale = "xh"; 481 481 arch = "linux-x86_64"; 482 - sha256 = "ac0b03248b8da7e4e7278eb26cd1f0cd68814bf28118b81cc66a7a4c8048f9e6"; 482 + sha256 = "2c94b9461dde096ec4fc73eb3c024613ae57d17fb97220feec5a9de827d1e19b"; 483 483 } 484 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/zh-CN/firefox-110.0b6.tar.bz2"; 484 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/zh-CN/firefox-110.0b7.tar.bz2"; 485 485 locale = "zh-CN"; 486 486 arch = "linux-x86_64"; 487 - sha256 = "16aba031308dada834add76d856709df419520eacf44d99dea1d3b22cdd9b3d8"; 487 + sha256 = "c150000b9739aa32e3f5b9ed256550a0b91d14ddd6a3f88913171a263a11a843"; 488 488 } 489 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-x86_64/zh-TW/firefox-110.0b6.tar.bz2"; 489 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-x86_64/zh-TW/firefox-110.0b7.tar.bz2"; 490 490 locale = "zh-TW"; 491 491 arch = "linux-x86_64"; 492 - sha256 = "c7e11f1549ae937c42142d40787d38b51bcff0117e24b7a6f56ee2ac7f412956"; 492 + sha256 = "7b704fbf8e7d3569c5cb7f7c2bc1548781c6d4d3acb50a4750c155dae8b610cf"; 493 493 } 494 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/ach/firefox-110.0b6.tar.bz2"; 494 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/ach/firefox-110.0b7.tar.bz2"; 495 495 locale = "ach"; 496 496 arch = "linux-i686"; 497 - sha256 = "2961209210d5cfeb91b29f1ea00a35d8894a877ecd6be00f55687bf6e24619ba"; 497 + sha256 = "4eb5efe5af863bd2106879a9f4deccf254adfa7b6231299fa9491d44013c898d"; 498 498 } 499 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/af/firefox-110.0b6.tar.bz2"; 499 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/af/firefox-110.0b7.tar.bz2"; 500 500 locale = "af"; 501 501 arch = "linux-i686"; 502 - sha256 = "f9af262111a89cb22c2da03e4bdf0cba3c6e05fd2bb7f4e0f65dcc0b4f1a366e"; 502 + sha256 = "3b3362676e978b5521dbf251a51816d5fd9bc3ac0fb68c672d54442b38118789"; 503 503 } 504 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/an/firefox-110.0b6.tar.bz2"; 504 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/an/firefox-110.0b7.tar.bz2"; 505 505 locale = "an"; 506 506 arch = "linux-i686"; 507 - sha256 = "063df5c2021c16f6280635df52d6e0b915a03a66662910b5199cf4c2741ff969"; 507 + sha256 = "41fd6dd1881cc260e63cd26ea1621a0d8d16702d6955a9bd918f3b05835b8342"; 508 508 } 509 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/ar/firefox-110.0b6.tar.bz2"; 509 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/ar/firefox-110.0b7.tar.bz2"; 510 510 locale = "ar"; 511 511 arch = "linux-i686"; 512 - sha256 = "fd9da8344d32ccc0401814f26ec8e2064a9ab0ff90b8badd9c0e87f593f5c619"; 512 + sha256 = "ac82d5b42a9a48f6266d5a9d2db48793b77261735d11ed5c6d106cbf85b2e4c5"; 513 513 } 514 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/ast/firefox-110.0b6.tar.bz2"; 514 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/ast/firefox-110.0b7.tar.bz2"; 515 515 locale = "ast"; 516 516 arch = "linux-i686"; 517 - sha256 = "ac1eb85831c336a17f89624f32e6504a478e8a112d74bb00033571f819e6143a"; 517 + sha256 = "1c980a29e760a669fcf41585cee43398761103703bf7548efb666affee3288d3"; 518 518 } 519 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/az/firefox-110.0b6.tar.bz2"; 519 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/az/firefox-110.0b7.tar.bz2"; 520 520 locale = "az"; 521 521 arch = "linux-i686"; 522 - sha256 = "4d28e3c68a8ffd196a60ed93b743ef2e8ecf4e5589fcd373f5de063bc458b9c5"; 522 + sha256 = "f3fdfd74aaa5d02ac96d6fc2071a2dbec5a424f1263dd3d406e520033c811b88"; 523 523 } 524 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/be/firefox-110.0b6.tar.bz2"; 524 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/be/firefox-110.0b7.tar.bz2"; 525 525 locale = "be"; 526 526 arch = "linux-i686"; 527 - sha256 = "1f8a64b3fe64889ce5584c0dc2695ffdc8a6c8cec2d37734227f83a6fbdad0c3"; 527 + sha256 = "5c878775746f8897754de3a5742ef3b88e743bc59ffb8f073ca43fe85d3c3733"; 528 528 } 529 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/bg/firefox-110.0b6.tar.bz2"; 529 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/bg/firefox-110.0b7.tar.bz2"; 530 530 locale = "bg"; 531 531 arch = "linux-i686"; 532 - sha256 = "1691b11d57275460e2686815f021e5cf41cb1bb2249b064de3aa261b4942acc0"; 532 + sha256 = "2485924a0a2dad6a43e59b3c59b833000806770a4c170c9c9fe8818b9e9456a5"; 533 533 } 534 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/bn/firefox-110.0b6.tar.bz2"; 534 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/bn/firefox-110.0b7.tar.bz2"; 535 535 locale = "bn"; 536 536 arch = "linux-i686"; 537 - sha256 = "acf3fc698db4366e1431804920c058da3db397d3af10c546b998f8d8d0d5fd4b"; 537 + sha256 = "7ec788d014d24984c4a91740ab210d306dca6bd991b21f000a7ec62eb2922730"; 538 538 } 539 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/br/firefox-110.0b6.tar.bz2"; 539 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/br/firefox-110.0b7.tar.bz2"; 540 540 locale = "br"; 541 541 arch = "linux-i686"; 542 - sha256 = "c53b04af598f4dce486c0619e41a793c6919873c21b9ae4d311c0377e66a58eb"; 542 + sha256 = "c3abadb8c90f5def1f1ac66a1f57f8cb72142b5bde767f4310aabdb9b19b2af8"; 543 543 } 544 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/bs/firefox-110.0b6.tar.bz2"; 544 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/bs/firefox-110.0b7.tar.bz2"; 545 545 locale = "bs"; 546 546 arch = "linux-i686"; 547 - sha256 = "1cfd2277b91f27b1677e60b7fe5dbab2c40fe3f3a948634b45f5ec7b89e5a647"; 547 + sha256 = "dbcf629d2bd023a16ffda05a3068c78bc0aaae9c16d23bdd46dde5ed3623102c"; 548 548 } 549 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/ca-valencia/firefox-110.0b6.tar.bz2"; 549 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/ca-valencia/firefox-110.0b7.tar.bz2"; 550 550 locale = "ca-valencia"; 551 551 arch = "linux-i686"; 552 - sha256 = "ad8578346f34198f42be8f0844fd104a274cb522edd5a0908f09aafe2bed4c80"; 552 + sha256 = "fe6eee93d3f1299dd39c1cfb7f71b56ebfe76ff565679e24e78e9df48c15a05c"; 553 553 } 554 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/ca/firefox-110.0b6.tar.bz2"; 554 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/ca/firefox-110.0b7.tar.bz2"; 555 555 locale = "ca"; 556 556 arch = "linux-i686"; 557 - sha256 = "c490ecf0d0cd6875747f07f7af28f9fe5d733d795c45ec50da031c85743462f1"; 557 + sha256 = "8b6beb770bf10e37e28f7fba3f13cadefddc54ab461f79158cac3dbcc4c6d189"; 558 558 } 559 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/cak/firefox-110.0b6.tar.bz2"; 559 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/cak/firefox-110.0b7.tar.bz2"; 560 560 locale = "cak"; 561 561 arch = "linux-i686"; 562 - sha256 = "7d492cd9d5480828ab97a0bdc1482f1b084e58d4048443f300df781cd391d1b5"; 562 + sha256 = "4835a7f7e0c2aac5e7cc515b438f4ec8eef747e8eab43be27329d769111397df"; 563 563 } 564 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/cs/firefox-110.0b6.tar.bz2"; 564 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/cs/firefox-110.0b7.tar.bz2"; 565 565 locale = "cs"; 566 566 arch = "linux-i686"; 567 - sha256 = "b69c01067c28ae46a33f5c4e4bcbce13673435e6cdfbb687e974017cbfa9c162"; 567 + sha256 = "5fbd0659bcf911f4227dbfac889f02515b2108e59c246b16bda3bb80855cd21b"; 568 568 } 569 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/cy/firefox-110.0b6.tar.bz2"; 569 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/cy/firefox-110.0b7.tar.bz2"; 570 570 locale = "cy"; 571 571 arch = "linux-i686"; 572 - sha256 = "dd9cda0206d47cda8a99e9d052312a80c5174884aa864ab16723532c45de02aa"; 572 + sha256 = "3c20e9871614b0173a44f8f1d1c797de2ba1065c5ffde4881fbb46b7bdbc2229"; 573 573 } 574 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/da/firefox-110.0b6.tar.bz2"; 574 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/da/firefox-110.0b7.tar.bz2"; 575 575 locale = "da"; 576 576 arch = "linux-i686"; 577 - sha256 = "428885666cda68400297ee082c0dbcade76c1624f6d8a89e4b0ffa90d9417928"; 577 + sha256 = "4af7481914a29c321ae5ef1f6b1a1b72bdb62e0ca595f35f051a3968e0662580"; 578 578 } 579 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/de/firefox-110.0b6.tar.bz2"; 579 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/de/firefox-110.0b7.tar.bz2"; 580 580 locale = "de"; 581 581 arch = "linux-i686"; 582 - sha256 = "b6f517f88c2e4b672ef37cf34ac0119de1c479b8e8580a1770de49f2f7ee9c77"; 582 + sha256 = "04ed988e98f93a3938f03151e6df9594def3c406473974993223f907077fae18"; 583 583 } 584 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/dsb/firefox-110.0b6.tar.bz2"; 584 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/dsb/firefox-110.0b7.tar.bz2"; 585 585 locale = "dsb"; 586 586 arch = "linux-i686"; 587 - sha256 = "dac48f3abc5ed6932e809853918ca1597653f03b151e79425ace3fd789f25736"; 587 + sha256 = "c44401b4ff9bcf06c41723de20278848c1945051fc8ddfd7031bdc3d08a27470"; 588 588 } 589 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/el/firefox-110.0b6.tar.bz2"; 589 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/el/firefox-110.0b7.tar.bz2"; 590 590 locale = "el"; 591 591 arch = "linux-i686"; 592 - sha256 = "7f360f46cf4475a5abf1e517bd595369dadbf0c9da3ff7f750d205c83ab5d2d5"; 592 + sha256 = "41fb2592795c60fbb9af77e880e97a61055e9380b01d1bb7def76a1058bb741b"; 593 593 } 594 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/en-CA/firefox-110.0b6.tar.bz2"; 594 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/en-CA/firefox-110.0b7.tar.bz2"; 595 595 locale = "en-CA"; 596 596 arch = "linux-i686"; 597 - sha256 = "5fa500c5d415865e55d029b4afdc0512691ab3299b0b8e4a6da4a484e6418556"; 597 + sha256 = "a549401e7357a0dc505342183a8c0f20a220e034565888d76e63998523c21944"; 598 598 } 599 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/en-GB/firefox-110.0b6.tar.bz2"; 599 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/en-GB/firefox-110.0b7.tar.bz2"; 600 600 locale = "en-GB"; 601 601 arch = "linux-i686"; 602 - sha256 = "825e9a49fc9e8efe9dc9911a528806b53cca76a2e51b37ca6a258b8aac86728d"; 602 + sha256 = "a73359b22d92c21c439745b1d7b7c11dd562e9391873e1f6413280aca9fbfcaa"; 603 603 } 604 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/en-US/firefox-110.0b6.tar.bz2"; 604 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/en-US/firefox-110.0b7.tar.bz2"; 605 605 locale = "en-US"; 606 606 arch = "linux-i686"; 607 - sha256 = "71a93956005795350bf5d1fe4caf245ce94120435daf8419bb5b91c2e6643411"; 607 + sha256 = "8f7876555697b4f853924848cec86c480fcc7d6374df5173a14d4694d0a26f24"; 608 608 } 609 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/eo/firefox-110.0b6.tar.bz2"; 609 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/eo/firefox-110.0b7.tar.bz2"; 610 610 locale = "eo"; 611 611 arch = "linux-i686"; 612 - sha256 = "bf8d0d97c89e855fc54bfe6b450a7aad241994dc0e52a8bb8dd3f1485b0dce37"; 612 + sha256 = "fe9d258c7795bc543e32df33fc1db4f39eaaad543fc6c06620de2c86317564dd"; 613 613 } 614 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/es-AR/firefox-110.0b6.tar.bz2"; 614 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/es-AR/firefox-110.0b7.tar.bz2"; 615 615 locale = "es-AR"; 616 616 arch = "linux-i686"; 617 - sha256 = "adedb15e7436d17561d2bddec652a189fba82300cb9a9c5b547b55c7bdc3b8d8"; 617 + sha256 = "35b687901ea7499b9d91e14e13549d4269db4ff11aa1c3a4cf7a0b169c781e40"; 618 618 } 619 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/es-CL/firefox-110.0b6.tar.bz2"; 619 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/es-CL/firefox-110.0b7.tar.bz2"; 620 620 locale = "es-CL"; 621 621 arch = "linux-i686"; 622 - sha256 = "f6f656c55c0d99787f863c98d0ec8e6d81e7cd9cf053ad9b413b2e94d2d87824"; 622 + sha256 = "fee072e0890c5ce4e88b2ca385177182bca52f21a9e5689c4886a08734c09844"; 623 623 } 624 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/es-ES/firefox-110.0b6.tar.bz2"; 624 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/es-ES/firefox-110.0b7.tar.bz2"; 625 625 locale = "es-ES"; 626 626 arch = "linux-i686"; 627 - sha256 = "8d1d390d11df8a14c131d8f8ea32d0996cb1c8d900d82ad92ac06e891c95f46a"; 627 + sha256 = "9b23c740a58ac3a621d6afefa825c4698d263222a31997b0d1463c13b8a88f18"; 628 628 } 629 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/es-MX/firefox-110.0b6.tar.bz2"; 629 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/es-MX/firefox-110.0b7.tar.bz2"; 630 630 locale = "es-MX"; 631 631 arch = "linux-i686"; 632 - sha256 = "ed4975c6116869cfb974f67c9b6bcaaabe8611f13dbc6b079ee6f41aee392152"; 632 + sha256 = "976be15d7cbd1e6dbbc21cff035b1ba79755c1c7b08878acf73b611d179b58a5"; 633 633 } 634 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/et/firefox-110.0b6.tar.bz2"; 634 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/et/firefox-110.0b7.tar.bz2"; 635 635 locale = "et"; 636 636 arch = "linux-i686"; 637 - sha256 = "c035dc701e59f89f7ca4d2749968ee204e85c16236fb0be61efbb9c5983f74e8"; 637 + sha256 = "f5aa192deb8f4063888c4539568a1cfe14ac5efbb39890be0f626a44184527ee"; 638 638 } 639 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/eu/firefox-110.0b6.tar.bz2"; 639 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/eu/firefox-110.0b7.tar.bz2"; 640 640 locale = "eu"; 641 641 arch = "linux-i686"; 642 - sha256 = "d3cd0f28edae980b99b678e22e9850011cf0c5e2822de55721608634eaf3d752"; 642 + sha256 = "27a6412ffef8191fe49f91f46981bef4eaafdba51af751b68ca784f425181572"; 643 643 } 644 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/fa/firefox-110.0b6.tar.bz2"; 644 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/fa/firefox-110.0b7.tar.bz2"; 645 645 locale = "fa"; 646 646 arch = "linux-i686"; 647 - sha256 = "2ae0f1e798b8fa34c4b1bbb943aad6f5f4499399ce7b7d78393330a31bd6340f"; 647 + sha256 = "ffa4e932d63aa0609de12194b97e9812eeda9d9995e85cc3571bf22307b551c6"; 648 648 } 649 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/ff/firefox-110.0b6.tar.bz2"; 649 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/ff/firefox-110.0b7.tar.bz2"; 650 650 locale = "ff"; 651 651 arch = "linux-i686"; 652 - sha256 = "0e2db061639d3c72b996198eacdd23bac91562a42fde5c33f2ad82d015694f0d"; 652 + sha256 = "e1bc2f4df952a0bcdbd94acd5a4ba9a147ea0625b43f1c2c2516c2033c493a0f"; 653 653 } 654 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/fi/firefox-110.0b6.tar.bz2"; 654 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/fi/firefox-110.0b7.tar.bz2"; 655 655 locale = "fi"; 656 656 arch = "linux-i686"; 657 - sha256 = "650c624ce04e957bf81cc07f3904eb54ca119d92b47d2b068762528582cda4e2"; 657 + sha256 = "f7b426f07cad206f4ebfed3f7572415659328f91b2a892c79849a95391ed07b5"; 658 658 } 659 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/fr/firefox-110.0b6.tar.bz2"; 659 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/fr/firefox-110.0b7.tar.bz2"; 660 660 locale = "fr"; 661 661 arch = "linux-i686"; 662 - sha256 = "04fe34e2ca322fe92b9a059cfbb9cd18d1e6832e72663f368cf08de5f79c85e3"; 662 + sha256 = "4724ccf94bec086fd5fd66368b03cc20c9ea07859113c9ae3d36a15aa9fb5fb2"; 663 663 } 664 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/fy-NL/firefox-110.0b6.tar.bz2"; 664 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/fy-NL/firefox-110.0b7.tar.bz2"; 665 665 locale = "fy-NL"; 666 666 arch = "linux-i686"; 667 - sha256 = "a59109705238fb3d85768f1e3ad507c17d56aba6cbdbeef6962bbd7b00e6d4a6"; 667 + sha256 = "13643cf94fa7ae3ba5fbd44a7d4f7e4d05f0512711f14e7eaa1387ab49a99cf8"; 668 668 } 669 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/ga-IE/firefox-110.0b6.tar.bz2"; 669 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/ga-IE/firefox-110.0b7.tar.bz2"; 670 670 locale = "ga-IE"; 671 671 arch = "linux-i686"; 672 - sha256 = "3d4596670e24978f159523b11076eb122b065ffe7af6c24d71d3d3041bba26a9"; 672 + sha256 = "f91a4493c6155e6f087158ce4b426fe131cacb558ea7ea0e5ce6eff162735f9d"; 673 673 } 674 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/gd/firefox-110.0b6.tar.bz2"; 674 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/gd/firefox-110.0b7.tar.bz2"; 675 675 locale = "gd"; 676 676 arch = "linux-i686"; 677 - sha256 = "3d710e608b89e4e649c9306d31b44dd0def705c7c7801168558279ce417cf50e"; 677 + sha256 = "41a9ef5fa0b2744fb6b92e14e85cd5dc4f44a7c7ce8af98a1a3a918d61dd0deb"; 678 678 } 679 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/gl/firefox-110.0b6.tar.bz2"; 679 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/gl/firefox-110.0b7.tar.bz2"; 680 680 locale = "gl"; 681 681 arch = "linux-i686"; 682 - sha256 = "3ea8dc03b96c8f60bbef3ff128d7768404cbe0cc454ab9798006031ad1302267"; 682 + sha256 = "788f9d3b57ba76f4910e0d36e6fc85e8fc1db04f5522fe166b3c835281a3d1fa"; 683 683 } 684 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/gn/firefox-110.0b6.tar.bz2"; 684 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/gn/firefox-110.0b7.tar.bz2"; 685 685 locale = "gn"; 686 686 arch = "linux-i686"; 687 - sha256 = "5995821d84e3010f677f34eb39458474887a68eceeaf0a0c57c7fe05e3be6ee3"; 687 + sha256 = "3dd1a7503e4586da4564ec849abc92e2804967ccfa24c2ac97ed0a950ab8d437"; 688 688 } 689 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/gu-IN/firefox-110.0b6.tar.bz2"; 689 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/gu-IN/firefox-110.0b7.tar.bz2"; 690 690 locale = "gu-IN"; 691 691 arch = "linux-i686"; 692 - sha256 = "6c0d85288aff0e0aacbbe4d458094cb7ed6e65329582867301063d3128ebb2e7"; 692 + sha256 = "3e8e2b6845220caf1b55627e3015dc9b730ab5e3b83c89404a99b7360f635667"; 693 693 } 694 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/he/firefox-110.0b6.tar.bz2"; 694 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/he/firefox-110.0b7.tar.bz2"; 695 695 locale = "he"; 696 696 arch = "linux-i686"; 697 - sha256 = "ec93484339fc37ee2a4dee2f81e74fc1c122e796f0f059bf4343f3a8f2c4464d"; 697 + sha256 = "bb10af6a2bb65524549d49f4d9ae997f5e76b9fb7319a7c799d40024c9668103"; 698 698 } 699 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/hi-IN/firefox-110.0b6.tar.bz2"; 699 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/hi-IN/firefox-110.0b7.tar.bz2"; 700 700 locale = "hi-IN"; 701 701 arch = "linux-i686"; 702 - sha256 = "27b9d1257f45bd39cb8b58641035a9ec71f51a9062c5e02ae64c70b6f694e1dd"; 702 + sha256 = "81007114b51ca5609b6e396bb1beb50f4aeb34932996e6af43f2f06081a75a7c"; 703 703 } 704 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/hr/firefox-110.0b6.tar.bz2"; 704 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/hr/firefox-110.0b7.tar.bz2"; 705 705 locale = "hr"; 706 706 arch = "linux-i686"; 707 - sha256 = "760d6dde33b90095bc50fb126078d7b666c5c05da953a3ecceb17d1982295c3e"; 707 + sha256 = "35b3a5ad77dd74429626d25b8f103f5ebb4e2d6f820f127cd4dd5f1f3935be80"; 708 708 } 709 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/hsb/firefox-110.0b6.tar.bz2"; 709 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/hsb/firefox-110.0b7.tar.bz2"; 710 710 locale = "hsb"; 711 711 arch = "linux-i686"; 712 - sha256 = "8767aa998c94b5f2977c0f68a6c1b71094952470855e97e80ebc3d9d58f55906"; 712 + sha256 = "d1e58940ef2a555d4da136faa65f107ed14f2da90581b5a347222f836fdfb484"; 713 713 } 714 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/hu/firefox-110.0b6.tar.bz2"; 714 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/hu/firefox-110.0b7.tar.bz2"; 715 715 locale = "hu"; 716 716 arch = "linux-i686"; 717 - sha256 = "90f9c684e167514d4b435434e540b6cc5a8ee5bb3f35278b999d2f257a8da2be"; 717 + sha256 = "4a14463ba65c108f9db55af7722c33a41d3bc818a90006ec0dc8c0a137d8fc8b"; 718 718 } 719 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/hy-AM/firefox-110.0b6.tar.bz2"; 719 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/hy-AM/firefox-110.0b7.tar.bz2"; 720 720 locale = "hy-AM"; 721 721 arch = "linux-i686"; 722 - sha256 = "ed14aba5f363bdbd19f2f91c3154ce045201edb1cbe1083949fc7007b30a830d"; 722 + sha256 = "6b23bd00965e7e2bb456c82f66dc931b93b30aff9f32cbecc548a86c12003577"; 723 723 } 724 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/ia/firefox-110.0b6.tar.bz2"; 724 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/ia/firefox-110.0b7.tar.bz2"; 725 725 locale = "ia"; 726 726 arch = "linux-i686"; 727 - sha256 = "73440914c3c65904e1ea3393f48880c76636de94fdca71b9a970604a72b00cc1"; 727 + sha256 = "9b021296624e5a73a039d7eb41e6d8c67d0b29d391ec91f2729f572fa626eb62"; 728 728 } 729 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/id/firefox-110.0b6.tar.bz2"; 729 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/id/firefox-110.0b7.tar.bz2"; 730 730 locale = "id"; 731 731 arch = "linux-i686"; 732 - sha256 = "a4b3c121a5100c0507dd7ad9169804e7b4e3c33bff51e4c5fcf3996da8347152"; 732 + sha256 = "453984cebaa6bb6324bcad3f89816207b113280525e6c551a1f457a66d471b2c"; 733 733 } 734 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/is/firefox-110.0b6.tar.bz2"; 734 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/is/firefox-110.0b7.tar.bz2"; 735 735 locale = "is"; 736 736 arch = "linux-i686"; 737 - sha256 = "49662d42073cb99cd84482053c422b7d4ec583780b2a4fbfc7cab1369c26c12f"; 737 + sha256 = "136d6a2f17693569b2b1169b4afa7e4bd073b85758993a82a8807f47aa3c0eb7"; 738 738 } 739 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/it/firefox-110.0b6.tar.bz2"; 739 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/it/firefox-110.0b7.tar.bz2"; 740 740 locale = "it"; 741 741 arch = "linux-i686"; 742 - sha256 = "ca57c98b7c2553455efd243ec712de249503ce60bb7feba779788a2802da65c9"; 742 + sha256 = "b68387a725f930a3c8714620a80046f4ad13334046bfe186e5499139e95bd919"; 743 743 } 744 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/ja/firefox-110.0b6.tar.bz2"; 744 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/ja/firefox-110.0b7.tar.bz2"; 745 745 locale = "ja"; 746 746 arch = "linux-i686"; 747 - sha256 = "9cd13cd6347e53f8e68bc3a50a74d400cd44eb5048bb509c30f7b66fc3f6195a"; 747 + sha256 = "b46a39f4b36bdea5f1084d2c8b61d75aa717e6926c7f343348dc22199b141fd1"; 748 748 } 749 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/ka/firefox-110.0b6.tar.bz2"; 749 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/ka/firefox-110.0b7.tar.bz2"; 750 750 locale = "ka"; 751 751 arch = "linux-i686"; 752 - sha256 = "407cfba5001ae52d3ac6639804cff27da92830c1c8085b223204726b32d898bb"; 752 + sha256 = "25a44788f981a713b66155e17ec3226dc3c7514a1edf4be02659bd43caf7fefc"; 753 753 } 754 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/kab/firefox-110.0b6.tar.bz2"; 754 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/kab/firefox-110.0b7.tar.bz2"; 755 755 locale = "kab"; 756 756 arch = "linux-i686"; 757 - sha256 = "df3b859d258fa0fc1119e1c112b7818db584e96ec63c3c5d700f9f34196e0cb1"; 757 + sha256 = "d795e5d2396f24d43f1c24ebe18c1561d391d2859e7bdc6759f65cbab97cc3f6"; 758 758 } 759 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/kk/firefox-110.0b6.tar.bz2"; 759 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/kk/firefox-110.0b7.tar.bz2"; 760 760 locale = "kk"; 761 761 arch = "linux-i686"; 762 - sha256 = "1130383885b9168923531ff3b4e7a3f461d03a517239eac45ca4942cf2e60596"; 762 + sha256 = "e5bbb12d574c7d6460ebc0d704d0fcf47fc034fbf76e7ecb0780479777490a94"; 763 763 } 764 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/km/firefox-110.0b6.tar.bz2"; 764 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/km/firefox-110.0b7.tar.bz2"; 765 765 locale = "km"; 766 766 arch = "linux-i686"; 767 - sha256 = "3fb32dc9e0852a6637827d01f7b5620a935456441ace52d1ac682e26176036cd"; 767 + sha256 = "db19e45151808183201a5526d788d72929f46ad958ab20d87a29792eaf67e104"; 768 768 } 769 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/kn/firefox-110.0b6.tar.bz2"; 769 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/kn/firefox-110.0b7.tar.bz2"; 770 770 locale = "kn"; 771 771 arch = "linux-i686"; 772 - sha256 = "0483c05fc57210d3c41f14e669d2e9807ee5ad844a4a26d8a48c4ca3d16d52ff"; 772 + sha256 = "0efce05c5b640d5772a212b82a949c2c64842e85f42c31f3d79b87572afc5e03"; 773 773 } 774 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/ko/firefox-110.0b6.tar.bz2"; 774 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/ko/firefox-110.0b7.tar.bz2"; 775 775 locale = "ko"; 776 776 arch = "linux-i686"; 777 - sha256 = "0d61e271109c15bdd72804f71c483f48500d83e009b33a6cc53b5108dc5a0735"; 777 + sha256 = "c83f3d9920ed08763c3a0fed2069e29db4c6bb0f476e78792cf9fdedfac32456"; 778 778 } 779 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/lij/firefox-110.0b6.tar.bz2"; 779 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/lij/firefox-110.0b7.tar.bz2"; 780 780 locale = "lij"; 781 781 arch = "linux-i686"; 782 - sha256 = "d12b0eb443fd40f4f1053e1e3df641199d1d4f93a404390e35b2476375f82d73"; 782 + sha256 = "96269f1e5ba3753fb49794ec4823283491b4abdb0626a6580b5b3f1efab2c069"; 783 783 } 784 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/lt/firefox-110.0b6.tar.bz2"; 784 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/lt/firefox-110.0b7.tar.bz2"; 785 785 locale = "lt"; 786 786 arch = "linux-i686"; 787 - sha256 = "48fe1982a3d58362f0491fb46d908408fcdd512d356c2152be506c2da65c5b80"; 787 + sha256 = "71a277cc9fd8a61ba3dddad764b0c6a7fda5dfb6bf2177f8cc75ee3ffacd9786"; 788 788 } 789 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/lv/firefox-110.0b6.tar.bz2"; 789 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/lv/firefox-110.0b7.tar.bz2"; 790 790 locale = "lv"; 791 791 arch = "linux-i686"; 792 - sha256 = "332a4db6267a12e326e2c5faa628870e9c22fddf3dfa19a0159c66a7138bfb25"; 792 + sha256 = "86bf2b8b65f515bf58790f2bc30a632cf8a4751f264ec0259b869dc0813dc4ec"; 793 793 } 794 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/mk/firefox-110.0b6.tar.bz2"; 794 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/mk/firefox-110.0b7.tar.bz2"; 795 795 locale = "mk"; 796 796 arch = "linux-i686"; 797 - sha256 = "62f7d5edacb8cb4099d0993884e5f4a81a79b11ea990a6ddd11eb4fca345cc91"; 797 + sha256 = "2caee54fdddb3f4874d808ee7610d64dce438deeec4f030e1675bd1133e8acd8"; 798 798 } 799 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/mr/firefox-110.0b6.tar.bz2"; 799 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/mr/firefox-110.0b7.tar.bz2"; 800 800 locale = "mr"; 801 801 arch = "linux-i686"; 802 - sha256 = "3cf725ebe419057dcb42da766c66e9849ba9a94f8179afb42f4b0c91fcfffc95"; 802 + sha256 = "253d3ff0c4e244a10346eda07d63adc380cbea72fa052a17dbfa8af61a517af9"; 803 803 } 804 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/ms/firefox-110.0b6.tar.bz2"; 804 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/ms/firefox-110.0b7.tar.bz2"; 805 805 locale = "ms"; 806 806 arch = "linux-i686"; 807 - sha256 = "4415387c7e291b4a1263df680b111bc64c02568707215fa748f0dd49323034de"; 807 + sha256 = "3936c9f4900488d31203057214c6c0121f65495686c099971cc6f3cf7a368735"; 808 808 } 809 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/my/firefox-110.0b6.tar.bz2"; 809 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/my/firefox-110.0b7.tar.bz2"; 810 810 locale = "my"; 811 811 arch = "linux-i686"; 812 - sha256 = "f3c21487a8770be1562e638120cc72c64c1f6cfbe7fff648f2d77ea2e4a9e312"; 812 + sha256 = "04fe1a0361b7eda1b28fcfdf98a581f4a0e248a6db647bbf404589e398eac64a"; 813 813 } 814 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/nb-NO/firefox-110.0b6.tar.bz2"; 814 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/nb-NO/firefox-110.0b7.tar.bz2"; 815 815 locale = "nb-NO"; 816 816 arch = "linux-i686"; 817 - sha256 = "976ffb8f71eba8d9c96643c146ed05ab4ef3c8f85bbbe9764cd95950c04ef5c0"; 817 + sha256 = "41639bb0cbcbff85f2fec3318eefd8b0d643550a1adee4782d5a904372786732"; 818 818 } 819 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/ne-NP/firefox-110.0b6.tar.bz2"; 819 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/ne-NP/firefox-110.0b7.tar.bz2"; 820 820 locale = "ne-NP"; 821 821 arch = "linux-i686"; 822 - sha256 = "5f56d1b9745945c3e30d2f56acf6ce977d6c86e39e51a4513db8f939dcf4d6c1"; 822 + sha256 = "a9f41809ee0526fdb322e1313ce7dfc23118f277c3db3a1e10bf27cd3c47b722"; 823 823 } 824 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/nl/firefox-110.0b6.tar.bz2"; 824 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/nl/firefox-110.0b7.tar.bz2"; 825 825 locale = "nl"; 826 826 arch = "linux-i686"; 827 - sha256 = "b829e9d0b0752fa9cde84b1fe582644baa708c1cca35af24b18351ab48c58280"; 827 + sha256 = "09320d70bfa669efe7871cd494b233e2b9fff320077e1304558c3039890884ae"; 828 828 } 829 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/nn-NO/firefox-110.0b6.tar.bz2"; 829 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/nn-NO/firefox-110.0b7.tar.bz2"; 830 830 locale = "nn-NO"; 831 831 arch = "linux-i686"; 832 - sha256 = "acfd4132a15785b3c8356d76b682ec4080c28c242e2f4bf9781b883d0a604d6a"; 832 + sha256 = "737dccedbfbc9d2310a7e6870518a2f77e2b17d69da19a8929df3cd1b7f666b2"; 833 833 } 834 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/oc/firefox-110.0b6.tar.bz2"; 834 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/oc/firefox-110.0b7.tar.bz2"; 835 835 locale = "oc"; 836 836 arch = "linux-i686"; 837 - sha256 = "27c35d4fd2533f919529ac079a014f0ccc90d3e678b0830c5ca267d9f08c306d"; 837 + sha256 = "0ffa6b471aa356d9380ed5795f4e2b5e47a766d64679c985fe59ab913b14863d"; 838 838 } 839 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/pa-IN/firefox-110.0b6.tar.bz2"; 839 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/pa-IN/firefox-110.0b7.tar.bz2"; 840 840 locale = "pa-IN"; 841 841 arch = "linux-i686"; 842 - sha256 = "0c243da2391b9536a8cd9c086198b8239ee34cad27eaf8b4875e92e96c307a55"; 842 + sha256 = "c99a8c9ab9033455acb3eadca94cfc5c15efdc458172944802a39918c94f3651"; 843 843 } 844 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/pl/firefox-110.0b6.tar.bz2"; 844 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/pl/firefox-110.0b7.tar.bz2"; 845 845 locale = "pl"; 846 846 arch = "linux-i686"; 847 - sha256 = "5ddf3f0c6d063b9bf519c5ab0ba07df7533ab9d57258e4a824e8a6f5ee8ce390"; 847 + sha256 = "6a9d49716621fb5a04182614265e6dc9c8b52618eaad4498a10b6188f35785b9"; 848 848 } 849 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/pt-BR/firefox-110.0b6.tar.bz2"; 849 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/pt-BR/firefox-110.0b7.tar.bz2"; 850 850 locale = "pt-BR"; 851 851 arch = "linux-i686"; 852 - sha256 = "f4c5bd007f6e344fda32c77c9a3e92de635a8c2c8db122ad0c2cb01a3b81c2d9"; 852 + sha256 = "dfcf1c15fc3376da4bcb18d404e3330ad1d04a1307bdf8b5731b2bfbdaf11e1e"; 853 853 } 854 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/pt-PT/firefox-110.0b6.tar.bz2"; 854 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/pt-PT/firefox-110.0b7.tar.bz2"; 855 855 locale = "pt-PT"; 856 856 arch = "linux-i686"; 857 - sha256 = "017d30fb2a5834e252b3c1a1385354a983ebd64c6be2fd6eb4212ec779c97880"; 857 + sha256 = "ebbcfad6776276ad0459e41dfd15dc5ef4ce2d099ca8aa0d5c992c833224ea20"; 858 858 } 859 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/rm/firefox-110.0b6.tar.bz2"; 859 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/rm/firefox-110.0b7.tar.bz2"; 860 860 locale = "rm"; 861 861 arch = "linux-i686"; 862 - sha256 = "4d35b881cb182388f66b14876efe1b0d4aa00ec2994e029932901b54e629340f"; 862 + sha256 = "0924391109336ee501cf1abf1a5c6b1776ade3ba61fba15f0b4e16fb1db996b3"; 863 863 } 864 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/ro/firefox-110.0b6.tar.bz2"; 864 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/ro/firefox-110.0b7.tar.bz2"; 865 865 locale = "ro"; 866 866 arch = "linux-i686"; 867 - sha256 = "fc34790a3a2d235b14478eb31670b62933c7d2cc7cb1bd5fead7f002b335e549"; 867 + sha256 = "ac1ba842e7f9cdf86f5d9b469b8621d683e7a5716f05871b761520a8bb3fdfee"; 868 868 } 869 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/ru/firefox-110.0b6.tar.bz2"; 869 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/ru/firefox-110.0b7.tar.bz2"; 870 870 locale = "ru"; 871 871 arch = "linux-i686"; 872 - sha256 = "4b3a6dd21508f59dcf2dd1dff8ff3e9a3b601cb73d2a030a7a594528a9d978b7"; 872 + sha256 = "d298dfe0e446e438d900e2501a9efe70c55f843d9590bdb4f65e3486807bb7e4"; 873 873 } 874 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/sco/firefox-110.0b6.tar.bz2"; 874 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/sco/firefox-110.0b7.tar.bz2"; 875 875 locale = "sco"; 876 876 arch = "linux-i686"; 877 - sha256 = "221a2c0fbc7bf4225f1ec4f2e872cf20012d7807ad091fa3fec0f91cb6ca12ea"; 877 + sha256 = "85c4ae41383c4686c3ccdb143e789414785189c24dd1aaf52ba0c8b69cc65862"; 878 878 } 879 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/si/firefox-110.0b6.tar.bz2"; 879 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/si/firefox-110.0b7.tar.bz2"; 880 880 locale = "si"; 881 881 arch = "linux-i686"; 882 - sha256 = "f4f70e072041b2a7b49078c5dbfea8022f71918c111d1d4cdbac8087a1bef05f"; 882 + sha256 = "f57401bb72a03b9e7676ed6839ba07eac65201a7c368122d3174bb17abd0052f"; 883 883 } 884 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/sk/firefox-110.0b6.tar.bz2"; 884 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/sk/firefox-110.0b7.tar.bz2"; 885 885 locale = "sk"; 886 886 arch = "linux-i686"; 887 - sha256 = "ddabc01e0c3987f7c62aa4f3e1379e857817fc99311ed1ed130f3ea7100ca020"; 887 + sha256 = "790ba626a5276bf13314ead2f8134809d254d2daa471cbb7139e79d2638f862c"; 888 888 } 889 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/sl/firefox-110.0b6.tar.bz2"; 889 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/sl/firefox-110.0b7.tar.bz2"; 890 890 locale = "sl"; 891 891 arch = "linux-i686"; 892 - sha256 = "506824a978f2298fd5433cb85c4ab2cee49ad65c8852c88532bbe8adf7b06d42"; 892 + sha256 = "c3fe71c0e08a4ec80384d32d04de91a6717f397d4a16ab357d2e160be39e62ef"; 893 893 } 894 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/son/firefox-110.0b6.tar.bz2"; 894 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/son/firefox-110.0b7.tar.bz2"; 895 895 locale = "son"; 896 896 arch = "linux-i686"; 897 - sha256 = "5739cde6c983d12deeb21cd275a2158ba10f328cad8400344d37e7d2f7a78d34"; 897 + sha256 = "c43f935f36a13d4405e84888849fa65a74db46170e7d70e8168513f0ed5a1293"; 898 898 } 899 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/sq/firefox-110.0b6.tar.bz2"; 899 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/sq/firefox-110.0b7.tar.bz2"; 900 900 locale = "sq"; 901 901 arch = "linux-i686"; 902 - sha256 = "fed152b96a636c6d74be3b61a6d6027c35f56a76015e915e6d4da3e1dda9450f"; 902 + sha256 = "a32fdc9295de5af65212232afc12a5551353bbe883603bfcb3b7455b5d724bc4"; 903 903 } 904 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/sr/firefox-110.0b6.tar.bz2"; 904 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/sr/firefox-110.0b7.tar.bz2"; 905 905 locale = "sr"; 906 906 arch = "linux-i686"; 907 - sha256 = "c96bacb40410e0300d7099462a7dbcb5f604eeb5f414f67a8e1bb0e832a09367"; 907 + sha256 = "7ac06bd3e9d87d765f741329dd6123d61905150a895b08391ea9a721b688416f"; 908 908 } 909 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/sv-SE/firefox-110.0b6.tar.bz2"; 909 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/sv-SE/firefox-110.0b7.tar.bz2"; 910 910 locale = "sv-SE"; 911 911 arch = "linux-i686"; 912 - sha256 = "d37eabc4ade9d982bd6b767f15577f6341ea2693bc5a87b65fc96c0f3b61cdd2"; 912 + sha256 = "f9b8c7b4498bb7878501a792a9e74a02426afa487df60bc69fe61b3e241c2e68"; 913 913 } 914 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/szl/firefox-110.0b6.tar.bz2"; 914 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/szl/firefox-110.0b7.tar.bz2"; 915 915 locale = "szl"; 916 916 arch = "linux-i686"; 917 - sha256 = "a44b45ab5f624c7aa983ea87d8f794c9ec9c46295deb718cfc2939143f7adf4d"; 917 + sha256 = "7a0ee765684a3a4b5ca72852980e5aa17b502e0536a89f22bd7f8606e9baa42d"; 918 918 } 919 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/ta/firefox-110.0b6.tar.bz2"; 919 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/ta/firefox-110.0b7.tar.bz2"; 920 920 locale = "ta"; 921 921 arch = "linux-i686"; 922 - sha256 = "6080465fb108fa7ba842d9df72813bede6c1b7c29ed2a1f77af07cbee4c367c9"; 922 + sha256 = "b8e5e6f76501cf0e6d25df0d567bac8a59da80ab2958f49e4183deaf5f500480"; 923 923 } 924 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/te/firefox-110.0b6.tar.bz2"; 924 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/te/firefox-110.0b7.tar.bz2"; 925 925 locale = "te"; 926 926 arch = "linux-i686"; 927 - sha256 = "51202c1369abf24b827930f0ea90450d8e6ba658c95a4a9c57b605f4f53f868f"; 927 + sha256 = "af0b910c67ed734fa20d5a4259218352735cac6b8284d5b6a64ffa74d04b96b3"; 928 928 } 929 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/th/firefox-110.0b6.tar.bz2"; 929 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/th/firefox-110.0b7.tar.bz2"; 930 930 locale = "th"; 931 931 arch = "linux-i686"; 932 - sha256 = "308706a17ccac165ac90b2eb9219179530bebfa79a1281abd6abe742345530cd"; 932 + sha256 = "10df84e1903cf7fb703bc590cf27b670a4778562190914f7d0f4df3894bc6dd5"; 933 933 } 934 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/tl/firefox-110.0b6.tar.bz2"; 934 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/tl/firefox-110.0b7.tar.bz2"; 935 935 locale = "tl"; 936 936 arch = "linux-i686"; 937 - sha256 = "fe9819fadeab1a6caf5bb8d0e6371fdff5dbc8a42c81e5660c3f310e4657f576"; 937 + sha256 = "49fdfafee4020a914ab5edbe2b64b907b4195679a065f1c9bf53d4ac2ba10be1"; 938 938 } 939 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/tr/firefox-110.0b6.tar.bz2"; 939 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/tr/firefox-110.0b7.tar.bz2"; 940 940 locale = "tr"; 941 941 arch = "linux-i686"; 942 - sha256 = "4e4d9ea2b5a800666c8fa9df6ade4bdf3ca61c62a691b564522d0e38b24dfc51"; 942 + sha256 = "5a266bd815e3c8569d263951bd91b0ee0383ff2157289ee8df4eeaca938bccbd"; 943 943 } 944 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/trs/firefox-110.0b6.tar.bz2"; 944 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/trs/firefox-110.0b7.tar.bz2"; 945 945 locale = "trs"; 946 946 arch = "linux-i686"; 947 - sha256 = "dfd8f5dee461783ed464f0732cdb99ebbee6a2302fb73889898ca8bdba2ad9e4"; 947 + sha256 = "2eda65562b714f7700f6628c254fbcc526fc938f3d147eccdc2154e42f22dee7"; 948 948 } 949 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/uk/firefox-110.0b6.tar.bz2"; 949 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/uk/firefox-110.0b7.tar.bz2"; 950 950 locale = "uk"; 951 951 arch = "linux-i686"; 952 - sha256 = "0dba6d9c291b62eeb684fc6fbb7a14b95442646eee219e1ea9fda0b825f0a24f"; 952 + sha256 = "8541334d7bcf99959d944eaa7263000f502b1ed2d0a1b52dff91481cf01c1460"; 953 953 } 954 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/ur/firefox-110.0b6.tar.bz2"; 954 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/ur/firefox-110.0b7.tar.bz2"; 955 955 locale = "ur"; 956 956 arch = "linux-i686"; 957 - sha256 = "4eaf94c439a3d0a87d7a9b6682b98fc6f1a9b37603dc5abaf6703e2c24790c1c"; 957 + sha256 = "dc0eb2f604c869b45c247f65f62b5f7c5982f5ec7e4a6f55b901d5ded0f92b03"; 958 958 } 959 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/uz/firefox-110.0b6.tar.bz2"; 959 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/uz/firefox-110.0b7.tar.bz2"; 960 960 locale = "uz"; 961 961 arch = "linux-i686"; 962 - sha256 = "cedf39945570aae400a65412a4e1eeb927abd3467248865d64e76f9ca4245a7c"; 962 + sha256 = "8ee65711e182478c360e988b9d1cbb8636d737d961817f1bfb2f2dedd38a36e9"; 963 963 } 964 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/vi/firefox-110.0b6.tar.bz2"; 964 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/vi/firefox-110.0b7.tar.bz2"; 965 965 locale = "vi"; 966 966 arch = "linux-i686"; 967 - sha256 = "26e194e84cc1df5bd901400c658ec924d16c0cc1482e99a15e2d9e19c56338ee"; 967 + sha256 = "32b9654813638160541512f03befb998416ad142a0f12d50bc02d75b646d88d7"; 968 968 } 969 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/xh/firefox-110.0b6.tar.bz2"; 969 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/xh/firefox-110.0b7.tar.bz2"; 970 970 locale = "xh"; 971 971 arch = "linux-i686"; 972 - sha256 = "5a99166fcc449492b95389fb0d5bf0c46044ddcc8dda5ef378944d54ea929371"; 972 + sha256 = "5317f9ada8234ff2bb305c8536d7aeb6b38f6047e8ef7907f1e01d60773e084b"; 973 973 } 974 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/zh-CN/firefox-110.0b6.tar.bz2"; 974 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/zh-CN/firefox-110.0b7.tar.bz2"; 975 975 locale = "zh-CN"; 976 976 arch = "linux-i686"; 977 - sha256 = "b26f6ce2063d2848b1ecd66c3ece98671004e67877eb5fc8eb6de7ca0d92bba7"; 977 + sha256 = "20768d5d4943847fcbe4c8e549af0d03383c4ad20909b60421afba97fd3b5446"; 978 978 } 979 - { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b6/linux-i686/zh-TW/firefox-110.0b6.tar.bz2"; 979 + { url = "https://archive.mozilla.org/pub/devedition/releases/110.0b7/linux-i686/zh-TW/firefox-110.0b7.tar.bz2"; 980 980 locale = "zh-TW"; 981 981 arch = "linux-i686"; 982 - sha256 = "f0180a87149018c4301939f4899b083fa995cf02b9823b4a77cfc3d791c8ddd5"; 982 + sha256 = "ed538524665e72125b820c4eefb5fed8983f84f42d7be65bea7c3915d9779002"; 983 983 } 984 984 ]; 985 985 }
+3 -3
pkgs/applications/networking/cluster/acorn/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "acorn"; 5 - version = "0.5.0"; 5 + version = "0.5.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "acorn-io"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - hash = "sha256-wrtuBme12pilFKDyzKWlZFUu99NQKgwnx2fUOfL+VAY="; 11 + hash = "sha256-9+jI3GBRuX06+aN8C8C3K72kKtQVwmfAwhYLViuERxk="; 12 12 }; 13 13 14 - vendorHash = "sha256-9cq64397RB4KWVatuKXi1EwjolGEpwAc+tC1zs3boQ4="; 14 + vendorHash = "sha256-t/q94B+ihcHh/XFHs1Z9yQTwoFKv/nkhIDykymGNA2w="; 15 15 16 16 ldflags = [ 17 17 "-s"
+2 -2
pkgs/applications/networking/cluster/terraform-providers/providers.json
··· 1032 1032 "vendorHash": null 1033 1033 }, 1034 1034 "snowflake": { 1035 - "hash": "sha256-cy/rolY0Ag/8Vbfs7XERIZxUsF65sap5/EHqU2w44bM=", 1035 + "hash": "sha256-cocHU3xdlSAyBeOI5yLEo3j/ErfPwFIkkWgF4JB43fY=", 1036 1036 "homepage": "https://registry.terraform.io/providers/Snowflake-Labs/snowflake", 1037 1037 "owner": "Snowflake-Labs", 1038 1038 "repo": "terraform-provider-snowflake", 1039 - "rev": "v0.56.1", 1039 + "rev": "v0.56.2", 1040 1040 "spdx": "MIT", 1041 1041 "vendorHash": "sha256-ulgTRY8qQ5oXONkwYtffRl1QMNnbvyn0zYiYqqvwrUU=" 1042 1042 },
+2 -2
pkgs/applications/networking/novnc/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "novnc"; 5 - version = "1.3.0"; 5 + version = "1.4.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "novnc"; 9 9 repo = "noVNC"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-Z+bks7kcwj+Z3uf/t0u25DnGOM60QhSH6uuoIi59jqU="; 11 + sha256 = "sha256-G7Rtv7pQFR9UrzhYXDyBf+FRqtjo5NAXU7m/HeXhI1k="; 12 12 }; 13 13 14 14 patches = with python3.pkgs; [
+2 -2
pkgs/applications/networking/sniffers/wireshark/default.nix
··· 9 9 assert withQt -> qt5 != null; 10 10 11 11 let 12 - version = "4.0.2"; 12 + version = "4.0.3"; 13 13 variant = if withQt then "qt" else "cli"; 14 14 15 15 in stdenv.mkDerivation { ··· 19 19 20 20 src = fetchurl { 21 21 url = "https://www.wireshark.org/download/src/all-versions/wireshark-${version}.tar.xz"; 22 - sha256 = "sha256-81kVaZ8vmyjdshEgLUDsiYTlg008kRSDFEpJhLpEQR0="; 22 + sha256 = "sha256-bFHhW8wK+5NzTmhtv/NU/9FZ9XC9KQS8u61vP+t+lRE="; 23 23 }; 24 24 25 25 cmakeFlags = [
+70
pkgs/applications/radio/qdmr/default.nix
··· 1 + { 2 + lib, 3 + stdenv, 4 + fetchFromGitHub, 5 + installShellFiles, 6 + writeText, 7 + cmake, 8 + libxslt, 9 + docbook_xsl_ns, 10 + wrapQtAppsHook, 11 + libusb1, 12 + libyamlcpp, 13 + qtlocation, 14 + qtserialport, 15 + qttools, 16 + qtbase, 17 + }: 18 + 19 + let 20 + inherit (stdenv) isLinux; 21 + in 22 + 23 + stdenv.mkDerivation rec { 24 + pname = "qdmr"; 25 + version = "0.11.2"; 26 + 27 + src = fetchFromGitHub { 28 + owner = "hmatuschek"; 29 + repo = "qdmr"; 30 + rev = "v${version}"; 31 + sha256 = "sha256-zT31tzsm5OM99vz8DzGCdPmnemiwiJpKccYwECnUgOQ="; 32 + }; 33 + 34 + nativeBuildInputs = [ 35 + cmake 36 + libxslt 37 + wrapQtAppsHook 38 + installShellFiles 39 + ]; 40 + 41 + buildInputs = [ 42 + libyamlcpp 43 + libusb1 44 + qtlocation 45 + qtserialport 46 + qttools 47 + qtbase 48 + ]; 49 + 50 + postPatch = lib.optionalString isLinux '' 51 + substituteInPlace doc/docbook_man.debian.xsl \ 52 + --replace /usr/share/xml/docbook/stylesheet/docbook-xsl/manpages/docbook\.xsl ${docbook_xsl_ns}/xml/xsl/docbook/manpages/docbook.xsl 53 + ''; 54 + 55 + cmakeFlags = [ "-DBUILD_MAN=ON" ]; 56 + 57 + postInstall = '' 58 + installManPage doc/dmrconf.1 doc/qdmr.1 59 + mkdir -p "$out/etc/udev/rules.d" 60 + cp ${src}/dist/99-qdmr.rules $out/etc/udev/rules.d/ 61 + ''; 62 + 63 + meta = { 64 + description = "A codeplug programming tool for DMR radios"; 65 + homepage = "https://dm3mat.darc.de/qdmr/"; 66 + license = lib.licenses.gpl3Plus; 67 + maintainers = with lib.maintainers; [ janik _0x4A6F ]; 68 + platforms = lib.platforms.linux; 69 + }; 70 + }
+4 -3
pkgs/applications/virtualization/pods/default.nix
··· 17 17 18 18 stdenv.mkDerivation rec { 19 19 pname = "pods"; 20 - version = "1.0.3"; 20 + version = "1.0.4"; 21 21 22 22 src = fetchFromGitHub { 23 23 owner = "marhkb"; 24 24 repo = pname; 25 25 rev = "v${version}"; 26 - sha256 = "sha256-OK43U5Xq9qrHOp+WYkRNfIsCukL1AoWB38pDZcxmvOM="; 26 + sha256 = "sha256-bBFy8yyEbMlVyJYOlWdffIlnZyVdRLPGebTN6bZmnBI="; 27 27 }; 28 28 29 29 cargoDeps = rustPlatform.fetchCargoTarball { 30 30 inherit src; 31 31 name = "${pname}-${version}"; 32 - sha256 = "sha256-aVlGi+44UXnrUf1/DbC+FqrxfuZm52/RwsYD/PkVPi0="; 32 + sha256 = "sha256-DV/XJgWRPK+7q7EVltiNRcRGjS9fvHrDKw+w3wNYitQ="; 33 33 }; 34 34 35 35 nativeBuildInputs = [ ··· 56 56 meta = with lib; { 57 57 description = "A podman desktop application"; 58 58 homepage = "https://github.com/marhkb/pods"; 59 + changelog = "https://github.com/marhkb/pods/releases/tag/v${version}"; 59 60 license = licenses.gpl3Only; 60 61 maintainers = with maintainers; [ figsoda ]; 61 62 platforms = platforms.linux;
+4 -3
pkgs/applications/window-managers/river/default.nix
··· 20 20 21 21 stdenv.mkDerivation rec { 22 22 pname = "river"; 23 - version = "0.2.1"; 23 + version = "0.2.3"; 24 24 25 25 src = fetchFromGitHub { 26 26 owner = "riverwm"; 27 27 repo = pname; 28 28 rev = "refs/tags/v${version}"; 29 - hash = "sha256-eIW8NNhacAM/7gZCUHCmiySANLenfcaCRTUkoJUZRPQ="; 29 + hash = "sha256-noZ2vo4J0cG3PN2k+2LzMc5WMtj0FEmMttE9obFH/tM="; 30 30 fetchSubmodules = true; 31 31 }; 32 32 ··· 65 65 passthru.providedSessions = ["river"]; 66 66 67 67 meta = with lib; { 68 + changelog = "https://github.com/ifreund/river/releases/tag/v${version}"; 68 69 homepage = "https://github.com/ifreund/river"; 69 70 description = "A dynamic tiling wayland compositor"; 70 71 license = licenses.gpl3Plus; 71 72 platforms = platforms.linux; 72 - maintainers = with maintainers; [ fortuneteller2k adamcstephens ]; 73 + maintainers = with maintainers; [ fortuneteller2k adamcstephens rodrgz ]; 73 74 }; 74 75 }
+5 -15
pkgs/data/misc/ddccontrol-db/default.nix
··· 1 1 { lib, stdenv 2 - , autoconf 3 - , automake 4 - , libtool 2 + , autoreconfHook 5 3 , intltool 6 4 , fetchFromGitHub 7 5 }: 8 6 9 7 stdenv.mkDerivation rec { 10 8 pname = "ddccontrol-db"; 11 - version = "20220903"; 9 + version = "20230124"; 12 10 13 11 src = fetchFromGitHub { 14 12 owner = "ddccontrol"; 15 - repo = "ddccontrol-db"; 13 + repo = pname; 16 14 rev = version; 17 - sha256 = "sha256-OmroJ2AEQdELE2Wuk1qPXzp+/9RUUULrEAdEpmXrJxw="; 15 + sha256 = "sha256-coKdlV2DCZ0S3hg9bQEfE9/FaUbFX5w6IMj/kAqERic="; 18 16 }; 19 17 20 - preConfigure = '' 21 - ./autogen.sh 22 - ''; 23 - 24 - nativeBuildInputs = [ autoconf automake intltool ]; 25 - buildInputs = 26 - [ 27 - libtool 28 - ]; 18 + nativeBuildInputs = [ autoreconfHook intltool ]; 29 19 30 20 meta = with lib; { 31 21 description = "Monitor database for DDCcontrol";
+2 -2
pkgs/development/compilers/go/1.20.nix
··· 46 46 in 47 47 stdenv.mkDerivation rec { 48 48 pname = "go"; 49 - version = "1.20rc3"; 49 + version = "1.20"; 50 50 51 51 src = fetchurl { 52 52 url = "https://go.dev/dl/go${version}.src.tar.gz"; 53 - sha256 = "sha256-iMSJjeo/vu1Mi/CXZCXyxx27EdodN7U3TdR2JjKOMYs="; 53 + sha256 = "sha256-Oin/BCG+r2MpKSuKRjEcn78GyAAHfO3e9ft/jVsazjM="; 54 54 }; 55 55 56 56 strictDeps = true;
+28 -7
pkgs/development/interpreters/nextflow/default.nix
··· 2 2 , stdenv 3 3 , fetchurl 4 4 , makeWrapper 5 - , jre 5 + , openjdk17 6 6 , wget 7 7 , which 8 8 , gnused 9 9 , gawk 10 10 , coreutils 11 + , buildFHSUserEnv 11 12 }: 12 13 14 + let 15 + nextflow = 13 16 stdenv.mkDerivation rec { 14 17 pname = "nextflow"; 15 - version = "22.04.5"; 18 + version = "22.10.6"; 16 19 17 20 src = fetchurl { 18 21 url = "https://github.com/nextflow-io/nextflow/releases/download/v${version}/nextflow-${version}-all"; 19 - sha256 = "sha256-Lpxb0lGR/oiPzj6j+lySZwiRgkRgPgyjK7FX0BSejm4="; 22 + hash = "sha256-zeYsKxWRnzr0W6CD+yjoAXwCN/AbN5P4HhH1oftnrjY="; 20 23 }; 21 24 22 - nativeBuildInputs = [ makeWrapper ]; 23 - buildInputs = [ jre wget which gnused gawk coreutils ]; 25 + nativeBuildInputs = [ 26 + makeWrapper 27 + openjdk17 28 + wget 29 + which 30 + gnused 31 + gawk 32 + coreutils 33 + ]; 24 34 25 35 dontUnpack = true; 26 36 ··· 34 44 ''; 35 45 36 46 postFixup = '' 37 - wrapProgram $out/bin/nextflow --prefix PATH : ${lib.makeBinPath buildInputs} 47 + wrapProgram $out/bin/nextflow \ 48 + --prefix PATH : ${lib.makeBinPath nativeBuildInputs} \ 49 + --set JAVA_HOME ${openjdk17.home} 38 50 ''; 39 51 40 52 meta = with lib; { ··· 53 65 mainProgram = "nextflow"; 54 66 platforms = platforms.unix; 55 67 }; 56 - } 68 + }; 69 + in 70 + if stdenv.isLinux then 71 + buildFHSUserEnv 72 + { 73 + name = "nextflow"; 74 + targetPkgs = pkgs: [ nextflow ]; 75 + runScript = "nextflow"; 76 + } 77 + else nextflow
-1
pkgs/development/libraries/criterion/default.nix
··· 30 30 nativeCheckInputs = with python3Packages; [ cram ]; 31 31 32 32 doCheck = true; 33 - checkTarget = "test"; 34 33 35 34 postPatch = '' 36 35 patchShebangs ci/isdir.py src/protocol/gen-pb.py
+1 -1
pkgs/development/libraries/gdal/default.nix
··· 86 86 "-DGEOTIFF_INCLUDE_DIR=${lib.getDev libgeotiff}/include" 87 87 "-DGEOTIFF_LIBRARY_RELEASE=${lib.getLib libgeotiff}/lib/libgeotiff${stdenv.hostPlatform.extensions.sharedLibrary}" 88 88 "-DMYSQL_INCLUDE_DIR=${lib.getDev libmysqlclient}/include/mysql" 89 - "-DMYSQL_LIBRARY=${lib.getLib libmysqlclient}/lib/mysql/libmysqlclient${stdenv.hostPlatform.extensions.sharedLibrary}" 89 + "-DMYSQL_LIBRARY=${lib.getLib libmysqlclient}/lib/${lib.optionalString (libmysqlclient.pname != "mysql") "mysql/"}libmysqlclient${stdenv.hostPlatform.extensions.sharedLibrary}" 90 90 ] ++ lib.optionals (!stdenv.isDarwin) [ 91 91 "-DCMAKE_SKIP_BUILD_RPATH=ON" # without, libgdal.so can't find libmariadb.so 92 92 ] ++ lib.optionals stdenv.isDarwin [
+5
pkgs/development/libraries/qt-6/modules/qtbase.nix
··· 253 253 "bin/qdbusxml2cpp" 254 254 "bin/qlalr" 255 255 "bin/qmake" 256 + "bin/qmake6" 257 + "bin/qt-cmake" 258 + "bin/qt-cmake-private" 259 + "bin/qt-cmake-private-install.cmake" 260 + "bin/qt-cmake-standalone-test" 256 261 "bin/rcc" 257 262 "bin/syncqt.pl" 258 263 "bin/uic"
+3 -3
pkgs/development/python-modules/aemet-opendata/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "aemet-opendata"; 12 - version = "0.2.1"; 12 + version = "0.2.2"; 13 13 14 14 disabled = pythonOlder "3.6"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "Noltari"; 18 18 repo = "AEMET-OpenData"; 19 - rev = version; 20 - sha256 = "0jl1897m3qmr48n469mq7d66k1j0rn7hlbcahm0ylf5i3ma03aiw"; 19 + rev = "refs/tags/${version}"; 20 + sha256 = "sha256-3f3hvui00oItu6t9rKecoCquqsD1Eeqz+SEsLBqGt48="; 21 21 }; 22 22 23 23 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/aioaladdinconnect/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "aioaladdinconnect"; 10 - version = "0.1.54"; 10 + version = "0.1.55"; 11 11 format = "setuptools"; 12 12 13 13 disabled = pythonOlder "3.7"; ··· 15 15 src = fetchPypi { 16 16 pname = "AIOAladdinConnect"; 17 17 inherit version; 18 - hash = "sha256-WRHQYWoQQ8EoKOqhIS0PqIWisO4xjUvRJHpomD8f5wA="; 18 + hash = "sha256-Lyhv6JF+KuCiGz05EbXMEeXzVCI7ACsJmnEuAtDghYo="; 19 19 }; 20 20 21 21 propagatedBuildInputs = [
+4 -3
pkgs/development/python-modules/aiohue/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "aiohue"; 13 - version = "4.5.0"; 13 + version = "4.6.1"; 14 14 format = "setuptools"; 15 15 16 16 disabled = pythonOlder "3.8"; ··· 18 18 src = fetchFromGitHub { 19 19 owner = "home-assistant-libs"; 20 20 repo = pname; 21 - rev = version; 22 - hash = "sha256-Lcs+Ieh5TEUE+sHqFAZr9rsAZMsI9t2/w87r36IUa1A="; 21 + rev = "refs/tags/${version}"; 22 + hash = "sha256-ATM4s2W1Gw98TysfqHVA/McerZStHaUK5eMrSU9+uOI="; 23 23 }; 24 24 25 25 propagatedBuildInputs = [ ··· 45 45 meta = with lib; { 46 46 description = "Python package to talk to Philips Hue"; 47 47 homepage = "https://github.com/home-assistant-libs/aiohue"; 48 + changelog = "https://github.com/home-assistant-libs/aiohue/releases/tag/${version}"; 48 49 license = with licenses; [ asl20 ]; 49 50 maintainers = with maintainers; [ fab ]; 50 51 };
+2 -2
pkgs/development/python-modules/aiomusiccast/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "aiomusiccast"; 12 - version = "0.14.6"; 12 + version = "0.14.7"; 13 13 format = "pyproject"; 14 14 15 15 disabled = pythonOlder "3.8"; ··· 18 18 owner = "vigonotion"; 19 19 repo = "aiomusiccast"; 20 20 rev = "refs/tags/${version}"; 21 - hash = "sha256-eQBVenB/WIqksohWtCU/3o3TGWMavPjJahlg0yus4aE="; 21 + hash = "sha256-6fHTZ5zFiXuyFtZj9cNH5ejLbzx/1cEBUy+fs+Q6O4Y="; 22 22 }; 23 23 24 24 postPatch = ''
+11 -17
pkgs/development/python-modules/aiopvpc/default.nix
··· 4 4 , backports-zoneinfo 5 5 , buildPythonPackage 6 6 , fetchFromGitHub 7 - , holidays 8 7 , poetry-core 9 8 , pytest-asyncio 10 9 , pytest-timeout 11 10 , pytestCheckHook 12 11 , pythonOlder 13 - , tzdata 12 + , python-dotenv 14 13 }: 15 14 16 15 buildPythonPackage rec { 17 16 pname = "aiopvpc"; 18 - version = "3.0.0"; 17 + version = "4.0.1"; 19 18 format = "pyproject"; 20 19 21 20 disabled = pythonOlder "3.8"; ··· 23 22 src = fetchFromGitHub { 24 23 owner = "azogue"; 25 24 repo = pname; 26 - rev = "v${version}"; 27 - sha256 = "sha256-eTCQddoZIaCs7iKGNBC8aSq6ek4vwYXgIXx35UlME/k="; 25 + rev = "refs/tags/v${version}"; 26 + hash = "sha256-E5z74/5VuFuOyAfeT4PQlHUNOiVT4sPgOdxoAIIymxU="; 28 27 }; 28 + 29 + postPatch = '' 30 + substituteInPlace pyproject.toml --replace \ 31 + " --cov --cov-report term --cov-report html" "" 32 + ''; 29 33 30 34 nativeBuildInputs = [ 31 35 poetry-core ··· 33 37 34 38 propagatedBuildInputs = [ 35 39 aiohttp 36 - holidays 37 - tzdata 38 40 async-timeout 39 41 ] ++ lib.optionals (pythonOlder "3.9") [ 40 42 backports-zoneinfo ··· 44 46 pytest-asyncio 45 47 pytest-timeout 46 48 pytestCheckHook 47 - ]; 48 - 49 - disabledTests = [ 50 - # Failures seem related to changes in holidays-0.13, https://github.com/azogue/aiopvpc/issues/44 51 - "test_number_of_national_holidays" 49 + python-dotenv 52 50 ]; 53 - 54 - postPatch = '' 55 - substituteInPlace pyproject.toml --replace \ 56 - " --cov --cov-report term --cov-report html" "" 57 - ''; 58 51 59 52 pythonImportsCheck = [ 60 53 "aiopvpc" ··· 63 56 meta = with lib; { 64 57 description = "Python module to download Spanish electricity hourly prices (PVPC)"; 65 58 homepage = "https://github.com/azogue/aiopvpc"; 59 + changelog = "https://github.com/azogue/aiopvpc/blob/v${version}/CHANGELOG.md"; 66 60 license = with licenses; [ mit ]; 67 61 maintainers = with maintainers; [ fab ]; 68 62 };
+47
pkgs/development/python-modules/aioruuvigateway/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , hatchling 5 + , bluetooth-data-tools 6 + , httpx 7 + , pytest-asyncio 8 + , pytest-httpx 9 + , pytestCheckHook 10 + }: 11 + 12 + buildPythonPackage rec { 13 + pname = "aioruuvigateway"; 14 + version = "0.0.2"; 15 + format = "pyproject"; 16 + 17 + src = fetchFromGitHub { 18 + owner = "akx"; 19 + repo = "aioruuvigateway"; 20 + rev = "refs/tags/v${version}"; 21 + hash = "sha256-oT5Tlmi9bevOkcVZqg/xvCckIpN7TjbPVQefo9z1RDM="; 22 + }; 23 + 24 + nativeBuildInputs = [ 25 + hatchling 26 + ]; 27 + 28 + propagatedBuildInputs = [ 29 + bluetooth-data-tools 30 + httpx 31 + ]; 32 + 33 + nativeCheckInputs = [ 34 + pytest-asyncio 35 + pytest-httpx 36 + pytestCheckHook 37 + ]; 38 + 39 + meta = with lib; { 40 + description = "An asyncio-native library for requesting data from a Ruuvi Gateway"; 41 + homepage = "https://github.com/akx/aioruuvigateway"; 42 + license = licenses.mit; 43 + maintainers = with maintainers; [ hexa ]; 44 + }; 45 + } 46 + 47 +
+47
pkgs/development/python-modules/aiosomecomfort/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , aiohttp 5 + , prettytable 6 + , mock 7 + , pytestCheckHook 8 + }: 9 + 10 + buildPythonPackage rec { 11 + pname = "aiosomecomfort"; 12 + version = "0.0.3"; 13 + 14 + format = "setuptools"; 15 + 16 + src = fetchFromGitHub { 17 + owner = "mkmer"; 18 + repo = "AIOSomecomfort"; 19 + rev = "refs/tags/${version}"; 20 + hash = "sha256-Qw0KR934GS7AuT3nRYaunypt091fZLRioVbNOp9JesY="; 21 + }; 22 + 23 + postPatch = '' 24 + # https://github.com/mkmer/AIOSomecomfort/issues/1 25 + mv aiosomecomfort AIOSomecomfort 26 + ''; 27 + 28 + propagatedBuildInputs = [ 29 + aiohttp 30 + prettytable 31 + ]; 32 + 33 + checkInputs = [ 34 + mock 35 + pytestCheckHook 36 + ]; 37 + 38 + # SyntaxError in test.py 39 + doCheck = false; 40 + 41 + meta = { 42 + description = "AsyicIO client for US models of Honeywell Thermostats"; 43 + homepage = "https://github.com/mkmer/AIOSomecomfort"; 44 + license = lib.licenses.gpl3Only; 45 + maintainers = with lib.maintainers; [ dotlambda ]; 46 + }; 47 + }
+2 -2
pkgs/development/python-modules/aiounifi/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "aiounifi"; 15 - version = "43"; 15 + version = "44"; 16 16 format = "setuptools"; 17 17 18 18 disabled = pythonOlder "3.9"; ··· 21 21 owner = "Kane610"; 22 22 repo = pname; 23 23 rev = "refs/tags/v${version}"; 24 - hash = "sha256-qpFQdNlw6voqccoJwPsnmbU5DtAC6zwtouUeysZ8/0M="; 24 + hash = "sha256-SRI7c0cmrNSTOEyRbs6JGEg5O9tws+Dwn0G8HUqWEqc="; 25 25 }; 26 26 27 27 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/aliyun-python-sdk-cdn/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "aliyun-python-sdk-cdn"; 10 - version = "3.8.0"; 10 + version = "3.8.1"; 11 11 format = "setuptools"; 12 12 13 13 disabled = pythonOlder "3.7"; 14 14 15 15 src = fetchPypi { 16 16 inherit pname version; 17 - hash = "sha256-UOakkvWyWT50lVazEivF5TtAR/E3JpKdT6KNb7YJDBs="; 17 + hash = "sha256-bcAaFwAS9xAbCLtqYtSiALHtlGklHFgGXpgiZZpR6no="; 18 18 }; 19 19 20 20 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/async-upnp-client/default.nix
··· 14 14 15 15 buildPythonPackage rec { 16 16 pname = "async-upnp-client"; 17 - version = "0.33.0"; 17 + version = "0.33.1"; 18 18 format = "setuptools"; 19 19 20 20 disabled = pythonOlder "3.7"; ··· 23 23 owner = "StevenLooman"; 24 24 repo = "async_upnp_client"; 25 25 rev = "refs/tags/${version}"; 26 - hash = "sha256-I7C2ho+pmowerJFK82wYcqEOhRV3KZ5j5IBVCKjhllM="; 26 + hash = "sha256-gXDuStgCBH6YW3SsAjEvQq7l+Vf8+Z8sle1TnLRtNwo="; 27 27 }; 28 28 29 29 propagatedBuildInputs = [
+8 -2
pkgs/development/python-modules/axis/default.nix
··· 1 1 { lib 2 + , async-timeout 2 3 , attrs 3 4 , buildPythonPackage 4 5 , fetchFromGitHub 5 6 , httpx 7 + , orjson 6 8 , packaging 7 9 , xmltodict 8 10 }: 9 11 10 12 buildPythonPackage rec { 11 13 pname = "axis"; 12 - version = "44"; 14 + version = "46"; 15 + format = "setuptools"; 13 16 14 17 src = fetchFromGitHub { 15 18 owner = "Kane610"; 16 19 repo = pname; 17 20 rev = "v${version}"; 18 - sha256 = "sha256-GC8GiDP/QHU+8swe60VFPRx8kSMMHuXjIPEKCja8HPE="; 21 + hash = "sha256-alhezwRPag+6JoC4zbusWdxFyZQ2dZl04Uj1PkiN4qo="; 19 22 }; 20 23 21 24 propagatedBuildInputs = [ 25 + async-timeout 22 26 attrs 23 27 httpx 28 + orjson 24 29 packaging 25 30 xmltodict 26 31 ]; ··· 32 37 meta = with lib; { 33 38 description = "Python library for communicating with devices from Axis Communications"; 34 39 homepage = "https://github.com/Kane610/axis"; 40 + changelog = "https://github.com/Kane610/axis/releases/tag/v${version}"; 35 41 license = with licenses; [ mit ]; 36 42 maintainers = with maintainers; [ fab ]; 37 43 };
+2 -2
pkgs/development/python-modules/bellows/default.nix
··· 16 16 17 17 buildPythonPackage rec { 18 18 pname = "bellows"; 19 - version = "0.34.6"; 19 + version = "0.34.7"; 20 20 format = "setuptools"; 21 21 22 22 disabled = pythonOlder "3.7"; ··· 25 25 owner = "zigpy"; 26 26 repo = "bellows"; 27 27 rev = "refs/tags/${version}"; 28 - hash = "sha256-J6PUVdIs9adRdFbw9yzu1Y9jU9Ge0hGxueXbE1b03og="; 28 + hash = "sha256-+4OWiIRbCLvZWt5zn2djW20PrZJK4c5KOcz4Owbkozg="; 29 29 }; 30 30 31 31 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/bitcoinlib/default.nix
··· 2 2 3 3 buildPythonPackage rec { 4 4 pname = "bitcoinlib"; 5 - version = "0.11.2"; 5 + version = "0.12.0"; 6 6 7 7 disabled = !isPy3k; 8 8 ··· 10 10 owner = "petertodd"; 11 11 repo = "python-bitcoinlib"; 12 12 rev = "refs/tags/python-bitcoinlib-v${version}"; 13 - sha256 = "sha256-/VgCTN010W/Svdrs0mGA8W1YZnyTHhcaWJKgP/c8CN8="; 13 + sha256 = "sha256-jguybrH86z6NWLaucQEYjvH2Gkoh3Aqh/PLZ6l8Qel4="; 14 14 }; 15 15 16 16 postPatch = ''
+6 -7
pkgs/development/python-modules/devolo-plc-api/default.nix
··· 15 15 16 16 buildPythonPackage rec { 17 17 pname = "devolo-plc-api"; 18 - version = "0.9.0"; 19 - format = "setuptools"; 18 + version = "1.1.0"; 19 + format = "pyproject"; 20 20 21 21 disabled = pythonOlder "3.8"; 22 22 23 23 src = fetchFromGitHub { 24 24 owner = "2Fake"; 25 25 repo = "devolo_plc_api"; 26 - rev = "v${version}"; 27 - sha256 = "sha256-FBcDEEWgfV+OgHriSOZKWZPt0O89nDe2CsY3oqX/6zo="; 26 + rev = "refs/tags/v${version}"; 27 + hash = "sha256-xM7g6q18A+qmOhQeey4uxs6ow6Hf5YKDdbpXwYr2RXo="; 28 28 }; 29 29 30 30 SETUPTOOLS_SCM_PRETEND_VERSION = version; ··· 46 46 pytestCheckHook 47 47 ]; 48 48 49 - 50 - 51 49 pythonImportsCheck = [ 52 50 "devolo_plc_api" 53 51 ]; 54 52 55 53 meta = with lib; { 56 - description = "Python module to interact with Devolo PLC devices"; 54 + description = "Module to interact with Devolo PLC devices"; 57 55 homepage = "https://github.com/2Fake/devolo_plc_api"; 56 + changelog = "https://github.com/2Fake/devolo_plc_api/releases/tag/v${version}"; 58 57 license = licenses.gpl3Only; 59 58 maintainers = with maintainers; [ fab ]; 60 59 };
+2 -2
pkgs/development/python-modules/eigenpy/default.nix
··· 9 9 10 10 stdenv.mkDerivation rec { 11 11 pname = "eigenpy"; 12 - version = "2.9.1"; 12 + version = "2.9.2"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "stack-of-tasks"; 16 16 repo = pname; 17 17 rev = "v${version}"; 18 18 fetchSubmodules = true; 19 - hash = "sha256-R+j68l2N+Qb2uqdl+Ng6nwj8O3YhqXgnYZBIzZ06aRA="; 19 + hash = "sha256-h088il9gih1rJJKOI09qq2180DxbxCAVZcgBXWh8aVk="; 20 20 }; 21 21 22 22 strictDeps = true;
+8 -3
pkgs/development/python-modules/elastic-apm/default.nix
··· 15 15 , pytest-bdd 16 16 , pytest-localserver 17 17 , pytest-mock 18 + , pytest-random-order 18 19 , pytestCheckHook 19 20 , pythonOlder 20 21 , sanic ··· 29 30 30 31 buildPythonPackage rec { 31 32 pname = "elastic-apm"; 32 - version = "6.13.2"; 33 + version = "6.14.0"; 33 34 format = "setuptools"; 34 35 35 36 disabled = pythonOlder "3.8"; ··· 38 39 owner = "elastic"; 39 40 repo = "apm-agent-python"; 40 41 rev = "refs/tags/v${version}"; 41 - hash = "sha256-HbIra8Cxgn/2xOVEvtcc7rMtSLBmWMxxHlIM44Oy+8U="; 42 + hash = "sha256-T1TWILlJZffTISVt8YSi8ZYSXOHieh6SV55j8W333LQ="; 42 43 }; 43 44 44 45 propagatedBuildInputs = [ ··· 53 54 ]; 54 55 55 56 nativeCheckInputs = [ 57 + pytestCheckHook 58 + ]; 59 + 60 + checkInputs = [ 56 61 asynctest 57 62 ecs-logging 58 63 jinja2 ··· 64 69 pytest-bdd 65 70 pytest-mock 66 71 pytest-localserver 72 + pytest-random-order 67 73 sanic-testing 68 - pytestCheckHook 69 74 structlog 70 75 webob 71 76 ];
+2 -2
pkgs/development/python-modules/env-canada/default.nix
··· 15 15 16 16 buildPythonPackage rec { 17 17 pname = "env-canada"; 18 - version = "0.5.26"; 18 + version = "0.5.27"; 19 19 format = "setuptools"; 20 20 21 21 disabled = pythonOlder "3.8"; ··· 24 24 owner = "michaeldavie"; 25 25 repo = "env_canada"; 26 26 rev = "refs/tags/v${version}"; 27 - sha256 = "sha256-k8GaW88PhHgHuG4UU4ha6N8iRkZRlIKxAHrWt1Yq3G0="; 27 + hash = "sha256-tZp3r0LALo32vmbeBOjHHg6sexpP+iq9WGRSob13mmE="; 28 28 }; 29 29 30 30 propagatedBuildInputs = [
+41
pkgs/development/python-modules/esphome-dashboard-api/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , setuptools 5 + , aiohttp 6 + }: 7 + 8 + buildPythonPackage rec { 9 + pname = "esphome-dashboard-api"; 10 + version = "1.2.3"; 11 + format = "pyproject"; 12 + 13 + src = fetchFromGitHub { 14 + owner = "esphome"; 15 + repo = "dashboard-api"; 16 + rev = "refs/tags/${version}"; 17 + hash = "sha256-RFfS0xzRXoM6ETXmviiMPxffPzspjTqpkvHOlTJXN9g="; 18 + }; 19 + 20 + nativeBuildInputs = [ 21 + setuptools 22 + ]; 23 + 24 + propagatedBuildInputs = [ 25 + aiohttp 26 + ]; 27 + 28 + doCheck = false; # no tests 29 + 30 + pythonImportsCheck = [ 31 + "esphome_dashboard_api" 32 + ]; 33 + 34 + meta = with lib; { 35 + description = "API to interact with ESPHome Dashboard"; 36 + homepage = "https://github.com/esphome/dashboard-api"; 37 + changelog = "https://github.com/esphome/dashboard-api/releases/tag/${version}"; 38 + license = licenses.mit; 39 + maintainers = with maintainers; [ hexa ]; 40 + }; 41 + }
+2 -2
pkgs/development/python-modules/faraday-plugins/default.nix
··· 17 17 18 18 buildPythonPackage rec { 19 19 pname = "faraday-plugins"; 20 - version = "1.9.1"; 20 + version = "1.10.0"; 21 21 format = "setuptools"; 22 22 23 23 disabled = pythonOlder "3.7"; ··· 26 26 owner = "infobyte"; 27 27 repo = "faraday_plugins"; 28 28 rev = "refs/tags/${version}"; 29 - hash = "sha256-qtHa2JQ9dl9NzhNZ9l6vRe9wR9rCx7+WwDBhRG+Btj4="; 29 + hash = "sha256-bVuysEr8VVFgA4OZ7N7UlL2FigbyLVyPr1HHwkshSMU="; 30 30 }; 31 31 32 32 postPatch = ''
+2 -2
pkgs/development/python-modules/google-api-python-client/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "google-api-python-client"; 16 - version = "2.70.0"; 16 + version = "2.75.0"; 17 17 format = "setuptools"; 18 18 19 19 disabled = pythonOlder "3.6"; 20 20 21 21 src = fetchPypi { 22 22 inherit pname version; 23 - sha256 = "sha256-Ji3glNWjDTN/WeZlgQGf7UW2mMB4OXrEjdMjwJaCNuc="; 23 + sha256 = "sha256-DxCaK3HxTJp7SCMf7PzdOrlYYeqav1TwYKxFwgT63D0="; 24 24 }; 25 25 26 26 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/hahomematic/default.nix
··· 15 15 16 16 buildPythonPackage rec { 17 17 pname = "hahomematic"; 18 - version = "2023.1.8"; 18 + version = "2023.2.1"; 19 19 format = "pyproject"; 20 20 21 21 disabled = pythonOlder "3.9"; ··· 24 24 owner = "danielperna84"; 25 25 repo = pname; 26 26 rev = "refs/tags/${version}"; 27 - sha256 = "sha256-CzvSISNf+cxcpWwttc+K0/EmG/Z7lWtJLX9ahO0/Pq4="; 27 + sha256 = "sha256-kTWUwHgcq+J3ok43gpXmsxmKTnrjPMzmowSkm404j4Q="; 28 28 }; 29 29 30 30 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/home-assistant-chip-clusters/default.nix
··· 6 6 7 7 buildPythonPackage rec { 8 8 pname = "home-assistant-chip-clusters"; 9 - version = "2022.12.0"; 9 + version = "2023.1.0"; 10 10 format = "wheel"; 11 11 12 12 src = fetchPypi { ··· 14 14 pname = "home_assistant_chip_clusters"; 15 15 dist = "py3"; 16 16 python = "py3"; 17 - hash = "sha256-zo54lRNyKXCCUUoYIiZmHZMqISim9QKEOnFbM/iBRqE="; 17 + hash = "sha256-2UcDu2b3DtijAOUt+eazleoKxEhAgsU3MY/OoEBpLNg="; 18 18 }; 19 19 20 20 propagatedBuildInputs = [
+3 -3
pkgs/development/python-modules/home-assistant-chip-core/default.nix
··· 24 24 25 25 buildPythonPackage rec { 26 26 pname = "home-assistant-chip-core"; 27 - version = "2022.12.0"; 27 + version = "2023.1.0"; 28 28 format = "wheel"; 29 29 30 30 disabled = pythonOlder "3.7"; ··· 33 33 system = { 34 34 "aarch64-linux" = { 35 35 name = "aarch64"; 36 - hash = "sha256-oNqrvbzXeXpMG3v9RK6kppONH4n7xLVaJCEFXxVj2jE="; 36 + hash = "sha256-hNaGE2s/oFFAVCWu50IeeaFTlOSByJJAKvBgX1iDrVE="; 37 37 }; 38 38 "x86_64-linux" = { 39 39 name = "x86_64"; 40 - hash = "sha256-S5n1MUig8ZDSLgWeVmu+5qLZ4kfHQUC9qZcVfM8rPvw="; 40 + hash = "sha256-zXxbDGfyFUXuEnaH4a8R4LXH0gfbMCkKPBJJGp77xHM="; 41 41 }; 42 42 }.${stdenv.system} or (throw "Unsupported system"); 43 43 in fetchPypi {
+3 -9
pkgs/development/python-modules/ismartgate/default.nix
··· 17 17 18 18 buildPythonPackage rec { 19 19 pname = "ismartgate"; 20 - version = "4.0.4"; 20 + version = "5.0.0"; 21 21 format = "setuptools"; 22 22 23 23 disabled = pythonOlder "3.7"; ··· 25 25 src = fetchFromGitHub { 26 26 owner = "bdraco"; 27 27 repo = pname; 28 - rev = "v${version}"; 29 - hash = "sha256-yh7gPyy3VMdyINBCZo5K2wA0BY7yYgHrKGZRB/pm77U="; 28 + rev = "refs/tags/v${version}"; 29 + hash = "sha256-o2yzMxrF0WB6MbeL1Tuf0Sq4wS4FDIWZZx1x2rvwLmY="; 30 30 }; 31 31 32 32 propagatedBuildInputs = [ ··· 54 54 pythonImportsCheck = [ 55 55 "ismartgate" 56 56 ]; 57 - 58 - disabledTestPaths = [ 59 - # Tests are out-dated 60 - "ismartgate/tests/test_init.py" 61 - ]; 62 - 63 57 64 58 meta = with lib; { 65 59 description = "Python module to work with the ismartgate and gogogate2 API";
+2 -2
pkgs/development/python-modules/meshtastic/default.nix
··· 18 18 19 19 buildPythonPackage rec { 20 20 pname = "meshtastic"; 21 - version = "2.0.10"; 21 + version = "2.0.11"; 22 22 format = "setuptools"; 23 23 24 24 disabled = pythonOlder "3.7"; ··· 27 27 owner = "meshtastic"; 28 28 repo = "Meshtastic-python"; 29 29 rev = "refs/tags/${version}"; 30 - hash = "sha256-p3ELXfTe0bHrsinEz+iXZIifJykdnW5i7FFLsAhtyoc="; 30 + hash = "sha256-XIYzlGtj+S28N7RLvA38WSLv7LNZqKs8aJUaEG1CslI="; 31 31 }; 32 32 33 33 propagatedBuildInputs = [
+3 -3
pkgs/development/python-modules/mobly/default.nix
··· 17 17 18 18 buildPythonPackage rec { 19 19 pname = "mobly"; 20 - version = "1.12"; 20 + version = "1.12.1"; 21 21 format = "setuptools"; 22 22 23 23 src = fetchFromGitHub { 24 24 owner = "google"; 25 25 repo = "mobly"; 26 26 rev = "refs/tags/${version}"; 27 - hash = "sha256-HAXm0/h5jbgVuIwP7IZ1ffUs92gcpOPiM2VgT38r8Go="; 27 + hash = "sha256-8ZcjxxAv+x8vTsgVKLFb55M02gElkZcZo/nrLwG7k6k="; 28 28 }; 29 29 30 30 propagatedBuildInputs = [ ··· 42 42 ]; 43 43 44 44 meta = with lib; { 45 - changelog = "https://github.com/google/mobly/blob/"; 45 + changelog = "https://github.com/google/mobly/blob/${src.rev}/CHANGELOG.md"; 46 46 description = "Automation framework for special end-to-end test cases"; 47 47 homepage = "https://github.com/google/mobly"; 48 48 license = licenses.asl20;
+4 -2
pkgs/development/python-modules/ndms2-client/default.nix
··· 6 6 7 7 buildPythonPackage rec { 8 8 pname = "ndms2-client"; 9 - version = "0.1.1"; 9 + version = "0.1.2"; 10 + 11 + format = "setuptools"; 10 12 11 13 src = fetchFromGitHub { 12 14 owner = "foxel"; 13 15 repo = "python_ndms2_client"; 14 16 rev = version; 15 - sha256 = "1sc39d10hm1y8xf3gdqzq1akrx94k590l106242j9bvfqyr8lrk9"; 17 + hash = "sha256-cM36xNLymg5Xph3bvbUGdAEmMABJ9y3/w/U8re6ZfB4="; 16 18 }; 17 19 18 20 nativeCheckInputs = [
+24
pkgs/development/python-modules/objsize/default.nix
··· 1 + { lib 2 + , python 3 + , buildPythonPackage 4 + , fetchFromGitHub 5 + }: 6 + 7 + buildPythonPackage rec { 8 + pname = "objsize"; 9 + version = "0.6.1"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "liran-funaro"; 13 + repo = pname; 14 + rev = version; 15 + hash = "sha256-FgRB7EENwNOlC7ynIRxcwucoywNjko494s75kOp5O+w="; 16 + }; 17 + 18 + meta = with lib; { 19 + description = "Traversal over objects subtree and calculate the total size"; 20 + homepage = "https://github.com/liran-funaro/objsize"; 21 + license = licenses.bsd3; 22 + maintainers = with maintainers; [ ocfox ]; 23 + }; 24 + }
+2 -2
pkgs/development/python-modules/opentimestamps/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "opentimestamps"; 14 - version = "0.4.3"; 14 + version = "0.4.5"; 15 15 format = "setuptools"; 16 16 17 17 disabled = pythonOlder "3.7"; ··· 20 20 owner = "opentimestamps"; 21 21 repo = "python-opentimestamps"; 22 22 rev = "python-opentimestamps-v${version}"; 23 - hash = "sha256-ZTZ7D3NGhO18IxKqTMFBe6pDvqtGR+9w0cgs6VAHtwg="; 23 + hash = "sha256-clG/5NAPmmmoj4b3LdVwl58DHg1EFMIMu+erx+GT+NE="; 24 24 }; 25 25 26 26 propagatedBuildInputs = [
-32
pkgs/development/python-modules/pyalmond/default.nix
··· 1 - { lib 2 - , aiohttp 3 - , buildPythonPackage 4 - , fetchFromGitHub 5 - , pythonOlder 6 - }: 7 - 8 - buildPythonPackage rec { 9 - pname = "pyalmond"; 10 - version = "0.0.3"; 11 - disabled = pythonOlder "3.7"; 12 - 13 - src = fetchFromGitHub { 14 - owner = "stanford-oval"; 15 - repo = pname; 16 - rev = "v${version}"; 17 - sha256 = "0d1w83lr7k2wxcs846iz4mjyqn1ximnw6155kgl515v10fqyrhgk"; 18 - }; 19 - 20 - propagatedBuildInputs = [ aiohttp ]; 21 - 22 - # Tests require a running Almond instance 23 - doCheck = false; 24 - pythonImportsCheck = [ "pyalmond" ]; 25 - 26 - meta = with lib; { 27 - description = "Python client for the Almond API"; 28 - homepage = "https://github.com/stanford-oval/pyalmond"; 29 - license = with licenses; [ bsd3 ]; 30 - maintainers = with maintainers; [ fab ]; 31 - }; 32 - }
+2 -2
pkgs/development/python-modules/pybravia/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "pybravia"; 11 - version = "0.2.5"; 11 + version = "0.3.1"; 12 12 format = "pyproject"; 13 13 14 14 disabled = pythonOlder "3.8"; ··· 17 17 owner = "Drafteed"; 18 18 repo = pname; 19 19 rev = "v${version}"; 20 - hash = "sha256-QWn5VdZlbxm2/ZvsQWlKuVPPBcqFkyt75Odh9Mf9Bqk="; 20 + hash = "sha256-aY+G4e2uq2yWUkJ9CXnOhc5S57kkMB36N/x+iQDCivo="; 21 21 }; 22 22 23 23 nativeBuildInputs = [
+25
pkgs/development/python-modules/pygments-style-github/default.nix
··· 1 + { lib, buildPythonPackage, fetchPypi, pygments }: 2 + 3 + buildPythonPackage rec { 4 + pname = "pygments-style-github"; 5 + version = "0.4"; 6 + 7 + src = fetchPypi { 8 + inherit pname version; 9 + hash = "sha256-D8q9IxR9VMhiQPYhZ4xTyZin3vqg0naRHB8t7wpF9Kc="; 10 + }; 11 + 12 + # no tests exist on upstream repo 13 + doCheck = false; 14 + 15 + propagatedBuildInputs = [ pygments ]; 16 + 17 + pythonImportsCheck = [ "pygments_style_github" ]; 18 + 19 + meta = with lib; { 20 + description = "A port of the github color scheme for pygments"; 21 + homepage = "https://github.com/hugomaiavieira/pygments-style-github"; 22 + license = licenses.bsd3; 23 + maintainers = with maintainers; [ drupol ]; 24 + }; 25 + }
+2 -2
pkgs/development/python-modules/pyinfra/default.nix
··· 18 18 19 19 buildPythonPackage rec { 20 20 pname = "pyinfra"; 21 - version = "2.6.1"; 21 + version = "2.6.2"; 22 22 format = "setuptools"; 23 23 24 24 disabled = pythonOlder "3.7"; ··· 27 27 owner = "Fizzadar"; 28 28 repo = pname; 29 29 rev = "refs/tags/v${version}"; 30 - hash = "sha256-TpO91YVWswcdpV4z9jkxBELwsIIGvlpL3URQTjAAkUs="; 30 + hash = "sha256-8eYbsPBMcRhFk5eouSAHEr3q/Llj0RqR76iwn/TrSSg="; 31 31 }; 32 32 33 33 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/pyisy/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "pyisy"; 14 - version = "3.1.9"; 14 + version = "3.1.11"; 15 15 format = "setuptools"; 16 16 17 17 disabled = pythonOlder "3.7"; ··· 20 20 owner = "automicus"; 21 21 repo = "PyISY"; 22 22 rev = "refs/tags/v${version}"; 23 - hash = "sha256-X/flikSo0PKHz4iBw4AjhCwpTtt2P+1jrlTAanYgO1A="; 23 + hash = "sha256-RYC0mfskDcCU9O2pSKRL9ulPUaJQO9UKp7WANXZWJ60="; 24 24 }; 25 25 26 26 SETUPTOOLS_SCM_PRETEND_VERSION = version;
+14 -4
pkgs/development/python-modules/pymodbus/default.nix
··· 10 10 , pyserial 11 11 , pyserial-asyncio 12 12 , pytest-asyncio 13 + , pytest-rerunfailures 14 + , pytest-xdist 13 15 , pytestCheckHook 14 16 , redis 15 17 , sqlalchemy ··· 19 21 20 22 buildPythonPackage rec { 21 23 pname = "pymodbus"; 22 - version = "3.0.2"; 24 + version = "3.1.2"; 25 + format = "setuptools"; 23 26 24 27 src = fetchFromGitHub { 25 - owner = "riptideio"; 28 + owner = "pymodbus-dev"; 26 29 repo = pname; 27 30 rev = "refs/tags/v${version}"; 28 - sha256 = "sha256-7zuFKJuKc+J4g7qoK22xed8dmXJatQbQXz4aKAOcvN8="; 31 + hash = "sha256-kae/TADu23NnCrXkJ/dkDBNIgBm/+BxXf+lh8uMxz/s="; 29 32 }; 30 33 31 34 # Twisted asynchronous version is not supported due to a missing dependency ··· 43 46 asynctest 44 47 mock 45 48 pytest-asyncio 49 + pytest-rerunfailures 50 + pytest-xdist 46 51 pytestCheckHook 47 52 redis 48 53 sqlalchemy 49 54 twisted 55 + ]; 56 + 57 + pytestFlagsArray = [ 58 + "--reruns" "3" # Racy socket tests 50 59 ]; 51 60 52 61 pythonImportsCheck = [ "pymodbus" ]; ··· 59 68 also be used without any third party dependencies if a more 60 69 lightweight project is needed. 61 70 ''; 62 - homepage = "https://github.com/riptideio/pymodbus"; 71 + homepage = "https://github.com/pymodbus-dev/pymodbus"; 72 + changelog = "https://github.com/pymodbus-dev/pymodbus/releases/tag/v${version}"; 63 73 license = with licenses; [ bsd3 ]; 64 74 maintainers = with maintainers; [ fab ]; 65 75 };
+5 -7
pkgs/development/python-modules/pysensibo/default.nix
··· 1 1 { lib 2 2 , aiohttp 3 3 , buildPythonPackage 4 - , fetchFromGitHub 4 + , fetchPypi 5 5 , pythonOlder 6 6 }: 7 7 8 8 buildPythonPackage rec { 9 9 pname = "pysensibo"; 10 - version = "1.0.24"; 10 + version = "1.0.25"; 11 11 format = "setuptools"; 12 12 13 13 disabled = pythonOlder "3.7"; 14 14 15 - src = fetchFromGitHub { 16 - owner = "andrey-git"; 17 - repo = pname; 18 - rev = "refs/tags/${version}"; 19 - hash = "sha256-lLorBf4HjynkTyLfKGcxEpSzyCawjKDej/HFtHl/Ar8="; 15 + src = fetchPypi { 16 + inherit pname version; 17 + hash = "sha256-AZpqV/CQ8TLKjaee9b0Zbu6WfnGNenKIvot+TTTSikg="; 20 18 }; 21 19 22 20 propagatedBuildInputs = [
+12 -4
pkgs/development/python-modules/pysyncobj/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 + , pythonOlder 4 5 }: 5 6 6 7 buildPythonPackage rec { 7 8 pname = "pysyncobj"; 8 - version = "0.3.11"; 9 + version = "0.3.12"; 10 + format = "setuptools"; 11 + 12 + disabled = pythonOlder "3.7"; 9 13 10 14 src = fetchFromGitHub { 11 15 owner = "bakwc"; 12 16 repo = "PySyncObj"; 13 - rev = version; 14 - sha256 = "sha256-MsyEDRla+okamffm78hoC2OwhjHLvCDQeZCzPZPbGy4="; 17 + rev = "refs/tags/${version}"; 18 + hash = "sha256-ZWzvvv13g/iypm+MIl5q0Y8ekqzZEY5upSTPk3MFTPI="; 15 19 }; 16 20 17 21 # Tests require network features 18 22 doCheck = false; 19 - pythonImportsCheck = [ "pysyncobj" ]; 23 + 24 + pythonImportsCheck = [ 25 + "pysyncobj" 26 + ]; 20 27 21 28 meta = with lib; { 22 29 description = "Python library for replicating your class"; 23 30 homepage = "https://github.com/bakwc/PySyncObj"; 31 + changelog = "https://github.com/bakwc/PySyncObj/releases/tag/${version}"; 24 32 license = with licenses; [ mit ]; 25 33 maintainers = with maintainers; [ fab ]; 26 34 };
+2 -2
pkgs/development/python-modules/python-homewizard-energy/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "python-homewizard-energy"; 16 - version = "1.3.1"; 16 + version = "1.8.0"; 17 17 format = "pyproject"; 18 18 19 19 disabled = pythonOlder "3.9"; ··· 22 22 owner = "DCSBL"; 23 23 repo = pname; 24 24 rev = "refs/tags/v${version}"; 25 - hash = "sha256-rj3WTDj2ey8unOxXkD4zbqwd0FDcyHPzsDrjtX7myj4="; 25 + hash = "sha256-ab+Fa7Dc2mHGy5C5PfoBfXIb/eugCyGrWjTYlJmTQE0="; 26 26 }; 27 27 28 28 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/python-matter-server/default.nix
··· 26 26 27 27 buildPythonPackage rec { 28 28 pname = "python-matter-server"; 29 - version = "1.0.8"; 29 + version = "2.0.2"; 30 30 format = "pyproject"; 31 31 32 32 disabled = pythonOlder "3.9"; ··· 35 35 owner = "home-assistant-libs"; 36 36 repo = "python-matter-server"; 37 37 rev = "refs/tags/${version}"; 38 - hash = "sha256-7w2Gg70Sl84zs55z6Hg8JPtkY9dNzyb1iBC6O4ulr1M="; 38 + hash = "sha256-9Lb5Q54hPdyqMjrHvwBzVXPk8uKBLNRUl2Bljo64Fpo="; 39 39 }; 40 40 41 41 nativeBuildInputs = [
-33
pkgs/development/python-modules/somecomfort/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , fetchPypi 4 - , prettytable 5 - , requests 6 - }: 7 - 8 - buildPythonPackage rec { 9 - pname = "somecomfort"; 10 - version = "0.8.0"; 11 - 12 - src = fetchPypi { 13 - inherit pname version; 14 - sha256 = "56e60e4e9f76c12c0c9dd1016e9f1334be6800409e0762f5f143f9069d7292d3"; 15 - }; 16 - 17 - propagatedBuildInputs = [ 18 - requests 19 - prettytable 20 - ]; 21 - 22 - # tests require network access 23 - doCheck = false; 24 - 25 - pythonImportsCheck = [ "somecomfort" ]; 26 - 27 - meta = with lib; { 28 - description = "Client for Honeywell's US-based cloud devices"; 29 - homepage = "https://github.com/kk7ds/somecomfort"; 30 - license = licenses.gpl3Only; 31 - maintainers = with maintainers; [ dotlambda ]; 32 - }; 33 - }
+50
pkgs/development/python-modules/timm/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , pythonOlder 5 + , pytestCheckHook 6 + , expecttest 7 + , pytest-timeout 8 + , huggingface-hub 9 + , pyyaml 10 + , torch 11 + , torchvision 12 + }: 13 + 14 + buildPythonPackage rec { 15 + pname = "timm"; 16 + version = "0.6.12"; 17 + disabled = pythonOlder "3.6"; 18 + 19 + src = fetchFromGitHub { 20 + owner = "rwightman"; 21 + repo = "pytorch-image-models"; 22 + rev = "refs/tags/v${version}"; 23 + hash = "sha256-RNjCcCnNhtr5a+29Bx+k427a03MSooqvnuiDQ8cT8FA="; 24 + }; 25 + 26 + propagatedBuildInputs = [ 27 + huggingface-hub 28 + pyyaml 29 + torch 30 + torchvision 31 + ]; 32 + 33 + nativeCheckInputs = [ expecttest pytestCheckHook pytest-timeout ]; 34 + pytestFlagsArray = [ "tests" ]; 35 + # takes too long and also tries to download models: 36 + disabledTestPaths = [ "tests/test_models.py" ]; 37 + 38 + pythonImportsCheck = [ 39 + "timm" 40 + "timm.data" 41 + ]; 42 + 43 + meta = with lib; { 44 + description = "PyTorch image models, scripts, and pretrained weights"; 45 + homepage = "https://huggingface.co/docs/timm/index"; 46 + changelog = "https://github.com/rwightman/pytorch-image-models/blob/v${version}/README.md#whats-new"; 47 + license = licenses.asl20; 48 + maintainers = with maintainers; [ bcdarwin ]; 49 + }; 50 + }
+2 -2
pkgs/development/python-modules/whirlpool-sixth-sense/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "whirlpool-sixth-sense"; 15 - version = "0.18"; 15 + version = "0.18.2"; 16 16 format = "setuptools"; 17 17 18 18 disabled = pythonOlder "3.6"; ··· 21 21 owner = "abmantis"; 22 22 repo = pname; 23 23 rev = "refs/tags/${version}"; 24 - hash = "sha256-XmbRUVivV+jSJUpksMIJ88CwNtOD+Qkwtqyg3dX33ZU="; 24 + hash = "sha256-6vmevL/VDuBnsPeYxtBZkCi9SVuINpM6jVlNR1Y6AuA="; 25 25 }; 26 26 27 27 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/xknx/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "xknx"; 15 - version = "2.2.0"; 15 + version = "2.3.0"; 16 16 format = "setuptools"; 17 17 18 18 disabled = pythonOlder "3.8"; ··· 21 21 owner = "XKNX"; 22 22 repo = pname; 23 23 rev = "refs/tags/${version}"; 24 - hash = "sha256-vz24saI0wuhax4/zCBDM3HB+ZjZI8bGOWr2va4V3zV8="; 24 + hash = "sha256-G4az6YmCDv1MPF30mBQVNBPZdebjZqd+0vxo5F5iDWY="; 25 25 }; 26 26 27 27 propagatedBuildInputs = [
+35
pkgs/development/tools/algolia-cli/default.nix
··· 1 + { lib, buildGoModule, fetchFromGitHub, installShellFiles }: 2 + 3 + buildGoModule rec { 4 + pname = "algolia-cli"; 5 + version = "1.2.1"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "algolia"; 9 + repo = "cli"; 10 + rev = "v${version}"; 11 + hash = "sha256-rmxLbxotATyURRcG9ryWCDHkH7a/bop/BCDQAoQjXSo="; 12 + }; 13 + 14 + vendorHash = "sha256-iG8g7mBbIulKSxc1a3/fOBOCWoFYaB5FLwJPNKJRZDg="; 15 + 16 + nativeBuildInputs = [ installShellFiles ]; 17 + 18 + subPackages = [ "cmd/algolia" ]; 19 + 20 + ldflags = [ "-s" "-w" "-X github.com/algolia/cli/pkg/version.Version=${version}" ]; 21 + 22 + postInstall = '' 23 + installShellCompletion --cmd algolia \ 24 + --bash <($out/bin/algolia completion bash) \ 25 + --fish <($out/bin/algolia completion fish) \ 26 + --zsh <($out/bin/algolia completion zsh) 27 + ''; 28 + 29 + meta = with lib; { 30 + description = "Algolia’s official CLI devtool"; 31 + homepage = "https://algolia.com/doc/tools/cli/"; 32 + license = licenses.mit; 33 + maintainers = [ maintainers.marsam ]; 34 + }; 35 + }
+3 -3
pkgs/development/tools/py-spy/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "py-spy"; 5 - version = "0.3.12"; 5 + version = "0.3.14"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "benfred"; 9 9 repo = "py-spy"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-k58PPJAF9MsKRlscFSqdtTY5/rriaF0mXjgkADT+F4s="; 11 + sha256 = "sha256-NciyzKiDKIMeuHhTjzmHIc3dYW4AniuCNjZugm4hMss="; 12 12 }; 13 13 14 14 NIX_CFLAGS_COMPILE = "-L${libunwind}/lib"; ··· 20 20 21 21 nativeCheckInputs = [ python3 ]; 22 22 23 - cargoSha256 = "sha256-DC+EfJ671/bvFoHHjpJlFCO/phdndNcldnP3DsIKqAg="; 23 + cargoSha256 = "sha256-nm+44YWSJOOg9a9d8b3APXW50ThV3iA2C/QsJMttscE="; 24 24 25 25 meta = with lib; { 26 26 description = "Sampling profiler for Python programs";
+2 -2
pkgs/development/tools/riot-redis/default.nix
··· 7 7 8 8 stdenv.mkDerivation rec { 9 9 pname = "riot-redis"; 10 - version = "2.18.5"; 10 + version = "2.19.0"; 11 11 12 12 src = fetchzip { 13 13 url = "https://github.com/redis-developer/riot/releases/download/v${version}/riot-redis-${version}.zip"; 14 - sha256 = "sha256-XMcWNsQpFG1ovIIXGMURV5IVrL3+Aq2qls+r4IZbBl8="; 14 + sha256 = "sha256-q2ZqFVdjg5HSH4kiwoC1W+a8VgHNxBgNeMaw5n97isc="; 15 15 }; 16 16 17 17 buildInputs = [ jre_headless ];
+3 -3
pkgs/development/tools/rust/cargo-about/default.nix
··· 9 9 10 10 rustPlatform.buildRustPackage rec { 11 11 pname = "cargo-about"; 12 - version = "0.5.3"; 12 + version = "0.5.4"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "EmbarkStudios"; 16 16 repo = "cargo-about"; 17 17 rev = version; 18 - sha256 = "sha256-THyVFvotR7ttGB3YyK0XPG5m4mbgHJqu1gnZFmyFDOA="; 18 + sha256 = "sha256-zr9Y07VoW8XQELzw7C1QT8Ared8ntH9yjncZqZJ1uj4="; 19 19 }; 20 20 21 - cargoSha256 = "sha256-o9NMhkKtdlTqmOO5mVWxcuEu4U7GkTO0B3XoMrBwiwI="; 21 + cargoSha256 = "sha256-L01NvZbJggOMcoBLXZw8peiCQxA1DPqnrZVx2pMb40o="; 22 22 23 23 nativeBuildInputs = [ pkg-config ]; 24 24
+4 -4
pkgs/development/tools/rust/cargo-watch/default.nix
··· 1 - { stdenv, lib, rustPlatform, fetchFromGitHub, CoreServices, Foundation, rust, libiconv }: 1 + { stdenv, lib, rustPlatform, fetchFromGitHub, Cocoa, CoreServices, Foundation, rust, libiconv }: 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "cargo-watch"; 5 5 version = "8.3.0"; 6 6 7 7 src = fetchFromGitHub { 8 - owner = "passcod"; 8 + owner = "watchexec"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-2keI5hTWglqh+mLeGzRCxpfnUt6kur0I9fefYwZr5l4="; 11 + hash = "sha256-2keI5hTWglqh+mLeGzRCxpfnUt6kur0I9fefYwZr5l4="; 12 12 }; 13 13 14 14 cargoHash = "sha256-kR12j0Z7nXfwh9nPT35/LpkK56a8D1gvVkl9/2s6rIQ="; 15 15 16 - buildInputs = lib.optionals stdenv.isDarwin [ CoreServices Foundation libiconv ]; 16 + buildInputs = lib.optionals stdenv.isDarwin [ Cocoa CoreServices Foundation libiconv ]; 17 17 18 18 # `test with_cargo` tries to call cargo-watch as a cargo subcommand 19 19 # (calling cargo-watch with command `cargo watch`)
+1 -1
pkgs/misc/cups/drivers/mfcl8690cdwlpr/default.nix
··· 41 41 sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; 42 42 license = lib.licenses.unfree; 43 43 maintainers = [ ]; 44 - platforms = [ "i686-linux" ]; 44 + platforms = [ "x86_64-linux" "i686-linux" ]; 45 45 }; 46 46 }
+10 -10
pkgs/servers/adguardhome/bins.nix
··· 1 1 { fetchurl, fetchzip }: 2 2 { 3 3 x86_64-darwin = fetchzip { 4 - sha256 = "sha256-grxGXMskjpNHcL61xgX02ouxFodxnzuhORby0wcZM7E="; 5 - url = "https://github.com/AdguardTeam/AdGuardHome/releases/download/v0.107.22/AdGuardHome_darwin_amd64.zip"; 4 + sha256 = "sha256-ZhezLVn4PHPAnKCjlR9zI4zt9eJZYIUUODjS01M7q1E="; 5 + url = "https://github.com/AdguardTeam/AdGuardHome/releases/download/v0.107.23/AdGuardHome_darwin_amd64.zip"; 6 6 }; 7 7 aarch64-darwin = fetchzip { 8 - sha256 = "sha256-J98fqxPlr8XZMll63GC5G8SvzOS6egViHATKSKCfYQ4="; 9 - url = "https://github.com/AdguardTeam/AdGuardHome/releases/download/v0.107.22/AdGuardHome_darwin_arm64.zip"; 8 + sha256 = "sha256-Vfu/mCR1rMBtYMsm/l5cfIwBnNNeJ7G0pC42rLdqWOk="; 9 + url = "https://github.com/AdguardTeam/AdGuardHome/releases/download/v0.107.23/AdGuardHome_darwin_arm64.zip"; 10 10 }; 11 11 i686-linux = fetchurl { 12 - sha256 = "sha256-09HyY9WL2vzA5L0nDG/ByHs/fWj+GiJUy3Rq9yWd4Ak="; 13 - url = "https://github.com/AdguardTeam/AdGuardHome/releases/download/v0.107.22/AdGuardHome_linux_386.tar.gz"; 12 + sha256 = "sha256-1pgGKUE9hHFGPNAOYNEM0VTYBDdmcrXyJjcT9ymyyiM="; 13 + url = "https://github.com/AdguardTeam/AdGuardHome/releases/download/v0.107.23/AdGuardHome_linux_386.tar.gz"; 14 14 }; 15 15 x86_64-linux = fetchurl { 16 - sha256 = "sha256-1mFOlerwTOLUQGiVX1nyFfMC1vl7W0c+P/xnPjNTrYE="; 17 - url = "https://github.com/AdguardTeam/AdGuardHome/releases/download/v0.107.22/AdGuardHome_linux_amd64.tar.gz"; 16 + sha256 = "sha256-ApCBjbhfoGYm0rmjQ8U1zA/VHNJgC1kBlk5DvmQ6wTc="; 17 + url = "https://github.com/AdguardTeam/AdGuardHome/releases/download/v0.107.23/AdGuardHome_linux_amd64.tar.gz"; 18 18 }; 19 19 aarch64-linux = fetchurl { 20 - sha256 = "sha256-eoITV5oAyGJBn607lfJgH/1C0dHkoEIvk3x6rKxKn+k="; 21 - url = "https://github.com/AdguardTeam/AdGuardHome/releases/download/v0.107.22/AdGuardHome_linux_arm64.tar.gz"; 20 + sha256 = "sha256-qC7BrBhI9berbuIVIQ6yOo74eHRsoneVRJMx1K/Ljds="; 21 + url = "https://github.com/AdguardTeam/AdGuardHome/releases/download/v0.107.23/AdGuardHome_linux_arm64.tar.gz"; 22 22 }; 23 23 }
+1 -1
pkgs/servers/adguardhome/default.nix
··· 7 7 8 8 stdenv.mkDerivation rec { 9 9 pname = "adguardhome"; 10 - version = "0.107.22"; 10 + version = "0.107.23"; 11 11 src = sources.${system} or (throw "Source for ${pname} is not available for ${system}"); 12 12 13 13 installPhase = ''
+350 -16
pkgs/servers/home-assistant/component-packages.nix
··· 2 2 # Do not edit! 3 3 4 4 { 5 - version = "2023.1.7"; 5 + version = "2023.2.0"; 6 6 components = { 7 7 "3_day_blinds" = ps: with ps; [ 8 8 ]; 9 9 "abode" = ps: with ps; [ 10 - abodepy 11 - ]; 10 + ]; # missing inputs: jaraco.abode 12 11 "accuweather" = ps: with ps; [ 13 12 accuweather 14 13 ]; ··· 57 56 airthings-cloud 58 57 ]; 59 58 "airthings_ble" = ps: with ps; [ 59 + aioesphomeapi 60 60 aiohttp-cors 61 + aioruuvigateway 62 + aioshelly 61 63 airthings-ble 62 64 bleak-retry-connector 63 65 bleak ··· 65 67 bluetooth-auto-recovery 66 68 bluetooth-data-tools 67 69 dbus-fast 70 + esphome-dashboard-api 68 71 fnvhash 69 72 home-assistant-frontend 73 + ifaddr 70 74 janus 71 75 pillow 72 76 pyserial 73 77 pyudev 74 78 sqlalchemy 79 + zeroconf 75 80 ]; 76 81 "airtouch4" = ps: with ps; [ 77 82 airtouch4pyapi ··· 99 104 pyturbojpeg 100 105 aiohttp-cors 101 106 ]; 102 - "almond" = ps: with ps; [ 103 - aiohttp-cors 104 - pyalmond 105 - ]; 106 107 "alpha_vantage" = ps: with ps; [ 107 108 alpha-vantage 108 109 ]; ··· 148 149 ]; # missing inputs: anel_pwrctrl-homeassistant 149 150 "anthemav" = ps: with ps; [ 150 151 ]; # missing inputs: anthemav 152 + "anwb_energie" = ps: with ps; [ 153 + ]; 151 154 "apache_kafka" = ps: with ps; [ 152 155 aiokafka 153 156 ]; ··· 183 186 "aquostv" = ps: with ps; [ 184 187 ]; # missing inputs: sharp_aquos_rc 185 188 "aranet" = ps: with ps; [ 189 + aioesphomeapi 186 190 aiohttp-cors 191 + aioruuvigateway 192 + aioshelly 187 193 aranet4 188 194 bleak-retry-connector 189 195 bleak ··· 191 197 bluetooth-auto-recovery 192 198 bluetooth-data-tools 193 199 dbus-fast 200 + esphome-dashboard-api 194 201 fnvhash 195 202 home-assistant-frontend 203 + ifaddr 196 204 janus 197 205 pillow 198 206 pyserial 199 207 pyudev 200 208 sqlalchemy 209 + zeroconf 201 210 ]; 202 211 "arcam_fmj" = ps: with ps; [ 203 212 arcam-fmj ··· 332 341 "bloomsky" = ps: with ps; [ 333 342 ]; 334 343 "bluemaestro" = ps: with ps; [ 344 + aioesphomeapi 335 345 aiohttp-cors 346 + aioruuvigateway 347 + aioshelly 336 348 bleak-retry-connector 337 349 bleak 338 350 bluemaestro-ble ··· 340 352 bluetooth-auto-recovery 341 353 bluetooth-data-tools 342 354 dbus-fast 355 + esphome-dashboard-api 343 356 fnvhash 344 357 home-assistant-frontend 358 + ifaddr 345 359 janus 346 360 pillow 347 361 pyserial 348 362 pyudev 349 363 sqlalchemy 364 + zeroconf 350 365 ]; 351 366 "blueprint" = ps: with ps; [ 352 367 ]; ··· 369 384 pyudev 370 385 sqlalchemy 371 386 ]; 387 + "bluetooth_adapters" = ps: with ps; [ 388 + aioesphomeapi 389 + aiohttp-cors 390 + aioruuvigateway 391 + aioshelly 392 + bleak-retry-connector 393 + bleak 394 + bluetooth-adapters 395 + bluetooth-auto-recovery 396 + bluetooth-data-tools 397 + dbus-fast 398 + esphome-dashboard-api 399 + fnvhash 400 + home-assistant-frontend 401 + ifaddr 402 + janus 403 + pillow 404 + pyserial 405 + pyudev 406 + sqlalchemy 407 + zeroconf 408 + ]; 372 409 "bluetooth_le_tracker" = ps: with ps; [ 410 + aioesphomeapi 373 411 aiohttp-cors 412 + aioruuvigateway 413 + aioshelly 374 414 bleak-retry-connector 375 415 bleak 376 416 bluetooth-adapters 377 417 bluetooth-auto-recovery 378 418 bluetooth-data-tools 379 419 dbus-fast 420 + esphome-dashboard-api 380 421 fnvhash 381 422 home-assistant-frontend 423 + ifaddr 382 424 janus 383 425 pillow 384 426 pyserial 385 427 pyudev 386 428 sqlalchemy 429 + zeroconf 387 430 ]; 388 431 "bluetooth_tracker" = ps: with ps; [ 389 432 bt-proximity ··· 435 478 btsmarthub_devicelist 436 479 ]; 437 480 "bthome" = ps: with ps; [ 481 + aioesphomeapi 438 482 aiohttp-cors 483 + aioruuvigateway 484 + aioshelly 439 485 bleak-retry-connector 440 486 bleak 441 487 bluetooth-adapters ··· 443 489 bluetooth-data-tools 444 490 bthome-ble 445 491 dbus-fast 492 + esphome-dashboard-api 446 493 fnvhash 447 494 home-assistant-frontend 495 + ifaddr 448 496 janus 449 497 pillow 450 498 pyserial 451 499 pyudev 452 500 sqlalchemy 501 + zeroconf 453 502 ]; 454 503 "bticino" = ps: with ps; [ 455 504 ]; ··· 557 606 ]; 558 607 "conversation" = ps: with ps; [ 559 608 aiohttp-cors 609 + hassil 610 + home-assistant-intents 560 611 ]; 561 612 "coolmaster" = ps: with ps; [ 562 613 pycoolmasternet-async ··· 631 682 dbus-fast 632 683 fnvhash 633 684 hass-nabucasa 685 + hassil 634 686 home-assistant-frontend 687 + home-assistant-intents 635 688 ifaddr 636 689 janus 637 690 pillow ··· 650 703 ]; 651 704 "demo" = ps: with ps; [ 652 705 aiohttp-cors 653 - fnvhash 654 - sqlalchemy 706 + hassil 707 + home-assistant-intents 655 708 ]; 656 709 "denon" = ps: with ps; [ 657 710 ]; ··· 871 924 ifaddr 872 925 sqlalchemy 873 926 ]; 927 + "energie_vanons" = ps: with ps; [ 928 + ]; 874 929 "energy" = ps: with ps; [ 875 930 aiohttp-cors 876 931 fnvhash 877 932 sqlalchemy 878 933 ]; 934 + "energyzero" = ps: with ps; [ 935 + ]; # missing inputs: energyzero 879 936 "enigma2" = ps: with ps; [ 880 937 openwebifpy 881 938 ]; ··· 903 960 "epsonworkforce" = ps: with ps; [ 904 961 ]; # missing inputs: epsonprinter 905 962 "eq3btsmart" = ps: with ps; [ 963 + aioesphomeapi 906 964 aiohttp-cors 965 + aioruuvigateway 966 + aioshelly 907 967 bleak-retry-connector 908 968 bleak 909 969 bluetooth-adapters ··· 911 971 bluetooth-data-tools 912 972 construct 913 973 dbus-fast 974 + esphome-dashboard-api 914 975 fnvhash 915 976 home-assistant-frontend 977 + ifaddr 916 978 janus 917 979 pillow 918 980 pyserial 919 981 pyudev 920 982 sqlalchemy 983 + zeroconf 921 984 ]; # missing inputs: python-eq3bt 922 985 "escea" = ps: with ps; [ 923 986 pescea ··· 931 994 bluetooth-auto-recovery 932 995 bluetooth-data-tools 933 996 dbus-fast 997 + esphome-dashboard-api 934 998 fnvhash 935 999 home-assistant-frontend 936 1000 ifaddr ··· 945 1009 ]; # missing inputs: python-etherscan-api 946 1010 "eufy" = ps: with ps; [ 947 1011 ]; # missing inputs: lakeside 1012 + "eufylife_ble" = ps: with ps; [ 1013 + aioesphomeapi 1014 + aiohttp-cors 1015 + aioruuvigateway 1016 + aioshelly 1017 + bleak-retry-connector 1018 + bleak 1019 + bluetooth-adapters 1020 + bluetooth-auto-recovery 1021 + bluetooth-data-tools 1022 + dbus-fast 1023 + esphome-dashboard-api 1024 + fnvhash 1025 + home-assistant-frontend 1026 + ifaddr 1027 + janus 1028 + pillow 1029 + pyserial 1030 + pyudev 1031 + sqlalchemy 1032 + zeroconf 1033 + ]; # missing inputs: eufylife_ble_client 948 1034 "everlights" = ps: with ps; [ 949 1035 pyeverlights 950 1036 ]; ··· 1008 1094 "fints" = ps: with ps; [ 1009 1095 fints 1010 1096 ]; 1097 + "fire_tv" = ps: with ps; [ 1098 + ]; 1011 1099 "fireservicerota" = ps: with ps; [ 1012 1100 pyfireservicerota 1013 1101 ]; ··· 1025 1113 fixerio 1026 1114 ]; 1027 1115 "fjaraskupan" = ps: with ps; [ 1116 + aioesphomeapi 1028 1117 aiohttp-cors 1118 + aioruuvigateway 1119 + aioshelly 1029 1120 bleak-retry-connector 1030 1121 bleak 1031 1122 bluetooth-adapters 1032 1123 bluetooth-auto-recovery 1033 1124 bluetooth-data-tools 1034 1125 dbus-fast 1126 + esphome-dashboard-api 1035 1127 fjaraskupan 1036 1128 fnvhash 1037 1129 home-assistant-frontend 1130 + ifaddr 1038 1131 janus 1039 1132 pillow 1040 1133 pyserial 1041 1134 pyudev 1042 1135 sqlalchemy 1136 + zeroconf 1043 1137 ]; 1044 1138 "fleetgo" = ps: with ps; [ 1045 1139 ritassist ··· 1241 1335 ]; 1242 1336 "google_domains" = ps: with ps; [ 1243 1337 ]; 1338 + "google_mail" = ps: with ps; [ 1339 + aiohttp-cors 1340 + fnvhash 1341 + google-api-python-client 1342 + sqlalchemy 1343 + ]; 1244 1344 "google_maps" = ps: with ps; [ 1245 1345 locationsharinglib 1246 1346 ]; ··· 1262 1362 "google_wifi" = ps: with ps; [ 1263 1363 ]; 1264 1364 "govee_ble" = ps: with ps; [ 1365 + aioesphomeapi 1265 1366 aiohttp-cors 1367 + aioruuvigateway 1368 + aioshelly 1266 1369 bleak-retry-connector 1267 1370 bleak 1268 1371 bluetooth-adapters 1269 1372 bluetooth-auto-recovery 1270 1373 bluetooth-data-tools 1271 1374 dbus-fast 1375 + esphome-dashboard-api 1272 1376 fnvhash 1273 1377 govee-ble 1274 1378 home-assistant-frontend 1379 + ifaddr 1275 1380 janus 1276 1381 pillow 1277 1382 pyserial 1278 1383 pyudev 1279 1384 sqlalchemy 1385 + zeroconf 1280 1386 ]; 1281 1387 "gpsd" = ps: with ps; [ 1282 1388 gps3 ··· 1478 1584 zeroconf 1479 1585 ]; 1480 1586 "homekit_controller" = ps: with ps; [ 1587 + aioesphomeapi 1481 1588 aiohomekit 1482 1589 aiohttp-cors 1590 + aioruuvigateway 1591 + aioshelly 1483 1592 bleak-retry-connector 1484 1593 bleak 1485 1594 bluetooth-adapters 1486 1595 bluetooth-auto-recovery 1487 1596 bluetooth-data-tools 1488 1597 dbus-fast 1598 + esphome-dashboard-api 1489 1599 fnvhash 1490 1600 home-assistant-frontend 1491 1601 ifaddr ··· 1509 1619 pyhomeworks 1510 1620 ]; 1511 1621 "honeywell" = ps: with ps; [ 1512 - somecomfort 1622 + aiosomecomfort 1513 1623 ]; 1514 1624 "horizon" = ps: with ps; [ 1515 1625 ]; # missing inputs: horimote ··· 1560 1670 iaqualink 1561 1671 ]; 1562 1672 "ibeacon" = ps: with ps; [ 1673 + aioesphomeapi 1563 1674 aiohttp-cors 1675 + aioruuvigateway 1676 + aioshelly 1564 1677 bleak-retry-connector 1565 1678 bleak 1566 1679 bluetooth-adapters 1567 1680 bluetooth-auto-recovery 1568 1681 bluetooth-data-tools 1569 1682 dbus-fast 1683 + esphome-dashboard-api 1570 1684 fnvhash 1571 1685 home-assistant-frontend 1572 1686 ibeacon-ble 1687 + ifaddr 1573 1688 janus 1574 1689 pillow 1575 1690 pyserial 1576 1691 pyudev 1577 1692 sqlalchemy 1693 + zeroconf 1578 1694 ]; 1579 1695 "icloud" = ps: with ps; [ 1580 1696 pyicloud ··· 1602 1718 pillow 1603 1719 ]; 1604 1720 "imap" = ps: with ps; [ 1721 + aiohttp-cors 1605 1722 aioimaplib 1606 1723 ]; 1607 1724 "imap_email_content" = ps: with ps; [ ··· 1614 1731 influxdb 1615 1732 ]; 1616 1733 "inkbird" = ps: with ps; [ 1734 + aioesphomeapi 1617 1735 aiohttp-cors 1736 + aioruuvigateway 1737 + aioshelly 1618 1738 bleak-retry-connector 1619 1739 bleak 1620 1740 bluetooth-adapters 1621 1741 bluetooth-auto-recovery 1622 1742 bluetooth-data-tools 1623 1743 dbus-fast 1744 + esphome-dashboard-api 1624 1745 fnvhash 1625 1746 home-assistant-frontend 1747 + ifaddr 1626 1748 inkbird-ble 1627 1749 janus 1628 1750 pillow 1629 1751 pyserial 1630 1752 pyudev 1631 1753 sqlalchemy 1754 + zeroconf 1632 1755 ]; 1633 1756 "input_boolean" = ps: with ps; [ 1634 1757 ]; ··· 1741 1864 getmac 1742 1865 ]; 1743 1866 "kegtron" = ps: with ps; [ 1867 + aioesphomeapi 1744 1868 aiohttp-cors 1869 + aioruuvigateway 1870 + aioshelly 1745 1871 bleak-retry-connector 1746 1872 bleak 1747 1873 bluetooth-adapters 1748 1874 bluetooth-auto-recovery 1749 1875 bluetooth-data-tools 1750 1876 dbus-fast 1877 + esphome-dashboard-api 1751 1878 fnvhash 1752 1879 home-assistant-frontend 1880 + ifaddr 1753 1881 janus 1754 1882 kegtron-ble 1755 1883 pillow 1756 1884 pyserial 1757 1885 pyudev 1758 1886 sqlalchemy 1887 + zeroconf 1759 1888 ]; 1760 1889 "keyboard" = ps: with ps; [ 1761 1890 ]; # missing inputs: pyuserinput ··· 1765 1894 ]; 1766 1895 "keymitt_ble" = ps: with ps; [ 1767 1896 pymicrobot 1897 + aioesphomeapi 1768 1898 aiohttp-cors 1899 + aioruuvigateway 1900 + aioshelly 1769 1901 bleak-retry-connector 1770 1902 bleak 1771 1903 bluetooth-adapters 1772 1904 bluetooth-auto-recovery 1773 1905 bluetooth-data-tools 1774 1906 dbus-fast 1907 + esphome-dashboard-api 1775 1908 fnvhash 1776 1909 home-assistant-frontend 1910 + ifaddr 1777 1911 janus 1778 1912 pillow 1779 1913 pyserial 1780 1914 pyudev 1781 1915 sqlalchemy 1916 + zeroconf 1782 1917 ]; 1783 1918 "kira" = ps: with ps; [ 1784 1919 pykira 1920 + ]; 1921 + "kitchen_sink" = ps: with ps; [ 1922 + fnvhash 1923 + sqlalchemy 1785 1924 ]; 1786 1925 "kiwi" = ps: with ps; [ 1787 1926 kiwiki-client ··· 1801 1940 konnected 1802 1941 ]; 1803 1942 "kostal_plenticore" = ps: with ps; [ 1804 - ]; # missing inputs: kostal_plenticore 1943 + pykoplenti 1944 + ]; 1805 1945 "kraken" = ps: with ps; [ 1806 1946 krakenex 1807 1947 pykrakenapi ··· 1845 1985 "lcn" = ps: with ps; [ 1846 1986 pypck 1847 1987 ]; 1988 + "ld2410_ble" = ps: with ps; [ 1989 + aioesphomeapi 1990 + aiohttp-cors 1991 + aioruuvigateway 1992 + aioshelly 1993 + bleak-retry-connector 1994 + bleak 1995 + bluetooth-adapters 1996 + bluetooth-auto-recovery 1997 + bluetooth-data-tools 1998 + dbus-fast 1999 + esphome-dashboard-api 2000 + fnvhash 2001 + home-assistant-frontend 2002 + ifaddr 2003 + janus 2004 + pillow 2005 + pyserial 2006 + pyudev 2007 + sqlalchemy 2008 + zeroconf 2009 + ]; # missing inputs: ld2410-ble 1848 2010 "led_ble" = ps: with ps; [ 2011 + aioesphomeapi 1849 2012 aiohttp-cors 2013 + aioruuvigateway 2014 + aioshelly 1850 2015 bleak-retry-connector 1851 2016 bleak 1852 2017 bluetooth-adapters 1853 2018 bluetooth-auto-recovery 1854 2019 bluetooth-data-tools 1855 2020 dbus-fast 2021 + esphome-dashboard-api 1856 2022 fnvhash 1857 2023 home-assistant-frontend 2024 + ifaddr 1858 2025 janus 1859 2026 led-ble 1860 2027 pillow 1861 2028 pyserial 1862 2029 pyudev 1863 2030 sqlalchemy 2031 + zeroconf 1864 2032 ]; 1865 2033 "legrand" = ps: with ps; [ 1866 2034 ]; ··· 2052 2220 "melissa" = ps: with ps; [ 2053 2221 ]; # missing inputs: py-melissa-climate 2054 2222 "melnor" = ps: with ps; [ 2223 + aioesphomeapi 2055 2224 aiohttp-cors 2225 + aioruuvigateway 2226 + aioshelly 2056 2227 bleak-retry-connector 2057 2228 bleak 2058 2229 bluetooth-adapters 2059 2230 bluetooth-auto-recovery 2060 2231 bluetooth-data-tools 2061 2232 dbus-fast 2233 + esphome-dashboard-api 2062 2234 fnvhash 2063 2235 home-assistant-frontend 2236 + ifaddr 2064 2237 janus 2065 2238 pillow 2066 2239 pyserial 2067 2240 pyudev 2068 2241 sqlalchemy 2242 + zeroconf 2069 2243 ]; # missing inputs: melnor-bluetooth 2070 2244 "meraki" = ps: with ps; [ 2071 2245 aiohttp-cors ··· 2108 2282 aiohttp-cors 2109 2283 ]; 2110 2284 "miflora" = ps: with ps; [ 2285 + ]; 2286 + "mijndomein_energie" = ps: with ps; [ 2111 2287 ]; 2112 2288 "mikrotik" = ps: with ps; [ 2113 2289 librouteros ··· 2131 2307 "mjpeg" = ps: with ps; [ 2132 2308 ]; 2133 2309 "moat" = ps: with ps; [ 2310 + aioesphomeapi 2134 2311 aiohttp-cors 2312 + aioruuvigateway 2313 + aioshelly 2135 2314 bleak-retry-connector 2136 2315 bleak 2137 2316 bluetooth-adapters 2138 2317 bluetooth-auto-recovery 2139 2318 bluetooth-data-tools 2140 2319 dbus-fast 2320 + esphome-dashboard-api 2141 2321 fnvhash 2142 2322 home-assistant-frontend 2323 + ifaddr 2143 2324 janus 2144 2325 moat-ble 2145 2326 pillow 2146 2327 pyserial 2147 2328 pyudev 2148 2329 sqlalchemy 2330 + zeroconf 2149 2331 ]; 2150 2332 "mobile_app" = ps: with ps; [ 2151 2333 pynacl ··· 2153 2335 aiohttp-cors 2154 2336 fnvhash 2155 2337 hass-nabucasa 2338 + hassil 2339 + home-assistant-intents 2156 2340 pillow 2157 2341 sqlalchemy 2158 2342 ]; ··· 2180 2364 ]; # missing inputs: pymonoprice 2181 2365 "moon" = ps: with ps; [ 2182 2366 ]; 2367 + "mopeka" = ps: with ps; [ 2368 + aioesphomeapi 2369 + aiohttp-cors 2370 + aioruuvigateway 2371 + aioshelly 2372 + bleak-retry-connector 2373 + bleak 2374 + bluetooth-adapters 2375 + bluetooth-auto-recovery 2376 + bluetooth-data-tools 2377 + dbus-fast 2378 + esphome-dashboard-api 2379 + fnvhash 2380 + home-assistant-frontend 2381 + ifaddr 2382 + janus 2383 + pillow 2384 + pyserial 2385 + pyudev 2386 + sqlalchemy 2387 + zeroconf 2388 + ]; # missing inputs: mopeka_iot_ble 2183 2389 "motion_blinds" = ps: with ps; [ 2184 2390 aiohttp-cors 2185 2391 fnvhash ··· 2457 2663 "open_meteo" = ps: with ps; [ 2458 2664 open-meteo 2459 2665 ]; 2460 - "openalpr_cloud" = ps: with ps; [ 2666 + "openai_conversation" = ps: with ps; [ 2667 + aiohttp-cors 2668 + hassil 2669 + home-assistant-intents 2670 + openai 2461 2671 ]; 2462 - "openalpr_local" = ps: with ps; [ 2672 + "openalpr_cloud" = ps: with ps; [ 2463 2673 ]; 2464 2674 "opencv" = ps: with ps; [ 2465 2675 numpy ··· 2502 2712 pyoppleio 2503 2713 ]; 2504 2714 "oralb" = ps: with ps; [ 2715 + aioesphomeapi 2505 2716 aiohttp-cors 2717 + aioruuvigateway 2718 + aioshelly 2506 2719 bleak-retry-connector 2507 2720 bleak 2508 2721 bluetooth-adapters 2509 2722 bluetooth-auto-recovery 2510 2723 bluetooth-data-tools 2511 2724 dbus-fast 2725 + esphome-dashboard-api 2512 2726 fnvhash 2513 2727 home-assistant-frontend 2728 + ifaddr 2514 2729 janus 2515 2730 oralb-ble 2516 2731 pillow 2517 2732 pyserial 2518 2733 pyudev 2519 2734 sqlalchemy 2735 + zeroconf 2520 2736 ]; 2521 2737 "oru" = ps: with ps; [ 2522 2738 ]; # missing inputs: oru ··· 2525 2741 ]; 2526 2742 "osramlightify" = ps: with ps; [ 2527 2743 ]; # missing inputs: lightify 2744 + "otbr" = ps: with ps; [ 2745 + aiohttp-cors 2746 + fnvhash 2747 + home-assistant-frontend 2748 + janus 2749 + pillow 2750 + sqlalchemy 2751 + ]; # missing inputs: python-otbr-api 2528 2752 "otp" = ps: with ps; [ 2529 2753 pyotp 2530 2754 ]; ··· 2703 2927 "qbittorrent" = ps: with ps; [ 2704 2928 ]; # missing inputs: python-qbittorrent 2705 2929 "qingping" = ps: with ps; [ 2930 + aioesphomeapi 2706 2931 aiohttp-cors 2932 + aioruuvigateway 2933 + aioshelly 2707 2934 bleak-retry-connector 2708 2935 bleak 2709 2936 bluetooth-adapters 2710 2937 bluetooth-auto-recovery 2711 2938 bluetooth-data-tools 2712 2939 dbus-fast 2940 + esphome-dashboard-api 2713 2941 fnvhash 2714 2942 home-assistant-frontend 2943 + ifaddr 2715 2944 janus 2716 2945 pillow 2717 2946 pyserial 2718 2947 pyudev 2719 2948 qingping-ble 2720 2949 sqlalchemy 2950 + zeroconf 2721 2951 ]; 2722 2952 "qld_bushfire" = ps: with ps; [ 2723 2953 georss-qld-bushfire-alert-client ··· 2813 3043 renault-api 2814 3044 ]; 2815 3045 "reolink" = ps: with ps; [ 3046 + aiohttp-cors 2816 3047 reolink-aio 2817 3048 ]; 2818 3049 "repairs" = ps: with ps; [ ··· 2896 3127 ]; # missing inputs: russound_rio 2897 3128 "russound_rnet" = ps: with ps; [ 2898 3129 ]; # missing inputs: russound 3130 + "ruuvi_gateway" = ps: with ps; [ 3131 + aiohttp-cors 3132 + aioruuvigateway 3133 + bleak-retry-connector 3134 + bleak 3135 + bluetooth-adapters 3136 + bluetooth-auto-recovery 3137 + bluetooth-data-tools 3138 + dbus-fast 3139 + fnvhash 3140 + home-assistant-frontend 3141 + janus 3142 + pillow 3143 + pyserial 3144 + pyudev 3145 + sqlalchemy 3146 + ]; 2899 3147 "ruuvitag_ble" = ps: with ps; [ 3148 + aioesphomeapi 2900 3149 aiohttp-cors 3150 + aioruuvigateway 3151 + aioshelly 2901 3152 bleak-retry-connector 2902 3153 bleak 2903 3154 bluetooth-adapters 2904 3155 bluetooth-auto-recovery 2905 3156 bluetooth-data-tools 2906 3157 dbus-fast 3158 + esphome-dashboard-api 2907 3159 fnvhash 2908 3160 home-assistant-frontend 3161 + ifaddr 2909 3162 janus 2910 3163 pillow 2911 3164 pyserial 2912 3165 pyudev 2913 3166 ruuvitag-ble 2914 3167 sqlalchemy 3168 + zeroconf 2915 3169 ]; 3170 + "rympro" = ps: with ps; [ 3171 + ]; # missing inputs: pyrympro 2916 3172 "sabnzbd" = ps: with ps; [ 2917 3173 pysabnzbd 2918 3174 ]; ··· 2990 3246 pysensibo 2991 3247 ]; 2992 3248 "sensirion_ble" = ps: with ps; [ 3249 + aioesphomeapi 2993 3250 aiohttp-cors 3251 + aioruuvigateway 3252 + aioshelly 2994 3253 bleak-retry-connector 2995 3254 bleak 2996 3255 bluetooth-adapters 2997 3256 bluetooth-auto-recovery 2998 3257 bluetooth-data-tools 2999 3258 dbus-fast 3259 + esphome-dashboard-api 3000 3260 fnvhash 3001 3261 home-assistant-frontend 3262 + ifaddr 3002 3263 janus 3003 3264 pillow 3004 3265 pyserial 3005 3266 pyudev 3006 3267 sqlalchemy 3268 + zeroconf 3007 3269 ]; # missing inputs: sensirion-ble 3008 3270 "sensor" = ps: with ps; [ 3009 3271 fnvhash ··· 3012 3274 "sensorblue" = ps: with ps; [ 3013 3275 ]; 3014 3276 "sensorpro" = ps: with ps; [ 3277 + aioesphomeapi 3015 3278 aiohttp-cors 3279 + aioruuvigateway 3280 + aioshelly 3016 3281 bleak-retry-connector 3017 3282 bleak 3018 3283 bluetooth-adapters 3019 3284 bluetooth-auto-recovery 3020 3285 bluetooth-data-tools 3021 3286 dbus-fast 3287 + esphome-dashboard-api 3022 3288 fnvhash 3023 3289 home-assistant-frontend 3290 + ifaddr 3024 3291 janus 3025 3292 pillow 3026 3293 pyserial 3027 3294 pyudev 3028 3295 sensorpro-ble 3029 3296 sqlalchemy 3297 + zeroconf 3030 3298 ]; 3031 3299 "sensorpush" = ps: with ps; [ 3300 + aioesphomeapi 3032 3301 aiohttp-cors 3302 + aioruuvigateway 3303 + aioshelly 3033 3304 bleak-retry-connector 3034 3305 bleak 3035 3306 bluetooth-adapters 3036 3307 bluetooth-auto-recovery 3037 3308 bluetooth-data-tools 3038 3309 dbus-fast 3310 + esphome-dashboard-api 3039 3311 fnvhash 3040 3312 home-assistant-frontend 3313 + ifaddr 3041 3314 janus 3042 3315 pillow 3043 3316 pyserial 3044 3317 pyudev 3045 3318 sensorpush-ble 3046 3319 sqlalchemy 3320 + zeroconf 3047 3321 ]; 3048 3322 "sentry" = ps: with ps; [ 3049 3323 sentry-sdk ··· 3067 3341 ]; 3068 3342 "seventeentrack" = ps: with ps; [ 3069 3343 py17track 3344 + ]; 3345 + "sfr_box" = ps: with ps; [ 3346 + sfrbox-api 3070 3347 ]; 3071 3348 "sharkiq" = ps: with ps; [ 3072 3349 sharkiq ··· 3199 3476 pysnmplib 3200 3477 ]; 3201 3478 "snooz" = ps: with ps; [ 3479 + aioesphomeapi 3202 3480 aiohttp-cors 3481 + aioruuvigateway 3482 + aioshelly 3203 3483 bleak-retry-connector 3204 3484 bleak 3205 3485 bluetooth-adapters 3206 3486 bluetooth-auto-recovery 3207 3487 bluetooth-data-tools 3208 3488 dbus-fast 3489 + esphome-dashboard-api 3209 3490 fnvhash 3210 3491 home-assistant-frontend 3492 + ifaddr 3211 3493 janus 3212 3494 pillow 3213 3495 pyserial 3214 3496 pysnooz 3215 3497 pyudev 3216 3498 sqlalchemy 3499 + zeroconf 3217 3500 ]; 3218 3501 "solaredge" = ps: with ps; [ 3219 3502 solaredge ··· 3302 3585 ]; 3303 3586 "starlingbank" = ps: with ps; [ 3304 3587 ]; # missing inputs: starlingbank 3588 + "starlink" = ps: with ps; [ 3589 + ]; # missing inputs: starlink-grpc-core 3305 3590 "startca" = ps: with ps; [ 3306 3591 xmltodict 3307 3592 ]; ··· 3329 3614 "stookalert" = ps: with ps; [ 3330 3615 stookalert 3331 3616 ]; 3617 + "stookwijzer" = ps: with ps; [ 3618 + ]; # missing inputs: stookwijzer 3332 3619 "stream" = ps: with ps; [ 3333 3620 pyturbojpeg 3334 3621 aiohttp-cors ··· 3372 3659 ]; 3373 3660 "switchbot" = ps: with ps; [ 3374 3661 pyswitchbot 3662 + aioesphomeapi 3375 3663 aiohttp-cors 3664 + aioruuvigateway 3665 + aioshelly 3376 3666 bleak-retry-connector 3377 3667 bleak 3378 3668 bluetooth-adapters 3379 3669 bluetooth-auto-recovery 3380 3670 bluetooth-data-tools 3381 3671 dbus-fast 3672 + esphome-dashboard-api 3382 3673 fnvhash 3383 3674 home-assistant-frontend 3675 + ifaddr 3384 3676 janus 3385 3677 pillow 3386 3678 pyserial 3387 3679 pyudev 3388 3680 sqlalchemy 3681 + zeroconf 3389 3682 ]; 3390 3683 "switcher_kis" = ps: with ps; [ 3391 3684 aioswitcher ··· 3491 3784 "tfiac" = ps: with ps; [ 3492 3785 ]; # missing inputs: pytfiac 3493 3786 "thermobeacon" = ps: with ps; [ 3787 + aioesphomeapi 3494 3788 aiohttp-cors 3789 + aioruuvigateway 3790 + aioshelly 3495 3791 bleak-retry-connector 3496 3792 bleak 3497 3793 bluetooth-adapters 3498 3794 bluetooth-auto-recovery 3499 3795 bluetooth-data-tools 3500 3796 dbus-fast 3797 + esphome-dashboard-api 3501 3798 fnvhash 3502 3799 home-assistant-frontend 3800 + ifaddr 3503 3801 janus 3504 3802 pillow 3505 3803 pyserial 3506 3804 pyudev 3507 3805 sqlalchemy 3508 3806 thermobeacon-ble 3807 + zeroconf 3509 3808 ]; 3510 3809 "thermoplus" = ps: with ps; [ 3511 3810 ]; 3512 3811 "thermopro" = ps: with ps; [ 3812 + aioesphomeapi 3513 3813 aiohttp-cors 3814 + aioruuvigateway 3815 + aioshelly 3514 3816 bleak-retry-connector 3515 3817 bleak 3516 3818 bluetooth-adapters 3517 3819 bluetooth-auto-recovery 3518 3820 bluetooth-data-tools 3519 3821 dbus-fast 3822 + esphome-dashboard-api 3520 3823 fnvhash 3521 3824 home-assistant-frontend 3825 + ifaddr 3522 3826 janus 3523 3827 pillow 3524 3828 pyserial 3525 3829 pyudev 3526 3830 sqlalchemy 3527 3831 thermopro-ble 3832 + zeroconf 3528 3833 ]; 3529 3834 "thermoworks_smoke" = ps: with ps; [ 3530 3835 stringcase ··· 3537 3842 ]; # missing inputs: pythinkingcleaner 3538 3843 "thomson" = ps: with ps; [ 3539 3844 ]; 3845 + "thread" = ps: with ps; [ 3846 + ]; 3540 3847 "threshold" = ps: with ps; [ 3541 3848 ]; 3542 3849 "tibber" = ps: with ps; [ ··· 3550 3857 pytile 3551 3858 ]; 3552 3859 "tilt_ble" = ps: with ps; [ 3860 + aioesphomeapi 3553 3861 aiohttp-cors 3862 + aioruuvigateway 3863 + aioshelly 3554 3864 bleak-retry-connector 3555 3865 bleak 3556 3866 bluetooth-adapters 3557 3867 bluetooth-auto-recovery 3558 3868 bluetooth-data-tools 3559 3869 dbus-fast 3870 + esphome-dashboard-api 3560 3871 fnvhash 3561 3872 home-assistant-frontend 3873 + ifaddr 3562 3874 janus 3563 3875 pillow 3564 3876 pyserial 3565 3877 pyudev 3566 3878 sqlalchemy 3567 3879 tilt-ble 3880 + zeroconf 3568 3881 ]; 3569 3882 "time_date" = ps: with ps; [ 3570 3883 ]; ··· 3576 3889 "tod" = ps: with ps; [ 3577 3890 ]; 3578 3891 "todoist" = ps: with ps; [ 3579 - todoist 3892 + todoist-api-python 3580 3893 ]; 3581 3894 "tolo" = ps: with ps; [ 3582 3895 tololib ··· 3937 4250 zeroconf 3938 4251 ]; 3939 4252 "xiaomi_ble" = ps: with ps; [ 4253 + aioesphomeapi 3940 4254 aiohttp-cors 4255 + aioruuvigateway 4256 + aioshelly 3941 4257 bleak-retry-connector 3942 4258 bleak 3943 4259 bluetooth-adapters 3944 4260 bluetooth-auto-recovery 3945 4261 bluetooth-data-tools 3946 4262 dbus-fast 4263 + esphome-dashboard-api 3947 4264 fnvhash 3948 4265 home-assistant-frontend 4266 + ifaddr 3949 4267 janus 3950 4268 pillow 3951 4269 pyserial 3952 4270 pyudev 3953 4271 sqlalchemy 3954 4272 xiaomi-ble 4273 + zeroconf 3955 4274 ]; 3956 4275 "xiaomi_miio" = ps: with ps; [ 3957 4276 construct ··· 3970 4289 yalesmartalarmclient 3971 4290 ]; 3972 4291 "yalexs_ble" = ps: with ps; [ 4292 + aioesphomeapi 3973 4293 aiohttp-cors 4294 + aioruuvigateway 4295 + aioshelly 3974 4296 bleak-retry-connector 3975 4297 bleak 3976 4298 bluetooth-adapters 3977 4299 bluetooth-auto-recovery 3978 4300 bluetooth-data-tools 3979 4301 dbus-fast 4302 + esphome-dashboard-api 3980 4303 fnvhash 3981 4304 home-assistant-frontend 4305 + ifaddr 3982 4306 janus 3983 4307 pillow 3984 4308 pyserial 3985 4309 pyudev 3986 4310 sqlalchemy 3987 4311 yalexs-ble 4312 + zeroconf 3988 4313 ]; 3989 4314 "yamaha" = ps: with ps; [ 3990 4315 rxv ··· 4049 4374 "zestimate" = ps: with ps; [ 4050 4375 xmltodict 4051 4376 ]; 4377 + "zeversolar" = ps: with ps; [ 4378 + ]; # missing inputs: zeversolar 4052 4379 "zha" = ps: with ps; [ 4053 4380 aiohttp-cors 4054 4381 bellows ··· 4100 4427 }; 4101 4428 # components listed in tests/components for which all dependencies are packaged 4102 4429 supportedComponentsWithTests = [ 4103 - "abode" 4104 4430 "accuweather" 4105 4431 "acmeda" 4106 4432 "adax" ··· 4123 4449 "alarmdecoder" 4124 4450 "alert" 4125 4451 "alexa" 4126 - "almond" 4127 4452 "amberelectric" 4128 4453 "ambiclimate" 4129 4454 "ambient_station" ··· 4163 4488 "bluemaestro" 4164 4489 "blueprint" 4165 4490 "bluetooth" 4491 + "bluetooth_adapters" 4166 4492 "bluetooth_le_tracker" 4167 4493 "bmw_connected_drive" 4168 4494 "bond" ··· 4315 4641 "google_assistant" 4316 4642 "google_assistant_sdk" 4317 4643 "google_domains" 4644 + "google_mail" 4318 4645 "google_pubsub" 4319 4646 "google_sheets" 4320 4647 "google_translate" ··· 4372 4699 "ign_sismologia" 4373 4700 "image_processing" 4374 4701 "image_upload" 4702 + "imap" 4375 4703 "imap_email_content" 4376 4704 "influxdb" 4377 4705 "inkbird" ··· 4403 4731 "kegtron" 4404 4732 "keymitt_ble" 4405 4733 "kira" 4734 + "kitchen_sink" 4406 4735 "kmtronic" 4407 4736 "knx" 4408 4737 "kodi" 4409 4738 "konnected" 4739 + "kostal_plenticore" 4410 4740 "kraken" 4411 4741 "kulersky" 4412 4742 "lametric" ··· 4519 4849 "onewire" 4520 4850 "onvif" 4521 4851 "open_meteo" 4852 + "openai_conversation" 4522 4853 "openalpr_cloud" 4523 4854 "openerz" 4524 4855 "openexchangerates" ··· 4600 4931 "rss_feed_template" 4601 4932 "rtsp_to_webrtc" 4602 4933 "ruckus_unleashed" 4934 + "ruuvi_gateway" 4603 4935 "ruuvitag_ble" 4604 4936 "sabnzbd" 4605 4937 "safe_mode" ··· 4621 4953 "sentry" 4622 4954 "senz" 4623 4955 "seventeentrack" 4956 + "sfr_box" 4624 4957 "sharkiq" 4625 4958 "shell_command" 4626 4959 "shelly" ··· 4701 5034 "text" 4702 5035 "thermobeacon" 4703 5036 "thermopro" 5037 + "thread" 4704 5038 "threshold" 4705 5039 "tibber" 4706 5040 "tile"
+14 -68
pkgs/servers/home-assistant/default.nix
··· 78 78 ]; 79 79 }); 80 80 81 - caldav = super.caldav.overridePythonAttrs (old: rec { 82 - version = "0.9.1"; 83 - src = fetchFromGitHub { 84 - owner = "python-caldav"; 85 - repo = "caldav"; 86 - rev = "v${version}"; 87 - hash = "sha256-Gil0v4pGyp5+TnYPjb8Vk0xTqnQKaeD8Ko/ZWhvkbUk="; 88 - }; 89 - postPatch = '' 90 - substituteInPlace setup.py \ 91 - --replace ", 'xandikos<0.2.4'" "" \ 92 - --replace ", 'radicale'" "" 93 - ''; 94 - nativeCheckInputs = old.nativeCheckInputs ++ [ self.nose ]; 95 - }); 96 - 97 81 dsmr-parser = super.dsmr-parser.overridePythonAttrs (oldAttrs: rec { 98 82 version = "0.33"; 99 83 src = fetchFromGitHub { ··· 114 98 }; 115 99 }); 116 100 117 - icalendar = super.icalendar.overridePythonAttrs (oldAttrs: rec { 118 - version = "4.1.0"; 119 - src = self.fetchPypi { 120 - inherit (oldAttrs) pname; 121 - inherit version; 122 - hash = "sha256-l0i3wC78xD5Y0GFa4JdqxPJl6Q2t7ptPiE3imQXBs5U="; 123 - }; 124 - }); 125 - 126 101 # Pinned due to API changes in 10.0 127 102 mcstatus = super.mcstatus.overridePythonAttrs (oldAttrs: rec { 128 103 version = "9.3.0"; ··· 176 151 }; 177 152 }); 178 153 179 - pymodbus = super.pymodbus.overridePythonAttrs (oldAttrs: rec { 180 - version = "2.5.3"; 181 - src = fetchFromGitHub { 182 - owner = "riptideio"; 183 - repo = "pymodbus"; 184 - rev= "refs/tags/v${version}"; 185 - hash = "sha256-pf1TU/imBqNVYdG4XX8fnma8O8kQHuOHu6DT3E/PUk4="; 186 - }; 187 - }); 188 - 189 - # Pinned due to API changes in 1.0.24 190 - pysensibo = super.pysensibo.overridePythonAttrs (oldAttrs: rec { 191 - version = "1.0.22"; 192 - src = fetchFromGitHub { 193 - owner = "andrey-git"; 194 - repo = "pysensibo"; 195 - rev = "refs/tags/${version}"; 196 - hash = "sha256-AUcdKcdoYCg8OgUcFoLLpNK5GQMTg89XCR5CkTfNkcc="; 197 - }; 198 - }); 199 - 200 154 python-slugify = super.python-slugify.overridePythonAttrs (oldAttrs: rec { 201 155 pname = "python-slugify"; 202 156 version = "4.0.1"; 203 157 src = super.fetchPypi { 204 158 inherit pname version; 205 159 hash = "sha256-aaUXdm4AwSaOW7/A0BCgqFCN4LGNMK1aH/NX+K5yQnA="; 160 + }; 161 + }); 162 + 163 + pytradfri = super.pytradfri.overridePythonAttrs (oldAttrs: rec { 164 + version = "9.0.1"; 165 + src = fetchFromGitHub { 166 + owner = "home-assistant-libs"; 167 + repo = "pytradfri"; 168 + rev = "refs/tags/${version}"; 169 + hash = "sha256-xOdTzG0bF5p1QpkXv2btwrVugQRjSwdAj8bXcC0IoQg="; 206 170 }; 207 171 }); 208 172 ··· 235 199 doCheck = false; 236 200 }); 237 201 238 - pytradfri = super.pytradfri.overridePythonAttrs (oldAttrs: rec { 239 - version = "9.0.0"; 240 - src = fetchFromGitHub { 241 - owner = "home-assistant-libs"; 242 - repo = "pytradfri"; 243 - rev = "refs/tags/${version}"; 244 - hash = "sha256-12ol+2CnoPfkxmDGJJAkoafHGpQuWC4lh0N7lSvx2DE="; 245 - }; 246 - }); 247 - 248 - pysoma = super.pysoma.overridePythonAttrs (oldAttrs: rec { 249 - version = "0.0.10"; 250 - src = super.fetchPypi { 251 - pname = "pysoma"; 252 - inherit version; 253 - hash = "sha256-sU1qHbAjdIUu0etjate8+U1zvunbw3ddBtDVUU10CuE="; 254 - }; 255 - }); 256 - 257 202 # Pinned due to API changes in 0.3.0 258 203 tailscale = super.tailscale.overridePythonAttrs (oldAttrs: rec { 259 204 version = "0.2.0"; ··· 326 271 extraPackagesFile = writeText "home-assistant-packages" (lib.concatMapStringsSep "\n" (pkg: pkg.pname) extraBuildInputs); 327 272 328 273 # Don't forget to run parse-requirements.py after updating 329 - hassVersion = "2023.1.7"; 274 + hassVersion = "2023.2.0"; 330 275 331 276 in python.pkgs.buildPythonApplication rec { 332 277 pname = "homeassistant"; ··· 334 279 format = "pyproject"; 335 280 336 281 # check REQUIRED_PYTHON_VER in homeassistant/const.py 337 - disabled = python.pythonOlder "3.9"; 282 + disabled = python.pythonOlder "3.10"; 338 283 339 284 # don't try and fail to strip 6600+ python files, it takes minutes! 340 285 dontStrip = true; ··· 344 289 owner = "home-assistant"; 345 290 repo = "core"; 346 291 rev = "refs/tags/${version}"; 347 - hash = "sha256-z8dTFRs7Tm4WTQcYeHu9jlGbva9yNPhjmQ+CQY+9DN4="; 292 + hash = "sha256-tW1tVPJ50DIGIuxJP9nq4+Tw4fiPA+kINSclW7JkJmE="; 348 293 }; 349 294 350 295 # leave this in, so users don't have to constantly update their downstream patch handling ··· 368 313 "ifaddr" 369 314 "orjson" 370 315 "PyJWT" 316 + "pyOpenSSL" 371 317 "requests" 372 318 "typing-extensions" 373 319 "yarl"
+2 -2
pkgs/servers/home-assistant/frontend.nix
··· 4 4 # the frontend version corresponding to a specific home-assistant version can be found here 5 5 # https://github.com/home-assistant/home-assistant/blob/master/homeassistant/components/frontend/manifest.json 6 6 pname = "home-assistant-frontend"; 7 - version = "20230110.0"; 7 + version = "20230201.0"; 8 8 format = "wheel"; 9 9 10 10 src = fetchPypi { ··· 12 12 pname = "home_assistant_frontend"; 13 13 dist = "py3"; 14 14 python = "py3"; 15 - hash = "sha256-axtDtkIsTFWV8qtVvpYL4aDE5jbTdX4Qo5V+9taWuNo="; 15 + hash = "sha256-CG4I3YI1swiAV02+NXvi9n87dXrTJFlMUcOnB9ebmWk="; 16 16 }; 17 17 18 18 # there is nothing to strip in this package
+1 -1
pkgs/servers/home-assistant/intents.nix
··· 45 45 postInstall = '' 46 46 pushd .. 47 47 # https://github.com/home-assistant/intents/blob/main/script/package#L18 48 - ${python.interpreter} -m script.intentfest merged_output $out/${python.sitePackages}/home-assistant-intents/home_assistant_intents/data 48 + ${python.interpreter} -m script.intentfest merged_output $out/${python.sitePackages}/home_assistant_intents/data 49 49 popd 50 50 ''; 51 51
+3 -34
pkgs/servers/home-assistant/tests.nix
··· 34 34 }; 35 35 36 36 extraDisabledTestPaths = { 37 - tado = [ 38 - # tado/test_{climate,water_heater}.py: Tries to connect to my.tado.com 39 - "tests/components/tado/test_climate.py" 40 - "tests/components/tado/test_water_heater.py" 41 - ]; 42 37 }; 43 38 44 39 extraDisabledTests = { ··· 46 41 # homeassistant.components.roku.media_player:media_player.py:428 Media type music is not supported with format None (mime: audio/x-matroska) 47 42 "test_services_play_media_audio" 48 43 ]; 49 - rfxtrx = [ 50 - # bytearrray mismatch 51 - "test_rfy_cover" 52 - ]; 53 - zha = [ 54 - # 'manual_pick_radio_type' == 'choose_serial_port' 55 - "test_options_flow_migration_reset_old_adapter" 56 - ]; 57 44 }; 58 45 59 46 extraPytestFlagsArray = { 60 - asuswrt = [ 61 - # Sandbox network limitations, fails with unexpected error 62 - "--deselect tests/components/asuswrt/test_config_flow.py::test_on_connect_failed" 63 - ]; 64 47 dnsip = [ 65 48 # AssertionError: assert <FlowResultType.FORM: 'form'> == <FlowResultTy...create_entry'> 66 49 "--deselect tests/components/dnsip/test_config_flow.py::test_options_flow" ··· 69 52 # Flaky: AssertionError: assert '0.0' == '12.0' 70 53 "--deselect tests/components/history_stats/test_sensor.py::test_end_time_with_microseconds_zeroed" 71 54 ]; 55 + logbook = [ 56 + "--deselect tests/components/logbook/test_websocket_api.py::test_recorder_is_far_behind " 57 + ]; 72 58 modem_callerid = [ 73 59 # aioserial mock produces wrong state 74 60 "--deselect tests/components/modem_callerid/test_init.py::test_setup_entry" ··· 76 62 unifiprotect = [ 77 63 # "TypeError: object Mock can't be used in 'await' expression 78 64 "--deselect tests/components/unifiprotect/test_repairs.py::test_ea_warning_fix" 79 - ]; 80 - skybell = [ 81 - # Sandbox network limitations: Cannot connect to host cloud.myskybell.com:443 82 - "--deselect tests/components/skybell/test_config_flow.py::test_flow_user_unknown_error" 83 - ]; 84 - stream = [ 85 - # Tries to write to /example and gets "Permission denied" 86 - "--deselect tests/components/stream/test_recorder.py::test_record_lookback" 87 - "--deselect tests/components/stream/test_recorder.py::test_recorder_log" 88 - "--deselect tests/components/stream/test_worker.py::test_get_image" 89 - ]; 90 - zha = [ 91 - # AssertionError: assert 'manual_pick_radio_type' == 'choose_serial_port' 92 - "--deselect tests/components/zha/test_config_flow.py::test_options_flow_restarts_running_zha_if_cancelled" 93 65 ]; 94 66 }; 95 67 in lib.listToAttrs (map (component: lib.nameValuePair component ( ··· 121 93 122 94 meta = old.meta // { 123 95 broken = lib.elem component [ 124 - # all tests are skipped 125 - # https://github.com/home-assistant/core/blob/dev/tests/components/homeassistant_hardware/test_silabs_multiprotocol_addon.py#L23 126 - "homeassistant_hardware" 127 96 ]; 128 97 # upstream only tests on Linux, so do we. 129 98 platforms = lib.platforms.linux;
+2 -2
pkgs/servers/metabase/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "metabase"; 5 - version = "0.45.1"; 5 + version = "0.45.2.1"; 6 6 7 7 src = fetchurl { 8 8 url = "https://downloads.metabase.com/v${version}/metabase.jar"; 9 - hash = "sha256-FfX/+SIJWnSSqTf0yH0xCDWbBdXbzVSoQESHCO5oQ4s="; 9 + hash = "sha256-m891fWpY0W100MFyYtiL6fcZPrEW34cdo+61dj7cJvM="; 10 10 }; 11 11 12 12 nativeBuildInputs = [ makeWrapper ];
+2 -2
pkgs/servers/onlyoffice-documentserver/default.nix
··· 15 15 # var/www/onlyoffice/documentserver/server/DocService/docservice 16 16 onlyoffice-documentserver = stdenv.mkDerivation rec { 17 17 pname = "onlyoffice-documentserver"; 18 - version = "7.2.2"; 18 + version = "7.3.0"; 19 19 20 20 src = fetchurl { 21 21 url = "https://github.com/ONLYOFFICE/DocumentServer/releases/download/v${lib.concatStringsSep "." (lib.take 3 (lib.splitVersion version))}/onlyoffice-documentserver_amd64.deb"; 22 - sha256 = "sha256-4MJLvc2ExIAwGnEkBvMJSINp+7SxOyhtKnNNA9QVxMk="; 22 + sha256 = "sha256-PBea6VYJkjBf19AQ702OtLsHJ230Sc3e3K9HAccL0BM="; 23 23 }; 24 24 25 25 preferLocalBuild = true;
+45 -30
pkgs/tools/games/opentracker/default.nix
··· 1 - { lib 2 - , stdenv 3 - , buildDotnetModule 4 - , fetchFromGitHub 5 - , autoPatchelfHook 6 - , wrapGAppsHook 7 - , dotnetCorePackages 8 - , fontconfig 9 - , gtk3 10 - , openssl 11 - , libX11 12 - , libXi 13 - , xinput 1 + { 2 + lib, 3 + stdenv, 4 + buildDotnetModule, 5 + fetchFromGitHub, 6 + autoPatchelfHook, 7 + wrapGAppsHook, 8 + dotnetCorePackages, 9 + fontconfig, 10 + gtk3, 11 + libunwind, 12 + openssl, 13 + xinput, 14 + xorg, 14 15 }: 15 - 16 16 buildDotnetModule rec { 17 17 pname = "opentracker"; 18 - version = "1.8.2"; 18 + version = "1.8.5"; 19 19 20 20 src = fetchFromGitHub { 21 21 owner = "trippsc2"; 22 22 repo = pname; 23 - rev = version; 24 - sha256 = "0nsmyb1wd86465iri9jxl3jp74gxkscvnmr3687ddbia3dv4fz0z"; 23 + rev = "refs/tags/${version}"; 24 + hash = "sha512-nWkPgVYdnBJibyJRdLPe3O3RioDPbzumSritRejmr4CeiPb7aUTON7HjivcV/GKor1guEYu+TJ+QxYrqO/eppg=="; 25 25 }; 26 26 27 - dotnet-runtime = dotnetCorePackages.runtime_3_1; 28 - dotnet-sdk = dotnetCorePackages.sdk_3_1; 27 + patches = [./remove-project.patch]; 28 + 29 + dotnet-runtime = dotnetCorePackages.runtime_6_0; 29 30 30 31 nugetDeps = ./deps.nix; 31 32 32 33 projectFile = "OpenTracker.sln"; 33 - executables = [ "OpenTracker" ]; 34 + executables = ["OpenTracker"]; 34 35 35 36 doCheck = true; 37 + disabledTests = [ 38 + "OpenTracker.UnitTests.Models.Nodes.Factories.SLightWorldConnectionFactoryTests.GetNodeConnections_ShouldReturnExpectedValue" 39 + "OpenTracker.UnitTests.Models.Sections.Factories.ItemSectionFactoryTests.GetItemSection_ShouldReturnExpected" 40 + ]; 36 41 37 42 nativeBuildInputs = [ 38 43 autoPatchelfHook ··· 43 48 stdenv.cc.cc.lib 44 49 fontconfig 45 50 gtk3 51 + libunwind 46 52 ]; 47 53 48 - runtimeDeps = [ 49 - gtk3 50 - openssl 51 - libX11 52 - libXi 53 - xinput 54 - ]; 54 + runtimeDeps = 55 + [ 56 + gtk3 57 + openssl 58 + xinput 59 + ] 60 + ++ (with xorg; [ 61 + libICE 62 + libSM 63 + libX11 64 + libXi 65 + ]); 55 66 56 - autoPatchelfIgnoreMissingDeps = [ "libc.musl-x86_64.so.1" ]; # Attempts to patchelf unneeded SOs 67 + # Attempts to patchelf unneeded SOs 68 + autoPatchelfIgnoreMissingDeps = [ 69 + "libc.musl-x86_64.so.1" 70 + "libintl.so.8" 71 + ]; 57 72 58 73 meta = with lib; { 59 74 description = "A tracking application for A Link to the Past Randomizer"; ··· 65 80 binaryNativeCode 66 81 ]; 67 82 license = licenses.mit; 68 - maintainers = [ maintainers.ivar ]; 83 + maintainers = [maintainers.ivar]; 69 84 mainProgram = "OpenTracker"; 70 - platforms = [ "x86_64-linux" ]; 85 + platforms = ["x86_64-linux"]; 71 86 }; 72 87 }
+66 -68
pkgs/tools/games/opentracker/deps.nix
··· 2 2 # Please dont edit it manually, your changes might get overwritten! 3 3 4 4 { fetchNuGet }: [ 5 - (fetchNuGet { pname = "Autofac"; version = "6.0.0"; sha256 = "1faz8j3caqh4f2w4bcicz5x67f63f6463jikg89sr9qmqbv778hn"; }) 6 - (fetchNuGet { pname = "Autofac"; version = "6.1.0"; sha256 = "0g1iic7y19rm536dzsllabw7phbgb6wzghhpfmdxz7yp7zrfjk15"; }) 7 - (fetchNuGet { pname = "Autofac.Extras.Moq"; version = "6.0.0"; sha256 = "1jbdzwr712iq11s3i24a4b7g6025djkmf40fcrfiqkihvdrfprcw"; }) 8 - (fetchNuGet { pname = "Avalonia"; version = "0.10.0"; sha256 = "0wf8nqdj0xi6drzw676vm5ac2kaxcd76af4y1cirfw4j7lxvs344"; }) 5 + (fetchNuGet { pname = "Autofac"; version = "6.3.0"; sha256 = "0zg0lsqzb8hh7l97mfd2z3fxdab86sbmxkaprzi41v0hs1x3jd9b"; }) 6 + (fetchNuGet { pname = "Avalonia"; version = "0.10.12"; sha256 = "1hb6v8sm7gd8aswdv0slnk8cvvxs5ac82knc3pzvxj0js2n4lnv2"; }) 9 7 (fetchNuGet { pname = "Avalonia.Angle.Windows.Natives"; version = "2.1.0.2020091801"; sha256 = "04jm83cz7vkhhr6n2c9hya2k8i2462xbf6np4bidk55as0jdq43a"; }) 10 - (fetchNuGet { pname = "Avalonia.Controls.DataGrid"; version = "0.10.0"; sha256 = "0yry5kwbp03lznv2zay39p2ry2jsdf7s1syjzf93dd64pgl5bwpk"; }) 11 - (fetchNuGet { pname = "Avalonia.Desktop"; version = "0.10.0"; sha256 = "1vwaxxnzcgkdrxvrkjcxpc9c839pxmm6ajq83xiqzn5f4vvx29di"; }) 12 - (fetchNuGet { pname = "Avalonia.Diagnostics"; version = "0.10.0"; sha256 = "1fw6bbbm7g1w4s6hyskkx7p59i3p965bly8p50dmfs31ls01jfrx"; }) 13 - (fetchNuGet { pname = "Avalonia.FreeDesktop"; version = "0.10.0"; sha256 = "08z3vybk474yxaipd7nqqr9xycgprggcri4lp61ns3p3fj599ydp"; }) 14 - (fetchNuGet { pname = "Avalonia.Markup.Xaml.Loader"; version = "0.10.0"; sha256 = "05wdf7gc5v03gia29srq44g49ijqg45vygargm087m2s63i134jk"; }) 15 - (fetchNuGet { pname = "Avalonia.Native"; version = "0.10.0"; sha256 = "1kfzn349rllp7ngydvxqn84hmgxrkbgf7mgrqwcagq809f73mzyp"; }) 16 - (fetchNuGet { pname = "Avalonia.ReactiveUI"; version = "0.10.0"; sha256 = "0azkwfi72gy7158fpfs6i0iixixy00zfkgsh939pfzy7fkz5pq8m"; }) 17 - (fetchNuGet { pname = "Avalonia.Remote.Protocol"; version = "0.10.0"; sha256 = "0527966nmjdhzdq6dwhjhyc79kmy56ymhxsmrp344jn43d67kmnr"; }) 18 - (fetchNuGet { pname = "Avalonia.Skia"; version = "0.10.0"; sha256 = "1d5w7pl1xx9l250mhdq3jnpy5zl77j8n3ccjjxfg8sc7rnyd2fx9"; }) 19 - (fetchNuGet { pname = "Avalonia.Win32"; version = "0.10.0"; sha256 = "0lyfmhh0q1dzzb5blp76phj894wl6ab0kn1pcprxqvj94dcwric8"; }) 20 - (fetchNuGet { pname = "Avalonia.X11"; version = "0.10.0"; sha256 = "0asja6g20c6wzxmvx0knkdk6f5fbrx99n82zcrj4y2irhmmzjhxy"; }) 21 - (fetchNuGet { pname = "Avalonia.Xaml.Behaviors"; version = "0.10.0"; sha256 = "10g6i9y00a13cy3y889y3z8i5p5arpif53q3xx9k6k0qzcq6zq51"; }) 22 - (fetchNuGet { pname = "Avalonia.Xaml.Interactions"; version = "0.10.0"; sha256 = "0s1mha3m912lmzaw87a841807fcx150vmhwcbfb8mnhqf6qgdwjy"; }) 23 - (fetchNuGet { pname = "Avalonia.Xaml.Interactions.DragAndDrop"; version = "0.10.0"; sha256 = "1hi9ii7r6xr6avac0a2fs1fq9x34iw23hn1qmnzskbj6jz1pzsbj"; }) 24 - (fetchNuGet { pname = "Avalonia.Xaml.Interactivity"; version = "0.10.0"; sha256 = "0nqpxbn390g98vyhvp4rvbchxlrcc8vkjjkakgz15crk1irf941b"; }) 25 - (fetchNuGet { pname = "Castle.Core"; version = "4.0.0"; sha256 = "10zq7mb1gvm946grw7fxa5dh1xwccqmk5jmwx6pqn7kbjp9frkpy"; }) 8 + (fetchNuGet { pname = "Avalonia.Controls.DataGrid"; version = "0.10.12"; sha256 = "1r8qi0kgd9rqbacnriy5sa684d12vxi45a6n2a4w7ydxr97zv5nm"; }) 9 + (fetchNuGet { pname = "Avalonia.Desktop"; version = "0.10.12"; sha256 = "17ng7vvmynnmll7fb8zkjlhcn0ksg7p4v6kw207yq72acgvyn96g"; }) 10 + (fetchNuGet { pname = "Avalonia.Diagnostics"; version = "0.10.12"; sha256 = "17skzs05iv5ljgnqm36zrbhrh3x20xf5hgni543i02zffj2015ki"; }) 11 + (fetchNuGet { pname = "Avalonia.FreeDesktop"; version = "0.10.12"; sha256 = "00920pdiv8wlpym0s80nz8lfmw515ikrr5f2a6sr4kmjwfd9cffj"; }) 12 + (fetchNuGet { pname = "Avalonia.Markup.Xaml.Loader"; version = "0.10.12"; sha256 = "18glwqn4a8p3rz5zsp1xyrm5xwv853056nykf7mdcv1lglh74fsm"; }) 13 + (fetchNuGet { pname = "Avalonia.Native"; version = "0.10.12"; sha256 = "1j6gxg0n55923rbw2p7z6yh27i81xrzpqarb268d3hd6hgjycwc1"; }) 14 + (fetchNuGet { pname = "Avalonia.ReactiveUI"; version = "0.10.12"; sha256 = "04ga7f8bmz3bqp4dsc4fzrphfq61zf62hlz4nbazf1igx0jzdygy"; }) 15 + (fetchNuGet { pname = "Avalonia.Remote.Protocol"; version = "0.10.12"; sha256 = "0ghrb8yf4qahwlpa2appk7q0m0n01q0s65nx1xj1plpi4jr6vvw2"; }) 16 + (fetchNuGet { pname = "Avalonia.Skia"; version = "0.10.12"; sha256 = "1qj0sw4780za3p6hbwvx1p3b6px3s5vp3ml3vvyak1bajvifz969"; }) 17 + (fetchNuGet { pname = "Avalonia.Win32"; version = "0.10.12"; sha256 = "1af174qca95gxf04zhxm716mi1dazfz7k3995i1nyaz7hygs3p04"; }) 18 + (fetchNuGet { pname = "Avalonia.X11"; version = "0.10.12"; sha256 = "1jjg4lhg0a95laffwm7imgs92q06whrfkaszm7svgfv1ryazv71q"; }) 19 + (fetchNuGet { pname = "Avalonia.Xaml.Behaviors"; version = "0.10.12"; sha256 = "0j897knwxpl6sss8v2wrhy4bw4nw4jqc04n8b8d4s76jaqcr3z2h"; }) 20 + (fetchNuGet { pname = "Avalonia.Xaml.Interactions"; version = "0.10.12"; sha256 = "0nyqg66sg7garc2k729k3dqixbb3asvsjd2kxympfx9q6xyz6vrh"; }) 21 + (fetchNuGet { pname = "Avalonia.Xaml.Interactivity"; version = "0.10.12"; sha256 = "13qbmz39bf29wvq82b1irci8y50fjhhj563cdwd235nm633sixqb"; }) 22 + (fetchNuGet { pname = "Castle.Core"; version = "4.4.1"; sha256 = "13dja1jxl5zwhi0ghkgvgmqdrixn57f9hk52jy5vpaaakzr550r7"; }) 23 + (fetchNuGet { pname = "Citrus.Avalonia"; version = "1.6.1"; sha256 = "1hl98dmgmm6ml5gl70v7vg577n7vn6bjxaq82sgnql5g623pg18x"; }) 26 24 (fetchNuGet { pname = "DotNet.Bundle"; version = "0.9.13"; sha256 = "0awzvk62hgszm9b8ar87y862aj8nlm77d7hgfmp84mxny0ag03jl"; }) 27 - (fetchNuGet { pname = "DynamicData"; version = "7.1.1"; sha256 = "14xcqkw87zbjljy1pb727kwq5a4dfmsf5vg99fq0xxb71q828nvh"; }) 28 - (fetchNuGet { pname = "HarfBuzzSharp"; version = "2.6.1.7"; sha256 = "0xm4dr6cs5n1ywbbpp1jrxfk8rn1iy61kdm29kb6bqj1q0gv8zyv"; }) 29 - (fetchNuGet { pname = "HarfBuzzSharp.NativeAssets.Linux"; version = "2.6.1.7"; sha256 = "1slackrhcwsjn3f6sa0nlrcynzmx5pbqv8j33l9w6z9w7ssq4wkn"; }) 30 - (fetchNuGet { pname = "JetBrains.Annotations"; version = "2020.3.0"; sha256 = "04xlfqnfg3069f014q8f0vx7y70m8nldbf9fia4b50bp3rry2lv2"; }) 31 - (fetchNuGet { pname = "Microsoft.CodeAnalysis.Analyzers"; version = "3.3.2"; sha256 = "162vb5894zxps0cf5n9gc08an7gwybzz87allx3lsszvllr9ldx4"; }) 32 - (fetchNuGet { pname = "Microsoft.CodeAnalysis.Common"; version = "3.9.0"; sha256 = "1x6l6kn8iv5gk1545nxs2gwzkb8gj4sb9kryai132l7yg9afjqik"; }) 33 - (fetchNuGet { pname = "Microsoft.CodeAnalysis.CSharp"; version = "3.9.0"; sha256 = "0crb9x5rhija8y7b0iya9axcvinz2hv3bgf80bvz7kv6zpbpszkz"; }) 34 - (fetchNuGet { pname = "Microsoft.CodeAnalysis.CSharp.Scripting"; version = "3.9.0"; sha256 = "0hrihj0q96vjlbfvkq9l4maqdf6rqdznr7cpj82iw51n8kbzj8s3"; }) 35 - (fetchNuGet { pname = "Microsoft.CodeAnalysis.NetAnalyzers"; version = "5.0.3"; sha256 = "1l0zg9wl8yapjq9g2d979zhsmdkr8kfybmxnl7kvgkgldf114fbg"; }) 36 - (fetchNuGet { pname = "Microsoft.CodeAnalysis.Scripting.Common"; version = "3.9.0"; sha256 = "0kds9i8bla540787qchbzayrg50ai40pxyai2vihc1m2l39h4mdf"; }) 37 - (fetchNuGet { pname = "Microsoft.CodeCoverage"; version = "16.9.1"; sha256 = "18isx8w4kwnlk6hq5ay8i4lgzwhx0zg9brayfdk2lakagvv6yyaf"; }) 25 + (fetchNuGet { pname = "DynamicData"; version = "7.4.11"; sha256 = "1vrrwkmqrdzr4ncjihfzik5ykmy1234iyp2q5qk8spz6y0gwq2h8"; }) 26 + (fetchNuGet { pname = "DynamicData"; version = "7.4.9"; sha256 = "0ssgh42fi5m6xyw36f4km04ls9nq4w8cpbck8gh7g8n3ixz05rrw"; }) 27 + (fetchNuGet { pname = "ExpectedObjects"; version = "3.5.4"; sha256 = "1mklg6dx8biaaf9jxp09rddsw66l42r4fpsgnmm6szn6fj2n888k"; }) 28 + (fetchNuGet { pname = "HarfBuzzSharp"; version = "2.8.2-preview.178"; sha256 = "1p5nwzl7jpypsd6df7hgcf47r977anjlyv21wacmalsj6lvdgnvn"; }) 29 + (fetchNuGet { pname = "HarfBuzzSharp.NativeAssets.Linux"; version = "2.8.2-preview.178"; sha256 = "1402ylkxbgcnagcarqlfvg4gppy2pqs3bmin4n5mphva1g7bqb2p"; }) 30 + (fetchNuGet { pname = "HarfBuzzSharp.NativeAssets.macOS"; version = "2.8.2-preview.178"; sha256 = "0p8miaclnbfpacc1jaqxwfg0yfx9byagi4j4k91d9621vd19i8b2"; }) 31 + (fetchNuGet { pname = "HarfBuzzSharp.NativeAssets.WebAssembly"; version = "2.8.2-preview.178"; sha256 = "1n9jay9sji04xly6n8bzz4591fgy8i65p21a8mv5ip9lsyj1c320"; }) 32 + (fetchNuGet { pname = "HarfBuzzSharp.NativeAssets.Win32"; version = "2.8.2-preview.178"; sha256 = "1r5syii96wv8q558cvsqw3lr10cdw6677lyiy82p6i3if51v3mr7"; }) 33 + (fetchNuGet { pname = "JetBrains.Annotations"; version = "2021.3.0"; sha256 = "01ssylllbwpana2w3iybi533zlvcsbhzjc8kr0g4kg307kjbfn8v"; }) 34 + (fetchNuGet { pname = "Microsoft.CodeAnalysis.Analyzers"; version = "3.3.3"; sha256 = "09m4cpry8ivm9ga1abrxmvw16sslxhy2k5sl14zckhqb1j164im6"; }) 35 + (fetchNuGet { pname = "Microsoft.CodeAnalysis.Common"; version = "4.0.1"; sha256 = "0axjv1nhk1z9d4c51d9yxdp09l8yqqnqaifhqcwnxnv0r4y5cka9"; }) 36 + (fetchNuGet { pname = "Microsoft.CodeAnalysis.CSharp"; version = "4.0.1"; sha256 = "1h6jfifg7pw2vacpdds4v4jqnaydg9b108irf315wzx6rh8yv9cb"; }) 37 + (fetchNuGet { pname = "Microsoft.CodeAnalysis.CSharp.Scripting"; version = "4.0.1"; sha256 = "0ncbld51ja7hp6p2cabw0dx4km2syiz0z58al62h21cpbjfnls5p"; }) 38 + (fetchNuGet { pname = "Microsoft.CodeAnalysis.NetAnalyzers"; version = "6.0.0"; sha256 = "06zy947m5lrbwb684g42ijb07r5jsqycvfnphc6cqfdrfnzqv6k9"; }) 39 + (fetchNuGet { pname = "Microsoft.CodeAnalysis.Scripting.Common"; version = "4.0.1"; sha256 = "0zhrlk30js7dp6i76zd7zilaxq26gwsl3pk85p919039786sqs9p"; }) 40 + (fetchNuGet { pname = "Microsoft.CodeCoverage"; version = "17.0.0"; sha256 = "18gdbsqf6i79ld4ikqr4jhx9ndsggm865b5xj1xmnmgg12ydp19a"; }) 38 41 (fetchNuGet { pname = "Microsoft.CSharp"; version = "4.0.1"; sha256 = "0zxc0apx1gcx361jlq8smc9pfdgmyjh6hpka8dypc9w23nlsh6yj"; }) 39 42 (fetchNuGet { pname = "Microsoft.CSharp"; version = "4.7.0"; sha256 = "0gd67zlw554j098kabg887b5a6pq9kzavpa3jjy5w53ccjzjfy8j"; }) 40 - (fetchNuGet { pname = "Microsoft.NET.Test.Sdk"; version = "16.9.1"; sha256 = "1761mvkp5mwhw150fvazdhh4ybvxpvx05g9znf8n1fqx832wxrw5"; }) 43 + (fetchNuGet { pname = "Microsoft.NET.Test.Sdk"; version = "17.0.0"; sha256 = "0bknyf5kig5icwjxls7pcn51x2b2qf91dz9qv67fl70v6cczaz2r"; }) 41 44 (fetchNuGet { pname = "Microsoft.NETCore.Platforms"; version = "1.0.1"; sha256 = "01al6cfxp68dscl15z7rxfw9zvhm64dncsw09a1vmdkacsa2v6lr"; }) 42 45 (fetchNuGet { pname = "Microsoft.NETCore.Platforms"; version = "1.1.0"; sha256 = "08vh1r12g6ykjygq5d3vq09zylgb84l63k49jc4v8faw9g93iqqm"; }) 43 - (fetchNuGet { pname = "Microsoft.NETCore.Platforms"; version = "5.0.0"; sha256 = "0mwpwdflidzgzfx2dlpkvvnkgkr2ayaf0s80737h4wa35gaj11rc"; }) 44 - (fetchNuGet { pname = "Microsoft.NETCore.Platforms"; version = "5.0.1"; sha256 = "12ilya3x6g5frbwmh41mwygax9v8vrycq3vnzhv3r258jwv69974"; }) 46 + (fetchNuGet { pname = "Microsoft.NETCore.Platforms"; version = "6.0.1"; sha256 = "13v33cm88px9wymlxidzgy2ljaq33h1xna3lgdggmy7w4bbdkddh"; }) 45 47 (fetchNuGet { pname = "Microsoft.NETCore.Targets"; version = "1.0.1"; sha256 = "0ppdkwy6s9p7x9jix3v4402wb171cdiibq7js7i13nxpdky7074p"; }) 46 48 (fetchNuGet { pname = "Microsoft.NETCore.Targets"; version = "1.1.0"; sha256 = "193xwf33fbm0ni3idxzbr5fdq3i2dlfgihsac9jj7whj0gd902nh"; }) 47 49 (fetchNuGet { pname = "Microsoft.NETCore.Targets"; version = "5.0.0"; sha256 = "0z3qyv7qal5irvabc8lmkh58zsl42mrzd1i0sssvzhv4q4kl3cg6"; }) 48 - (fetchNuGet { pname = "Microsoft.TestPlatform.ObjectModel"; version = "16.9.1"; sha256 = "1igpx7ldxqx9fkrbhakd2bybc0dgpvj86zr30vpfj31ncm6lp4id"; }) 49 - (fetchNuGet { pname = "Microsoft.TestPlatform.TestHost"; version = "16.9.1"; sha256 = "1frx5r7l0jd3j6my4s2qas13fkljgfn87a84xk8l7sisafpfsvzp"; }) 50 + (fetchNuGet { pname = "Microsoft.TestPlatform.ObjectModel"; version = "17.0.0"; sha256 = "1bh5scbvl6ndldqv20sl34h4y257irm9ziv2wyfc3hka6912fhn7"; }) 51 + (fetchNuGet { pname = "Microsoft.TestPlatform.TestHost"; version = "17.0.0"; sha256 = "06mn31cgpp7d8lwdyjanh89prc66j37dchn74vrd9s588rq0y70r"; }) 50 52 (fetchNuGet { pname = "Microsoft.Win32.Primitives"; version = "4.3.0"; sha256 = "0j0c1wj4ndj21zsgivsc24whiya605603kxrbiw6wkfdync464wq"; }) 51 - (fetchNuGet { pname = "Microsoft.Win32.SystemEvents"; version = "5.0.0"; sha256 = "0sja4ba0mrvdamn0r9mhq38b9dxi08yb3c1hzh29n1z6ws1hlrcq"; }) 52 - (fetchNuGet { pname = "Moq"; version = "4.7.0"; sha256 = "1y1lzg7scrzl5x8cxsbrgkpg79mf3v0ylnpgjw8q6hib2rhsi8ff"; }) 53 + (fetchNuGet { pname = "Microsoft.Win32.SystemEvents"; version = "6.0.0"; sha256 = "0c6pcj088g1yd1vs529q3ybgsd2vjlk5y1ic6dkmbhvrp5jibl9p"; }) 53 54 (fetchNuGet { pname = "NETStandard.Library"; version = "1.6.1"; sha256 = "1z70wvsx2d847a2cjfii7b83pjfs34q05gb037fdjikv5kbagml8"; }) 54 - (fetchNuGet { pname = "Newtonsoft.Json"; version = "12.0.3"; sha256 = "17dzl305d835mzign8r15vkmav2hq8l6g7942dfjpnzr17wwl89x"; }) 55 + (fetchNuGet { pname = "Newtonsoft.Json"; version = "13.0.1"; sha256 = "0fijg0w6iwap8gvzyjnndds0q4b8anwxxvik7y8vgq97dram4srb"; }) 55 56 (fetchNuGet { pname = "Newtonsoft.Json"; version = "9.0.1"; sha256 = "0mcy0i7pnfpqm4pcaiyzzji4g0c8i3a5gjz28rrr28110np8304r"; }) 57 + (fetchNuGet { pname = "NSubstitute"; version = "4.3.0"; sha256 = "026kx6fab9r1a0m8p9hlznp73qhh44k4i0352szvchsis6vlj9gm"; }) 56 58 (fetchNuGet { pname = "NuGet.Frameworks"; version = "5.0.0"; sha256 = "18ijvmj13cwjdrrm52c8fpq021531zaz4mj4b4zapxaqzzxf2qjr"; }) 57 - (fetchNuGet { pname = "Packaging.Targets"; version = "0.1.155"; sha256 = "0iija7gskcbrj8qgj5lqxqsfpz8k58fbvjnix6rccpzgvb16dkhy"; }) 58 - (fetchNuGet { pname = "ReactiveUI"; version = "12.1.1"; sha256 = "1mwv9fi2zazp9ddwci9xfzrmi4pyp8n69r8ilc4lp5lvr1c6chih"; }) 59 - (fetchNuGet { pname = "ReactiveUI"; version = "13.2.2"; sha256 = "1f9jh3d8lblqpva4iy5c6qvnya3cc0fp6mva3f9z3q7ll8v4h62h"; }) 59 + (fetchNuGet { pname = "Packaging.Targets"; version = "0.1.220"; sha256 = "0ci4jkkqk70vwzf2sgc44a8dap70afp6yhvj967shy7anffxb511"; }) 60 + (fetchNuGet { pname = "ReactiveUI"; version = "13.2.10"; sha256 = "0x4pk45wipzsjzkv23as8l0sdds665l9404gaix8c0z2n24s76gg"; }) 61 + (fetchNuGet { pname = "ReactiveUI"; version = "17.1.17"; sha256 = "1v0w88mk8bh68lcj968q61zyx6l07himild605c2xi5lb6a42z71"; }) 60 62 (fetchNuGet { pname = "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; sha256 = "16rnxzpk5dpbbl1x354yrlsbvwylrq456xzpsha1n9y3glnhyx9d"; }) 61 63 (fetchNuGet { pname = "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; sha256 = "0hkg03sgm2wyq8nqk6dbm9jh5vcq57ry42lkqdmfklrw89lsmr59"; }) 62 64 (fetchNuGet { pname = "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; sha256 = "0c2p354hjx58xhhz7wv6div8xpi90sc6ibdm40qin21bvi7ymcaa"; }) 63 - (fetchNuGet { pname = "runtime.native.System"; version = "4.0.0"; sha256 = "1ppk69xk59ggacj9n7g6fyxvzmk1g5p4fkijm0d7xqfkig98qrkf"; }) 64 65 (fetchNuGet { pname = "runtime.native.System"; version = "4.3.0"; sha256 = "15hgf6zaq9b8br2wi1i3x0zvmk410nlmsmva9p0bbg73v6hml5k4"; }) 65 66 (fetchNuGet { pname = "runtime.native.System.IO.Compression"; version = "4.3.0"; sha256 = "1vvivbqsk6y4hzcid27pqpm5bsi6sc50hvqwbcx8aap5ifrxfs8d"; }) 66 67 (fetchNuGet { pname = "runtime.native.System.Net.Http"; version = "4.3.0"; sha256 = "1n6rgz5132lcibbch1qlf0g9jk60r0kqv087hxc0lisy50zpm7kk"; }) ··· 75 76 (fetchNuGet { pname = "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; sha256 = "15zrc8fgd8zx28hdghcj5f5i34wf3l6bq5177075m2bc2j34jrqy"; }) 76 77 (fetchNuGet { pname = "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; sha256 = "1p4dgxax6p7rlgj4q73k73rslcnz4wdcv8q2flg1s8ygwcm58ld5"; }) 77 78 (fetchNuGet { pname = "Serilog"; version = "2.10.0"; sha256 = "08bih205i632ywryn3zxkhb15dwgyaxbhmm1z3b5nmby9fb25k7v"; }) 78 - (fetchNuGet { pname = "Serilog.Sinks.File"; version = "4.1.0"; sha256 = "1ry7p9hf1zlnai1j5zjhjp4dqm2agsbpq6cvxgpf5l8m26x6mgca"; }) 79 - (fetchNuGet { pname = "Serilog.Sinks.File"; version = "5.0.0-dev-00909"; sha256 = "1rz1zzyamnl8g4ccscaaij2bkhpd4md4sr9k28i0zwvij4kpj22z"; }) 80 - (fetchNuGet { pname = "SkiaSharp"; version = "2.80.2"; sha256 = "17n0f4gfxz69fzd7zmgimbxfja15vq902arap2rqjr1hxp8sck7g"; }) 81 - (fetchNuGet { pname = "SkiaSharp.NativeAssets.Linux"; version = "2.80.2"; sha256 = "1951b7rpisaymb37j846jq01pjd05l4fjlnf56blh33ihxyj2jzi"; }) 79 + (fetchNuGet { pname = "Serilog.Sinks.Debug"; version = "2.0.0"; sha256 = "1i7j870l47gan3gpnnlzkccn5lbm7518cnkp25a3g5gp9l0dbwpw"; }) 80 + (fetchNuGet { pname = "Serilog.Sinks.File"; version = "5.0.0"; sha256 = "097rngmgcrdfy7jy8j7dq3xaq2qky8ijwg0ws6bfv5lx0f3vvb0q"; }) 81 + (fetchNuGet { pname = "SkiaSharp"; version = "2.88.0-preview.178"; sha256 = "062g14s6b2bixanpwihj3asm3jwvfw15mhvzqv6901afrlgzx4nk"; }) 82 + (fetchNuGet { pname = "SkiaSharp.NativeAssets.Linux"; version = "2.88.0-preview.178"; sha256 = "07kga1j51l3l302nvf537zg5clf6rflinjy0xd6i06cmhpkf3ksw"; }) 83 + (fetchNuGet { pname = "SkiaSharp.NativeAssets.macOS"; version = "2.88.0-preview.178"; sha256 = "14p95nxccs6yq4rn2h9zbb60k0232k6349zdpy31jcfr6gc99cgi"; }) 84 + (fetchNuGet { pname = "SkiaSharp.NativeAssets.WebAssembly"; version = "2.88.0-preview.178"; sha256 = "09jmcg5k1vpsal8jfs90mwv0isf2y5wq3h4hd77rv6vffn5ic4sm"; }) 85 + (fetchNuGet { pname = "SkiaSharp.NativeAssets.Win32"; version = "2.88.0-preview.178"; sha256 = "0ficil702lv3fvwpngbqh5l85i05l5jafzyh4jprzshr2qbnd8nl"; }) 82 86 (fetchNuGet { pname = "Splat"; version = "10.0.1"; sha256 = "18fzrn7xwjzxj4v3drs8djd3yf14bnq5n9n8vdnwfa1zk5jqpsb9"; }) 83 - (fetchNuGet { pname = "Splat"; version = "9.6.1"; sha256 = "1sd3gbcv21vwl3spcpmy4d7nzcs0x6m72qj8qfbv4dvgpvbv5sdy"; }) 84 - (fetchNuGet { pname = "System.AppContext"; version = "4.1.0"; sha256 = "0fv3cma1jp4vgj7a8hqc9n7hr1f1kjp541s6z0q1r6nazb4iz9mz"; }) 87 + (fetchNuGet { pname = "Splat"; version = "14.1.17"; sha256 = "1akhj04sbxhhfj6zdlr5c0sh696747b0x46g3ayv4yl15kwq6pz5"; }) 85 88 (fetchNuGet { pname = "System.AppContext"; version = "4.3.0"; sha256 = "1649qvy3dar900z3g817h17nl8jp4ka5vcfmsr05kh0fshn7j3ya"; }) 86 89 (fetchNuGet { pname = "System.Buffers"; version = "4.3.0"; sha256 = "0fgns20ispwrfqll4q1zc1waqcmylb3zc50ys9x8zlwxh9pmd9jy"; }) 87 90 (fetchNuGet { pname = "System.Buffers"; version = "4.5.1"; sha256 = "04kb1mdrlcixj9zh1xdi5as0k0qi8byr5mi3p3jcxx72qz93s2y3"; }) 88 91 (fetchNuGet { pname = "System.Collections"; version = "4.0.11"; sha256 = "1ga40f5lrwldiyw6vy67d0sg7jd7ww6kgwbksm19wrvq9hr0bsm6"; }) 89 92 (fetchNuGet { pname = "System.Collections"; version = "4.3.0"; sha256 = "19r4y64dqyrq6k4706dnyhhw7fs24kpp3awak7whzss39dakpxk9"; }) 90 - (fetchNuGet { pname = "System.Collections.Concurrent"; version = "4.0.12"; sha256 = "07y08kvrzpak873pmyxs129g1ch8l27zmg51pcyj2jvq03n0r0fc"; }) 91 93 (fetchNuGet { pname = "System.Collections.Concurrent"; version = "4.3.0"; sha256 = "0wi10md9aq33jrkh2c24wr2n9hrpyamsdhsxdcnf43b7y86kkii8"; }) 92 94 (fetchNuGet { pname = "System.Collections.Immutable"; version = "5.0.0"; sha256 = "1kvcllagxz2q92g81zkz81djkn2lid25ayjfgjalncyc68i15p0r"; }) 93 - (fetchNuGet { pname = "System.Collections.NonGeneric"; version = "4.0.1"; sha256 = "19994r5y5bpdhj7di6w047apvil8lh06lh2c2yv9zc4fc5g9bl4d"; }) 94 - (fetchNuGet { pname = "System.Collections.Specialized"; version = "4.0.1"; sha256 = "1wbv7y686p5x169rnaim7sln67ivmv6r57falrnx8aap9y33mam9"; }) 95 - (fetchNuGet { pname = "System.ComponentModel"; version = "4.0.1"; sha256 = "0v4qpmqlzyfad2kswxxj2frnaqqhz9201c3yn8fmmarx5vlzg52z"; }) 95 + (fetchNuGet { pname = "System.Collections.NonGeneric"; version = "4.3.0"; sha256 = "07q3k0hf3mrcjzwj8fwk6gv3n51cb513w4mgkfxzm3i37sc9kz7k"; }) 96 + (fetchNuGet { pname = "System.Collections.Specialized"; version = "4.3.0"; sha256 = "1sdwkma4f6j85m3dpb53v9vcgd0zyc9jb33f8g63byvijcj39n20"; }) 97 + (fetchNuGet { pname = "System.ComponentModel"; version = "4.3.0"; sha256 = "0986b10ww3nshy30x9sjyzm0jx339dkjxjj3401r3q0f6fx2wkcb"; }) 96 98 (fetchNuGet { pname = "System.ComponentModel.Annotations"; version = "4.5.0"; sha256 = "1jj6f6g87k0iwsgmg3xmnn67a14mq88np0l1ys5zkxhkvbc8976p"; }) 97 99 (fetchNuGet { pname = "System.ComponentModel.Annotations"; version = "5.0.0"; sha256 = "021h7x98lblq9avm1bgpa4i31c2kgsa7zn4sqhxf39g087ar756j"; }) 98 - (fetchNuGet { pname = "System.ComponentModel.Primitives"; version = "4.1.0"; sha256 = "0wb5mnaag0w4fnyc40x19j8v2vshxp266razw64bcqfyj1whb1q0"; }) 99 - (fetchNuGet { pname = "System.ComponentModel.TypeConverter"; version = "4.1.0"; sha256 = "178cva9p1cs043h5n2fry5xkzr3wc9n0hwbxa8m3ymld9m6wcv0y"; }) 100 - (fetchNuGet { pname = "System.Console"; version = "4.0.0"; sha256 = "0ynxqbc3z1nwbrc11hkkpw9skw116z4y9wjzn7id49p9yi7mzmlf"; }) 100 + (fetchNuGet { pname = "System.ComponentModel.Primitives"; version = "4.3.0"; sha256 = "1svfmcmgs0w0z9xdw2f2ps05rdxmkxxhf0l17xk9l1l8xfahkqr0"; }) 101 + (fetchNuGet { pname = "System.ComponentModel.TypeConverter"; version = "4.3.0"; sha256 = "17ng0p7v3nbrg3kycz10aqrrlw4lz9hzhws09pfh8gkwicyy481x"; }) 101 102 (fetchNuGet { pname = "System.Console"; version = "4.3.0"; sha256 = "1flr7a9x920mr5cjsqmsy9wgnv3lvd0h1g521pdr1lkb2qycy7ay"; }) 102 103 (fetchNuGet { pname = "System.Diagnostics.Debug"; version = "4.0.11"; sha256 = "0gmjghrqmlgzxivd2xl50ncbglb7ljzb66rlx8ws6dv8jm0d5siz"; }) 103 104 (fetchNuGet { pname = "System.Diagnostics.Debug"; version = "4.3.0"; sha256 = "00yjlf19wjydyr6cfviaph3vsjzg3d5nvnya26i2fvfg53sknh3y"; }) 104 105 (fetchNuGet { pname = "System.Diagnostics.DiagnosticSource"; version = "4.3.0"; sha256 = "0z6m3pbiy0qw6rn3n209rrzf9x1k4002zh90vwcrsym09ipm2liq"; }) 105 - (fetchNuGet { pname = "System.Diagnostics.DiagnosticSource"; version = "4.7.1"; sha256 = "1mivaifniyrqwlnvzsfaxzrh2sd981bwzs3cbvs5wi7jjzbcqr4p"; }) 106 - (fetchNuGet { pname = "System.Diagnostics.DiagnosticSource"; version = "5.0.1"; sha256 = "0mzw44wsm87vpslb9sn7rirxynpq9m3b00l7gl0q71m8shfh66qs"; }) 106 + (fetchNuGet { pname = "System.Diagnostics.DiagnosticSource"; version = "6.0.0"; sha256 = "0rrihs9lnb1h6x4h0hn6kgfnh58qq7hx8qq99gh6fayx4dcnx3s5"; }) 107 107 (fetchNuGet { pname = "System.Diagnostics.Tools"; version = "4.0.1"; sha256 = "19cknvg07yhakcvpxg3cxa0bwadplin6kyxd8mpjjpwnp56nl85x"; }) 108 108 (fetchNuGet { pname = "System.Diagnostics.Tools"; version = "4.3.0"; sha256 = "0in3pic3s2ddyibi8cvgl102zmvp9r9mchh82ns9f0ms4basylw1"; }) 109 - (fetchNuGet { pname = "System.Diagnostics.TraceSource"; version = "4.0.0"; sha256 = "1mc7r72xznczzf6mz62dm8xhdi14if1h8qgx353xvhz89qyxsa3h"; }) 110 - (fetchNuGet { pname = "System.Diagnostics.Tracing"; version = "4.1.0"; sha256 = "1d2r76v1x610x61ahfpigda89gd13qydz6vbwzhpqlyvq8jj6394"; }) 109 + (fetchNuGet { pname = "System.Diagnostics.TraceSource"; version = "4.3.0"; sha256 = "1kyw4d7dpjczhw6634nrmg7yyyzq72k75x38y0l0nwhigdlp1766"; }) 111 110 (fetchNuGet { pname = "System.Diagnostics.Tracing"; version = "4.3.0"; sha256 = "1m3bx6c2s958qligl67q7grkwfz3w53hpy7nc97mh6f7j5k168c4"; }) 112 - (fetchNuGet { pname = "System.Drawing.Common"; version = "5.0.1"; sha256 = "14h722wq58k1wmgxmpws91xc7kh8109ijw0hcxjq9qkbhbi6pwmb"; }) 111 + (fetchNuGet { pname = "System.Drawing.Common"; version = "6.0.0"; sha256 = "02n8rzm58dac2np8b3xw8ychbvylja4nh6938l5k2fhyn40imlgz"; }) 113 112 (fetchNuGet { pname = "System.Dynamic.Runtime"; version = "4.0.11"; sha256 = "1pla2dx8gkidf7xkciig6nifdsb494axjvzvann8g2lp3dbqasm9"; }) 113 + (fetchNuGet { pname = "System.Dynamic.Runtime"; version = "4.3.0"; sha256 = "1d951hrvrpndk7insiag80qxjbf2y0y39y8h5hnq9612ws661glk"; }) 114 114 (fetchNuGet { pname = "System.Globalization"; version = "4.0.11"; sha256 = "070c5jbas2v7smm660zaf1gh0489xanjqymkvafcs4f8cdrs1d5d"; }) 115 115 (fetchNuGet { pname = "System.Globalization"; version = "4.3.0"; sha256 = "1cp68vv683n6ic2zqh2s1fn4c2sd87g5hpp6l4d4nj4536jz98ki"; }) 116 116 (fetchNuGet { pname = "System.Globalization.Calendars"; version = "4.3.0"; sha256 = "1xwl230bkakzzkrggy1l1lxmm3xlhk4bq2pkv790j5lm8g887lxq"; }) 117 - (fetchNuGet { pname = "System.Globalization.Extensions"; version = "4.0.1"; sha256 = "0hjhdb5ri8z9l93bw04s7ynwrjrhx2n0p34sf33a9hl9phz69fyc"; }) 118 117 (fetchNuGet { pname = "System.Globalization.Extensions"; version = "4.3.0"; sha256 = "02a5zfxavhv3jd437bsncbhd2fp1zv4gxzakp1an9l6kdq1mcqls"; }) 119 118 (fetchNuGet { pname = "System.IO"; version = "4.1.0"; sha256 = "1g0yb8p11vfd0kbkyzlfsbsp5z44lwsvyc0h3dpw6vqnbi035ajp"; }) 120 119 (fetchNuGet { pname = "System.IO"; version = "4.3.0"; sha256 = "05l9qdrzhm4s5dixmx68kxwif4l99ll5gqmh7rqgw554fx0agv5f"; }) ··· 128 127 (fetchNuGet { pname = "System.Linq"; version = "4.3.0"; sha256 = "1w0gmba695rbr80l1k2h4mrwzbzsyfl2z4klmpbsvsg5pm4a56s7"; }) 129 128 (fetchNuGet { pname = "System.Linq.Expressions"; version = "4.1.0"; sha256 = "1gpdxl6ip06cnab7n3zlcg6mqp7kknf73s8wjinzi4p0apw82fpg"; }) 130 129 (fetchNuGet { pname = "System.Linq.Expressions"; version = "4.3.0"; sha256 = "0ky2nrcvh70rqq88m9a5yqabsl4fyd17bpr63iy2mbivjs2nyypv"; }) 131 - (fetchNuGet { pname = "System.Linq.Queryable"; version = "4.0.1"; sha256 = "11jn9k34g245yyf260gr3ldzvaqa9477w2c5nhb1p8vjx4xm3qaw"; }) 132 130 (fetchNuGet { pname = "System.Memory"; version = "4.5.3"; sha256 = "0naqahm3wljxb5a911d37mwjqjdxv9l0b49p5dmfyijvni2ppy8a"; }) 133 131 (fetchNuGet { pname = "System.Memory"; version = "4.5.4"; sha256 = "14gbbs22mcxwggn0fcfs1b062521azb9fbb7c113x0mq6dzq9h6y"; }) 134 132 (fetchNuGet { pname = "System.Net.Http"; version = "4.3.0"; sha256 = "1i4gc757xqrzflbk7kc5ksn20kwwfjhw9w7pgdkn19y3cgnl302j"; }) ··· 162 160 (fetchNuGet { pname = "System.Runtime"; version = "4.3.1"; sha256 = "03ch4d2acf6q037a4njxpll2kkx3dwzlg07yxr4z5m6j1kqgmm27"; }) 163 161 (fetchNuGet { pname = "System.Runtime.CompilerServices.Unsafe"; version = "4.6.0"; sha256 = "0xmzi2gpbmgyfr75p24rqqsba3cmrqgmcv45lsqp5amgrdwd0f0m"; }) 164 162 (fetchNuGet { pname = "System.Runtime.CompilerServices.Unsafe"; version = "5.0.0"; sha256 = "02k25ivn50dmqx5jn8hawwmz24yf0454fjd823qk6lygj9513q4x"; }) 163 + (fetchNuGet { pname = "System.Runtime.CompilerServices.Unsafe"; version = "6.0.0"; sha256 = "0qm741kh4rh57wky16sq4m0v05fxmkjjr87krycf5vp9f0zbahbc"; }) 165 164 (fetchNuGet { pname = "System.Runtime.Extensions"; version = "4.1.0"; sha256 = "0rw4rm4vsm3h3szxp9iijc3ksyviwsv6f63dng3vhqyg4vjdkc2z"; }) 166 165 (fetchNuGet { pname = "System.Runtime.Extensions"; version = "4.3.0"; sha256 = "1ykp3dnhwvm48nap8q23893hagf665k0kn3cbgsqpwzbijdcgc60"; }) 167 166 (fetchNuGet { pname = "System.Runtime.Handles"; version = "4.0.1"; sha256 = "1g0zrdi5508v49pfm3iii2hn6nm00bgvfpjq1zxknfjrxxa20r4g"; }) ··· 182 181 (fetchNuGet { pname = "System.Security.Principal.Windows"; version = "5.0.0"; sha256 = "1mpk7xj76lxgz97a5yg93wi8lj0l8p157a5d50mmjy3gbz1904q8"; }) 183 182 (fetchNuGet { pname = "System.Text.Encoding"; version = "4.0.11"; sha256 = "1dyqv0hijg265dwxg6l7aiv74102d6xjiwplh2ar1ly6xfaa4iiw"; }) 184 183 (fetchNuGet { pname = "System.Text.Encoding"; version = "4.3.0"; sha256 = "1f04lkir4iladpp51sdgmis9dj4y8v08cka0mbmsy0frc9a4gjqr"; }) 185 - (fetchNuGet { pname = "System.Text.Encoding.CodePages"; version = "5.0.0"; sha256 = "1bn2pzaaq4wx9ixirr8151vm5hynn3lmrljcgjx9yghmm4k677k0"; }) 184 + (fetchNuGet { pname = "System.Text.Encoding.CodePages"; version = "6.0.0"; sha256 = "0gm2kiz2ndm9xyzxgi0jhazgwslcs427waxgfa30m7yqll1kcrww"; }) 186 185 (fetchNuGet { pname = "System.Text.Encoding.Extensions"; version = "4.0.11"; sha256 = "08nsfrpiwsg9x5ml4xyl3zyvjfdi4mvbqf93kjdh11j4fwkznizs"; }) 187 186 (fetchNuGet { pname = "System.Text.Encoding.Extensions"; version = "4.3.0"; sha256 = "11q1y8hh5hrp5a3kw25cb6l00v5l5dvirkz8jr3sq00h1xgcgrxy"; }) 188 187 (fetchNuGet { pname = "System.Text.RegularExpressions"; version = "4.1.0"; sha256 = "1mw7vfkkyd04yn2fbhm38msk7dz2xwvib14ygjsb8dq2lcvr18y7"; }) ··· 200 199 (fetchNuGet { pname = "System.Xml.ReaderWriter"; version = "4.3.0"; sha256 = "0c47yllxifzmh8gq6rq6l36zzvw4kjvlszkqa9wq3fr59n0hl3s1"; }) 201 200 (fetchNuGet { pname = "System.Xml.XDocument"; version = "4.0.11"; sha256 = "0n4lvpqzy9kc7qy1a4acwwd7b7pnvygv895az5640idl2y9zbz18"; }) 202 201 (fetchNuGet { pname = "System.Xml.XDocument"; version = "4.3.0"; sha256 = "08h8fm4l77n0nd4i4fk2386y809bfbwqb7ih9d7564ifcxr5ssxd"; }) 203 - (fetchNuGet { pname = "System.Xml.XmlDocument"; version = "4.0.1"; sha256 = "0ihsnkvyc76r4dcky7v3ansnbyqjzkbyyia0ir5zvqirzan0bnl1"; }) 204 - (fetchNuGet { pname = "System.Xml.XmlSerializer"; version = "4.0.11"; sha256 = "01nzc3gdslw90qfykq4qzr2mdnqxjl4sj0wp3fixiwdmlmvpib5z"; }) 205 - (fetchNuGet { pname = "ThemeEditor.Controls.ColorPicker"; version = "0.10.0"; sha256 = "0sib6cf2xkss48rm3shbwr57rbzz7d2zq0fvjp0hwsa1mb985p2b"; }) 206 - (fetchNuGet { pname = "Tmds.DBus"; version = "0.9.1"; sha256 = "095vinsbb9pbphbhh7x7rxvs8a3b9w1nnz7gxn9bw5is01qnhgdm"; }) 202 + (fetchNuGet { pname = "System.Xml.XmlDocument"; version = "4.3.0"; sha256 = "0bmz1l06dihx52jxjr22dyv5mxv6pj4852lx68grjm7bivhrbfwi"; }) 203 + (fetchNuGet { pname = "ThemeEditor.Controls.ColorPicker"; version = "0.10.12"; sha256 = "17kh28fkywqmz5yams8wzr50ihkv52y24gk8bz9fxl6kfzmgk0ky"; }) 204 + (fetchNuGet { pname = "Tmds.DBus"; version = "0.10.1"; sha256 = "1wafa009cjj1rziias2n00ap0g8kdg2iig5sjlrxj2kld24lgbli"; }) 207 205 (fetchNuGet { pname = "WebSocketSharp-netstandard"; version = "1.0.1"; sha256 = "0q89wiqpli72333zsa04d1vzq9xj0583hn5mih9sdd84myksz5b0"; }) 208 206 (fetchNuGet { pname = "xunit"; version = "2.4.1"; sha256 = "0xf3kaywpg15flqaqfgywqyychzk15kz0kz34j21rcv78q9ywq20"; }) 209 207 (fetchNuGet { pname = "xunit.abstractions"; version = "2.0.3"; sha256 = "00wl8qksgkxld76fgir3ycc5rjqv1sqds6x8yx40927q5py74gfh"; })
+14
pkgs/tools/games/opentracker/remove-project.patch
··· 1 + diff --git a/OpenTracker.sln b/OpenTracker.sln 2 + index 0a8c438..77124e1 100644 3 + --- a/OpenTracker.sln 4 + +++ b/OpenTracker.sln 5 + @@ -4,9 +4,6 @@ Microsoft Visual Studio Solution File, Format Version 12.00 6 + VisualStudioVersion = 16.0.29806.167 7 + MinimumVisualStudioVersion = 10.0.40219.1 8 + Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "OpenTracker", "OpenTracker\OpenTracker.csproj", "{9D32A24F-7FF0-4632-B663-5AD2D64A6C87}" 9 + - ProjectSection(ProjectDependencies) = postProject 10 + - {732A9A56-32B4-4149-B3A5-F2A4F48293D3} = {732A9A56-32B4-4149-B3A5-F2A4F48293D3} 11 + - EndProjectSection 12 + EndProject 13 + Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "OpenTracker.Models", "OpenTracker.Models\OpenTracker.Models.csproj", "{5DB05A1F-56E3-4035-8898-5CFB22DB3568}" 14 + EndProject
+3 -2
pkgs/tools/graphics/sanjuuni/default.nix
··· 8 8 9 9 stdenv.mkDerivation rec { 10 10 pname = "sanjuuni"; 11 - version = "0.2"; 11 + version = "0.3"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "MCJack123"; 15 15 repo = "sanjuuni"; 16 16 rev = version; 17 - sha256 = "sha256-WWDbPwiU4YD8XCMuqLWEGinpHkq2FNJZsz3GyVqjDHQ="; 17 + sha256 = "sha256-8IbdLXWUtT2VN6Eu1b8x4DnyI8JOd/12t0XDa6o3N+A="; 18 18 }; 19 19 20 20 nativeBuildInputs = [ ··· 37 37 meta = with lib; { 38 38 homepage = "https://github.com/MCJack123/sanjuuni"; 39 39 description = "A command-line tool that converts images and videos into a format that can be displayed in ComputerCraft"; 40 + changelog = "https://github.com/MCJack123/sanjuuni/releases/tag/${version}"; 40 41 maintainers = [ maintainers.tomodachi94 ]; 41 42 license = licenses.gpl2Plus; 42 43 broken = stdenv.isDarwin;
+15 -5
pkgs/tools/misc/locate-dominating-file/default.nix
··· 2 2 , bash 3 3 , fetchFromGitHub 4 4 , lib 5 - , stdenvNoCC 5 + , resholve 6 + , coreutils 6 7 , getopt 7 8 }: 8 9 let 9 10 version = "0.0.1"; 10 11 in 11 - stdenvNoCC.mkDerivation { 12 + resholve.mkDerivation { 12 13 pname = "locate-dominating-file"; 13 14 inherit version; 14 15 src = fetchFromGitHub { ··· 24 25 done 25 26 ''; 26 27 27 - buildInputs = [ getopt ]; 28 - 29 - doCheck = true; 28 + buildInputs = [ getopt coreutils ]; 30 29 31 30 checkInputs = [ (bats.withLibraries (p: [ p.bats-support p.bats-assert ])) ]; 32 31 32 + doCheck = true; 33 + 33 34 checkPhase = '' 34 35 runHook preCheck 35 36 ··· 46 47 47 48 runHook postInstall 48 49 ''; 50 + 51 + solutions.default = { 52 + scripts = [ "bin/locate-dominating-file" ]; 53 + interpreter = "${bash}/bin/bash"; 54 + inputs = [ 55 + coreutils 56 + getopt 57 + ]; 58 + }; 49 59 50 60 meta = with lib; { 51 61 homepage = "https://github.com/roman/locate-dominating-file";
+3 -3
pkgs/tools/misc/ncdu/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "ncdu"; 5 - version = "2.2.1"; 5 + version = "2.2.2"; 6 6 7 7 src = fetchurl { 8 8 url = "https://dev.yorhel.nl/download/${pname}-${version}.tar.gz"; 9 - sha256 = "sha256-Xkr49rzYz3rY/T15ANqxMgdFoEUxAenjdPmnf3Ku0UE="; 9 + hash = "sha256-kNkgAk51Ixi0aXds5X4Ds8cC1JMprZglruqzbDur+ZM="; 10 10 }; 11 11 12 12 XDG_CACHE_HOME="Cache"; # FIXME This should be set in stdenv ··· 27 27 homepage = "https://dev.yorhel.nl/ncdu"; 28 28 license = licenses.mit; 29 29 platforms = platforms.all; 30 - maintainers = with maintainers; [ pSub SuperSandro2000 ]; 30 + maintainers = with maintainers; [ pSub SuperSandro2000 rodrgz ]; 31 31 }; 32 32 }
+2 -2
pkgs/tools/networking/gobgp/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "gobgp"; 5 - version = "3.10.0"; 5 + version = "3.11.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "osrg"; 9 9 repo = "gobgp"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-aVvzbWMh/r1k3AKDHipWkwEevYPj8Xfix8PfIMYXiTM="; 11 + sha256 = "sha256-UGRGJqeVWrt8NVf9d5Mk7k+k2Is/fwHv2X0hmyXvTZs="; 12 12 }; 13 13 14 14 vendorHash = "sha256-9Vi8qrcFC2SazcGVgAf1vbKvxd8rTMgye63wSCaFonk=";
+2 -2
pkgs/tools/security/doppler/default.nix
··· 8 8 9 9 buildGoModule rec { 10 10 pname = "doppler"; 11 - version = "3.53.0"; 11 + version = "3.53.1"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "dopplerhq"; 15 15 repo = "cli"; 16 16 rev = version; 17 - sha256 = "sha256-Z6GQQYvf+qXunrazNR0a7nCBx84JLtHWeK2+WV1RuwU="; 17 + sha256 = "sha256-ZgXUnHYaWRBjAW/k74o93SIJJbcI3zlw5GmwXE6Ri8U="; 18 18 }; 19 19 20 20 vendorHash = "sha256-TwcEH+LD0E/JcptMCYb3UycO3HhZX3igzSlBW4hS784=";
+10 -7
pkgs/tools/security/pcsctools/default.nix
··· 1 1 { stdenv 2 2 , lib 3 - , fetchurl 3 + , fetchFromGitHub 4 + , autoreconfHook 4 5 , makeWrapper 5 6 , pkg-config 6 7 , systemd ··· 13 14 14 15 stdenv.mkDerivation rec { 15 16 pname = "pcsc-tools"; 16 - version = "1.6.0"; 17 + version = "1.6.2"; 17 18 18 - src = fetchurl { 19 - url = "http://ludovic.rousseau.free.fr/softwares/pcsc-tools/${pname}-${version}.tar.bz2"; 20 - sha256 = "sha256-ZRyN10vLM9tMFpNc5dgN0apusgup1cS5YxoJgybvi58="; 19 + src = fetchFromGitHub { 20 + owner = "LudovicRousseau"; 21 + repo = pname; 22 + rev = version; 23 + sha256 = "sha256-c7md8m1llvz0EQqA0qY4aGb3guGFoj+8uS4hUTzie5o="; 21 24 }; 22 25 23 26 postPatch = '' ··· 29 32 buildInputs = [ dbus perlPackages.perl pcsclite ] 30 33 ++ lib.optional stdenv.isLinux systemd; 31 34 32 - nativeBuildInputs = [ makeWrapper pkg-config ]; 35 + nativeBuildInputs = [ autoreconfHook makeWrapper pkg-config ]; 33 36 34 37 postInstall = '' 35 38 wrapProgram $out/bin/scriptor \ ··· 46 49 47 50 meta = with lib; { 48 51 description = "Tools used to test a PC/SC driver, card or reader"; 49 - homepage = "http://ludovic.rousseau.free.fr/softwares/pcsc-tools/"; 52 + homepage = "https://pcsc-tools.apdu.fr/"; 50 53 license = licenses.gpl2Plus; 51 54 maintainers = with maintainers; [ peterhoeg ]; 52 55 platforms = platforms.linux;
+3 -3
pkgs/tools/security/tracee/default.nix
··· 19 19 in 20 20 buildGoModule rec { 21 21 pname = "tracee"; 22 - version = "0.10.0"; 22 + version = "0.11.0"; 23 23 24 24 src = fetchFromGitHub { 25 25 owner = "aquasecurity"; 26 26 repo = pname; 27 27 rev = "v${version}"; 28 - sha256 = "sha256-TSzvuPE4to6aN52fmcwC6mVBOWUFQSyWHDgNs8emPq4="; 28 + sha256 = "sha256-fAbii/DEXx9WJpolc7amqF9TQj4oE5x0TCiNOtVasGo="; 29 29 }; 30 - vendorSha256 = "sha256-HGJ7Gtug+nSg+mAQH4jcNkeikWQW10cgAIoAqeAf9r4="; 30 + vendorSha256 = "sha256-eenhIsiJhPLgwJo2spIGURPkcsec3kO4L5UJ0FWniQc="; 31 31 32 32 patches = [ 33 33 ./use-our-libbpf.patch
+347
pkgs/tools/system/zram-generator/Cargo.lock
··· 1 + # This file is automatically @generated by Cargo. 2 + # It is not intended for manual editing. 3 + version = 3 4 + 5 + [[package]] 6 + name = "ahash" 7 + version = "0.4.7" 8 + source = "registry+https://github.com/rust-lang/crates.io-index" 9 + checksum = "739f4a8db6605981345c5654f3a85b056ce52f37a39d34da03f25bf2151ea16e" 10 + 11 + [[package]] 12 + name = "anyhow" 13 + version = "1.0.68" 14 + source = "registry+https://github.com/rust-lang/crates.io-index" 15 + checksum = "2cb2f989d18dd141ab8ae82f64d1a8cdd37e0840f73a406896cf5e99502fab61" 16 + 17 + [[package]] 18 + name = "autocfg" 19 + version = "1.1.0" 20 + source = "registry+https://github.com/rust-lang/crates.io-index" 21 + checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 22 + 23 + [[package]] 24 + name = "bitflags" 25 + version = "1.3.2" 26 + source = "registry+https://github.com/rust-lang/crates.io-index" 27 + checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 28 + 29 + [[package]] 30 + name = "cc" 31 + version = "1.0.79" 32 + source = "registry+https://github.com/rust-lang/crates.io-index" 33 + checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f" 34 + 35 + [[package]] 36 + name = "cfg-if" 37 + version = "1.0.0" 38 + source = "registry+https://github.com/rust-lang/crates.io-index" 39 + checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 40 + 41 + [[package]] 42 + name = "clap" 43 + version = "2.34.0" 44 + source = "registry+https://github.com/rust-lang/crates.io-index" 45 + checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c" 46 + dependencies = [ 47 + "bitflags", 48 + "textwrap", 49 + "unicode-width", 50 + ] 51 + 52 + [[package]] 53 + name = "ctor" 54 + version = "0.1.26" 55 + source = "registry+https://github.com/rust-lang/crates.io-index" 56 + checksum = "6d2301688392eb071b0bf1a37be05c469d3cc4dbbd95df672fe28ab021e6a096" 57 + dependencies = [ 58 + "quote", 59 + "syn", 60 + ] 61 + 62 + [[package]] 63 + name = "dlv-list" 64 + version = "0.2.3" 65 + source = "registry+https://github.com/rust-lang/crates.io-index" 66 + checksum = "68df3f2b690c1b86e65ef7830956aededf3cb0a16f898f79b9a6f421a7b6211b" 67 + dependencies = [ 68 + "rand", 69 + ] 70 + 71 + [[package]] 72 + name = "fasteval" 73 + version = "0.2.4" 74 + source = "registry+https://github.com/rust-lang/crates.io-index" 75 + checksum = "4f4cdac9e4065d7c48e30770f8665b8cef9a3a73a63a4056a33a5f395bc7cf75" 76 + 77 + [[package]] 78 + name = "fastrand" 79 + version = "1.8.0" 80 + source = "registry+https://github.com/rust-lang/crates.io-index" 81 + checksum = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499" 82 + dependencies = [ 83 + "instant", 84 + ] 85 + 86 + [[package]] 87 + name = "fs_extra" 88 + version = "1.2.0" 89 + source = "registry+https://github.com/rust-lang/crates.io-index" 90 + checksum = "2022715d62ab30faffd124d40b76f4134a550a87792276512b18d63272333394" 91 + 92 + [[package]] 93 + name = "getrandom" 94 + version = "0.2.8" 95 + source = "registry+https://github.com/rust-lang/crates.io-index" 96 + checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31" 97 + dependencies = [ 98 + "cfg-if", 99 + "libc", 100 + "wasi", 101 + ] 102 + 103 + [[package]] 104 + name = "hashbrown" 105 + version = "0.9.1" 106 + source = "registry+https://github.com/rust-lang/crates.io-index" 107 + checksum = "d7afe4a420e3fe79967a00898cc1f4db7c8a49a9333a29f8a4bd76a253d5cd04" 108 + dependencies = [ 109 + "ahash", 110 + ] 111 + 112 + [[package]] 113 + name = "instant" 114 + version = "0.1.12" 115 + source = "registry+https://github.com/rust-lang/crates.io-index" 116 + checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 117 + dependencies = [ 118 + "cfg-if", 119 + ] 120 + 121 + [[package]] 122 + name = "libc" 123 + version = "0.2.139" 124 + source = "registry+https://github.com/rust-lang/crates.io-index" 125 + checksum = "201de327520df007757c1f0adce6e827fe8562fbc28bfd9c15571c66ca1f5f79" 126 + 127 + [[package]] 128 + name = "liboverdrop" 129 + version = "0.0.2" 130 + source = "registry+https://github.com/rust-lang/crates.io-index" 131 + checksum = "3a8bcc76c5aad4677420857a8744ec8aef80b1b21c5501e2f8c7ac3fda2e19ba" 132 + dependencies = [ 133 + "log", 134 + ] 135 + 136 + [[package]] 137 + name = "log" 138 + version = "0.4.17" 139 + source = "registry+https://github.com/rust-lang/crates.io-index" 140 + checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" 141 + dependencies = [ 142 + "cfg-if", 143 + ] 144 + 145 + [[package]] 146 + name = "memoffset" 147 + version = "0.6.5" 148 + source = "registry+https://github.com/rust-lang/crates.io-index" 149 + checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce" 150 + dependencies = [ 151 + "autocfg", 152 + ] 153 + 154 + [[package]] 155 + name = "nix" 156 + version = "0.23.2" 157 + source = "registry+https://github.com/rust-lang/crates.io-index" 158 + checksum = "8f3790c00a0150112de0f4cd161e3d7fc4b2d8a5542ffc35f099a2562aecb35c" 159 + dependencies = [ 160 + "bitflags", 161 + "cc", 162 + "cfg-if", 163 + "libc", 164 + "memoffset", 165 + ] 166 + 167 + [[package]] 168 + name = "ordered-multimap" 169 + version = "0.3.1" 170 + source = "registry+https://github.com/rust-lang/crates.io-index" 171 + checksum = "1c672c7ad9ec066e428c00eb917124a06f08db19e2584de982cc34b1f4c12485" 172 + dependencies = [ 173 + "dlv-list", 174 + "hashbrown", 175 + ] 176 + 177 + [[package]] 178 + name = "ppv-lite86" 179 + version = "0.2.17" 180 + source = "registry+https://github.com/rust-lang/crates.io-index" 181 + checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" 182 + 183 + [[package]] 184 + name = "proc-macro2" 185 + version = "1.0.50" 186 + source = "registry+https://github.com/rust-lang/crates.io-index" 187 + checksum = "6ef7d57beacfaf2d8aee5937dab7b7f28de3cb8b1828479bb5de2a7106f2bae2" 188 + dependencies = [ 189 + "unicode-ident", 190 + ] 191 + 192 + [[package]] 193 + name = "quote" 194 + version = "1.0.23" 195 + source = "registry+https://github.com/rust-lang/crates.io-index" 196 + checksum = "8856d8364d252a14d474036ea1358d63c9e6965c8e5c1885c18f73d70bff9c7b" 197 + dependencies = [ 198 + "proc-macro2", 199 + ] 200 + 201 + [[package]] 202 + name = "rand" 203 + version = "0.8.5" 204 + source = "registry+https://github.com/rust-lang/crates.io-index" 205 + checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 206 + dependencies = [ 207 + "libc", 208 + "rand_chacha", 209 + "rand_core", 210 + ] 211 + 212 + [[package]] 213 + name = "rand_chacha" 214 + version = "0.3.1" 215 + source = "registry+https://github.com/rust-lang/crates.io-index" 216 + checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 217 + dependencies = [ 218 + "ppv-lite86", 219 + "rand_core", 220 + ] 221 + 222 + [[package]] 223 + name = "rand_core" 224 + version = "0.6.4" 225 + source = "registry+https://github.com/rust-lang/crates.io-index" 226 + checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 227 + dependencies = [ 228 + "getrandom", 229 + ] 230 + 231 + [[package]] 232 + name = "redox_syscall" 233 + version = "0.2.16" 234 + source = "registry+https://github.com/rust-lang/crates.io-index" 235 + checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 236 + dependencies = [ 237 + "bitflags", 238 + ] 239 + 240 + [[package]] 241 + name = "remove_dir_all" 242 + version = "0.5.3" 243 + source = "registry+https://github.com/rust-lang/crates.io-index" 244 + checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7" 245 + dependencies = [ 246 + "winapi", 247 + ] 248 + 249 + [[package]] 250 + name = "rust-ini" 251 + version = "0.17.0" 252 + source = "registry+https://github.com/rust-lang/crates.io-index" 253 + checksum = "63471c4aa97a1cf8332a5f97709a79a4234698de6a1f5087faf66f2dae810e22" 254 + dependencies = [ 255 + "cfg-if", 256 + "ordered-multimap", 257 + ] 258 + 259 + [[package]] 260 + name = "syn" 261 + version = "1.0.107" 262 + source = "registry+https://github.com/rust-lang/crates.io-index" 263 + checksum = "1f4064b5b16e03ae50984a5a8ed5d4f8803e6bc1fd170a3cda91a1be4b18e3f5" 264 + dependencies = [ 265 + "proc-macro2", 266 + "quote", 267 + "unicode-ident", 268 + ] 269 + 270 + [[package]] 271 + name = "tempfile" 272 + version = "3.3.0" 273 + source = "registry+https://github.com/rust-lang/crates.io-index" 274 + checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4" 275 + dependencies = [ 276 + "cfg-if", 277 + "fastrand", 278 + "libc", 279 + "redox_syscall", 280 + "remove_dir_all", 281 + "winapi", 282 + ] 283 + 284 + [[package]] 285 + name = "textwrap" 286 + version = "0.11.0" 287 + source = "registry+https://github.com/rust-lang/crates.io-index" 288 + checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060" 289 + dependencies = [ 290 + "unicode-width", 291 + ] 292 + 293 + [[package]] 294 + name = "unicode-ident" 295 + version = "1.0.6" 296 + source = "registry+https://github.com/rust-lang/crates.io-index" 297 + checksum = "84a22b9f218b40614adcb3f4ff08b703773ad44fa9423e4e0d346d5db86e4ebc" 298 + 299 + [[package]] 300 + name = "unicode-width" 301 + version = "0.1.10" 302 + source = "registry+https://github.com/rust-lang/crates.io-index" 303 + checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b" 304 + 305 + [[package]] 306 + name = "wasi" 307 + version = "0.11.0+wasi-snapshot-preview1" 308 + source = "registry+https://github.com/rust-lang/crates.io-index" 309 + checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 310 + 311 + [[package]] 312 + name = "winapi" 313 + version = "0.3.9" 314 + source = "registry+https://github.com/rust-lang/crates.io-index" 315 + checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 316 + dependencies = [ 317 + "winapi-i686-pc-windows-gnu", 318 + "winapi-x86_64-pc-windows-gnu", 319 + ] 320 + 321 + [[package]] 322 + name = "winapi-i686-pc-windows-gnu" 323 + version = "0.4.0" 324 + source = "registry+https://github.com/rust-lang/crates.io-index" 325 + checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 326 + 327 + [[package]] 328 + name = "winapi-x86_64-pc-windows-gnu" 329 + version = "0.4.0" 330 + source = "registry+https://github.com/rust-lang/crates.io-index" 331 + checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 332 + 333 + [[package]] 334 + name = "zram-generator" 335 + version = "1.1.2" 336 + dependencies = [ 337 + "anyhow", 338 + "clap", 339 + "ctor", 340 + "fasteval", 341 + "fs_extra", 342 + "liboverdrop", 343 + "log", 344 + "nix", 345 + "rust-ini", 346 + "tempfile", 347 + ]
+67
pkgs/tools/system/zram-generator/default.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , rustPlatform 5 + , pkg-config 6 + , ronn 7 + , systemd 8 + , kmod 9 + , nixosTests 10 + }: 11 + 12 + stdenv.mkDerivation rec { 13 + pname = "zram-generator"; 14 + version = "1.1.2"; 15 + 16 + src = fetchFromGitHub { 17 + owner = "systemd"; 18 + repo = pname; 19 + rev = "v${version}"; 20 + hash = "sha256-n+ZOWU+sPq9DcHgzQWTxxfMmiz239qdetXypqdy33cM="; 21 + }; 22 + 23 + cargoDeps = rustPlatform.importCargoLock { 24 + lockFile = ./Cargo.lock; 25 + }; 26 + 27 + # RFE: Include Cargo.lock in sources 28 + # https://github.com/systemd/zram-generator/issues/65 29 + postPatch = '' 30 + cp ${./Cargo.lock} Cargo.lock 31 + substituteInPlace src/generator.rs \ 32 + --replace 'Command::new("systemd-detect-virt")' 'Command::new("${systemd}/bin/systemd-detect-virt")' \ 33 + --replace 'Command::new("modprobe")' 'Command::new("${kmod}/bin/modprobe")' 34 + ''; 35 + 36 + nativeBuildInputs = with rustPlatform; [ 37 + cargoSetupHook 38 + rust.cargo 39 + rust.rustc 40 + pkg-config 41 + ronn 42 + ]; 43 + 44 + buildInputs = [ 45 + systemd 46 + ]; 47 + 48 + makeFlags = [ 49 + "PREFIX=$(out)" 50 + "SYSTEMD_SYSTEM_UNIT_DIR=$(out)/lib/systemd/system" 51 + "SYSTEMD_SYSTEM_GENERATOR_DIR=$(out)/lib/systemd/system-generators" 52 + ]; 53 + 54 + passthru = { 55 + tests = { 56 + inherit (nixosTests) zram-generator; 57 + }; 58 + updateScript = ./update.sh; 59 + }; 60 + 61 + meta = with lib; { 62 + homepage = "https://github.com/systemd/zram-generator"; 63 + license = licenses.mit; 64 + description = "Systemd unit generator for zram devices"; 65 + maintainers = with maintainers; [ nickcao ]; 66 + }; 67 + }
+15
pkgs/tools/system/zram-generator/update.sh
··· 1 + #! /usr/bin/env nix-shell 2 + #! nix-shell -i bash -p coreutils curl jq common-updater-scripts cargo 3 + # shellcheck shell=bash 4 + 5 + set -euo pipefail 6 + 7 + version=$(curl -s https://api.github.com/repos/systemd/zram-generator/releases/latest | jq -r .tag_name) 8 + update-source-version zram-generator "${version#v}" 9 + 10 + tmp=$(mktemp -d) 11 + trap 'rm -rf -- "${tmp}"' EXIT 12 + 13 + git clone --depth 1 --branch "${version}" https://github.com/systemd/zram-generator.git "${tmp}/zram-generator" 14 + cargo generate-lockfile --manifest-path "${tmp}/zram-generator/Cargo.toml" 15 + cp "${tmp}/zram-generator/Cargo.lock" "$(dirname "$0")/Cargo.lock"
+41
pkgs/tools/text/mdbook-epub/default.nix
··· 1 + { lib 2 + , stdenv 3 + , rustPlatform 4 + , fetchFromGitHub 5 + , pkg-config 6 + , bzip2 7 + , CoreServices 8 + }: 9 + 10 + let 11 + pname = "mdbook-epub"; 12 + version = "unstable-2022-12-25"; 13 + in rustPlatform.buildRustPackage { 14 + inherit pname version; 15 + 16 + src = fetchFromGitHub { 17 + owner = "michael-f-bryan"; 18 + repo = pname; 19 + rev = "2e1e48d0d1a1b4c1b0f866267e6666b41c598225"; 20 + hash = "sha256-wjn/7dv/Z2OmwvH/XaEeCz/JOvJWlMJ60q5qozzOEWY="; 21 + }; 22 + 23 + cargoHash = "sha256-4oSpQUYJDK0srABZMwJ8x8jv6DOnLShXSnjLjf8c9Ac="; 24 + 25 + nativeBuildInputs = [ 26 + pkg-config 27 + ]; 28 + 29 + buildInputs = [ 30 + bzip2 31 + ] ++ lib.optionals stdenv.isDarwin [ 32 + CoreServices 33 + ]; 34 + 35 + meta = with lib; { 36 + description = "mdbook backend for generating an e-book in the EPUB format"; 37 + homepage = "https://michael-f-bryan.github.io/mdbook-epub"; 38 + license = licenses.mpl20; 39 + maintainers = with maintainers; [ yuu ]; 40 + }; 41 + }
+14 -7
pkgs/top-level/all-packages.nix
··· 717 717 718 718 ebook2cw = callPackage ../applications/radio/ebook2cw { }; 719 719 720 + qdmr = libsForQt5.callPackage ../applications/radio/qdmr { }; 721 + 720 722 edwin = callPackage ../data/fonts/edwin { }; 721 723 722 724 etBook = callPackage ../data/fonts/et-book { }; ··· 5406 5408 5407 5409 rex = callPackage ../tools/system/rex { }; 5408 5410 5409 - river = callPackage ../applications/window-managers/river { 5410 - zig = zig_0_9; 5411 - }; 5411 + river = callPackage ../applications/window-managers/river { }; 5412 5412 5413 5413 rivercarro = callPackage ../applications/misc/rivercarro { 5414 5414 zig = zig_0_9; ··· 5791 5791 bukut = callPackage ../applications/misc/bukut { }; 5792 5792 5793 5793 byzanz = callPackage ../applications/video/byzanz {}; 5794 + 5795 + algolia-cli = callPackage ../development/tools/algolia-cli { }; 5794 5796 5795 5797 anydesk = callPackage ../applications/networking/remote/anydesk { }; 5796 5798 ··· 9021 9023 inherit (darwin.apple_sdk.frameworks) CoreServices; 9022 9024 }; 9023 9025 9026 + mdbook-epub = callPackage ../tools/text/mdbook-epub { 9027 + inherit (darwin.apple_sdk.frameworks) CoreServices; 9028 + }; 9029 + 9024 9030 mdbook-cmdrun = callPackage ../tools/text/mdbook-cmdrun { }; 9025 9031 9026 9032 mdbook-graphviz = callPackage ../tools/text/mdbook-graphviz { ··· 15822 15828 inherit (darwin.apple_sdk.frameworks) Security; 15823 15829 }; 15824 15830 cargo-watch = callPackage ../development/tools/rust/cargo-watch { 15825 - inherit (darwin.apple_sdk.frameworks) CoreServices Foundation; 15831 + inherit (darwin.apple_sdk.frameworks) Cocoa CoreServices Foundation; 15826 15832 }; 15827 15833 cargo-wipe = callPackage ../development/tools/rust/cargo-wipe { }; 15828 15834 cargo-workspaces = callPackage ../development/tools/rust/cargo-workspaces { ··· 31748 31754 31749 31755 netcoredbg = callPackage ../development/tools/misc/netcoredbg { }; 31750 31756 31751 - ncdu = callPackage ../tools/misc/ncdu { 31752 - zig = zig_0_9; 31753 - }; 31757 + ncdu = callPackage ../tools/misc/ncdu { }; 31758 + 31754 31759 ncdu_1 = callPackage ../tools/misc/ncdu/1.nix { }; 31755 31760 31756 31761 ncdc = callPackage ../applications/networking/p2p/ncdc { }; ··· 38932 38937 zk = callPackage ../applications/office/zk {}; 38933 38938 38934 38939 zktree = callPackage ../applications/misc/zktree {}; 38940 + 38941 + zram-generator = callPackage ../tools/system/zram-generator { }; 38935 38942 38936 38943 zrythm = callPackage ../applications/audio/zrythm { 38937 38944 inherit (plasma5Packages) breeze-icons;
+2
pkgs/top-level/python-aliases.nix
··· 147 147 protonup = protonup-ng; # Added 2022-11-06 148 148 pur = throw "pur has been renamed to pkgs.pur"; # added 2021-11-08 149 149 pushbullet = pushbullet-py; # Added 2022-10-15 150 + pyalmond = throw "pyalmond has been removed, since its API endpoints have been shutdown"; # added 2023-02-02 150 151 pydrive = throw "pydrive is broken and deprecated and has been replaced with pydrive2."; # added 2022-06-01 151 152 pyGtkGlade = throw "Glade support for pygtk has been removed"; # added 2022-01-15 152 153 pycallgraph = throw "pycallgraph has been removed, it was using setuptools 2to3 translation feature, which has been removed in setuptools 58"; # added 2022-01-18 ··· 213 214 sharkiqpy = sharkiq; # added 2022-05-21 214 215 smart_open = smart-open; # added 2021-03-14 215 216 smmap2 = throw "smmap2 has been deprecated, use smmap instead."; # added 2020-03-14 217 + somecomfort = throw "somecomfort was removed because Home Assistant switched to aiosomecomfort"; # added 2023-02-01 216 218 SPARQLWrapper = sparqlwrapper; 217 219 sphinx_rtd_theme = sphinx-rtd-theme; # added 2022-08-03 218 220 sphinxcontrib_plantuml = sphinxcontrib-plantuml; # added 2021-08-02
+13 -7
pkgs/top-level/python-packages.nix
··· 308 308 309 309 aiorun = callPackage ../development/python-modules/aiorun { }; 310 310 311 + aioruuvigateway = callPackage ../development/python-modules/aioruuvigateway { }; 312 + 311 313 aiorwlock = callPackage ../development/python-modules/aiorwlock { }; 312 314 313 315 aiosenseme = callPackage ../development/python-modules/aiosenseme { }; ··· 331 333 aiosmtpd = callPackage ../development/python-modules/aiosmtpd { }; 332 334 333 335 aiosmtplib = callPackage ../development/python-modules/aiosmtplib { }; 336 + 337 + aiosomecomfort = callPackage ../development/python-modules/aiosomecomfort { }; 334 338 335 339 aiosqlite = callPackage ../development/python-modules/aiosqlite { }; 336 340 ··· 1260 1264 1261 1265 bitbox02 = callPackage ../development/python-modules/bitbox02 { }; 1262 1266 1263 - bitcoinlib = callPackage ../development/python-modules/bitcoinlib { 1264 - openssl = pkgs.openssl_1_1; 1265 - }; 1267 + bitcoinlib = callPackage ../development/python-modules/bitcoinlib { }; 1266 1268 1267 1269 bitcoin-utils-fork-minimal = callPackage ../development/python-modules/bitcoin-utils-fork-minimal { }; 1268 1270 ··· 3066 3068 eradicate = callPackage ../development/python-modules/eradicate { }; 3067 3069 3068 3070 espeak-phonemizer = callPackage ../development/python-modules/espeak-phonemizer { }; 3071 + 3072 + esphome-dashboard-api = callPackage ../development/python-modules/esphome-dashboard-api { }; 3069 3073 3070 3074 esprima = callPackage ../development/python-modules/esprima { }; 3071 3075 ··· 6530 6534 6531 6535 objax = callPackage ../development/python-modules/objax { }; 6532 6536 6537 + objsize = callPackage ../development/python-modules/objsize { }; 6538 + 6533 6539 objgraph = callPackage ../development/python-modules/objgraph { 6534 6540 # requires both the graphviz package and python package 6535 6541 graphvizPkgs = pkgs.graphviz; ··· 7187 7193 7188 7194 pyfreedompro = callPackage ../development/python-modules/pyfreedompro { }; 7189 7195 7196 + pygments-style-github = callPackage ../development/python-modules/pygments-style-github { }; 7197 + 7190 7198 pygti = callPackage ../development/python-modules/pygti { }; 7191 7199 7192 7200 pyheos = callPackage ../development/python-modules/pyheos { }; ··· 7682 7690 pyairvisual = callPackage ../development/python-modules/pyairvisual { }; 7683 7691 7684 7692 pyalgotrade = callPackage ../development/python-modules/pyalgotrade { }; 7685 - 7686 - pyalmond = callPackage ../development/python-modules/pyalmond { }; 7687 7693 7688 7694 pyamg = callPackage ../development/python-modules/pyamg { }; 7689 7695 ··· 10693 10699 10694 10700 somajo = callPackage ../development/python-modules/somajo { }; 10695 10701 10696 - somecomfort = callPackage ../development/python-modules/somecomfort { }; 10697 - 10698 10702 somfy-mylink-synergy = callPackage ../development/python-modules/somfy-mylink-synergy { }; 10699 10703 10700 10704 sonarr = callPackage ../development/python-modules/sonarr { }; ··· 11435 11439 timetagger = callPackage ../development/python-modules/timetagger { }; 11436 11440 11437 11441 timezonefinder = callPackage ../development/python-modules/timezonefinder { }; 11442 + 11443 + timm = callPackage ../development/python-modules/timm { }; 11438 11444 11439 11445 tinycss2 = callPackage ../development/python-modules/tinycss2 { }; 11440 11446