lol

Merge master into haskell-updates

authored by

github-actions[bot] and committed by
GitHub
e66b4dc4 131400c2

+4823 -3477
+17
maintainers/maintainer-list.nix
··· 2986 2986 githubId = 184563; 2987 2987 name = "Bruno Paz"; 2988 2988 }; 2989 + brsvh = { 2990 + email = "bsc@brsvh.org"; 2991 + github = "brsvh"; 2992 + githubId = 63050399; 2993 + keys = [ { fingerprint = "7B74 0DB9 F2AC 6D3B 226B C530 78D7 4502 D92E 0218"; } ]; 2994 + matrix = "@brsvh:mozilla.org"; 2995 + name = "Burgess Chang"; 2996 + }; 2989 2997 bryanasdev000 = { 2990 2998 email = "bryanasdev000@gmail.com"; 2991 2999 matrix = "@bryanasdev000:matrix.org"; ··· 6480 6488 github = "falsifian"; 6481 6489 githubId = 225893; 6482 6490 name = "James Cook"; 6491 + }; 6492 + fangpen = { 6493 + email = "hello@fangpenlin.com"; 6494 + github = "fangpenlin"; 6495 + githubId = 201615; 6496 + name = "Fang-Pen Lin"; 6497 + keys = [{ 6498 + fingerprint = "7130 3454 A7CD 0F0A 941A F9A3 2A26 9964 AD29 2131"; 6499 + }]; 6483 6500 }; 6484 6501 farcaller = { 6485 6502 name = "Vladimir Pouzanov";
+21
nixos/doc/manual/development/settings-options.section.md
··· 146 146 : Outputs the given attribute set as an Elixir map, instead of the 147 147 default Elixir keyword list 148 148 149 + `pkgs.formats.php { finalVariable }` []{#pkgs-formats-php} 150 + 151 + : A function taking an attribute set with values 152 + 153 + `finalVariable` 154 + 155 + : The variable that will store generated expression (usually `config`). If set to `null`, generated expression will contain `return`. 156 + 157 + It returns a set with PHP-Config-specific attributes `type`, `lib`, and 158 + `generate` as specified [below](#pkgs-formats-result). 159 + 160 + The `lib` attribute contains functions to be used in settings, for 161 + generating special PHP values: 162 + 163 + `mkRaw phpCode` 164 + 165 + : Outputs the given string as raw PHP code 166 + 167 + `mkMixedArray list set` 168 + 169 + : Creates PHP array that contains both indexed and associative values. For example, `lib.mkMixedArray [ "hello" "world" ] { "nix" = "is-great"; }` returns `['hello', 'world', 'nix' => 'is-great']` 149 170 150 171 []{#pkgs-formats-result} 151 172 These functions all return an attribute set with these values:
+4
nixos/doc/manual/release-notes/rl-2405.section.md
··· 254 254 255 255 - `unrar` was updated to v7. See [changelog](https://www.rarlab.com/unrar7notes.htm) for more information. 256 256 257 + - `percona-server` now follows [the same two-fold release cycle](https://www.percona.com/blog/lts-and-innovation-releases-for-percona-server-for-mysql/) as Oracle MySQL and provides a *Long-Term-Support (LTS)* in parallel with a continuous-delivery *Innovation* release. `percona-server` defaults to `percona-server_lts`, will be backed by the same release branch throughout the lifetime of this stable NixOS release, and is still available under the versioned attribute `percona-server_8_0`. 258 + The `percona-server_innovation` releases however have support periods shorter than the lifetime of this NixOS release and will continuously be updated to newer Percona releases. Note that Oracle considers the *Innovation* releases to be production-grade, but each release might include backwards-incompatible changes, even in its on-disk format. 259 + The same release scheme is applied to the supporting `percona-xtrabackup` tool as well. 260 + 257 261 - `git-town` was updated from version 11 to 13. See the [changelog](https://github.com/git-town/git-town/blob/main/CHANGELOG.md#1300-2024-03-22) for breaking changes. 258 262 259 263 - `k9s` was updated to v0.31. There have been various breaking changes in the config file format,
+2 -2
nixos/modules/programs/atop.nix
··· 120 120 wantedBy = [ (if type == "services" then "multi-user.target" else if type == "timers" then "timers.target" else null) ]; 121 121 }; 122 122 }; 123 - mkService = lib.mkSystemd "services"; 124 - mkTimer = lib.mkSystemd "timers"; 123 + mkService = mkSystemd "services"; 124 + mkTimer = mkSystemd "timers"; 125 125 in 126 126 { 127 127 packages = [ atop (lib.mkIf cfg.netatop.enable cfg.netatop.package) ];
+1 -1
nixos/modules/programs/firefox.nix
··· 287 287 (_: value: { Value = value; Status = cfg.preferencesStatus; }) 288 288 cfg.preferences); 289 289 ExtensionSettings = builtins.listToAttrs (builtins.map 290 - (lang: builtins.nameValuePair 290 + (lang: lib.attrsets.nameValuePair 291 291 "langpack-${lang}@firefox.mozilla.org" 292 292 { 293 293 installation_mode = "normal_installed";
+15 -3
nixos/modules/programs/virt-manager.nix
··· 2 2 3 3 let 4 4 cfg = config.programs.virt-manager; 5 - in { 5 + in 6 + { 6 7 options.programs.virt-manager = { 7 8 enable = lib.mkEnableOption "virt-manager, an UI for managing virtual machines in libvirt"; 8 9 9 - package = lib.mkPackageOption pkgs "virt-manager" {}; 10 + package = lib.mkPackageOption pkgs "virt-manager" { }; 10 11 }; 11 12 12 13 config = lib.mkIf cfg.enable { 13 14 environment.systemPackages = [ cfg.package ]; 14 - programs.dconf.enable = true; 15 + programs.dconf = { 16 + profiles.user.databases = [ 17 + { 18 + settings = { 19 + "org/virt-manager/virt-manager/connections" = { 20 + autoconnect = [ "qemu:///system" ]; 21 + uris = [ "qemu:///system" ]; 22 + }; 23 + }; 24 + } 25 + ]; 26 + }; 15 27 }; 16 28 }
-1
nixos/modules/services/misc/llama-cpp.nix
··· 92 92 SystemCallFilter = [ 93 93 "@system-service" 94 94 "~@privileged" 95 - "~@resources" 96 95 ]; 97 96 SystemCallErrorNumber = "EPERM"; 98 97 ProtectProc = "invisible";
+8 -1
nixos/modules/services/monitoring/loki.nix
··· 99 99 conf = if cfg.configFile == null 100 100 then prettyJSON cfg.configuration 101 101 else cfg.configFile; 102 + validateConfig = file: 103 + pkgs.runCommand "validate-loki-conf" { 104 + nativeBuildInputs = [ cfg.package ]; 105 + } '' 106 + loki -verify-config -config.file "${file}" 107 + ln -s "${file}" "$out" 108 + ''; 102 109 in 103 110 { 104 - ExecStart = "${cfg.package}/bin/loki --config.file=${conf} ${escapeShellArgs cfg.extraFlags}"; 111 + ExecStart = "${cfg.package}/bin/loki --config.file=${validateConfig conf} ${escapeShellArgs cfg.extraFlags}"; 105 112 User = cfg.user; 106 113 Restart = "always"; 107 114 PrivateTmp = true;
+1 -1
nixos/modules/services/web-apps/nextcloud.nix
··· 797 797 798 798 config = mkIf cfg.enable (mkMerge [ 799 799 { warnings = let 800 - latest = 28; 800 + latest = 29; 801 801 upgradeWarning = major: nixos: 802 802 '' 803 803 A legacy Nextcloud install (from before NixOS ${nixos}) may be installed.
+1 -1
nixos/modules/system/boot/binfmt.nix
··· 280 280 }; 281 281 282 282 config = { 283 - boot.binfmt.registrations = builtins.listToAttrs (map (system: assert system != pkgs.system; { 283 + boot.binfmt.registrations = builtins.listToAttrs (map (system: assert system != pkgs.stdenv.hostPlatform.system; { 284 284 name = system; 285 285 value = { config, ... }: let 286 286 interpreter = getEmulator system;
+2 -2
nixos/modules/virtualisation/lxc-image-metadata.nix
··· 87 87 contents = [ 88 88 { 89 89 source = toYAML "metadata.yaml" { 90 - architecture = builtins.elemAt (builtins.match "^([a-z0-9_]+).+" (toString pkgs.system)) 0; 90 + architecture = builtins.elemAt (builtins.match "^([a-z0-9_]+).+" (toString pkgs.stdenv.hostPlatform.system)) 0; 91 91 creation_date = 1; 92 92 properties = { 93 - description = "${config.system.nixos.distroName} ${config.system.nixos.codeName} ${config.system.nixos.label} ${pkgs.system}"; 93 + description = "${config.system.nixos.distroName} ${config.system.nixos.codeName} ${config.system.nixos.label} ${pkgs.stdenv.hostPlatform.system}"; 94 94 os = "${config.system.nixos.distroId}"; 95 95 release = "${config.system.nixos.codeName}"; 96 96 };
+1 -1
nixos/modules/virtualisation/qemu-vm.nix
··· 912 912 "ppc64-linux" = "tpm-spapr"; 913 913 "armv7-linux" = "tpm-tis-device"; 914 914 "aarch64-linux" = "tpm-tis-device"; 915 - }.${pkgs.hostPlatform.system} or (throw "Unsupported system for TPM2 emulation in QEMU")); 915 + }.${pkgs.stdenv.hostPlatform.system} or (throw "Unsupported system for TPM2 emulation in QEMU")); 916 916 defaultText = '' 917 917 Based on the guest platform Linux system: 918 918
+5 -6
nixos/tests/installer.nix
··· 249 249 with subtest("Check whether nixos-rebuild works"): 250 250 target.succeed("nixos-rebuild switch >&2") 251 251 252 - # FIXME: Nix 2.4 broke nixos-option, someone has to fix it. 253 - # with subtest("Test nixos-option"): 254 - # kernel_modules = target.succeed("nixos-option boot.initrd.kernelModules") 255 - # assert "virtio_console" in kernel_modules 256 - # assert "List of modules" in kernel_modules 257 - # assert "qemu-guest.nix" in kernel_modules 252 + with subtest("Test nixos-option"): 253 + kernel_modules = target.succeed("nixos-option boot.initrd.kernelModules") 254 + assert "virtio_console" in kernel_modules 255 + assert "List of modules" in kernel_modules 256 + assert "qemu-guest.nix" in kernel_modules 258 257 259 258 target.shutdown() 260 259
+49 -46
nixos/tests/mediamtx.nix
··· 1 - import ./make-test-python.nix ({ pkgs, lib, ...} : 1 + import ./make-test-python.nix ( 2 + { pkgs, lib, ... }: 2 3 3 - { 4 - name = "mediamtx"; 5 - meta.maintainers = with lib.maintainers; [ fpletz ]; 4 + { 5 + name = "mediamtx"; 6 + meta.maintainers = with lib.maintainers; [ fpletz ]; 6 7 7 - nodes = { 8 - machine = { config, ... }: { 9 - services.mediamtx = { 10 - enable = true; 11 - settings = { 12 - metrics = true; 13 - paths.all.source = "publisher"; 8 + nodes = { 9 + machine = { 10 + services.mediamtx = { 11 + enable = true; 12 + settings = { 13 + metrics = true; 14 + paths.all.source = "publisher"; 15 + }; 14 16 }; 15 - }; 16 17 17 - systemd.services.rtmp-publish = { 18 - description = "Publish an RTMP stream to mediamtx"; 19 - after = [ "mediamtx.service" ]; 20 - bindsTo = [ "mediamtx.service" ]; 21 - wantedBy = [ "multi-user.target" ]; 22 - serviceConfig = { 23 - DynamicUser = true; 24 - Restart = "on-failure"; 25 - RestartSec = "1s"; 26 - TimeoutStartSec = "10s"; 27 - ExecStart = "${lib.getBin pkgs.ffmpeg-headless}/bin/ffmpeg -re -f lavfi -i smptebars=size=800x600:rate=10 -c libx264 -f flv rtmp://localhost:1935/test"; 18 + systemd.services.rtmp-publish = { 19 + description = "Publish an RTMP stream to mediamtx"; 20 + after = [ "mediamtx.service" ]; 21 + bindsTo = [ "mediamtx.service" ]; 22 + wantedBy = [ "multi-user.target" ]; 23 + serviceConfig = { 24 + DynamicUser = true; 25 + Restart = "on-failure"; 26 + RestartSec = "1s"; 27 + TimeoutStartSec = "10s"; 28 + ExecStart = "${lib.getBin pkgs.ffmpeg-headless}/bin/ffmpeg -re -f lavfi -i smptebars=size=800x600:rate=10 -c libx264 -f flv rtmp://localhost:1935/test"; 29 + }; 28 30 }; 29 - }; 30 31 31 - systemd.services.rtmp-receive = { 32 - description = "Receive an RTMP stream from mediamtx"; 33 - after = [ "rtmp-publish.service" ]; 34 - bindsTo = [ "rtmp-publish.service" ]; 35 - wantedBy = [ "multi-user.target" ]; 36 - serviceConfig = { 37 - DynamicUser = true; 38 - Restart = "on-failure"; 39 - RestartSec = "1s"; 40 - TimeoutStartSec = "10s"; 41 - ExecStart = "${lib.getBin pkgs.ffmpeg-headless}/bin/ffmpeg -y -re -i rtmp://localhost:1935/test -f flv /dev/null"; 32 + systemd.services.rtmp-receive = { 33 + description = "Receive an RTMP stream from mediamtx"; 34 + after = [ "rtmp-publish.service" ]; 35 + bindsTo = [ "rtmp-publish.service" ]; 36 + wantedBy = [ "multi-user.target" ]; 37 + serviceConfig = { 38 + DynamicUser = true; 39 + Restart = "on-failure"; 40 + RestartSec = "1s"; 41 + TimeoutStartSec = "10s"; 42 + ExecStart = "${lib.getBin pkgs.ffmpeg-headless}/bin/ffmpeg -y -re -i rtmp://localhost:1935/test -f flv /dev/null"; 43 + }; 42 44 }; 43 45 }; 44 46 }; 45 - }; 46 47 47 - testScript = '' 48 - start_all() 48 + testScript = '' 49 + start_all() 49 50 50 - machine.wait_for_unit("mediamtx.service") 51 - machine.wait_for_unit("rtmp-publish.service") 52 - machine.wait_for_unit("rtmp-receive.service") 53 - machine.wait_for_open_port(9998) 54 - machine.succeed("curl http://localhost:9998/metrics | grep '^rtmp_conns.*state=\"publish\".*1$'") 55 - machine.succeed("curl http://localhost:9998/metrics | grep '^rtmp_conns.*state=\"read\".*1$'") 56 - ''; 57 - }) 51 + machine.wait_for_unit("mediamtx.service") 52 + machine.wait_for_unit("rtmp-publish.service") 53 + machine.sleep(10) 54 + machine.wait_for_unit("rtmp-receive.service") 55 + machine.wait_for_open_port(9998) 56 + machine.succeed("curl http://localhost:9998/metrics | grep '^rtmp_conns.*state=\"publish\".*1$'") 57 + machine.succeed("curl http://localhost:9998/metrics | grep '^rtmp_conns.*state=\"read\".*1$'") 58 + ''; 59 + } 60 + )
+1 -1
nixos/tests/mysql/common.nix
··· 4 4 inherit (pkgs) mysql80; 5 5 }; 6 6 perconaPackages = { 7 - inherit (pkgs) percona-server_8_0; 7 + inherit (pkgs) percona-server_lts percona-server_innovation; 8 8 }; 9 9 mkTestName = pkg: "mariadb_${builtins.replaceStrings ["."] [""] (lib.versions.majorMinor pkg.version)}"; 10 10 }
+1 -1
nixos/tests/mysql/mysql.nix
··· 146 146 }) mariadbPackages) 147 147 // (lib.mapAttrs (_: package: makeMySQLTest { 148 148 inherit package; 149 - name = "percona_8_0"; 149 + name = builtins.replaceStrings ["-"] ["_"] package.pname; 150 150 hasMroonga = false; useSocketAuth = false; 151 151 }) perconaPackages)
+2 -2
nixos/tests/stub-ld.nix
··· 45 45 ${if32 "machine.succeed('test -L /${libDir32}/${ldsoBasename32}')"} 46 46 47 47 with subtest("Try FHS executable"): 48 - machine.copy_from_host('${test-exec.${pkgs.system}}','test-exec') 48 + machine.copy_from_host('${test-exec.${pkgs.stdenv.hostPlatform.system}}','test-exec') 49 49 machine.succeed('if test-exec/${exec-name} 2>outfile; then false; else [ $? -eq 127 ];fi') 50 50 machine.succeed('grep -qi nixos outfile') 51 - ${if32 "machine.copy_from_host('${test-exec.${pkgs32.system}}','test-exec32')"} 51 + ${if32 "machine.copy_from_host('${test-exec.${pkgs32.stdenv.hostPlatform.system}}','test-exec32')"} 52 52 ${if32 "machine.succeed('if test-exec32/${exec-name} 2>outfile32; then false; else [ $? -eq 127 ];fi')"} 53 53 ${if32 "machine.succeed('grep -qi nixos outfile32')"} 54 54
+2 -2
pkgs/applications/audio/ft2-clone/default.nix
··· 13 13 14 14 stdenv.mkDerivation rec { 15 15 pname = "ft2-clone"; 16 - version = "1.83"; 16 + version = "1.84"; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "8bitbubsy"; 20 20 repo = "ft2-clone"; 21 21 rev = "v${version}"; 22 - hash = "sha256-JMHLB/a86rfxTxl3GXU+lhYtliR8WOAzWilbWei0K2A="; 22 + hash = "sha256-RPrNpm+0N//CpVtG6cJD+m+0G6ca75hZwdEdHsGadEg="; 23 23 }; 24 24 25 25 nativeBuildInputs = [ cmake ];
+2 -2
pkgs/applications/audio/jacktrip/default.nix
··· 11 11 }: 12 12 13 13 stdenv.mkDerivation rec { 14 - version = "2.2.5"; 14 + version = "2.3.0"; 15 15 pname = "jacktrip"; 16 16 17 17 src = fetchFromGitHub { ··· 19 19 repo = "jacktrip"; 20 20 rev = "v${version}"; 21 21 fetchSubmodules = true; 22 - sha256 = "sha256-rZ8oaud+ovJ7t+SGnWe7QbqjQns1EkbbwpdE+rLr6nc="; 22 + sha256 = "sha256-MUP+8Hjrj95D5SONIEsweB5j+kgEhLEWTKWBlEWLt94="; 23 23 }; 24 24 25 25 preConfigure = ''
+1 -1
pkgs/applications/audio/keyfinder-cli/default.nix
··· 26 26 used to estimate the musical key of many different audio formats. 27 27 ''; 28 28 license = licenses.gpl3Plus; 29 - platforms = platforms.linux; 29 + platforms = platforms.unix; 30 30 mainProgram = "keyfinder-cli"; 31 31 }; 32 32 }
+20 -44
pkgs/applications/audio/sublime-music/default.nix
··· 5 5 , gtk3 6 6 , pango 7 7 , wrapGAppsHook3 8 - , xvfb-run 9 8 , chromecastSupport ? false 10 9 , serverSupport ? false 11 10 , keyringSupport ? true ··· 15 14 , networkmanager 16 15 }: 17 16 18 - let 19 - python = python3.override { 20 - packageOverrides = self: super: { 21 - semver = super.semver.overridePythonAttrs (oldAttrs: rec { 22 - version = "2.13.0"; 23 - src = fetchFromGitHub { 24 - owner = "python-semver"; 25 - repo = "python-semver"; 26 - rev = "refs/tags/${version}"; 27 - hash = "sha256-IWTo/P9JRxBQlhtcH3JMJZZrwAA8EALF4dtHajWUc4w="; 28 - }; 29 - doCheck = false; # no tests 30 - }); 31 - 32 - dataclasses-json = super.dataclasses-json.overridePythonAttrs (oldAttrs: rec { 33 - version = "0.5.7"; 34 - src = fetchFromGitHub { 35 - owner = "lidatong"; 36 - repo = "dataclasses-json"; 37 - rev = "refs/tags/v${version}"; 38 - hash = "sha256-0tw5Lz+c4ymO+AGpG6THbiALWGBrehC84+yWWk1eafc="; 39 - }; 40 - nativeBuildInputs = [ python3.pkgs.setuptools ]; 41 - }); 42 - }; 43 - }; 44 - in 45 - python.pkgs.buildPythonApplication rec { 17 + python3.pkgs.buildPythonApplication rec { 46 18 pname = "sublime-music"; 47 19 version = "0.12.0"; 48 - format = "pyproject"; 20 + pyproject = true; 49 21 50 22 src = fetchFromGitHub { 51 23 owner = "sublime-music"; 52 - repo = pname; 24 + repo = "sublime-music"; 53 25 rev = "refs/tags/v${version}"; 54 26 hash = "sha256-FPzeFqDOcaiariz7qJwz6P3Wd+ZDxNP57uj+ptMtEyM="; 55 27 }; 56 - 57 - nativeBuildInputs = [ 58 - python.pkgs.flit-core 59 - gobject-introspection 60 - wrapGAppsHook3 61 - ]; 62 28 63 29 postPatch = '' 64 30 sed -i "/--cov/d" setup.cfg ··· 68 34 sed -i "s/python-mpv/mpv/g" pyproject.toml 69 35 ''; 70 36 37 + build-system = with python3.pkgs; [ 38 + flit-core 39 + ]; 40 + 41 + nativeBuildInputs = [ 42 + gobject-introspection 43 + wrapGAppsHook3 44 + ]; 45 + 71 46 buildInputs = [ 72 47 gtk3 73 48 pango ··· 76 51 ++ lib.optional networkSupport networkmanager 77 52 ; 78 53 79 - propagatedBuildInputs = with python.pkgs; [ 54 + propagatedBuildInputs = with python3.pkgs; [ 80 55 bleach 81 56 bottle 82 57 dataclasses-json ··· 94 69 ++ lib.optional keyringSupport keyring 95 70 ; 96 71 97 - nativeCheckInputs = with python.pkgs; [ 98 - pytest 72 + nativeCheckInputs = with python3.pkgs; [ 73 + pytestCheckHook 99 74 ]; 100 75 101 - checkPhase = '' 102 - ${xvfb-run}/bin/xvfb-run pytest 103 - ''; 76 + disabledTests = [ 77 + # https://github.com/sublime-music/sublime-music/issues/439 78 + "test_get_music_directory" 79 + ]; 104 80 105 81 pythonImportsCheck = [ 106 82 "sublime_music" ··· 118 94 119 95 meta = with lib; { 120 96 description = "GTK3 Subsonic/Airsonic client"; 121 - mainProgram = "sublime-music"; 122 97 homepage = "https://sublimemusic.app/"; 123 98 changelog = "https://github.com/sublime-music/sublime-music/blob/v${version}/CHANGELOG.rst"; 124 99 license = licenses.gpl3Plus; 125 100 maintainers = with maintainers; [ albakham sumnerevans ]; 101 + mainProgram = "sublime-music"; 126 102 }; 127 103 }
+2 -2
pkgs/applications/audio/zam-plugins/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "zam-plugins"; 5 - version = "4.2"; 5 + version = "4.3"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "zamaudio"; 9 9 repo = pname; 10 10 rev = version; 11 - sha256 = "sha256-6TPZMDhGHqXjY8UYEqlr4hweF+W19IpIfSa9Bo9Ta1A="; 11 + sha256 = "sha256-wT1BXQrcD+TI+trqx0ZVUmVLZMTDQgJI3dAvN54wy6Y="; 12 12 fetchSubmodules = true; 13 13 }; 14 14
+2 -2
pkgs/applications/blockchains/bitcoin-abc/default.nix
··· 25 25 26 26 mkDerivation rec { 27 27 pname = "bitcoin" + lib.optionalString (!withGui) "d" + "-abc"; 28 - version = "0.29.3"; 28 + version = "0.29.4"; 29 29 30 30 src = fetchFromGitHub { 31 31 owner = "bitcoin-ABC"; 32 32 repo = "bitcoin-abc"; 33 33 rev = "v${version}"; 34 - hash = "sha256-hYA0O7nDT8J1EnpW4i1+eBzkNw77JC6M7GwO3BdBh3U="; 34 + hash = "sha256-RT9sdwwF39arW2AnoQ9KnRzYqhnQhpjWU1eykTiKWSo="; 35 35 }; 36 36 37 37 nativeBuildInputs = [ pkg-config cmake ];
+3 -3
pkgs/applications/blockchains/erigon/default.nix
··· 2 2 3 3 let 4 4 pname = "erigon"; 5 - version = "2.59.3"; 5 + version = "2.60.0"; 6 6 in 7 7 buildGoModule { 8 8 inherit pname version; ··· 11 11 owner = "ledgerwatch"; 12 12 repo = pname; 13 13 rev = "v${version}"; 14 - hash = "sha256-pkcT9KFX4rz6WXUm9cG+6x9k+jGmLPGgl/4VnS7TNVE="; 14 + hash = "sha256-c0CArubKvdh9xcvBM15O4vGwAsSHzaINtoKd0XczJHU="; 15 15 fetchSubmodules = true; 16 16 }; 17 17 18 - vendorHash = "sha256-B3xbCI0szSAo9ULHDiqoTTR8tvgZUry7spDGuldu0lU="; 18 + vendorHash = "sha256-38NmSSK3a70WvhZAZ529wdAMlEuk8/4YqtadoLOn1IY="; 19 19 proxyVendor = true; 20 20 21 21 # Build errors in mdbx when format hardening is enabled:
+2 -2
pkgs/applications/blockchains/ledger-live-desktop/default.nix
··· 2 2 3 3 let 4 4 pname = "ledger-live-desktop"; 5 - version = "2.79.1"; 5 + version = "2.80.0"; 6 6 7 7 src = fetchurl { 8 8 url = "https://download.live.ledger.com/${pname}-${version}-linux-x86_64.AppImage"; 9 - hash = "sha256-zgs4uIK73CBp4hTbuO8LdcgvmUN3hYsnv61E+WGlpjg="; 9 + hash = "sha256-mtvLrA2wQM1om9En16/4AQFeddcRDoEyOwrefo5tOkk="; 10 10 }; 11 11 12 12 appimageContents = appimageTools.extractType2 {
+3 -3
pkgs/applications/blockchains/trezor-suite/default.nix
··· 8 8 9 9 let 10 10 pname = "trezor-suite"; 11 - version = "24.4.3"; 11 + version = "24.5.2"; 12 12 name = "${pname}-${version}"; 13 13 14 14 suffix = { ··· 19 19 src = fetchurl { 20 20 url = "https://github.com/trezor/${pname}/releases/download/v${version}/Trezor-Suite-${version}-${suffix}.AppImage"; 21 21 hash = { # curl -Lfs https://github.com/trezor/trezor-suite/releases/latest/download/latest-linux{-arm64,}.yml | grep ^sha512 | sed 's/: /-/' 22 - aarch64-linux = "sha512-EPpnEgE9euHGSo7CFMJg7hF3p5LqPc3zPxDQsNzyOI2lNv90vydtEmOm1fORj0MXbQsGLLS1nSzMH3vI6O9WmA=="; 23 - x86_64-linux = "sha512-FjHaomHjMSVwxO63NEEC5UjotzDlrX8yTGaz20RyoadClAUKIeVfeEt/5jDueFr2ZXfeLraRIQ0ywKm+wkC2EQ=="; 22 + aarch64-linux = "sha512-U3Az5MtsHup+aNO6lVHeAXRAnNLUbQkL5qMTpYZTaLgiZEFQCUigBJXNPaiUiHA1rJAsFh6wpv20iRMcqRr9gA=="; 23 + x86_64-linux = "sha512-9Gz0T9/GpTEzZDNk8tV7dg4QvQIB4IoEcOLIjrig6kmlaUoPwwoWFuJP0BH5WW2AhOZ+CEWBP6zFD7uw6VVDnA=="; 24 24 }.${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}"); 25 25 }; 26 26
+3 -3
pkgs/applications/editors/emacs/elisp-packages/manual-packages/lsp-bridge/default.nix
··· 16 16 }: 17 17 18 18 let 19 - rev = "b8768c4a76525d82360d124c829774acd26634c3"; 19 + rev = "87ecb45eebf345a2f60bdca47e9073ec833f7737"; 20 20 python = python3.withPackages (ps: with ps; [ 21 21 epc 22 22 orjson ··· 28 28 in 29 29 melpaBuild { 30 30 pname = "lsp-bridge"; 31 - version = "20240510.1618"; 31 + version = "20240516.145"; 32 32 33 33 src = fetchFromGitHub { 34 34 owner = "manateelazycat"; 35 35 repo = "lsp-bridge"; 36 36 inherit rev; 37 - hash = "sha256-f+JnzW4XrDC3QP9iuhKAmy+T2adoFx+0q03GI7VO0/s="; 37 + hash = "sha256-s0Tvvo4NO2GJrKSfE7XNuI1OBkf2bLRvaJilVWjyyE0="; 38 38 }; 39 39 40 40 commit = rev;
+1
pkgs/applications/editors/vim/plugins/aliases.nix
··· 116 116 solidity = vim-solidity; 117 117 stylish-haskell = vim-stylish-haskell; 118 118 stylishHaskell = vim-stylish-haskell; # backwards compat, added 2014-10-18 119 + suda-vim = vim-suda; # backwards compat, added 2024-05-16 119 120 Supertab = supertab; 120 121 Syntastic = syntastic; 121 122 SyntaxRange = vim-SyntaxRange;
+3 -3
pkgs/applications/editors/vim/plugins/deprecated.json
··· 8 8 "new": "cmp-tmux" 9 9 }, 10 10 "fern-vim": { 11 - "date": "2024-05-12", 11 + "date": "2024-05-16", 12 12 "new": "vim-fern" 13 13 }, 14 14 "gina-vim": { 15 - "date": "2024-05-12", 15 + "date": "2024-05-16", 16 16 "new": "vim-gina" 17 17 }, 18 18 "gist-vim": { ··· 60 60 "new": "vim-suda" 61 61 }, 62 62 "vim-fsharp": { 63 - "date": "2024-05-12", 63 + "date": "2024-05-16", 64 64 "new": "zarchive-vim-fsharp" 65 65 }, 66 66 "vim-jade": {
+279 -267
pkgs/applications/editors/vim/plugins/generated.nix
··· 63 63 meta.homepage = "https://github.com/vim-scripts/Colour-Sampler-Pack/"; 64 64 }; 65 65 66 + CopilotChat-nvim = buildVimPlugin { 67 + pname = "CopilotChat.nvim"; 68 + version = "2024-05-08"; 69 + src = fetchFromGitHub { 70 + owner = "CopilotC-Nvim"; 71 + repo = "CopilotChat.nvim"; 72 + rev = "af18fa2fbc765ddf9bacd22e15c974642f20d19b"; 73 + sha256 = "16s0sj1qydz56xc1ydgnm9q6qndrj535c86113ji8nsgxs29gk1k"; 74 + }; 75 + meta.homepage = "https://github.com/CopilotC-Nvim/CopilotChat.nvim/"; 76 + }; 77 + 66 78 Coqtail = buildVimPlugin { 67 79 pname = "Coqtail"; 68 80 version = "2024-05-06"; ··· 173 185 174 186 LazyVim = buildVimPlugin { 175 187 pname = "LazyVim"; 176 - version = "2024-05-12"; 188 + version = "2024-05-16"; 177 189 src = fetchFromGitHub { 178 190 owner = "LazyVim"; 179 191 repo = "LazyVim"; 180 - rev = "a0afe8fef9dc76b469a78435cdd3f2c5ee01f282"; 181 - sha256 = "0xibikcqxw35dggh2hzqaxa4lcn07y4fn6inn91slcll0zihn0xx"; 192 + rev = "183d6eea606556c8bd7f80a70660c54670e04649"; 193 + sha256 = "0wyhm6x8kk3yyli3lk94cr4nh83y805vqrwzi14pdh83rzkcy57c"; 182 194 }; 183 195 meta.homepage = "https://github.com/LazyVim/LazyVim/"; 184 196 }; 185 197 186 198 LeaderF = buildVimPlugin { 187 199 pname = "LeaderF"; 188 - version = "2024-05-07"; 200 + version = "2024-05-13"; 189 201 src = fetchFromGitHub { 190 202 owner = "Yggdroot"; 191 203 repo = "LeaderF"; 192 - rev = "de37c621a099a72d21e1731d4932d5b62cdc37bd"; 193 - sha256 = "1bb6xz9hdgl8gzhmkshgc0s5cmy68k8vwqx898a0v7gd3jg8p755"; 204 + rev = "25218c5ff71e2569155a23a757fbc0d79b3a5608"; 205 + sha256 = "1kja577s73qkpx2i5qaqwv37mhn3i24zm436j4apcy03048hmlmx"; 194 206 }; 195 207 meta.homepage = "https://github.com/Yggdroot/LeaderF/"; 196 208 }; ··· 305 317 306 318 SchemaStore-nvim = buildVimPlugin { 307 319 pname = "SchemaStore.nvim"; 308 - version = "2024-05-08"; 320 + version = "2024-05-14"; 309 321 src = fetchFromGitHub { 310 322 owner = "b0o"; 311 323 repo = "SchemaStore.nvim"; 312 - rev = "35a0998728380a17b8590447e8207391411c667a"; 313 - sha256 = "1rb3fnw5pdsg22f8nsvxf37b5hmkq5gl9qyv3xis1ydm2l4vi7k8"; 324 + rev = "3c32d6a7bc56d56d4e3cc16fb21b59465a527aeb"; 325 + sha256 = "0z4s60ahpm7scqqajli95jcjafcza37wwjh8lzhlydc2zy7xg4z0"; 314 326 }; 315 327 meta.homepage = "https://github.com/b0o/SchemaStore.nvim/"; 316 328 }; ··· 811 823 812 824 asyncrun-vim = buildVimPlugin { 813 825 pname = "asyncrun.vim"; 814 - version = "2024-03-22"; 826 + version = "2024-05-13"; 815 827 src = fetchFromGitHub { 816 828 owner = "skywind3000"; 817 829 repo = "asyncrun.vim"; 818 - rev = "014e2e2fe51ad4b1a774cffa0f12887767d952eb"; 819 - sha256 = "01aldaizx2madn3a8nis7bnp7r75lvxyvmqcxgy0s7sx8ywkndr1"; 830 + rev = "4261fa97f4a5429ec4bf5cfeaba74159c7e74f12"; 831 + sha256 = "18ib7d5bk2hgb7jyyw1ypskp6hrgawwbsnq7zlm811sxz5jiv045"; 820 832 }; 821 833 meta.homepage = "https://github.com/skywind3000/asyncrun.vim/"; 822 834 }; ··· 1027 1039 1028 1040 bamboo-nvim = buildVimPlugin { 1029 1041 pname = "bamboo.nvim"; 1030 - version = "2024-04-23"; 1042 + version = "2024-05-15"; 1031 1043 src = fetchFromGitHub { 1032 1044 owner = "ribru17"; 1033 1045 repo = "bamboo.nvim"; 1034 - rev = "f624433d750dbf69ce93ee057fbc1c595aa13e31"; 1035 - sha256 = "06mxl2cfdfv8d0jwrsm69221v9hlx1c4gbz1zfgzwcm464pyqaqg"; 1046 + rev = "2ca4ac5ddf80c0171469ec8d74fce036c98be458"; 1047 + sha256 = "1jcfwds6395i89scxkzd75cmgz99kcqrk73ic3z5k27vn6n59n8m"; 1036 1048 }; 1037 1049 meta.homepage = "https://github.com/ribru17/bamboo.nvim/"; 1038 1050 }; 1039 1051 1040 1052 barbar-nvim = buildVimPlugin { 1041 1053 pname = "barbar.nvim"; 1042 - version = "2024-04-12"; 1054 + version = "2024-05-15"; 1043 1055 src = fetchFromGitHub { 1044 1056 owner = "romgrk"; 1045 1057 repo = "barbar.nvim"; 1046 - rev = "88fe247ba6453b6ac422f26eb047acaac1a6000a"; 1047 - sha256 = "0amim3cminq310rzqyylkf7afkyjpmxcvp1y42ml00vdl7av2484"; 1058 + rev = "5880baa3bf6b262ee3c465519fce3e71a6045dec"; 1059 + sha256 = "0rk6l5vhxnryiy42rdykpqs5i9jh2g1bk19s674br5rsiwzmrml5"; 1048 1060 }; 1049 1061 meta.homepage = "https://github.com/romgrk/barbar.nvim/"; 1050 1062 }; ··· 1087 1099 1088 1100 base46 = buildVimPlugin { 1089 1101 pname = "base46"; 1090 - version = "2024-05-02"; 1102 + version = "2024-05-14"; 1091 1103 src = fetchFromGitHub { 1092 1104 owner = "nvchad"; 1093 1105 repo = "base46"; 1094 - rev = "bcc9ed2e88ef55b7e9d50b2f80f6a2d4b8080b1d"; 1095 - sha256 = "15f4lqcm6qbfwf2djs72hni9ibwbqjkdniniizh7fsz91k1afq8r"; 1106 + rev = "a2bd5e8896fc7b6110e62dc4efdb3bf0f077baed"; 1107 + sha256 = "1h30781h2iykwiknchil0zp0p2lyzdi5vkz363l74q1hq7gb38pc"; 1096 1108 }; 1097 1109 meta.homepage = "https://github.com/nvchad/base46/"; 1098 1110 }; ··· 2023 2035 2024 2036 cmp-treesitter = buildVimPlugin { 2025 2037 pname = "cmp-treesitter"; 2026 - version = "2023-12-09"; 2038 + version = "2024-05-13"; 2027 2039 src = fetchFromGitHub { 2028 2040 owner = "ray-x"; 2029 2041 repo = "cmp-treesitter"; 2030 - rev = "13e4ef8f4dd5639fca2eb9150e68f47639a9b37d"; 2031 - sha256 = "10375kviak1wxklha79g8gbk8pph8finsb3wga6p7mw1m657vc9b"; 2042 + rev = "958fcfa0d8ce46d215e19cc3992c542f576c4123"; 2043 + sha256 = "05as01c2f7i20zkzpqbq9n8ji9bcwd678ixmxnrz9vmz5zsj8q7i"; 2032 2044 }; 2033 2045 meta.homepage = "https://github.com/ray-x/cmp-treesitter/"; 2034 2046 }; ··· 2503 2515 2504 2516 conform-nvim = buildVimPlugin { 2505 2517 pname = "conform.nvim"; 2506 - version = "2024-05-11"; 2518 + version = "2024-05-13"; 2507 2519 src = fetchFromGitHub { 2508 2520 owner = "stevearc"; 2509 2521 repo = "conform.nvim"; 2510 - rev = "dc950e5717f1da65b1fcd986b1bbff0d6bd0e2ee"; 2511 - sha256 = "08x0nl7gxmadv9as0i7yqcjb5npq8fa258vz6b4n1qx85dj99skr"; 2522 + rev = "59d0dd233a2cafacfa1235ab22054c4d80a72319"; 2523 + sha256 = "0kh6hylhzqr7jl6b1gmjpyjipxb589hp93vdrk11gz3vk9ricjn9"; 2512 2524 fetchSubmodules = true; 2513 2525 }; 2514 2526 meta.homepage = "https://github.com/stevearc/conform.nvim/"; ··· 2660 2672 2661 2673 crates-nvim = buildVimPlugin { 2662 2674 pname = "crates.nvim"; 2663 - version = "2024-05-07"; 2675 + version = "2024-05-14"; 2664 2676 src = fetchFromGitHub { 2665 2677 owner = "saecki"; 2666 2678 repo = "crates.nvim"; 2667 - rev = "7d8541ec0e3b30ac2c43864d3ee13a632e1231ed"; 2668 - sha256 = "1zyzv2bq01c6mfmjf05sjxya6vq9yjdsdyc8gqxvlcyjilzff602"; 2679 + rev = "d556c00d60c9421c913ee54ff690df2a34f6264e"; 2680 + sha256 = "0hm9nj5hakjhp6rx0hl4x70dsv03gxbcm8c9fw2xgqm9hwwbap27"; 2669 2681 }; 2670 2682 meta.homepage = "https://github.com/saecki/crates.nvim/"; 2671 2683 }; ··· 2756 2768 2757 2769 cyberdream-nvim = buildVimPlugin { 2758 2770 pname = "cyberdream.nvim"; 2759 - version = "2024-05-11"; 2771 + version = "2024-05-15"; 2760 2772 src = fetchFromGitHub { 2761 2773 owner = "scottmckendry"; 2762 2774 repo = "cyberdream.nvim"; 2763 - rev = "c3eff4c5df805bb9451129151509d5624295f416"; 2764 - sha256 = "0c6ypwik0w9p9ch2089dn8gxisx22fb7gzdzivbnn2i239fwc12n"; 2775 + rev = "c7aa987f31abf4fc58fa1eafd917a337759e5d69"; 2776 + sha256 = "1f227s9sp4lx5vgfr568p5vnchrgr9vbsgsxl94rvjpc10vkbjyz"; 2765 2777 }; 2766 2778 meta.homepage = "https://github.com/scottmckendry/cyberdream.nvim/"; 2767 2779 }; ··· 2912 2924 2913 2925 denops-vim = buildVimPlugin { 2914 2926 pname = "denops.vim"; 2915 - version = "2024-05-12"; 2927 + version = "2024-05-14"; 2916 2928 src = fetchFromGitHub { 2917 2929 owner = "vim-denops"; 2918 2930 repo = "denops.vim"; 2919 - rev = "52bff98267685291fd083523d8446e8c233fe96d"; 2920 - sha256 = "175xp085c0vycfr5pxwbz590y5lksia97xh6xd4nd06pq5ps91zv"; 2931 + rev = "bcc88ca61f1edcbe364dbfb4967204193efc6e9a"; 2932 + sha256 = "04ac7h2xy0w52a8psnk3zvxa1nv4vsvxswannlxxa1w7fxzfh2b3"; 2921 2933 }; 2922 2934 meta.homepage = "https://github.com/vim-denops/denops.vim/"; 2923 2935 }; ··· 3250 3262 3251 3263 distant-nvim = buildVimPlugin { 3252 3264 pname = "distant.nvim"; 3253 - version = "2024-01-10"; 3265 + version = "2024-05-16"; 3254 3266 src = fetchFromGitHub { 3255 3267 owner = "chipsenkbeil"; 3256 3268 repo = "distant.nvim"; 3257 - rev = "de7288b1af6fdb2d2e7a8aa00f07a236261c2491"; 3258 - sha256 = "1dvd12cmarb5ki214xy0d4ibkcym3gla3pk9anfgjjm1qqlwm9va"; 3269 + rev = "823267cf3b77cf9a7ae28454926eabc18fec1ba0"; 3270 + sha256 = "19bv0hfvc73c7cvw8yqvsp991i9h757bcxy2ff95sbnwk3f39h6b"; 3259 3271 }; 3260 3272 meta.homepage = "https://github.com/chipsenkbeil/distant.nvim/"; 3261 3273 }; ··· 3334 3346 3335 3347 edge = buildVimPlugin { 3336 3348 pname = "edge"; 3337 - version = "2024-03-27"; 3349 + version = "2024-05-15"; 3338 3350 src = fetchFromGitHub { 3339 3351 owner = "sainnhe"; 3340 3352 repo = "edge"; 3341 - rev = "4e2eee9fbbad1c8fdcad8acda979d3828aee538d"; 3342 - sha256 = "14a67viw948pln2avpkcanq3b8pb324f69h2np5yclb7fpijy0qr"; 3353 + rev = "896dbba0bf99b0cc2764c55a170958c9b0e78595"; 3354 + sha256 = "11i9xgg3yl1ccra8bdqjdrkha2gjk2hmxqdb98gzkg20yhqb12q4"; 3343 3355 }; 3344 3356 meta.homepage = "https://github.com/sainnhe/edge/"; 3345 3357 }; ··· 3492 3504 3493 3505 everforest = buildVimPlugin { 3494 3506 pname = "everforest"; 3495 - version = "2024-05-07"; 3507 + version = "2024-05-15"; 3496 3508 src = fetchFromGitHub { 3497 3509 owner = "sainnhe"; 3498 3510 repo = "everforest"; 3499 - rev = "c6b3315ed7e890128ff1e274969d4aca2eeb8185"; 3500 - sha256 = "0sp8ykmc5006rshviyv955l3z85wanii822x5bdii9yrmlfmhgcj"; 3511 + rev = "090cc3aa2e9ed0533625821191404bb7802da19e"; 3512 + sha256 = "0wbifby4k2wkh5glsnxx4da4rx3mv3lfv8ff3nnchnxjfnbk9gnl"; 3501 3513 }; 3502 3514 meta.homepage = "https://github.com/sainnhe/everforest/"; 3503 3515 }; ··· 3540 3552 3541 3553 far-vim = buildVimPlugin { 3542 3554 pname = "far.vim"; 3543 - version = "2024-01-15"; 3555 + version = "2024-05-14"; 3544 3556 src = fetchFromGitHub { 3545 3557 owner = "brooth"; 3546 3558 repo = "far.vim"; 3547 - rev = "56e5d8a71fc12d5c78a4eed908fd9a7cabc405e2"; 3548 - sha256 = "1gfgyrw0kmls6fgd1hzg3a7yf00jcxyj0qrc0jf3yab5vb02484n"; 3559 + rev = "796d60857ae4dcdae78c64bae69902503cca31f4"; 3560 + sha256 = "0vr4ybv4mhh01i820q1x1wnjyd6zn8dmchf8qyscjvpskhyzzpdx"; 3549 3561 }; 3550 3562 meta.homepage = "https://github.com/brooth/far.vim/"; 3551 3563 }; ··· 3685 3697 3686 3698 flash-nvim = buildVimPlugin { 3687 3699 pname = "flash.nvim"; 3688 - version = "2024-05-03"; 3700 + version = "2024-05-14"; 3689 3701 src = fetchFromGitHub { 3690 3702 owner = "folke"; 3691 3703 repo = "flash.nvim"; 3692 - rev = "7bb4a9c75d1e20cd24185afedeaa11681829ba23"; 3693 - sha256 = "10f52qma6gh03pml1434w6lr7i8qh1jccl6yx4bmni9dscbv10hx"; 3704 + rev = "11a2e667d19d8f48c93c6ed2e2e525ac6b1b79be"; 3705 + sha256 = "1z1hx7862zkslqm4znhl722rh5b6ajyl3051vic8bhwinmm0dhqp"; 3694 3706 }; 3695 3707 meta.homepage = "https://github.com/folke/flash.nvim/"; 3696 3708 }; ··· 3829 3841 3830 3842 friendly-snippets = buildVimPlugin { 3831 3843 pname = "friendly-snippets"; 3832 - version = "2024-05-07"; 3844 + version = "2024-05-16"; 3833 3845 src = fetchFromGitHub { 3834 3846 owner = "rafamadriz"; 3835 3847 repo = "friendly-snippets"; 3836 - rev = "3e9a3f5a0cfcef1741e352c37bda4e82e5eb846a"; 3837 - sha256 = "03z76x6a444fxys8qnsjbafy3ij8hf3y15wn6gc22glxfqyfvjsn"; 3848 + rev = "dd2fd1281d4b22e7b4a5bfafa3e142d958e251f2"; 3849 + sha256 = "06w5m39zbkbqr85cj32dn44n11z4yji4k9iij722fci9cp66g2wl"; 3838 3850 }; 3839 3851 meta.homepage = "https://github.com/rafamadriz/friendly-snippets/"; 3840 3852 }; ··· 3937 3949 3938 3950 fzf-lua = buildNeovimPlugin { 3939 3951 pname = "fzf-lua"; 3940 - version = "2024-05-11"; 3952 + version = "2024-05-14"; 3941 3953 src = fetchFromGitHub { 3942 3954 owner = "ibhagwan"; 3943 3955 repo = "fzf-lua"; 3944 - rev = "9c953dfa7650191d892800333d187f3439e01afd"; 3945 - sha256 = "1dzznjj2q2xsj9dvx0agsqi0c5y68d23mr9l6cpnz2rc2yfrisgi"; 3956 + rev = "e412b1b0db62ccfccee41d994da87923eb2d8abd"; 3957 + sha256 = "0vsq389n73inzlc4gy98025jbpjhwkzc2gwj3y15x03sqpvj2mvn"; 3946 3958 }; 3947 3959 meta.homepage = "https://github.com/ibhagwan/fzf-lua/"; 3948 3960 }; 3949 3961 3950 3962 fzf-vim = buildVimPlugin { 3951 3963 pname = "fzf.vim"; 3952 - version = "2024-05-07"; 3964 + version = "2024-05-14"; 3953 3965 src = fetchFromGitHub { 3954 3966 owner = "junegunn"; 3955 3967 repo = "fzf.vim"; 3956 - rev = "99093bd103b847dd3ed149b0c9e7146c8ed46643"; 3957 - sha256 = "08nsxc52zs9k98q9yxq8kzddzs78fg0v185wympq6k8ks15lk4qr"; 3968 + rev = "3656cbb9ef2e3955d1e60bb63be5e2413c0950d7"; 3969 + sha256 = "0m2frn1ybslphwysmkmp8qx69panpmxjsss4jn1gf2knw1cmdkp0"; 3958 3970 }; 3959 3971 meta.homepage = "https://github.com/junegunn/fzf.vim/"; 3960 3972 }; ··· 4177 4189 4178 4190 go-nvim = buildVimPlugin { 4179 4191 pname = "go.nvim"; 4180 - version = "2024-05-09"; 4192 + version = "2024-05-13"; 4181 4193 src = fetchFromGitHub { 4182 4194 owner = "ray-x"; 4183 4195 repo = "go.nvim"; 4184 - rev = "4348ba67c29338af648ed9a0455bebb44fdb3ef3"; 4185 - sha256 = "0rmry1zlm3b9i4kkxjx42kvhfgpjva55g4z2hifdjczrqasgv4sb"; 4196 + rev = "db45cc91cf1bedb5fe5640cf71c452d43a87595a"; 4197 + sha256 = "1g22fg37clakkg4013s48223k1rf9knicmld0adbsi7hx6cizbz4"; 4186 4198 }; 4187 4199 meta.homepage = "https://github.com/ray-x/go.nvim/"; 4188 4200 }; ··· 4333 4345 4334 4346 gruvbox-material = buildVimPlugin { 4335 4347 pname = "gruvbox-material"; 4336 - version = "2024-03-27"; 4348 + version = "2024-05-15"; 4337 4349 src = fetchFromGitHub { 4338 4350 owner = "sainnhe"; 4339 4351 repo = "gruvbox-material"; 4340 - rev = "80331fbbec9ba18590a17bc6b7d277d96c05c2b6"; 4341 - sha256 = "14m7qwckgb6gc60gk0gr5pax3agxbs7c516pv6352nkrc2cdpakb"; 4352 + rev = "8f504421acd991b786ae6796176a1c5878221052"; 4353 + sha256 = "0nx7z1as9fcr8bq6q2n9wx7cw78acsvi0qc3sdcklfw5scrmpn3l"; 4342 4354 }; 4343 4355 meta.homepage = "https://github.com/sainnhe/gruvbox-material/"; 4344 4356 }; ··· 4429 4441 4430 4442 hardhat-nvim = buildVimPlugin { 4431 4443 pname = "hardhat.nvim"; 4432 - version = "2024-04-27"; 4444 + version = "2024-05-12"; 4433 4445 src = fetchFromGitHub { 4434 4446 owner = "TheSnakeWitcher"; 4435 4447 repo = "hardhat.nvim"; 4436 - rev = "8b9d36f51e2a6eccc651b92bb20187df4e2eaa3f"; 4437 - sha256 = "10dh8xd048sra73fw54p7f8mr7fzqifl67m9fk2rcwwmp5i601k5"; 4448 + rev = "65657641b66d58ec5f3d165d6d76ac06e373e189"; 4449 + sha256 = "0kxbdic7ssdan57ni3bs008jv01mb531i3xbdpcnbzk7i83mhh6r"; 4438 4450 }; 4439 4451 meta.homepage = "https://github.com/TheSnakeWitcher/hardhat.nvim/"; 4440 4452 }; ··· 4488 4500 4489 4501 haskell-snippets-nvim = buildVimPlugin { 4490 4502 pname = "haskell-snippets.nvim"; 4491 - version = "2024-03-25"; 4503 + version = "2024-05-13"; 4492 4504 src = fetchFromGitHub { 4493 4505 owner = "mrcjkb"; 4494 4506 repo = "haskell-snippets.nvim"; 4495 - rev = "89a4f683b83a656e6ccb4ad0db97ad8863037f5d"; 4496 - sha256 = "125drbzxbqv6hlpbplhzh5caim612mz6pmgw05bja2vr1cjpwsg7"; 4507 + rev = "b00139b127f775f481f434bf9c60957185c74e4c"; 4508 + sha256 = "03y9d1nk9v8q1hwcrjg4h47c5vglj6rzv4mjawbgid6mxh8gmsy8"; 4497 4509 }; 4498 4510 meta.homepage = "https://github.com/mrcjkb/haskell-snippets.nvim/"; 4499 4511 }; 4500 4512 4501 4513 haskell-tools-nvim = buildNeovimPlugin { 4502 4514 pname = "haskell-tools.nvim"; 4503 - version = "2024-05-07"; 4515 + version = "2024-05-13"; 4504 4516 src = fetchFromGitHub { 4505 4517 owner = "MrcJkb"; 4506 4518 repo = "haskell-tools.nvim"; 4507 - rev = "f30928e90b68f4df82771ea4354cd913f005b829"; 4508 - sha256 = "13h764dn7i9cy3cs5yvgh01yi3b2428wwsdq1mzdr88677ai5p3v"; 4519 + rev = "81115b0c1007e7cc2986b72c6efaa726d6deab06"; 4520 + sha256 = "0sg3ckr3xamapz9wq4wdvrdngvgj25plcdja4bg8ik1l6rpwjigm"; 4509 4521 }; 4510 4522 meta.homepage = "https://github.com/MrcJkb/haskell-tools.nvim/"; 4511 4523 }; ··· 4608 4620 4609 4621 himalaya-vim = buildVimPlugin { 4610 4622 pname = "himalaya-vim"; 4611 - version = "2024-01-01"; 4623 + version = "2024-05-15"; 4612 4624 src = fetchgit { 4613 4625 url = "https://git.sr.ht/~soywod/himalaya-vim"; 4614 - rev = "d33295fe9b9ad2247b9e88eda2842eb2c0d9f078"; 4615 - sha256 = "077jb1mlbwwrnhm295s5lzqjpzhrrd55zpvcgdqlsf5vizjr5xrb"; 4626 + rev = "7d839d4ddb24b76fff748ebabf8a538c8cf79953"; 4627 + sha256 = "1yrnyrc03csm1dx6cjsj8k5q3jyhk2cjfpc2rsh8l11gpin37s5h"; 4616 4628 }; 4617 4629 meta.homepage = "https://git.sr.ht/~soywod/himalaya-vim"; 4618 4630 }; ··· 4787 4799 4788 4800 image-nvim = buildNeovimPlugin { 4789 4801 pname = "image.nvim"; 4790 - version = "2024-05-10"; 4802 + version = "2024-05-14"; 4791 4803 src = fetchFromGitHub { 4792 4804 owner = "3rd"; 4793 4805 repo = "image.nvim"; 4794 - rev = "66af29f7244256eea82b2583ab65c2fab0567d0d"; 4795 - sha256 = "17h7myyqcwqqn4wn6ci22maj2c7c4qbrjlqghxyf06k9icvwbjbb"; 4806 + rev = "b979fa1194443c97dd8cb6053a4cec163c9048f5"; 4807 + sha256 = "0x1v1flsghf3v78mfsnkcp03d45i10c668imkxqs9zylsxmpnrpf"; 4796 4808 }; 4797 4809 meta.homepage = "https://github.com/3rd/image.nvim/"; 4798 4810 }; ··· 4823 4835 4824 4836 inc-rename-nvim = buildVimPlugin { 4825 4837 pname = "inc-rename.nvim"; 4826 - version = "2024-05-03"; 4838 + version = "2024-05-13"; 4827 4839 src = fetchFromGitHub { 4828 4840 owner = "smjonas"; 4829 4841 repo = "inc-rename.nvim"; 4830 - rev = "1d7d3f647d0928614c00ca9ef4ce695c45147c05"; 4831 - sha256 = "0j15b6ii3pcsdwm6vxi9fw3yim7hphzlnbmarwhla5bw3ci6h7z5"; 4842 + rev = "7c6125b1ee476b56708a6518a37b2a3357f57bfc"; 4843 + sha256 = "0h7mngb02gdcp091nx4bjwpqh1a12qx7cbp2m6qdp4n3dfk6lxqr"; 4832 4844 }; 4833 4845 meta.homepage = "https://github.com/smjonas/inc-rename.nvim/"; 4834 4846 }; ··· 4991 5003 4992 5004 iron-nvim = buildVimPlugin { 4993 5005 pname = "iron.nvim"; 4994 - version = "2024-05-09"; 5006 + version = "2024-05-16"; 4995 5007 src = fetchFromGitHub { 4996 5008 owner = "Vigemus"; 4997 5009 repo = "iron.nvim"; 4998 - rev = "7fc24223ed2a6292cd1d913761b08b6c18a30bd4"; 4999 - sha256 = "0z08c8ygy9haaclnsrbdjvnpypfbfm7yvrwk9grvvfp7qsblzvhv"; 5010 + rev = "0525058037bb0a600cb0850cb5f5b440f631b826"; 5011 + sha256 = "0ylada692n1q2djscir70qqyxqpw3g6m5al4d3pmhnhabara5262"; 5000 5012 }; 5001 5013 meta.homepage = "https://github.com/Vigemus/iron.nvim/"; 5002 5014 }; ··· 5100 5112 5101 5113 jsonfly-nvim = buildVimPlugin { 5102 5114 pname = "jsonfly.nvim"; 5103 - version = "2024-05-03"; 5115 + version = "2024-05-12"; 5104 5116 src = fetchFromGitHub { 5105 5117 owner = "Myzel394"; 5106 5118 repo = "jsonfly.nvim"; 5107 - rev = "acd899ce82d902cb91869c932092ffdbf3de9de4"; 5108 - sha256 = "02qrjbj4x86494fk5jm24qhi73qzj23h43g55y07bijv5ypxzrky"; 5119 + rev = "5a2a67bff2f8e3347dea82bd74d25bfe248bf637"; 5120 + sha256 = "18lmrccnhl2czbffnjk2z5n7pprjlk11vjvjw1jry8lgicfhvxv8"; 5109 5121 fetchSubmodules = true; 5110 5122 }; 5111 5123 meta.homepage = "https://github.com/Myzel394/jsonfly.nvim/"; ··· 5257 5269 5258 5270 lazy-nvim = buildVimPlugin { 5259 5271 pname = "lazy.nvim"; 5260 - version = "2024-05-12"; 5272 + version = "2024-05-13"; 5261 5273 src = fetchFromGitHub { 5262 5274 owner = "folke"; 5263 5275 repo = "lazy.nvim"; 5264 - rev = "758bb5de98b805acc5eeed8cdc8ac7f0bc4b0b86"; 5265 - sha256 = "0sc0590qgwpr9zxmks6k9bfh916zz8n4pv8j4idcxch9vv39inm4"; 5276 + rev = "e44636a43376e8a1e851958f7e9cbe996751d59f"; 5277 + sha256 = "0v05ga62zp0ls6ziqjfsznqrvc3n57vr3yl2ni9pi9ba6dn8zj27"; 5266 5278 }; 5267 5279 meta.homepage = "https://github.com/folke/lazy.nvim/"; 5268 5280 }; 5269 5281 5270 5282 lazygit-nvim = buildVimPlugin { 5271 5283 pname = "lazygit.nvim"; 5272 - version = "2024-03-24"; 5284 + version = "2024-05-13"; 5273 5285 src = fetchFromGitHub { 5274 5286 owner = "kdheepak"; 5275 5287 repo = "lazygit.nvim"; 5276 - rev = "0ada6c6e7e138df92f5009b6952f4ac41248305a"; 5277 - sha256 = "1jc8s1gwa1xzlvk5ysarhbm8ywz1hc5kfbdfxvqbl8bcrfi761ph"; 5288 + rev = "ad3e1ea592f9d13e86e0d4e850224d9d78069508"; 5289 + sha256 = "19prmdslqjbk40wd60is27zwsspsvxi5lsk5wp9yry5s7wzjrw7x"; 5278 5290 }; 5279 5291 meta.homepage = "https://github.com/kdheepak/lazygit.nvim/"; 5280 5292 }; ··· 5317 5329 5318 5330 leap-nvim = buildVimPlugin { 5319 5331 pname = "leap.nvim"; 5320 - version = "2024-05-10"; 5332 + version = "2024-05-14"; 5321 5333 src = fetchFromGitHub { 5322 5334 owner = "ggandor"; 5323 5335 repo = "leap.nvim"; 5324 - rev = "be68eec21e37415d15cffaabc959b8d3f9466665"; 5325 - sha256 = "06h1lg2844p9m6618z71k9d4byajczvf02jc9cccw0inar33b8ac"; 5336 + rev = "b1ecfb63c0b8babfd0dcd6b5ca6de37bbf3526cd"; 5337 + sha256 = "0sp3zbxl3lq80aw7k64cnkbr1m6liq41spgykjx07js32pwzw4mx"; 5326 5338 }; 5327 5339 meta.homepage = "https://github.com/ggandor/leap.nvim/"; 5328 5340 }; ··· 5748 5760 5749 5761 lspsaga-nvim = buildVimPlugin { 5750 5762 pname = "lspsaga.nvim"; 5751 - version = "2024-05-11"; 5763 + version = "2024-05-16"; 5752 5764 src = fetchFromGitHub { 5753 5765 owner = "nvimdev"; 5754 5766 repo = "lspsaga.nvim"; 5755 - rev = "9a06eaf5622f4ac102b9c45faeea3a39a33ec5ba"; 5756 - sha256 = "07kyz8mh373ddqzbydcm9f7nbsfassk9699bwbm879hipwjqm0ld"; 5767 + rev = "9b33a6c2a2cc53f3b3897623b5a650916c8c2345"; 5768 + sha256 = "0wql9wv51aqwazkl6i7373hdddzjr5zpdw2injjvdg9fhxb0g738"; 5757 5769 }; 5758 5770 meta.homepage = "https://github.com/nvimdev/lspsaga.nvim/"; 5759 5771 }; ··· 5796 5808 5797 5809 luasnip = buildNeovimPlugin { 5798 5810 pname = "luasnip"; 5799 - version = "2024-04-30"; 5811 + version = "2024-05-14"; 5800 5812 src = fetchFromGitHub { 5801 5813 owner = "l3mon4d3"; 5802 5814 repo = "luasnip"; 5803 - rev = "b152822e1a4bafb6bdf11a16cc26525cbd95ee00"; 5804 - sha256 = "0z3qk24fwbrx4waf18lkjn1vp3zqxwsccfybqv8jwviygqyl32iy"; 5815 + rev = "7b1dda0dfdefc10b2501295eba5e463dbd7c338f"; 5816 + sha256 = "1p8dgdhnf2c7kifb9r53brl1sa0fsnw3wl2hf55wch1nynw3mly8"; 5805 5817 fetchSubmodules = true; 5806 5818 }; 5807 5819 meta.homepage = "https://github.com/l3mon4d3/luasnip/"; ··· 5929 5941 5930 5942 mason-nvim = buildVimPlugin { 5931 5943 pname = "mason.nvim"; 5932 - version = "2024-05-12"; 5944 + version = "2024-05-14"; 5933 5945 src = fetchFromGitHub { 5934 5946 owner = "williamboman"; 5935 5947 repo = "mason.nvim"; 5936 - rev = "1b3d60405d1d720b2c4927f19672e9479703b00f"; 5937 - sha256 = "00vlxxzxslf5g6irbz12bscxxksc3mwr4gz4gwxy7wjsx6f9iqnn"; 5948 + rev = "49ff59aded1047a773670651cfa40e76e63c6377"; 5949 + sha256 = "1w9hzrnm0iiaha0c6qwbdjj94c5yq9837rjy7hzx2aaww37frbkm"; 5938 5950 }; 5939 5951 meta.homepage = "https://github.com/williamboman/mason.nvim/"; 5940 5952 }; ··· 6121 6133 6122 6134 modus-themes-nvim = buildVimPlugin { 6123 6135 pname = "modus-themes.nvim"; 6124 - version = "2024-05-10"; 6136 + version = "2024-05-14"; 6125 6137 src = fetchFromGitHub { 6126 6138 owner = "miikanissi"; 6127 6139 repo = "modus-themes.nvim"; 6128 - rev = "85180b063e2ba89517d6a407529560733c8447fe"; 6129 - sha256 = "193wja69vdsnqfzg4asbrv73qrwrvy481in28qkllwpamzw128d5"; 6140 + rev = "bed70e9562d83852f40e4b5b0bd92b4fd9d4323c"; 6141 + sha256 = "1jbwl34x6hn7y7smz4kww6y4as7qykcfd99y8jhp8af1b8c7rjzs"; 6130 6142 }; 6131 6143 meta.homepage = "https://github.com/miikanissi/modus-themes.nvim/"; 6132 6144 }; ··· 6457 6469 6458 6470 neo-tree-nvim = buildVimPlugin { 6459 6471 pname = "neo-tree.nvim"; 6460 - version = "2024-04-16"; 6472 + version = "2024-05-15"; 6461 6473 src = fetchFromGitHub { 6462 6474 owner = "nvim-neo-tree"; 6463 6475 repo = "neo-tree.nvim"; 6464 - rev = "25bfdbe802eb913276bb83874b043be57bd70347"; 6465 - sha256 = "12z784x1ij1j3dnh71dcx2a0vcz5pnlls00j01gadybxbz4r6y39"; 6476 + rev = "6e20108c4a8128782f534f5fe90c757b44212ef6"; 6477 + sha256 = "0awbglyhf9jqn7zpxbbmpb7ch85jc5l1lj6axi3amrz9866wdcfs"; 6466 6478 }; 6467 6479 meta.homepage = "https://github.com/nvim-neo-tree/neo-tree.nvim/"; 6468 6480 }; ··· 6481 6493 6482 6494 neoconf-nvim = buildVimPlugin { 6483 6495 pname = "neoconf.nvim"; 6484 - version = "2024-05-12"; 6496 + version = "2024-05-16"; 6485 6497 src = fetchFromGitHub { 6486 6498 owner = "folke"; 6487 6499 repo = "neoconf.nvim"; 6488 - rev = "bdd6c7dac2038d6495890dd84f451cf9f7425c50"; 6489 - sha256 = "194yzgar18idsxrcwqnbs7bp8jib9ypr7kjv3kvz9lm4n49bgvcl"; 6500 + rev = "a0aa3cc5e12a6c5eb8543e2508149f263fc32b2a"; 6501 + sha256 = "0d7nj6jdh0qfhsc6s88nnrb0kc0h2rg5vryc5dl76dpj8gal49sa"; 6490 6502 }; 6491 6503 meta.homepage = "https://github.com/folke/neoconf.nvim/"; 6492 6504 }; ··· 6529 6541 6530 6542 neoformat = buildVimPlugin { 6531 6543 pname = "neoformat"; 6532 - version = "2024-04-07"; 6544 + version = "2024-05-15"; 6533 6545 src = fetchFromGitHub { 6534 6546 owner = "sbdchd"; 6535 6547 repo = "neoformat"; 6536 - rev = "4372abb846f43ec121df40e620682c985ebc8286"; 6537 - sha256 = "1wk6vzigd6kbjfqfbayv5jbrr9lvmkxqc9b4fj5r90qqcqmfp399"; 6548 + rev = "34d4d89fea22645b16f69f818dcb7b6b682b0c1a"; 6549 + sha256 = "0881raz42f4wsb1c10kwjx56biv4k9r6dxlnpiarwmpj6mag952l"; 6538 6550 }; 6539 6551 meta.homepage = "https://github.com/sbdchd/neoformat/"; 6540 6552 }; 6541 6553 6542 6554 neogen = buildVimPlugin { 6543 6555 pname = "neogen"; 6544 - version = "2024-03-23"; 6556 + version = "2024-05-13"; 6545 6557 src = fetchFromGitHub { 6546 6558 owner = "danymat"; 6547 6559 repo = "neogen"; 6548 - rev = "0daffcec249bf42275e322361fe55b89a05ff278"; 6549 - sha256 = "1y5jxdkv5ap5f2rgb47xdz28gk376k5m3aql37wlzz51qpayb3aa"; 6560 + rev = "6de0add4805165317ab7d3d36b5cef48b1b865f3"; 6561 + sha256 = "080pwb0bwnd12ypwaa5hsy7sf8ha791gic5wnq8nm8pzyxz2nbiv"; 6550 6562 }; 6551 6563 meta.homepage = "https://github.com/danymat/neogen/"; 6552 6564 }; 6553 6565 6554 6566 neogit = buildVimPlugin { 6555 6567 pname = "neogit"; 6556 - version = "2024-05-10"; 6568 + version = "2024-05-13"; 6557 6569 src = fetchFromGitHub { 6558 6570 owner = "NeogitOrg"; 6559 6571 repo = "neogit"; 6560 - rev = "a32f99a83d636ea7cd62cda6e24d76d14e5579ba"; 6561 - sha256 = "13skbi6q45rgxngy0gqgzjq18i6n9y98wd9nk4rp5v8x786f3s0c"; 6572 + rev = "bc0c609e3568a171e0549b449aa1b2b4b5b20e8c"; 6573 + sha256 = "0fh9r9riqcqwckjhmdjfa45x5wxqv6x9as7k719g3nsmxc318xy6"; 6562 6574 }; 6563 6575 meta.homepage = "https://github.com/NeogitOrg/neogit/"; 6564 6576 }; ··· 6625 6637 6626 6638 neorg = buildVimPlugin { 6627 6639 pname = "neorg"; 6628 - version = "2024-05-08"; 6640 + version = "2024-05-13"; 6629 6641 src = fetchFromGitHub { 6630 6642 owner = "nvim-neorg"; 6631 6643 repo = "neorg"; 6632 - rev = "9b51b67aa92a77ca3e62f07cc0dc9de2e420166f"; 6633 - sha256 = "07lld8g64aznk1hl2iajdp2fbk0bv8f3r5vavhxmqb1ifmwwqkzs"; 6644 + rev = "1dbaa207d4fe077bd0a11870990c24f2fff0be5d"; 6645 + sha256 = "1dffb9kb3jr5ffjfx351d2lymr8dywm3vm3z74542p5swmi5nbcx"; 6634 6646 }; 6635 6647 meta.homepage = "https://github.com/nvim-neorg/neorg/"; 6636 6648 }; ··· 6807 6819 6808 6820 neotest-gtest = buildVimPlugin { 6809 6821 pname = "neotest-gtest"; 6810 - version = "2024-05-04"; 6822 + version = "2024-05-13"; 6811 6823 src = fetchFromGitHub { 6812 6824 owner = "alfaix"; 6813 6825 repo = "neotest-gtest"; 6814 - rev = "5ebf583aa5d119b6acfd8077578d05638d6a35f5"; 6815 - sha256 = "1hk7n0mqhr28flb522922rmjhfb08qphlvzyhf47pjbp25199yxc"; 6826 + rev = "20c24948d52b63aee948bf8db2c82da90f580330"; 6827 + sha256 = "1zrj3lcx8wai3nihrw59b8b03x9nw7725nafz3ls0923j6d6j6ys"; 6816 6828 fetchSubmodules = true; 6817 6829 }; 6818 6830 meta.homepage = "https://github.com/alfaix/neotest-gtest/"; ··· 6820 6832 6821 6833 neotest-haskell = buildVimPlugin { 6822 6834 pname = "neotest-haskell"; 6823 - version = "2024-05-12"; 6835 + version = "2024-05-13"; 6824 6836 src = fetchFromGitHub { 6825 6837 owner = "MrcJkb"; 6826 6838 repo = "neotest-haskell"; 6827 - rev = "1998a37753e5e364d7d2f8e7889ef8348234266c"; 6828 - sha256 = "12kzw16b56262d7iffv286ipyhqmwwgk1klcjrgpsz640s7qyyqz"; 6839 + rev = "febce450a3faf6f0fa012a43afe8b3086bd2eee6"; 6840 + sha256 = "0dbz3wn7qdnpjlshkwq4x6wyzpj6p764hhjrrg0hamanhq1lqn8g"; 6829 6841 }; 6830 6842 meta.homepage = "https://github.com/MrcJkb/neotest-haskell/"; 6831 6843 }; ··· 6928 6940 6929 6941 neotest-rspec = buildVimPlugin { 6930 6942 pname = "neotest-rspec"; 6931 - version = "2024-04-28"; 6943 + version = "2024-05-15"; 6932 6944 src = fetchFromGitHub { 6933 6945 owner = "olimorris"; 6934 6946 repo = "neotest-rspec"; 6935 - rev = "201f4891b5a0edc2e5f12196f35726f4d4eca410"; 6936 - sha256 = "1y8k8zrxc6dnz83n2wlk6h3hsm3jy248a36qc99z2mdijm6n83lg"; 6947 + rev = "48573d5882cbe8d8bcd3b735d9ee7705168b1b87"; 6948 + sha256 = "00l3v77d3zgq47gbsgjl916yp735kyr9s0jizi1sr5yg7wypx2cx"; 6937 6949 }; 6938 6950 meta.homepage = "https://github.com/olimorris/neotest-rspec/"; 6939 6951 }; ··· 7048 7060 7049 7061 nerdcommenter = buildVimPlugin { 7050 7062 pname = "nerdcommenter"; 7051 - version = "2023-12-18"; 7063 + version = "2024-05-13"; 7052 7064 src = fetchFromGitHub { 7053 7065 owner = "preservim"; 7054 7066 repo = "nerdcommenter"; 7055 - rev = "e361a44230860d616f799a337bc58f5218ab6e9c"; 7056 - sha256 = "0cpmg8wa67kd3qhrqd4hbq2symcvkyfn4fwbs2l7mx5hvmabj36d"; 7067 + rev = "7bb1f72e802a80e37bdda5f6906c69b5a93de1eb"; 7068 + sha256 = "0rjgriqfkikcbsns1ridd5kx3msaak2632zng8jajxlslbcga1r3"; 7057 7069 }; 7058 7070 meta.homepage = "https://github.com/preservim/nerdcommenter/"; 7059 7071 }; 7060 7072 7061 7073 nerdtree = buildVimPlugin { 7062 7074 pname = "nerdtree"; 7063 - version = "2024-02-27"; 7075 + version = "2024-05-14"; 7064 7076 src = fetchFromGitHub { 7065 7077 owner = "preservim"; 7066 7078 repo = "nerdtree"; 7067 - rev = "f3a4d8eaa8ac10305e3d53851c976756ea9dc8e8"; 7068 - sha256 = "1rywf8z44z9vzg8x33qjvccjrn3avbcyqpkc6ba3ymb9hwhfhiig"; 7079 + rev = "fbb71fcd90602e3ec77f40b864b5f9b437c496c5"; 7080 + sha256 = "1x6gixsq9yn3afsj05wacxgh6ih00mdimjhlx8jn9cwjaxmg70v5"; 7069 7081 }; 7070 7082 meta.homepage = "https://github.com/preservim/nerdtree/"; 7071 7083 }; ··· 7204 7216 7205 7217 nlsp-settings-nvim = buildVimPlugin { 7206 7218 pname = "nlsp-settings.nvim"; 7207 - version = "2024-05-12"; 7219 + version = "2024-05-16"; 7208 7220 src = fetchFromGitHub { 7209 7221 owner = "tamago324"; 7210 7222 repo = "nlsp-settings.nvim"; 7211 - rev = "0a8bcbbbcbed43ff86f1c3a19260a7918cc1bf2e"; 7212 - sha256 = "0nnbqf4idhgffm125nfblgwlp3wkjdw4krz63cayrs8v13bvix8w"; 7223 + rev = "103e764d3e733b89375cb7f877a5b70b0e0e125f"; 7224 + sha256 = "10pw7c8fhqljdi65xpn19iwxfsbd4gfd0nxzyqjxa4xl3w9dyywk"; 7213 7225 }; 7214 7226 meta.homepage = "https://github.com/tamago324/nlsp-settings.nvim/"; 7215 7227 }; ··· 7240 7252 7241 7253 no-neck-pain-nvim = buildVimPlugin { 7242 7254 pname = "no-neck-pain.nvim"; 7243 - version = "2024-05-09"; 7255 + version = "2024-05-15"; 7244 7256 src = fetchFromGitHub { 7245 7257 owner = "shortcuts"; 7246 7258 repo = "no-neck-pain.nvim"; 7247 - rev = "0b3299675e0100cceebfbee06a519bc688ec9df3"; 7248 - sha256 = "1gr528pkwd70d97rdly0adv1smgnwskyzrng13i8qdz2nyhix20z"; 7259 + rev = "7c38c67fec5a29d9f4e9a59546a67dd2a26b5ff1"; 7260 + sha256 = "0w365j4a480w0sw22h8aa5i6lisnmj2q33q0gdfbg3hx9swskmrr"; 7249 7261 }; 7250 7262 meta.homepage = "https://github.com/shortcuts/no-neck-pain.nvim/"; 7251 7263 }; ··· 7264 7276 7265 7277 noice-nvim = buildVimPlugin { 7266 7278 pname = "noice.nvim"; 7267 - version = "2024-05-09"; 7279 + version = "2024-05-16"; 7268 7280 src = fetchFromGitHub { 7269 7281 owner = "folke"; 7270 7282 repo = "noice.nvim"; 7271 - rev = "09102ca2e9a3e9302119fdaf7a059a034e4a626d"; 7272 - sha256 = "1gzdwgizbl60fqiiiwrzfqbbds182qqlr3gyyzvgxbxijs3ajsk1"; 7283 + rev = "872036f4f25fd67c6a6cf3dc004022a72c6d0a6d"; 7284 + sha256 = "0pzywf6fn501xdzi89k6fr25q5vnmw6mi7d1gjkpmypdqd1wly1n"; 7273 7285 }; 7274 7286 meta.homepage = "https://github.com/folke/noice.nvim/"; 7275 7287 }; 7276 7288 7277 7289 none-ls-nvim = buildVimPlugin { 7278 7290 pname = "none-ls.nvim"; 7279 - version = "2024-04-30"; 7291 + version = "2024-05-14"; 7280 7292 src = fetchFromGitHub { 7281 7293 owner = "nvimtools"; 7282 7294 repo = "none-ls.nvim"; 7283 - rev = "f5632db2491fbe02b54f1a321a98548a8ba2bd15"; 7284 - sha256 = "0v97f5ip7slgcijg2ydma6g9ihmx65v4z30ibw68rxwjxfcnjif5"; 7295 + rev = "10c976d633862b9fe16171f5f5f17732bc54e19f"; 7296 + sha256 = "1xvvfqbxl1v4yls156wwx36qzjdipxs0whqzgsps27984fpvwpci"; 7285 7297 }; 7286 7298 meta.homepage = "https://github.com/nvimtools/none-ls.nvim/"; 7287 7299 }; ··· 7420 7432 7421 7433 nvim-autopairs = buildVimPlugin { 7422 7434 pname = "nvim-autopairs"; 7423 - version = "2024-05-05"; 7435 + version = "2024-05-16"; 7424 7436 src = fetchFromGitHub { 7425 7437 owner = "windwp"; 7426 7438 repo = "nvim-autopairs"; 7427 - rev = "14e97371b2aab6ee70054c1070a123dfaa3e217e"; 7428 - sha256 = "0vbvy8fp32rd3463mhi6qnh21gj2mi227qspdrvp0y18f7anvi1c"; 7439 + rev = "b0b79e42a28f09719a7da9534c3731fa37319d9b"; 7440 + sha256 = "0xaaazahwc4f5d1vb8g0y4gz70wqc65gihf7512r8llw3c5diix9"; 7429 7441 }; 7430 7442 meta.homepage = "https://github.com/windwp/nvim-autopairs/"; 7431 7443 }; ··· 7612 7624 7613 7625 nvim-dap = buildVimPlugin { 7614 7626 pname = "nvim-dap"; 7615 - version = "2024-05-10"; 7627 + version = "2024-05-16"; 7616 7628 src = fetchFromGitHub { 7617 7629 owner = "mfussenegger"; 7618 7630 repo = "nvim-dap"; 7619 - rev = "615a1b2046e1eaf7995e0ba8e8a65f344201349d"; 7620 - sha256 = "1dmkacc78nkv9lp9h4jb79kisb72zxv3vk5nvq7157cn4zjc6x3c"; 7631 + rev = "e1330ec3b260df05f5e855d040871bbd4e819b41"; 7632 + sha256 = "127k4xwnrr1kjlsv751kmrn6pgw8i7w5kfbidi15280ja03fs4fp"; 7621 7633 }; 7622 7634 meta.homepage = "https://github.com/mfussenegger/nvim-dap/"; 7623 7635 }; ··· 7887 7899 7888 7900 nvim-lint = buildVimPlugin { 7889 7901 pname = "nvim-lint"; 7890 - version = "2024-05-08"; 7902 + version = "2024-05-13"; 7891 7903 src = fetchFromGitHub { 7892 7904 owner = "mfussenegger"; 7893 7905 repo = "nvim-lint"; 7894 - rev = "83ee4952a968d89329e5a49b4648831d98124783"; 7895 - sha256 = "1v6mwif781gib1knc3qrbxn2alijmabq6aizysjhmqwrvmpklkns"; 7906 + rev = "f3bcc28ffccb768212247294acccc106e029fc3c"; 7907 + sha256 = "0q4fq77v2imls0plcasgmrxbpc3q8qddn6n3w42xygkm9bna8a01"; 7896 7908 }; 7897 7909 meta.homepage = "https://github.com/mfussenegger/nvim-lint/"; 7898 7910 }; ··· 7923 7935 7924 7936 nvim-lspconfig = buildVimPlugin { 7925 7937 pname = "nvim-lspconfig"; 7926 - version = "2024-05-12"; 7938 + version = "2024-05-16"; 7927 7939 src = fetchFromGitHub { 7928 7940 owner = "neovim"; 7929 7941 repo = "nvim-lspconfig"; 7930 - rev = "94513a5b246cf32a8f87ca714af50911df63351c"; 7931 - sha256 = "00rk7203h6w5sq1p4d3bba2q7xa20hp1nzw65qi7rkw9phjfxv58"; 7942 + rev = "cee94b22adc96582d9136f85fb3b076feda8825c"; 7943 + sha256 = "1gz5vwb0hdqaxi2xh9dl87rf1yc10xinh3w83vd02cr9h88n5qv0"; 7932 7944 }; 7933 7945 meta.homepage = "https://github.com/neovim/nvim-lspconfig/"; 7934 7946 }; ··· 8091 8103 8092 8104 nvim-osc52 = buildVimPlugin { 8093 8105 pname = "nvim-osc52"; 8094 - version = "2023-11-12"; 8106 + version = "2024-05-13"; 8095 8107 src = fetchFromGitHub { 8096 8108 owner = "ojroques"; 8097 8109 repo = "nvim-osc52"; 8098 - rev = "5e0210990b3c809ec58bbf830e0dabd4bda3a949"; 8099 - sha256 = "0alsh1r6c5b8zf3jcymmrp921mmmhvws38ih9hbw5yffcy0lqhl2"; 8110 + rev = "42361eee0d4f23937d9abb9864eaedeeaaed5bf7"; 8111 + sha256 = "01ibiyrsc7d58vf6w2cdhcf3vfkfyqcws3w6sdqy9rwlmvamb14k"; 8100 8112 }; 8101 8113 meta.homepage = "https://github.com/ojroques/nvim-osc52/"; 8102 8114 }; ··· 8115 8127 8116 8128 nvim-pqf = buildVimPlugin { 8117 8129 pname = "nvim-pqf"; 8118 - version = "2023-11-19"; 8130 + version = "2024-05-13"; 8119 8131 src = fetchFromGitHub { 8120 8132 owner = "yorickpeterse"; 8121 8133 repo = "nvim-pqf"; 8122 - rev = "ba0e291cb5c0249838132e197dac082777bdc7d6"; 8123 - sha256 = "079w1n62dr8fyn3c6594dgvm5546c2lmaka4bqb1dxkmw9pfqfa1"; 8134 + rev = "8de182d1b2b677ad6ba264e15b6230f74881e96d"; 8135 + sha256 = "0ifpvr6jrzk2yhi80x2fsrlr1ha86n6wrwb3p813fif9pmxnbq8v"; 8124 8136 }; 8125 8137 meta.homepage = "https://github.com/yorickpeterse/nvim-pqf/"; 8126 8138 }; ··· 8295 8307 8296 8308 nvim-tree-lua = buildVimPlugin { 8297 8309 pname = "nvim-tree.lua"; 8298 - version = "2024-05-12"; 8310 + version = "2024-05-14"; 8299 8311 src = fetchFromGitHub { 8300 8312 owner = "nvim-tree"; 8301 8313 repo = "nvim-tree.lua"; 8302 - rev = "78c4c083ed5d47e7fab7627d78ce33d3bcfb88f0"; 8303 - sha256 = "1jchdyck8031ldgaracq4zc00026jyvhfcpp8p48z0ka8ypvkp9d"; 8314 + rev = "2bc725a3ebc23f0172fb0ab4d1134b81bcc13812"; 8315 + sha256 = "11snxarz0af9fa8n387l9lzwhfbnp5q0va21kc203ski7c9w18b2"; 8304 8316 }; 8305 8317 meta.homepage = "https://github.com/nvim-tree/nvim-tree.lua/"; 8306 8318 }; 8307 8319 8308 8320 nvim-treesitter = buildVimPlugin { 8309 8321 pname = "nvim-treesitter"; 8310 - version = "2024-05-12"; 8322 + version = "2024-05-16"; 8311 8323 src = fetchFromGitHub { 8312 8324 owner = "nvim-treesitter"; 8313 8325 repo = "nvim-treesitter"; 8314 - rev = "0d2c80b4d00c8f793e17d2d1d24d4aa5aaa88bc2"; 8315 - sha256 = "0xs16s5g6i9g78xciq0ija5ak7jfdbz7b7dfgg5gca284xgl2ccq"; 8326 + rev = "8012b55eee65eba1d1ee4df0a186d30e72dcbe65"; 8327 + sha256 = "1lwr83l5xn2mfka3pajfsh1cmxzdpysspmv2cab6ams9bn8w4jwf"; 8316 8328 }; 8317 8329 meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter/"; 8318 8330 }; 8319 8331 8320 8332 nvim-treesitter-context = buildVimPlugin { 8321 8333 pname = "nvim-treesitter-context"; 8322 - version = "2024-05-11"; 8334 + version = "2024-05-15"; 8323 8335 src = fetchFromGitHub { 8324 8336 owner = "nvim-treesitter"; 8325 8337 repo = "nvim-treesitter-context"; 8326 - rev = "1e52a2c4223c1e7b0def9c76a1f3757d372196c3"; 8327 - sha256 = "02gn7fqmyj8ly8799vjdw1kxklpr710arvlb9gipd9rjmq7vjw0f"; 8338 + rev = "7068ad6d16c682db0f6bf25f64ccfee34ec5d452"; 8339 + sha256 = "0lnwmwjidaayiph8bdq6vzn1rwp2mm5fwq0v7qfl75gsbwj5r6bj"; 8328 8340 }; 8329 8341 meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter-context/"; 8330 8342 }; ··· 8367 8379 8368 8380 nvim-treesitter-textobjects = buildVimPlugin { 8369 8381 pname = "nvim-treesitter-textobjects"; 8370 - version = "2024-05-09"; 8382 + version = "2024-05-15"; 8371 8383 src = fetchFromGitHub { 8372 8384 owner = "nvim-treesitter"; 8373 8385 repo = "nvim-treesitter-textobjects"; 8374 - rev = "dfa4178c0cadb44f687603d72ad0908474c28dd9"; 8375 - sha256 = "0y0sv6dhhghhxihmyvpwrvvbgi2m90m8vdmi3x09ap0yzfn2nmq2"; 8386 + rev = "84cc9ed772f1fee2f47c1e076f518829583d8347"; 8387 + sha256 = "0z08c1yz3sn4cdijj9k61zjrny8wp7q1gq1jz9knwg327slm0syd"; 8376 8388 }; 8377 8389 meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter-textobjects/"; 8378 8390 }; 8379 8391 8380 8392 nvim-treesitter-textsubjects = buildVimPlugin { 8381 8393 pname = "nvim-treesitter-textsubjects"; 8382 - version = "2024-03-24"; 8394 + version = "2024-05-12"; 8383 8395 src = fetchFromGitHub { 8384 8396 owner = "RRethy"; 8385 8397 repo = "nvim-treesitter-textsubjects"; 8386 - rev = "9f9a6b307fb122f13708f78483222abd43b7bb3a"; 8387 - sha256 = "1y978c3jgxh3a1wck4xw1c04pyqzl9ayhizp9dz7l9jiallcngs7"; 8398 + rev = "1428108f18ce9d8cc4481dcedebeeb490eabf395"; 8399 + sha256 = "1m73vkz8cg8qqzh9aavprhg9vpzl1sw88aq6h8sb853lgw5aa5wn"; 8388 8400 }; 8389 8401 meta.homepage = "https://github.com/RRethy/nvim-treesitter-textsubjects/"; 8390 8402 }; ··· 8439 8451 8440 8452 nvim-web-devicons = buildVimPlugin { 8441 8453 pname = "nvim-web-devicons"; 8442 - version = "2024-05-06"; 8454 + version = "2024-05-13"; 8443 8455 src = fetchFromGitHub { 8444 8456 owner = "nvim-tree"; 8445 8457 repo = "nvim-web-devicons"; 8446 - rev = "5b9067899ee6a2538891573500e8fd6ff008440f"; 8447 - sha256 = "0d7gzk06f6z9wq496frbaavx90mcxvdhrswqd3pcayj2872i698d"; 8458 + rev = "e37bb1feee9e7320c76050a55443fa843b4b6f83"; 8459 + sha256 = "0kxj9xj94zln8ah2i0r09p0c8prn0rs1vwgf5dvmjn3j8m4x3nnn"; 8448 8460 }; 8449 8461 meta.homepage = "https://github.com/nvim-tree/nvim-web-devicons/"; 8450 8462 }; ··· 8571 8583 8572 8584 oil-nvim = buildVimPlugin { 8573 8585 pname = "oil.nvim"; 8574 - version = "2024-05-06"; 8586 + version = "2024-05-15"; 8575 8587 src = fetchFromGitHub { 8576 8588 owner = "stevearc"; 8577 8589 repo = "oil.nvim"; 8578 - rev = "010b44a79d497c697686e2727049d3dd215bbbd6"; 8579 - sha256 = "01hkrb8ddy2ivmfycxbx1lx756vjgkza0izc86gr5aa2l6dgvh18"; 8590 + rev = "f630887cd845a7341bc16488fe8aaecffe3aaa8a"; 8591 + sha256 = "0d28rx4qqqha9ikcajx7yka0kzbf93yfqhkvmsykm0855h88ivx5"; 8580 8592 fetchSubmodules = true; 8581 8593 }; 8582 8594 meta.homepage = "https://github.com/stevearc/oil.nvim/"; ··· 8668 8680 8669 8681 onedarkpro-nvim = buildVimPlugin { 8670 8682 pname = "onedarkpro.nvim"; 8671 - version = "2024-03-24"; 8683 + version = "2024-05-13"; 8672 8684 src = fetchFromGitHub { 8673 8685 owner = "olimorris"; 8674 8686 repo = "onedarkpro.nvim"; 8675 - rev = "9cb77d936fd42c2c98becceb0f132df170d4eba0"; 8676 - sha256 = "1vj7fhm6z4q9ykl20rgjrxc396l47bfskg306h66hj2wb775clm5"; 8687 + rev = "5cf25dd6db58c6eb1cec47ad333e2b76051f8562"; 8688 + sha256 = "1yrns9y6dmfbg4hdv2v78izbwdnxxy9i6pnympkvihlpbqdshqar"; 8677 8689 }; 8678 8690 meta.homepage = "https://github.com/olimorris/onedarkpro.nvim/"; 8679 8691 }; ··· 8752 8764 8753 8765 orgmode = buildVimPlugin { 8754 8766 pname = "orgmode"; 8755 - version = "2024-05-07"; 8767 + version = "2024-05-14"; 8756 8768 src = fetchFromGitHub { 8757 8769 owner = "nvim-orgmode"; 8758 8770 repo = "orgmode"; 8759 - rev = "cda615fa7c8607bfb7aaf7d2c9424dd5969f2625"; 8760 - sha256 = "0wrayb63hd68kjjpkpmhjschw609cs4pb7lsjxnvhz3qifwiysja"; 8771 + rev = "8ec0bcc6f6476d246159f738081256c97a7a9b2c"; 8772 + sha256 = "17glhwnkb7k96ihh3p3w8pjnprc2lrhlhrrb6v9m5azbhsjy7ysg"; 8761 8773 }; 8762 8774 meta.homepage = "https://github.com/nvim-orgmode/orgmode/"; 8763 8775 }; ··· 8800 8812 8801 8813 overseer-nvim = buildVimPlugin { 8802 8814 pname = "overseer.nvim"; 8803 - version = "2024-05-08"; 8815 + version = "2024-05-14"; 8804 8816 src = fetchFromGitHub { 8805 8817 owner = "stevearc"; 8806 8818 repo = "overseer.nvim"; 8807 - rev = "7ae60fcf9b1d9ad661e8936d50c6e3853b7c3cc0"; 8808 - sha256 = "1wdrbz31n6f09ppvc129zadizabnaxy88gvcnwr9zn2xlbh1ndfi"; 8819 + rev = "226789848772d99b3b61363b6ea7663882f8c05e"; 8820 + sha256 = "09gqpdr59mbvnwi36dikwckkcqs4gxk00wdwvnx22qm68gjizs9y"; 8809 8821 fetchSubmodules = true; 8810 8822 }; 8811 8823 meta.homepage = "https://github.com/stevearc/overseer.nvim/"; ··· 9582 9594 9583 9595 rustaceanvim = buildNeovimPlugin { 9584 9596 pname = "rustaceanvim"; 9585 - version = "2024-05-12"; 9597 + version = "2024-05-16"; 9586 9598 src = fetchFromGitHub { 9587 9599 owner = "mrcjkb"; 9588 9600 repo = "rustaceanvim"; 9589 - rev = "1c3d3a75bebcb16df2a093b147ba498185e4ab17"; 9590 - sha256 = "1azz03ypygh1fk2gva9fyg294v8i3qig7yz4hncf05jm94wq137s"; 9601 + rev = "253ce043dcb41d92a6d99a317c9fab61e3df6f47"; 9602 + sha256 = "0vxyczrb765v6rnnxr1csdms86a9vq9cqqrdrawlzxhzyxn87hf8"; 9591 9603 }; 9592 9604 meta.homepage = "https://github.com/mrcjkb/rustaceanvim/"; 9593 9605 }; ··· 9630 9642 9631 9643 scnvim = buildVimPlugin { 9632 9644 pname = "scnvim"; 9633 - version = "2024-05-07"; 9645 + version = "2024-05-15"; 9634 9646 src = fetchFromGitHub { 9635 9647 owner = "davidgranstrom"; 9636 9648 repo = "scnvim"; 9637 - rev = "4777c0d661ea3776049b76d1328afc9879146420"; 9638 - sha256 = "0y1qgfbza4v97ap0awpqh3f0zi94wwsc0jd391jvhjr18crankdl"; 9649 + rev = "de0fbc35ddbe023622371211f5cf599a4a960087"; 9650 + sha256 = "04gr03bpg6ja3hwfb68lhn3a7m6p2022k3138vcdazzy1gbw6r23"; 9639 9651 }; 9640 9652 meta.homepage = "https://github.com/davidgranstrom/scnvim/"; 9641 9653 }; ··· 9823 9835 9824 9836 smart-splits-nvim = buildVimPlugin { 9825 9837 pname = "smart-splits.nvim"; 9826 - version = "2024-05-10"; 9838 + version = "2024-05-14"; 9827 9839 src = fetchFromGitHub { 9828 9840 owner = "mrjones2014"; 9829 9841 repo = "smart-splits.nvim"; 9830 - rev = "159d4479a402d7f40cac1c097fa565fc2ba02cfb"; 9831 - sha256 = "1hkx6c3krw0hsrz9jvja5c0cwk3vy3gm6z0imw1m4h3gddmijh8y"; 9842 + rev = "2846aee230e2dd0a3b8912d8eba86dae7d1d16b2"; 9843 + sha256 = "0xaqvin1gcr4a4nmssaazaqnvp7mmhnrl4kz1raw1nn8krww9rj2"; 9832 9844 }; 9833 9845 meta.homepage = "https://github.com/mrjones2014/smart-splits.nvim/"; 9834 9846 }; ··· 9907 9919 9908 9920 sonokai = buildVimPlugin { 9909 9921 pname = "sonokai"; 9910 - version = "2024-03-27"; 9922 + version = "2024-05-15"; 9911 9923 src = fetchFromGitHub { 9912 9924 owner = "sainnhe"; 9913 9925 repo = "sonokai"; 9914 - rev = "da162343354fbd9bf9cd49293a856f0e3761e8ac"; 9915 - sha256 = "0mvb9rxsqapp8kz8vh4lvn9vym8lhmqydkh145yxyqvpjkycwbb7"; 9926 + rev = "d638deba408349ccb60bf5278ff7f23ff52b164a"; 9927 + sha256 = "141mcy6l56am1hzawdbpjmvj82mp8zbpgkdwmq9wfclawmhfdqqh"; 9916 9928 }; 9917 9929 meta.homepage = "https://github.com/sainnhe/sonokai/"; 9918 9930 }; ··· 10230 10242 meta.homepage = "https://github.com/kvrohit/substrata.nvim/"; 10231 10243 }; 10232 10244 10233 - suda-vim = buildVimPlugin { 10234 - pname = "suda.vim"; 10235 - version = "2024-04-25"; 10236 - src = fetchFromGitHub { 10237 - owner = "lambdalisue"; 10238 - repo = "vim-suda"; 10239 - rev = "b97fab52f9cdeabe2bbb5eb98d82356899f30829"; 10240 - sha256 = "12chb6hv6ynl54dzwb7qz6rf9vwjglxfnzcmmhc2q2wm0y264gbi"; 10241 - }; 10242 - meta.homepage = "https://github.com/lambdalisue/vim-suda/"; 10243 - }; 10244 - 10245 10245 supertab = buildVimPlugin { 10246 10246 pname = "supertab"; 10247 10247 version = "2021-04-30"; ··· 10825 10825 10826 10826 telescope-nvim = buildNeovimPlugin { 10827 10827 pname = "telescope.nvim"; 10828 - version = "2024-05-03"; 10828 + version = "2024-05-16"; 10829 10829 src = fetchFromGitHub { 10830 10830 owner = "nvim-telescope"; 10831 10831 repo = "telescope.nvim"; 10832 - rev = "fac83a556e7b710dc31433dec727361ca062dbe9"; 10833 - sha256 = "0caam3dm86z9g3qw1c418pzsqhzq8yvzpf26j4sbczrvy6s1x0aa"; 10832 + rev = "52f500110bcf9190b44b4d8640162adc86772ec4"; 10833 + sha256 = "0l3vd9xabwx40rqmmwzj1sgnn62z0gg174yl2gl7k2w935nj707z"; 10834 10834 }; 10835 10835 meta.homepage = "https://github.com/nvim-telescope/telescope.nvim/"; 10836 10836 }; ··· 11090 11090 11091 11091 tokyonight-nvim = buildVimPlugin { 11092 11092 pname = "tokyonight.nvim"; 11093 - version = "2024-04-23"; 11093 + version = "2024-05-15"; 11094 11094 src = fetchFromGitHub { 11095 11095 owner = "folke"; 11096 11096 repo = "tokyonight.nvim"; 11097 - rev = "67afeaf7fd6ebba000633e89f63c31694057edde"; 11098 - sha256 = "0mn7hq0ldg7g4gcmnb7lajilwa4wl1h7an92ffdpp7yy01p0yhdx"; 11097 + rev = "c91aef1125e052c9d862e68389e4185ec56f6cde"; 11098 + sha256 = "0j9lblrhydjk9ny84bbd83vp4vh4bvpi1qs8dbzxx4j7970mmawl"; 11099 11099 }; 11100 11100 meta.homepage = "https://github.com/folke/tokyonight.nvim/"; 11101 11101 }; ··· 11355 11355 11356 11356 unison = buildVimPlugin { 11357 11357 pname = "unison"; 11358 - version = "2024-05-12"; 11358 + version = "2024-05-16"; 11359 11359 src = fetchFromGitHub { 11360 11360 owner = "unisonweb"; 11361 11361 repo = "unison"; 11362 - rev = "daa7dc3c20bb837ef3aacbee0f0158c79ae14d96"; 11363 - sha256 = "0baq40wn0nlni61jsxg141zm77qkrry1vmjphfr99gbr3iyc1fi0"; 11362 + rev = "05b941c9c85c0e17bc6e0310231a29594848a938"; 11363 + sha256 = "1i303qgd2xb5v3fyk9fj3lfshpxcwxjf01091dsxfv8mjhfv1v53"; 11364 11364 }; 11365 11365 meta.homepage = "https://github.com/unisonweb/unison/"; 11366 11366 }; ··· 12519 12519 12520 12520 vim-dadbod-completion = buildVimPlugin { 12521 12521 pname = "vim-dadbod-completion"; 12522 - version = "2023-11-17"; 12522 + version = "2024-05-15"; 12523 12523 src = fetchFromGitHub { 12524 12524 owner = "kristijanhusak"; 12525 12525 repo = "vim-dadbod-completion"; 12526 - rev = "c920cb0ba3dff4b1b0ed373e1c0b3007dec696c2"; 12527 - sha256 = "07shhzgg5f4zci1md5gmns0h4xq3hxvak4c78glm807kcw22rj70"; 12526 + rev = "5d5ad196fcde223509d7dabbade0148f7884c5e3"; 12527 + sha256 = "146zgn6cgzk1m9r09v3sdk3vzaan80jwq1zf0fskxk1c33jg1zpm"; 12528 12528 }; 12529 12529 meta.homepage = "https://github.com/kristijanhusak/vim-dadbod-completion/"; 12530 12530 }; 12531 12531 12532 12532 vim-dadbod-ui = buildVimPlugin { 12533 12533 pname = "vim-dadbod-ui"; 12534 - version = "2024-05-07"; 12534 + version = "2024-05-15"; 12535 12535 src = fetchFromGitHub { 12536 12536 owner = "kristijanhusak"; 12537 12537 repo = "vim-dadbod-ui"; 12538 - rev = "b1675d1f56c12b0abac2ef74b94670fe27adcf93"; 12539 - sha256 = "096rg4ydxyz6md2qla01wsgv9j00ysf6chxz9nyvp37w4av3illq"; 12538 + rev = "ac28346e964c1b814b19942903c379d57aea82f3"; 12539 + sha256 = "125kbkk5ib3nc1a2nki6mkf2zwh9i179n59ri1dzpx0whs1q4m9w"; 12540 12540 }; 12541 12541 meta.homepage = "https://github.com/kristijanhusak/vim-dadbod-ui/"; 12542 12542 }; ··· 13071 13071 13072 13072 vim-fugitive = buildVimPlugin { 13073 13073 pname = "vim-fugitive"; 13074 - version = "2024-05-01"; 13074 + version = "2024-05-15"; 13075 13075 src = fetchFromGitHub { 13076 13076 owner = "tpope"; 13077 13077 repo = "vim-fugitive"; 13078 - rev = "ce882460cf3db12e99f8bf579cbf99e331f6dd4f"; 13079 - sha256 = "1sc586alzbfhznqkkg8ck2xmkvchmvaa2w21iqk33sxnkmwfxs6j"; 13078 + rev = "19ca61c78c86a2ce6a425aee9b1c6664e5149ea6"; 13079 + sha256 = "0k9q0ms0vm58dyrbgm21bp9ryx3jf1ns53jznd1yq8kh7mrcmppi"; 13080 13080 }; 13081 13081 meta.homepage = "https://github.com/tpope/vim-fugitive/"; 13082 13082 }; ··· 14850 14850 14851 14851 vim-plug = buildVimPlugin { 14852 14852 pname = "vim-plug"; 14853 - version = "2024-03-30"; 14853 + version = "2024-05-14"; 14854 14854 src = fetchFromGitHub { 14855 14855 owner = "junegunn"; 14856 14856 repo = "vim-plug"; 14857 - rev = "d977fa37866a48f1001b5adaadbbdbf88baf35e8"; 14858 - sha256 = "02dn70qd8w0vw7qn404lvdp4gp8a4rwv5ylffgpf84dr3lnc1bm0"; 14857 + rev = "3f1daea5bd4f7a9d1211996ea706daf3b639bf05"; 14858 + sha256 = "1nw4dfvqws9k8fd3gkfm1vk59a3bhi80518h8n7dfifgpnqvddy1"; 14859 14859 }; 14860 14860 meta.homepage = "https://github.com/junegunn/vim-plug/"; 14861 14861 }; ··· 15426 15426 15427 15427 vim-slime = buildVimPlugin { 15428 15428 pname = "vim-slime"; 15429 - version = "2024-05-08"; 15429 + version = "2024-05-15"; 15430 15430 src = fetchFromGitHub { 15431 15431 owner = "jpalardy"; 15432 15432 repo = "vim-slime"; 15433 - rev = "4a898d57f41bc35e99173c5a0a8720f1796459b5"; 15434 - sha256 = "0pdxlrl7l4d0jvkm806dl8zq9gj7qncvyfncvffgvjvwgmkwdn31"; 15433 + rev = "0e1d0a43ddf4b9f06c1bc1da149f9408fedcc2e0"; 15434 + sha256 = "16asnwpza7jrhh2sgcsnv6l4brbccfxf6ka44fsm1lgrp0m5gncx"; 15435 15435 }; 15436 15436 meta.homepage = "https://github.com/jpalardy/vim-slime/"; 15437 15437 }; ··· 15594 15594 15595 15595 vim-spirv = buildVimPlugin { 15596 15596 pname = "vim-spirv"; 15597 - version = "2024-05-12"; 15597 + version = "2024-05-16"; 15598 15598 src = fetchFromGitHub { 15599 15599 owner = "kbenzie"; 15600 15600 repo = "vim-spirv"; 15601 - rev = "1f8ef77f2ae1990abcb99cee1a599280375e4349"; 15602 - sha256 = "0mmkjpm82ibx8f22392mad4l8y6xssqbr2cf8cdrxbk22p3yzf86"; 15601 + rev = "0111c3f1738d210c25b6c1bbe7a60c0fb487895a"; 15602 + sha256 = "1hviir5g12yhr9vvyb2nff35hymp1nqnywqq72cb6ys1qg6vsnsw"; 15603 15603 }; 15604 15604 meta.homepage = "https://github.com/kbenzie/vim-spirv/"; 15605 15605 }; ··· 15688 15688 meta.homepage = "https://github.com/svermeulen/vim-subversive/"; 15689 15689 }; 15690 15690 15691 + vim-suda = buildVimPlugin { 15692 + pname = "vim-suda"; 15693 + version = "2024-04-25"; 15694 + src = fetchFromGitHub { 15695 + owner = "lambdalisue"; 15696 + repo = "vim-suda"; 15697 + rev = "b97fab52f9cdeabe2bbb5eb98d82356899f30829"; 15698 + sha256 = "12chb6hv6ynl54dzwb7qz6rf9vwjglxfnzcmmhc2q2wm0y264gbi"; 15699 + }; 15700 + meta.homepage = "https://github.com/lambdalisue/vim-suda/"; 15701 + }; 15702 + 15691 15703 vim-surround = buildVimPlugin { 15692 15704 pname = "vim-surround"; 15693 15705 version = "2022-10-25"; ··· 16568 16580 16569 16581 vimtex = buildVimPlugin { 16570 16582 pname = "vimtex"; 16571 - version = "2024-05-11"; 16583 + version = "2024-05-13"; 16572 16584 src = fetchFromGitHub { 16573 16585 owner = "lervag"; 16574 16586 repo = "vimtex"; 16575 - rev = "8ca74380935beb4ed5d213bb55b2380cc1a83bd6"; 16576 - sha256 = "1rmw0zqp1gwla5yml3i4smqpmqy8am0skgg786mrwkbs47harjfk"; 16587 + rev = "9665df7f51ee24aa81dbd81782e0a22480209753"; 16588 + sha256 = "0y93msqsiww0nvlfgbi9z6lgpis8fbfmhqgky3944r4hmprv0jdw"; 16577 16589 }; 16578 16590 meta.homepage = "https://github.com/lervag/vimtex/"; 16579 16591 }; ··· 16748 16760 16749 16761 wiki-vim = buildVimPlugin { 16750 16762 pname = "wiki.vim"; 16751 - version = "2024-05-08"; 16763 + version = "2024-05-14"; 16752 16764 src = fetchFromGitHub { 16753 16765 owner = "lervag"; 16754 16766 repo = "wiki.vim"; 16755 - rev = "afb7b9aa3b1058ae6f48e3bea7d5eae92bf00e99"; 16756 - sha256 = "1qwcvbk0jf3x83q60bdp0j29xwkm49scwgrzfswpqf6xw1kyd7rk"; 16767 + rev = "0dc5fff1c9c5b703dc6e6e17abc5b3c5050d168e"; 16768 + sha256 = "0na7j7c6wsjc3nghwfvxw9718bf6032l21d978n6aq6d0zrga0n3"; 16757 16769 }; 16758 16770 meta.homepage = "https://github.com/lervag/wiki.vim/"; 16759 16771 }; ··· 16916 16928 16917 16929 yanky-nvim = buildVimPlugin { 16918 16930 pname = "yanky.nvim"; 16919 - version = "2024-02-02"; 16931 + version = "2024-05-15"; 16920 16932 src = fetchFromGitHub { 16921 16933 owner = "gbprod"; 16922 16934 repo = "yanky.nvim"; 16923 - rev = "7c5cbf0122ff2dfbb6a92f14885894f65949cc8b"; 16924 - sha256 = "177xjvghk3i889hlmzmyc8xsryrj6f69v6dk0zs3wf10m20ixr78"; 16935 + rev = "ec4353355d4eabef451d16d46a3e0535176b81aa"; 16936 + sha256 = "04wgkw03xxlwy1cvjrvdssfw7v5q1alb2wbk0nawhca5rv27r2p4"; 16925 16937 }; 16926 16938 meta.homepage = "https://github.com/gbprod/yanky.nvim/"; 16927 16939 }; ··· 17253 17265 17254 17266 rose-pine = buildVimPlugin { 17255 17267 pname = "rose-pine"; 17256 - version = "2024-05-10"; 17268 + version = "2024-05-14"; 17257 17269 src = fetchFromGitHub { 17258 17270 owner = "rose-pine"; 17259 17271 repo = "neovim"; 17260 - rev = "b24b48d35b4f96bbc9a717d3220e959dbf89f6b1"; 17261 - sha256 = "1bamxqqpq882klv5i7wdcm2pywwcjj3d85jvpw8w9wc15qkanqgm"; 17272 + rev = "b6fe88c3282cf9f117a3e836d761c2d78d02f417"; 17273 + sha256 = "1fwwp7szzz2yp4z5hngqn8ll8765xv0nlhgcb75yj257kz7x5lq1"; 17262 17274 }; 17263 17275 meta.homepage = "https://github.com/rose-pine/neovim/"; 17264 17276 };
+47 -36
pkgs/applications/editors/vim/plugins/nvim-treesitter/generated.nix
··· 237 237 }; 238 238 clojure = buildGrammar { 239 239 language = "clojure"; 240 - version = "0.0.0+rev=6e41628"; 240 + version = "0.0.0+rev=3a1ace9"; 241 241 src = fetchFromGitHub { 242 242 owner = "sogaiu"; 243 243 repo = "tree-sitter-clojure"; 244 - rev = "6e41628e9d18b19caea1cb1d72aae4ccff5bdfe9"; 245 - hash = "sha256-ssJIftjadMmoESm882mQ3fUjIoTDWtBrOolgYLcmlEE="; 244 + rev = "3a1ace906c151dd631cf6f149b5083f2b60e6a9e"; 245 + hash = "sha256-pLOCUReklkRt9t5kalDrOAlE9U7a2O8sXaZFjYhagcg="; 246 246 }; 247 247 meta.homepage = "https://github.com/sogaiu/tree-sitter-clojure"; 248 248 }; ··· 414 414 }; 415 415 diff = buildGrammar { 416 416 language = "diff"; 417 - version = "0.0.0+rev=710e881"; 417 + version = "0.0.0+rev=629676f"; 418 418 src = fetchFromGitHub { 419 419 owner = "the-mikedavis"; 420 420 repo = "tree-sitter-diff"; 421 - rev = "710e881127512bda8157096e26c1f3e91702823a"; 422 - hash = "sha256-BdRWI/7LiUS8z5LehaQgPVcdOPcEOJSmNHowtukHAQw="; 421 + rev = "629676fc3919606964231b2c7b9677d6998a2cb4"; 422 + hash = "sha256-E2l971rSVAuSiLDVMto6hjViaxDLjA7LFQM+/evMXhk="; 423 423 }; 424 424 meta.homepage = "https://github.com/the-mikedavis/tree-sitter-diff"; 425 425 }; ··· 492 492 }; 493 493 earthfile = buildGrammar { 494 494 language = "earthfile"; 495 - version = "0.0.0+rev=3ded1cb"; 495 + version = "0.0.0+rev=cc99a3f"; 496 496 src = fetchFromGitHub { 497 497 owner = "glehmann"; 498 498 repo = "tree-sitter-earthfile"; 499 - rev = "3ded1cba9eab14b07377b700b1132d259480abae"; 500 - hash = "sha256-lT+qHnHqBDJs042Yz10PNyxUbTa7nt+cnxDvAZJRryA="; 499 + rev = "cc99a3f5e4281b63fdd63dca4750e808fd52628f"; 500 + hash = "sha256-wOKNkNoNw2Stv+8zhVAX2No8Y060Kri/j5iytJvviUc="; 501 501 }; 502 502 meta.homepage = "https://github.com/glehmann/tree-sitter-earthfile"; 503 503 }; ··· 592 592 }; 593 593 erlang = buildGrammar { 594 594 language = "erlang"; 595 - version = "0.0.0+rev=20ce5a9"; 595 + version = "0.0.0+rev=868306b"; 596 596 src = fetchFromGitHub { 597 597 owner = "WhatsApp"; 598 598 repo = "tree-sitter-erlang"; 599 - rev = "20ce5a9234c7248b3f91c5b0b028f1760b954dde"; 600 - hash = "sha256-5m4zWP1LPbcab73RIIXD8wG8y68s/rwFypOX7OEWgoQ="; 599 + rev = "868306b033f5163658e8777940da68d61afad5cb"; 600 + hash = "sha256-9QRYYKSy7riZfUVSnYzTIGH0tznU90Q1nYwe7DDr284="; 601 601 }; 602 602 meta.homepage = "https://github.com/WhatsApp/tree-sitter-erlang"; 603 603 }; ··· 1165 1165 }; 1166 1166 idl = buildGrammar { 1167 1167 language = "idl"; 1168 - version = "0.0.0+rev=e885d7f"; 1168 + version = "0.0.0+rev=006a526"; 1169 1169 src = fetchFromGitHub { 1170 1170 owner = "cathaysia"; 1171 1171 repo = "tree-sitter-idl"; 1172 - rev = "e885d7fd66c2549b7a28172400d645d27656f5cb"; 1173 - hash = "sha256-japZBj8H+NTTw/Ne7prSjhZD6idcLjPCKEB3OjSSoxc="; 1172 + rev = "006a5266d771cab57da58a6ade483ebd3075638d"; 1173 + hash = "sha256-NV7VojLenoq7RDyN1HMuyZFjcQhZeC6OtRz/y4bAe58="; 1174 1174 }; 1175 1175 meta.homepage = "https://github.com/cathaysia/tree-sitter-idl"; 1176 1176 }; ··· 1843 1843 }; 1844 1844 php = buildGrammar { 1845 1845 language = "php"; 1846 - version = "0.0.0+rev=d5aea05"; 1846 + version = "0.0.0+rev=27afeb0"; 1847 1847 src = fetchFromGitHub { 1848 1848 owner = "tree-sitter"; 1849 1849 repo = "tree-sitter-php"; 1850 - rev = "d5aea05a70c5d021fa746516391f156d35658875"; 1851 - hash = "sha256-Wk8JBHqAPIHDGQ6+cw/ATFdeFGZZZ3XgkPCuAOFUROs="; 1850 + rev = "27afeb02e49ff30acd17b67897b1c0114561a38c"; 1851 + hash = "sha256-PnxjmaC9FPhHlhbhDR+VIbzf5K7Pon7V0pLMymvqoKo="; 1852 1852 }; 1853 1853 location = "php"; 1854 1854 meta.homepage = "https://github.com/tree-sitter/tree-sitter-php"; 1855 1855 }; 1856 1856 php_only = buildGrammar { 1857 1857 language = "php_only"; 1858 - version = "0.0.0+rev=d5aea05"; 1858 + version = "0.0.0+rev=27afeb0"; 1859 1859 src = fetchFromGitHub { 1860 1860 owner = "tree-sitter"; 1861 1861 repo = "tree-sitter-php"; 1862 - rev = "d5aea05a70c5d021fa746516391f156d35658875"; 1863 - hash = "sha256-Wk8JBHqAPIHDGQ6+cw/ATFdeFGZZZ3XgkPCuAOFUROs="; 1862 + rev = "27afeb02e49ff30acd17b67897b1c0114561a38c"; 1863 + hash = "sha256-PnxjmaC9FPhHlhbhDR+VIbzf5K7Pon7V0pLMymvqoKo="; 1864 1864 }; 1865 1865 location = "php_only"; 1866 1866 meta.homepage = "https://github.com/tree-sitter/tree-sitter-php"; ··· 2421 2421 }; 2422 2422 sourcepawn = buildGrammar { 2423 2423 language = "sourcepawn"; 2424 - version = "0.0.0+rev=6a67772"; 2424 + version = "0.0.0+rev=4c62065"; 2425 2425 src = fetchFromGitHub { 2426 2426 owner = "nilshelmig"; 2427 2427 repo = "tree-sitter-sourcepawn"; 2428 - rev = "6a67772eed866cd6d247cc478a28c6a9272fc0ef"; 2429 - hash = "sha256-sroMixo0FvPpC01F/hx5VV3h9ugdLhVbGeVnIlabyk0="; 2428 + rev = "4c62065c4136873ef42a9efe128380cbe7ae4f64"; 2429 + hash = "sha256-cJDEBX821nJnGQLfZ/Me/PDdX5cQuJYzhrJZOLfl+sk="; 2430 2430 }; 2431 2431 meta.homepage = "https://github.com/nilshelmig/tree-sitter-sourcepawn"; 2432 2432 }; ··· 2688 2688 }; 2689 2689 tlaplus = buildGrammar { 2690 2690 language = "tlaplus"; 2691 - version = "0.0.0+rev=08d9156"; 2691 + version = "0.0.0+rev=ef18145"; 2692 2692 src = fetchFromGitHub { 2693 2693 owner = "tlaplus-community"; 2694 2694 repo = "tree-sitter-tlaplus"; 2695 - rev = "08d915655d360bb0b7592d38a533dcc17dcb8dfb"; 2696 - hash = "sha256-zE48mJUoCiyF4YDQyZtxMIqUq+99BWT4XGxeTzcWLYY="; 2695 + rev = "ef18145e7f985f592ad41b04004b24a590f58b71"; 2696 + hash = "sha256-y/AtFMj4aKwjiahYWk63U9BEMpnq7LUQDnPrXsun3kI="; 2697 2697 }; 2698 2698 meta.homepage = "https://github.com/tlaplus-community/tree-sitter-tlaplus"; 2699 2699 }; ··· 2744 2744 }; 2745 2745 tsx = buildGrammar { 2746 2746 language = "tsx"; 2747 - version = "0.0.0+rev=7b4275d"; 2747 + version = "0.0.0+rev=4ad3010"; 2748 2748 src = fetchFromGitHub { 2749 2749 owner = "tree-sitter"; 2750 2750 repo = "tree-sitter-typescript"; 2751 - rev = "7b4275d077ae196fc0ce42ab3ad091574e3ec519"; 2752 - hash = "sha256-oRvAU+g2wOZrUexWAsDTY+g9iSXVs5FvGlGIAdcfIfA="; 2751 + rev = "4ad3010c91d700026d036b5230e2d99ba94ae8a4"; 2752 + hash = "sha256-9GCo/xjP6J/tEimx4ce2Qd7XhhbSuWZoTVrysac7BOw="; 2753 2753 }; 2754 2754 location = "tsx"; 2755 2755 meta.homepage = "https://github.com/tree-sitter/tree-sitter-typescript"; ··· 2778 2778 }; 2779 2779 typescript = buildGrammar { 2780 2780 language = "typescript"; 2781 - version = "0.0.0+rev=7b4275d"; 2781 + version = "0.0.0+rev=4ad3010"; 2782 2782 src = fetchFromGitHub { 2783 2783 owner = "tree-sitter"; 2784 2784 repo = "tree-sitter-typescript"; 2785 - rev = "7b4275d077ae196fc0ce42ab3ad091574e3ec519"; 2786 - hash = "sha256-oRvAU+g2wOZrUexWAsDTY+g9iSXVs5FvGlGIAdcfIfA="; 2785 + rev = "4ad3010c91d700026d036b5230e2d99ba94ae8a4"; 2786 + hash = "sha256-9GCo/xjP6J/tEimx4ce2Qd7XhhbSuWZoTVrysac7BOw="; 2787 2787 }; 2788 2788 location = "typescript"; 2789 2789 meta.homepage = "https://github.com/tree-sitter/tree-sitter-typescript"; 2790 + }; 2791 + typespec = buildGrammar { 2792 + language = "typespec"; 2793 + version = "0.0.0+rev=fd9a83c"; 2794 + src = fetchFromGitHub { 2795 + owner = "happenslol"; 2796 + repo = "tree-sitter-typespec"; 2797 + rev = "fd9a83c6c0aaaff4b1354454b5b9f130f59dd553"; 2798 + hash = "sha256-IFXjqsdgnJotOlb9v4XbcA2+U0txXUsv0RQA+RCilVU="; 2799 + }; 2800 + meta.homepage = "https://github.com/happenslol/tree-sitter-typespec"; 2790 2801 }; 2791 2802 typoscript = buildGrammar { 2792 2803 language = "typoscript"; ··· 2990 3001 }; 2991 3002 wit = buildGrammar { 2992 3003 language = "wit"; 2993 - version = "0.0.0+rev=3d6124c"; 3004 + version = "0.0.0+rev=cab9479"; 2994 3005 src = fetchFromGitHub { 2995 3006 owner = "liamwh"; 2996 3007 repo = "tree-sitter-wit"; 2997 - rev = "3d6124cfe88555ecee1ba97d6d76c70d13af927a"; 2998 - hash = "sha256-a+kMWBwVDDXIcUbTqcCp3RllllScuqrJEMjFTu9SiPc="; 3008 + rev = "cab94791450524a542324d8cbe8017d69c516d8e"; 3009 + hash = "sha256-R8b+UQmj+JtiIGDsvR5KBTGoX99m0k/HJx2bTGNxRH0="; 2999 3010 }; 3000 3011 meta.homepage = "https://github.com/liamwh/tree-sitter-wit"; 3001 3012 };
+4
pkgs/applications/editors/vim/plugins/overrides.nix
··· 442 442 dependencies = with self; [ completion-nvim nvim-treesitter ]; 443 443 }; 444 444 445 + CopilotChat-nvim = super.CopilotChat-nvim.overrideAttrs { 446 + dependencies = with self; [ copilot-lua plenary-nvim ]; 447 + }; 448 + 445 449 copilot-vim = super.copilot-vim.overrideAttrs { 446 450 postInstall = '' 447 451 substituteInPlace $out/autoload/copilot/agent.vim \
+2 -1
pkgs/applications/editors/vim/plugins/vim-plugin-names
··· 4 4 https://github.com/jackMort/ChatGPT.nvim/,HEAD, 5 5 https://github.com/chrisbra/CheckAttach/,, 6 6 https://github.com/vim-scripts/Colour-Sampler-Pack/,, 7 + https://github.com/CopilotC-Nvim/CopilotChat.nvim/,HEAD, 7 8 https://github.com/whonore/Coqtail/,, 8 9 https://github.com/vim-scripts/DoxygenToolkit.vim/,, 9 10 https://github.com/numToStr/FTerm.nvim/,, ··· 859 860 https://github.com/teto/stylish.nvim/,HEAD, 860 861 https://github.com/gbprod/substitute.nvim/,HEAD, 861 862 https://github.com/kvrohit/substrata.nvim/,HEAD, 862 - https://github.com/lambdalisue/suda.vim/,, 863 863 https://github.com/ervandew/supertab/,, 864 864 https://github.com/ur4ltz/surround.nvim/,, 865 865 https://github.com/peterbjorgensen/sved/,, ··· 1322 1322 https://github.com/alx741/vim-stylishask/,, 1323 1323 https://github.com/arzg/vim-substrata/,HEAD, 1324 1324 https://github.com/svermeulen/vim-subversive/,, 1325 + https://github.com/lambdalisue/vim-suda/,, 1325 1326 https://github.com/tpope/vim-surround/,, 1326 1327 https://github.com/evanleck/vim-svelte/,, 1327 1328 https://github.com/machakann/vim-swap/,,
+3 -3
pkgs/applications/misc/cotp/default.nix
··· 8 8 9 9 rustPlatform.buildRustPackage rec { 10 10 pname = "cotp"; 11 - version = "1.6.1"; 11 + version = "1.7.0"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "replydev"; 15 15 repo = "cotp"; 16 16 rev = "v${version}"; 17 - hash = "sha256-QWx42uSjN6Dev5JTa8vPTXOxr8qw5kerLepTWhJTb1I="; 17 + hash = "sha256-Qr4pHtTQfJjRiFI4vZAynRWyJWYqWHYhZH4Mgd6OgR8="; 18 18 }; 19 19 20 - cargoHash = "sha256-5PUVg08D8cZdUIt1A9wjpi9bc/XsB9P7S6L8M054MCg="; 20 + cargoHash = "sha256-U/kVN8oaNuZ9CdLkAQWK3H5kZv5qZgzWQwi8pHMVPcM="; 21 21 22 22 buildInputs = lib.optionals stdenv.isLinux [ libxcb ] 23 23 ++ lib.optionals stdenv.isDarwin [ AppKit ];
+2 -2
pkgs/applications/misc/octoprint/default.nix
··· 116 116 self: super: { 117 117 octoprint = self.buildPythonPackage rec { 118 118 pname = "OctoPrint"; 119 - version = "1.10.0"; 119 + version = "1.10.1"; 120 120 121 121 src = fetchFromGitHub { 122 122 owner = "OctoPrint"; 123 123 repo = "OctoPrint"; 124 124 rev = version; 125 - hash = "sha256-gM989Wh4HYU5/afCcZ6iRJWb4bkFZfnnxBmyklSZep4="; 125 + hash = "sha256-kJTYIsbNr6cLzti8yg+IlXjbKwXuwumE3Wydy+oTeK4="; 126 126 }; 127 127 128 128 propagatedBuildInputs = with self; [
+2 -2
pkgs/applications/misc/syncthingtray/default.nix
··· 34 34 }: 35 35 36 36 stdenv.mkDerivation (finalAttrs: { 37 - version = "1.5.2"; 37 + version = "1.5.3"; 38 38 pname = "syncthingtray"; 39 39 40 40 src = fetchFromGitHub { 41 41 owner = "Martchus"; 42 42 repo = "syncthingtray"; 43 43 rev = "v${finalAttrs.version}"; 44 - hash = "sha256-OjrkmpH9sVrO3M25PKj6jhmI2DmbP+/r4mOZ4BqE/1Y="; 44 + hash = "sha256-wE6N0GSdcLDQOO+M3Ahlv3Z2S+PqdvZAnueCKB9+R08="; 45 45 }; 46 46 47 47 buildInputs = [
+6 -6
pkgs/applications/misc/tipp10/default.nix
··· 1 - { cmake, lib, mkDerivation, fetchFromGitLab, 2 - qtmultimedia, qttools, ... }: 1 + { stdenv, cmake, lib, fetchFromGitLab, 2 + qtmultimedia, qttools, wrapQtAppsHook, ... }: 3 3 4 - mkDerivation rec { 4 + stdenv.mkDerivation rec { 5 5 pname = "tipp10"; 6 - version = "3.2.1"; 6 + version = "3.3.2"; 7 7 8 8 src = fetchFromGitLab { 9 9 owner = "tipp10"; 10 10 repo = "tipp10"; 11 11 rev = "v${version}"; 12 - sha256 = "4cxN2AnvYhZAMuA/qfmdLVICJNk6VCpRnfelbxYRvPg="; 12 + sha256 = "sha256-e0sWH4pT7ej9XGK/Sg9XMX2bMqcXqtSaYI7KBZTXvp4="; 13 13 }; 14 14 15 - nativeBuildInputs = [ cmake qttools ]; 15 + nativeBuildInputs = [ cmake qttools wrapQtAppsHook ]; 16 16 buildInputs = [ qtmultimedia ]; 17 17 18 18 meta = with lib; {
+409 -409
pkgs/applications/networking/browsers/firefox-bin/beta_sources.nix
··· 1 1 { 2 - version = "126.0b5"; 2 + version = "127.0b2"; 3 3 sources = [ 4 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/ach/firefox-126.0b5.tar.bz2"; 4 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/ach/firefox-127.0b2.tar.bz2"; 5 5 locale = "ach"; 6 6 arch = "linux-x86_64"; 7 - sha256 = "7b882806b6cf50f3d1ca03600d75a99be305a029dbf23c98f4e78a9ae37971d2"; 7 + sha256 = "c7aae56e1d11690146e31f73c4f45dcc6cc17b70ee253d13dd9ce8f111056cbc"; 8 8 } 9 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/af/firefox-126.0b5.tar.bz2"; 9 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/af/firefox-127.0b2.tar.bz2"; 10 10 locale = "af"; 11 11 arch = "linux-x86_64"; 12 - sha256 = "caa21874c4bf34a8130902f9fb3515cdadb5aba45d1de703c243e941759fd791"; 12 + sha256 = "0ebbde167d241e133bdec7d552e1e788a82162d7c5e132307f638af8e7b42735"; 13 13 } 14 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/an/firefox-126.0b5.tar.bz2"; 14 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/an/firefox-127.0b2.tar.bz2"; 15 15 locale = "an"; 16 16 arch = "linux-x86_64"; 17 - sha256 = "627a705df2572943d4a0d79aa8c107a215d9f55c99d76ce395ed4e03d244deba"; 17 + sha256 = "f5c692093a7a37b197cfed2598dc0c3c9d74251c56a138c50bc1cc0e26aee7ce"; 18 18 } 19 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/ar/firefox-126.0b5.tar.bz2"; 19 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/ar/firefox-127.0b2.tar.bz2"; 20 20 locale = "ar"; 21 21 arch = "linux-x86_64"; 22 - sha256 = "f1f62fe5f81cea3aca86b58436ece8f3074fd71a3198686b8449200867511c97"; 22 + sha256 = "8a92915a3694d414dd784810842d1da28cbc1af13d207c1718fdacfa0bf0c0cf"; 23 23 } 24 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/ast/firefox-126.0b5.tar.bz2"; 24 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/ast/firefox-127.0b2.tar.bz2"; 25 25 locale = "ast"; 26 26 arch = "linux-x86_64"; 27 - sha256 = "df6cfc21cc15f619c019c48108d228b37531c6e5eb6e21b2ded2d56fbab277e7"; 27 + sha256 = "e754614bbbd6868318795e43bd067b0dede402c3c40866c6fed4e4ed177aecb8"; 28 28 } 29 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/az/firefox-126.0b5.tar.bz2"; 29 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/az/firefox-127.0b2.tar.bz2"; 30 30 locale = "az"; 31 31 arch = "linux-x86_64"; 32 - sha256 = "1a4addc76c8f5d4df74f4731571d680d3ce024530a94d91d9ce49abd899a7d26"; 32 + sha256 = "299ff13944cecb650402946cec2dc28a25ecc4d175932a646e5c8d1f985244de"; 33 33 } 34 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/be/firefox-126.0b5.tar.bz2"; 34 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/be/firefox-127.0b2.tar.bz2"; 35 35 locale = "be"; 36 36 arch = "linux-x86_64"; 37 - sha256 = "62c41d913c7cb3102baa8ad27df221cb889ea80240e038e0573bbb48ed5d69d5"; 37 + sha256 = "ecc04baedce51685f8ecad129fb62563eb6ce4c9f2d889b3ef1b9d99d9485114"; 38 38 } 39 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/bg/firefox-126.0b5.tar.bz2"; 39 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/bg/firefox-127.0b2.tar.bz2"; 40 40 locale = "bg"; 41 41 arch = "linux-x86_64"; 42 - sha256 = "a45e0c8dc7e3ea1a57a3f7e0dca7c2ab908d75ad81a312434e7b021defa5bd34"; 42 + sha256 = "be8464fa878ef4feb42fe5df414577474c3a753763d6956413c1896e014b1aca"; 43 43 } 44 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/bn/firefox-126.0b5.tar.bz2"; 44 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/bn/firefox-127.0b2.tar.bz2"; 45 45 locale = "bn"; 46 46 arch = "linux-x86_64"; 47 - sha256 = "810908bbcb86f7af0f79ffcde6e8f7026143390c1b73fa8a81a94b3a1478b107"; 47 + sha256 = "1af698eca255cd94ce65ccac0d0fdf9ebd360706b296b27a7c010f277493efcb"; 48 48 } 49 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/br/firefox-126.0b5.tar.bz2"; 49 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/br/firefox-127.0b2.tar.bz2"; 50 50 locale = "br"; 51 51 arch = "linux-x86_64"; 52 - sha256 = "e3031ab47d44f798f64399ad24ba58b49bf5bdc1a6fb6243d7c25f7064a751fe"; 52 + sha256 = "7ca811f059868cb830c1bf48278583eefb662a4af70d4ad838d695bbc8993cec"; 53 53 } 54 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/bs/firefox-126.0b5.tar.bz2"; 54 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/bs/firefox-127.0b2.tar.bz2"; 55 55 locale = "bs"; 56 56 arch = "linux-x86_64"; 57 - sha256 = "af2ad1f920ea9aaf36b6c53a0988bb64d118ee4188e6d4eab19b3c850d469101"; 57 + sha256 = "955a3e8010619360be944c52003d64ab21f87f2fe502dd9a64da927eab18bb95"; 58 58 } 59 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/ca-valencia/firefox-126.0b5.tar.bz2"; 59 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/ca-valencia/firefox-127.0b2.tar.bz2"; 60 60 locale = "ca-valencia"; 61 61 arch = "linux-x86_64"; 62 - sha256 = "1147f887f5a55686120e576178bac7c1d1f942972ca71278b2f7f8f68ec82902"; 62 + sha256 = "e7d014d5652fdbe7aecf0f03e1bfc7c5faf6162c4db457c173696e085d947fd3"; 63 63 } 64 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/ca/firefox-126.0b5.tar.bz2"; 64 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/ca/firefox-127.0b2.tar.bz2"; 65 65 locale = "ca"; 66 66 arch = "linux-x86_64"; 67 - sha256 = "70fbde5bd2c164c8dfc59d60ad2fe1cebd0bc004b77f6907fb85524dd43cc5f4"; 67 + sha256 = "78b66d258512ed91ec1264e15a8011d2ebbcf54e8c1b6aa7e938708b4b449561"; 68 68 } 69 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/cak/firefox-126.0b5.tar.bz2"; 69 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/cak/firefox-127.0b2.tar.bz2"; 70 70 locale = "cak"; 71 71 arch = "linux-x86_64"; 72 - sha256 = "7154ac05107c2a533835c41fdd2caa2725c794a1572269bb191d8c2bc0b70738"; 72 + sha256 = "254afadecf8023427b35ebb8892bddef4a28c74edb1111fd7463abad3253a2aa"; 73 73 } 74 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/cs/firefox-126.0b5.tar.bz2"; 74 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/cs/firefox-127.0b2.tar.bz2"; 75 75 locale = "cs"; 76 76 arch = "linux-x86_64"; 77 - sha256 = "6b78f1f546a2c98523fb0dd7215fad87ccd1a4e9dfa3e5695c46afcb74e003f2"; 77 + sha256 = "d9f7f85aa9d206585f569dac9e033203120c1828003cea384eaf029b735c72b3"; 78 78 } 79 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/cy/firefox-126.0b5.tar.bz2"; 79 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/cy/firefox-127.0b2.tar.bz2"; 80 80 locale = "cy"; 81 81 arch = "linux-x86_64"; 82 - sha256 = "9b08898afb1134a2de2c1236774a02354795cd8bb8f7d41130b137cb4d14b1a1"; 82 + sha256 = "3a14e4e0f24e9171957f17c1c4796ae011ce13be294c4eb9ccee88051337da05"; 83 83 } 84 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/da/firefox-126.0b5.tar.bz2"; 84 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/da/firefox-127.0b2.tar.bz2"; 85 85 locale = "da"; 86 86 arch = "linux-x86_64"; 87 - sha256 = "31571ea197dc8cd61b79c061ca32dfdc60d3b74f2dee43f2641d534ca83dca2f"; 87 + sha256 = "54ff12ab652e7732b399f9467a83958948762b937714e4a063b25584b3da4bf2"; 88 88 } 89 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/de/firefox-126.0b5.tar.bz2"; 89 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/de/firefox-127.0b2.tar.bz2"; 90 90 locale = "de"; 91 91 arch = "linux-x86_64"; 92 - sha256 = "f89bee1b43c832b710776280a25119846bf2a5f7c5cfb179bd6b5008c39bfe20"; 92 + sha256 = "5f62e89d986ccac338ac3188b50536ca5beccc8917a7fb115e2d375d51ed64d8"; 93 93 } 94 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/dsb/firefox-126.0b5.tar.bz2"; 94 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/dsb/firefox-127.0b2.tar.bz2"; 95 95 locale = "dsb"; 96 96 arch = "linux-x86_64"; 97 - sha256 = "881cc3a38e34d8083082de26b53d2e129273841dc6ab07f7cbb9af0222e0ca87"; 97 + sha256 = "3278591a5399a8f6e586909b5b5849f2f27fc6399c6be6917e53f067958076a3"; 98 98 } 99 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/el/firefox-126.0b5.tar.bz2"; 99 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/el/firefox-127.0b2.tar.bz2"; 100 100 locale = "el"; 101 101 arch = "linux-x86_64"; 102 - sha256 = "797b56a42f2034ef81aca234ac19374069dac7ff911e2077f65a9e8c05f17820"; 102 + sha256 = "5ddbb69bbeccb6457eb4beee49c07d2d5fbb8ec084d1d26ca86bcd2b5d6ac714"; 103 103 } 104 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/en-CA/firefox-126.0b5.tar.bz2"; 104 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/en-CA/firefox-127.0b2.tar.bz2"; 105 105 locale = "en-CA"; 106 106 arch = "linux-x86_64"; 107 - sha256 = "592abdec04a68e1d9d33eeeae10b7abddbdd0f7e92bf4bc9db92e8aedbc6dda2"; 107 + sha256 = "c7ec425ef808857a04eb6bb12edb6efa9aeea69e775aa0cf68c49eabde4f9043"; 108 108 } 109 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/en-GB/firefox-126.0b5.tar.bz2"; 109 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/en-GB/firefox-127.0b2.tar.bz2"; 110 110 locale = "en-GB"; 111 111 arch = "linux-x86_64"; 112 - sha256 = "8979a85a9f1b41ab5cb3f1ef3ea8252a4aca21930772f058964ad96ae685f92f"; 112 + sha256 = "6adabefd8ce08035576c0d27df6fe303265d6e5db3669a50d95588617c2dbd71"; 113 113 } 114 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/en-US/firefox-126.0b5.tar.bz2"; 114 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/en-US/firefox-127.0b2.tar.bz2"; 115 115 locale = "en-US"; 116 116 arch = "linux-x86_64"; 117 - sha256 = "8f96bbe7c30b3a8c43d05ec33e20f51353ad5ed207af93aa9eb886119f371b81"; 117 + sha256 = "91bfda5ff421d6db1577990555c2da4096c18ea7d7e4faa626bef572b75bd463"; 118 118 } 119 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/eo/firefox-126.0b5.tar.bz2"; 119 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/eo/firefox-127.0b2.tar.bz2"; 120 120 locale = "eo"; 121 121 arch = "linux-x86_64"; 122 - sha256 = "a42ffd0c0a474f33b3aa5a7619526cbafbd94c5e217dc3472edafee268ea01ec"; 122 + sha256 = "3cebf9a4fd6beae49e82762ecf4d828d91f4c251d016122e8392a088269ccb06"; 123 123 } 124 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/es-AR/firefox-126.0b5.tar.bz2"; 124 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/es-AR/firefox-127.0b2.tar.bz2"; 125 125 locale = "es-AR"; 126 126 arch = "linux-x86_64"; 127 - sha256 = "6939b66072807cad29b5a56ea64c58f1ddc42e1dad730a045b21940f8c896879"; 127 + sha256 = "197a15d60bdde213e3ced20797c5d3b9266d107c786b3db754045698aaf79e9a"; 128 128 } 129 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/es-CL/firefox-126.0b5.tar.bz2"; 129 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/es-CL/firefox-127.0b2.tar.bz2"; 130 130 locale = "es-CL"; 131 131 arch = "linux-x86_64"; 132 - sha256 = "fd6c3249039600fe1a740015adbbd8c84658771291e2d9a4a6b6df1f710c5d5f"; 132 + sha256 = "38c2a4d4809af60082bb76fe339ed083d77021edf3cb7db67466ef15b45be761"; 133 133 } 134 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/es-ES/firefox-126.0b5.tar.bz2"; 134 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/es-ES/firefox-127.0b2.tar.bz2"; 135 135 locale = "es-ES"; 136 136 arch = "linux-x86_64"; 137 - sha256 = "23b69a886876a95eaee696132818e5cc3a7a104412b1ce3b53d844c239856d40"; 137 + sha256 = "8def6020400ec124ea9aa6c6b790807428651b2a01bd1bb82f59277d4d29b352"; 138 138 } 139 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/es-MX/firefox-126.0b5.tar.bz2"; 139 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/es-MX/firefox-127.0b2.tar.bz2"; 140 140 locale = "es-MX"; 141 141 arch = "linux-x86_64"; 142 - sha256 = "accf92b324c8bbc8cd5205a33bd837b3dce351f7fa431ebd434881cb597a665f"; 142 + sha256 = "0057d55bb5dac0fa89c68cd29f530be63fe5e612a164edaaf0f95fa9e647abf1"; 143 143 } 144 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/et/firefox-126.0b5.tar.bz2"; 144 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/et/firefox-127.0b2.tar.bz2"; 145 145 locale = "et"; 146 146 arch = "linux-x86_64"; 147 - sha256 = "0d244490fa6cde3d8299cf42328a062efaebd33aff5f4ab07b3d3e96401f5477"; 147 + sha256 = "ca1ea211bf93436e7eaaaa271e9fe7d24b594ee02b7213616c5b73e7a04dd18b"; 148 148 } 149 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/eu/firefox-126.0b5.tar.bz2"; 149 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/eu/firefox-127.0b2.tar.bz2"; 150 150 locale = "eu"; 151 151 arch = "linux-x86_64"; 152 - sha256 = "48022a4dde833a1ae4572b08e6d863dccd18c8e775c361c71de7a4a4d89688b3"; 152 + sha256 = "e871a40eee14d812b3d1da6b4f09ecfc3418bdd1510a8b6ee1c64284be191c9f"; 153 153 } 154 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/fa/firefox-126.0b5.tar.bz2"; 154 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/fa/firefox-127.0b2.tar.bz2"; 155 155 locale = "fa"; 156 156 arch = "linux-x86_64"; 157 - sha256 = "f0791730cb92dc1945ea45ee5aaae6e736bd5817cb98b66d6fc60ff828ba1e57"; 157 + sha256 = "e99bbf034d1155a1956b4d9eead8627a0a8a25653f84bcf7c65c5449a36b9c54"; 158 158 } 159 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/ff/firefox-126.0b5.tar.bz2"; 159 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/ff/firefox-127.0b2.tar.bz2"; 160 160 locale = "ff"; 161 161 arch = "linux-x86_64"; 162 - sha256 = "4b824de7cb4d997e74a4f51c109d6a68d01478ea68c4b03a58a68d20b9ff97e4"; 162 + sha256 = "ec6595203a1889062c8fb8fa1b316e5c65277b8a8b5de1af688a7c7f912c5352"; 163 163 } 164 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/fi/firefox-126.0b5.tar.bz2"; 164 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/fi/firefox-127.0b2.tar.bz2"; 165 165 locale = "fi"; 166 166 arch = "linux-x86_64"; 167 - sha256 = "fbd79f64bed89e6817dee05a0bb783518389947577f247e83b41021a4cfa4fe0"; 167 + sha256 = "cd71f03e43427070536fd717058cae2909c7a853ea380e879a28e4d730eb5400"; 168 168 } 169 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/fr/firefox-126.0b5.tar.bz2"; 169 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/fr/firefox-127.0b2.tar.bz2"; 170 170 locale = "fr"; 171 171 arch = "linux-x86_64"; 172 - sha256 = "de4d18a481b2d30f204884d3b1cb7d6a427f23cb4b97a8618e0eb77cfb829903"; 172 + sha256 = "f4327bb8fe27a19d2e075d5ac44d4b1b89d3f2dcec866c336fad6d87d1d32270"; 173 173 } 174 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/fur/firefox-126.0b5.tar.bz2"; 174 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/fur/firefox-127.0b2.tar.bz2"; 175 175 locale = "fur"; 176 176 arch = "linux-x86_64"; 177 - sha256 = "4d98682733fb1cd5825a30a6a2cd2808eaa7539612130e83f480bf17a1f862bd"; 177 + sha256 = "484706c7851e7631a2b4330e2ffa3a753cf9e3a42266019d09dec6d6888bdcd0"; 178 178 } 179 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/fy-NL/firefox-126.0b5.tar.bz2"; 179 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/fy-NL/firefox-127.0b2.tar.bz2"; 180 180 locale = "fy-NL"; 181 181 arch = "linux-x86_64"; 182 - sha256 = "67b89c68dbfead6a537e18a61281a2b12c411952279757de375380f3f38fb7c1"; 182 + sha256 = "8b292615492a6cfb221c42395fca9fdeca0c4f1303c87e7c7cd17e5d820b44b5"; 183 183 } 184 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/ga-IE/firefox-126.0b5.tar.bz2"; 184 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/ga-IE/firefox-127.0b2.tar.bz2"; 185 185 locale = "ga-IE"; 186 186 arch = "linux-x86_64"; 187 - sha256 = "909cddd2346ea631708c586f45dd58b60843e1a30511a6882239a88797a5e335"; 187 + sha256 = "035ed8e107a7a5a2c48c11fee7a7adc3acba6c4fd1cb8b1d0474656f8e4e1e2a"; 188 188 } 189 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/gd/firefox-126.0b5.tar.bz2"; 189 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/gd/firefox-127.0b2.tar.bz2"; 190 190 locale = "gd"; 191 191 arch = "linux-x86_64"; 192 - sha256 = "e5ac8f176af8dde4d32d12e09a29676d47715cdf1a75890aeed560f3f6bfc0af"; 192 + sha256 = "687128878140148cb4f84d0efbc64b7d2152213ffcafcf7858c05b8f4f3d8e30"; 193 193 } 194 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/gl/firefox-126.0b5.tar.bz2"; 194 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/gl/firefox-127.0b2.tar.bz2"; 195 195 locale = "gl"; 196 196 arch = "linux-x86_64"; 197 - sha256 = "5767e287441bcf2ae9955c5cacb5ce4ee222c7fece242c192d117c9cb30cbaa1"; 197 + sha256 = "360399cc36a3c738aa1c93679fdd6b5310ff2076a53532d72dc6c6eae0bd9494"; 198 198 } 199 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/gn/firefox-126.0b5.tar.bz2"; 199 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/gn/firefox-127.0b2.tar.bz2"; 200 200 locale = "gn"; 201 201 arch = "linux-x86_64"; 202 - sha256 = "fa3b43ba4186f5707904eddfc968665e1865686a365e56d267271decea5d5bf7"; 202 + sha256 = "5f350d55055e6f34778ea1339ac597cac41a12951265a18c1717f67e337fedf3"; 203 203 } 204 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/gu-IN/firefox-126.0b5.tar.bz2"; 204 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/gu-IN/firefox-127.0b2.tar.bz2"; 205 205 locale = "gu-IN"; 206 206 arch = "linux-x86_64"; 207 - sha256 = "4c4b63c08739d8527346a2ab4b3f8c8fff696b66389bfd7073d093502744e3e2"; 207 + sha256 = "3ecf863778a252d8753aa2a05cb9e44b28a618e763b654aeda899d48a745553c"; 208 208 } 209 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/he/firefox-126.0b5.tar.bz2"; 209 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/he/firefox-127.0b2.tar.bz2"; 210 210 locale = "he"; 211 211 arch = "linux-x86_64"; 212 - sha256 = "97e24f445558ee478b491761b6d374dece22899914e6196eaf24d17d4b06e675"; 212 + sha256 = "fc0f199d8a594cc8b48aebc24e424dda4baa6c56cea4366caa39cc36f4ab742a"; 213 213 } 214 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/hi-IN/firefox-126.0b5.tar.bz2"; 214 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/hi-IN/firefox-127.0b2.tar.bz2"; 215 215 locale = "hi-IN"; 216 216 arch = "linux-x86_64"; 217 - sha256 = "e7bfc3309faa60007a20ca89d737ff6201a2af87f7190cef0de3df75dfe5a356"; 217 + sha256 = "901d602e9145cc5a639a4968844c25b93bad2781ced750067cca5b5015ea28b2"; 218 218 } 219 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/hr/firefox-126.0b5.tar.bz2"; 219 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/hr/firefox-127.0b2.tar.bz2"; 220 220 locale = "hr"; 221 221 arch = "linux-x86_64"; 222 - sha256 = "d196b1f8239b471fbe1e22a9000e90879df086f19efad662df850e933089447e"; 222 + sha256 = "f52fe3d76b09f7ffa42d77d91fffc7d3de93e7c7a3a653fa14648a0024b59068"; 223 223 } 224 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/hsb/firefox-126.0b5.tar.bz2"; 224 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/hsb/firefox-127.0b2.tar.bz2"; 225 225 locale = "hsb"; 226 226 arch = "linux-x86_64"; 227 - sha256 = "0e5f22c52a587add26909e3a98797e05413e7af6c9cc6f55c724e3c7c2b945a8"; 227 + sha256 = "c6aad5424868d618723f1eb9385d3a520ac320b71e04e3ba8a59fb65fa212d27"; 228 228 } 229 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/hu/firefox-126.0b5.tar.bz2"; 229 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/hu/firefox-127.0b2.tar.bz2"; 230 230 locale = "hu"; 231 231 arch = "linux-x86_64"; 232 - sha256 = "b4b8d4e2f5016775a78b4e2607f65f3f44051a79d8a43d9299cb4bcabb5b43b6"; 232 + sha256 = "66f47258fff3b41f0ac0be736073aa12dccef6d7a8fd33473ac7a795dc75c327"; 233 233 } 234 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/hy-AM/firefox-126.0b5.tar.bz2"; 234 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/hy-AM/firefox-127.0b2.tar.bz2"; 235 235 locale = "hy-AM"; 236 236 arch = "linux-x86_64"; 237 - sha256 = "dbd0a975300046bcbcd93349454984c72a99f45e0eb974bd1f82d88216ea6939"; 237 + sha256 = "afedb515503be143d48f050c0a987369037fb4a0ad53a6220670609faff94a3a"; 238 238 } 239 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/ia/firefox-126.0b5.tar.bz2"; 239 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/ia/firefox-127.0b2.tar.bz2"; 240 240 locale = "ia"; 241 241 arch = "linux-x86_64"; 242 - sha256 = "61c295524f18e44e23ef905df305f047fd2b3b31c2c9aa08e69ebb19ea695a96"; 242 + sha256 = "634717627c38094a95ca772c6865c5400b2ad1222e22e22c8f3f6b8124a41547"; 243 243 } 244 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/id/firefox-126.0b5.tar.bz2"; 244 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/id/firefox-127.0b2.tar.bz2"; 245 245 locale = "id"; 246 246 arch = "linux-x86_64"; 247 - sha256 = "9dc418697f4fed0e16a4c2d88b4aaf5e62369a438f104980db44a21598330dda"; 247 + sha256 = "a4ee1313d38275121361844e5d992ef29d83a98fe4147c3c18caa36c0ed1e9e6"; 248 248 } 249 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/is/firefox-126.0b5.tar.bz2"; 249 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/is/firefox-127.0b2.tar.bz2"; 250 250 locale = "is"; 251 251 arch = "linux-x86_64"; 252 - sha256 = "84ce271d9b6a9af3b16e1adb5e71acba1483ec794cb25bf0197f5a521de98a4b"; 252 + sha256 = "7933781c4914cc2fa783f5223ed84773f6b9eea9c4e574f31e5235c56f642fa9"; 253 253 } 254 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/it/firefox-126.0b5.tar.bz2"; 254 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/it/firefox-127.0b2.tar.bz2"; 255 255 locale = "it"; 256 256 arch = "linux-x86_64"; 257 - sha256 = "caacae564d5cf9662a559cc0b11078c33882b70607e4298f41db18d790106863"; 257 + sha256 = "fd23150d42eab62017c03c60cc14c60bf30a8dd47392f9f3622ae6f316736cbb"; 258 258 } 259 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/ja/firefox-126.0b5.tar.bz2"; 259 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/ja/firefox-127.0b2.tar.bz2"; 260 260 locale = "ja"; 261 261 arch = "linux-x86_64"; 262 - sha256 = "873e6213fbdb9e437d5e7abec993c0464db0692797be79f4249aae4a9eae6b93"; 262 + sha256 = "e883e237c2be0be605d3c84c9360a9f7730f3db72beb2950b783718c72dbd6c9"; 263 263 } 264 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/ka/firefox-126.0b5.tar.bz2"; 264 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/ka/firefox-127.0b2.tar.bz2"; 265 265 locale = "ka"; 266 266 arch = "linux-x86_64"; 267 - sha256 = "f515d3859e404430d40728d6af708d95c0f73e4bd2fd23e4da5cc59a4a184f8a"; 267 + sha256 = "39a9cc928671f26756fe1be706ecc984e0d0e20a2d7801de02d84b183f69929c"; 268 268 } 269 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/kab/firefox-126.0b5.tar.bz2"; 269 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/kab/firefox-127.0b2.tar.bz2"; 270 270 locale = "kab"; 271 271 arch = "linux-x86_64"; 272 - sha256 = "de4334799536e6c191dc07f463f96f69773473f8bb1096011d0efce6facf6199"; 272 + sha256 = "1901f0511457f0554a157042d880eb655a05d21a9334141d749a0e3fb0a11477"; 273 273 } 274 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/kk/firefox-126.0b5.tar.bz2"; 274 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/kk/firefox-127.0b2.tar.bz2"; 275 275 locale = "kk"; 276 276 arch = "linux-x86_64"; 277 - sha256 = "0887ed3d14a160fd908762468f485a9ad10d49db871a434d3adc48065d395003"; 277 + sha256 = "bffba4678647019c5456b126454cbdfa6005132d2e56fd92731db444144a3c2d"; 278 278 } 279 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/km/firefox-126.0b5.tar.bz2"; 279 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/km/firefox-127.0b2.tar.bz2"; 280 280 locale = "km"; 281 281 arch = "linux-x86_64"; 282 - sha256 = "789081a881369cb3a775c702e57637ce06a895ef85e191764ce712783f32d4c8"; 282 + sha256 = "2bab72d223d23e27adbdd738397a65961aba70bb4305013bcaa781c4697c4950"; 283 283 } 284 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/kn/firefox-126.0b5.tar.bz2"; 284 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/kn/firefox-127.0b2.tar.bz2"; 285 285 locale = "kn"; 286 286 arch = "linux-x86_64"; 287 - sha256 = "58c6c22c636cc3b6a25ef72d22f5dda2bba19d08c6988b7be671fe502de1ecd3"; 287 + sha256 = "b8f989ed111930ed357c5522e1b1713d95dd4bf1507262fa4f1386679ac94780"; 288 288 } 289 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/ko/firefox-126.0b5.tar.bz2"; 289 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/ko/firefox-127.0b2.tar.bz2"; 290 290 locale = "ko"; 291 291 arch = "linux-x86_64"; 292 - sha256 = "47cf06195afb1010674e4e0cb196ba621d5832c6f24dbb4147a7fd7fe3d7a5c8"; 292 + sha256 = "af2127940913eace7dfdd52db34c2a5d53123822bf50153f5b58ebbb394a54ea"; 293 293 } 294 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/lij/firefox-126.0b5.tar.bz2"; 294 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/lij/firefox-127.0b2.tar.bz2"; 295 295 locale = "lij"; 296 296 arch = "linux-x86_64"; 297 - sha256 = "e3310f86e5bb92de78fda8be73d61eed3e7195fc1f3195a4e0891dfa244ea308"; 297 + sha256 = "6ce2e398539e3f4c5241a472a5b16e4cd60430e5d66e693cbb94cf8634f4afde"; 298 298 } 299 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/lt/firefox-126.0b5.tar.bz2"; 299 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/lt/firefox-127.0b2.tar.bz2"; 300 300 locale = "lt"; 301 301 arch = "linux-x86_64"; 302 - sha256 = "51dae70743bd22abc588fc868307ad80b8b12254a17d42a9a71b6dbd7c87dcaf"; 302 + sha256 = "538264101be6493fa266df6aa64342f013eac5f9b2e92c6f61f28727898e1447"; 303 303 } 304 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/lv/firefox-126.0b5.tar.bz2"; 304 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/lv/firefox-127.0b2.tar.bz2"; 305 305 locale = "lv"; 306 306 arch = "linux-x86_64"; 307 - sha256 = "814d16867bba81fa2a4694ba23e56d2fd7b6e303855b715ef386235b587612d6"; 307 + sha256 = "10e4d7da5fabe1187f8d205c7be80f61b10d8209c47f03fd5e4b531cdd110833"; 308 308 } 309 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/mk/firefox-126.0b5.tar.bz2"; 309 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/mk/firefox-127.0b2.tar.bz2"; 310 310 locale = "mk"; 311 311 arch = "linux-x86_64"; 312 - sha256 = "02971f2e9e48dbdb6f30ce99100d9212bd49caa26d97b02f6cae80c4ab288923"; 312 + sha256 = "8e20a49fc3a0bb9d005e45b21f7c9d0ddf4b4ff5f0641d0884f59dcb61b543d3"; 313 313 } 314 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/mr/firefox-126.0b5.tar.bz2"; 314 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/mr/firefox-127.0b2.tar.bz2"; 315 315 locale = "mr"; 316 316 arch = "linux-x86_64"; 317 - sha256 = "73414133309979d604cd0b05fd21aae2bd4cfbdded58035606901b10e28c7d3f"; 317 + sha256 = "39d54febce8a2755f01c0fb37b8332080d256d406c9d235207e8956ab4ed9187"; 318 318 } 319 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/ms/firefox-126.0b5.tar.bz2"; 319 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/ms/firefox-127.0b2.tar.bz2"; 320 320 locale = "ms"; 321 321 arch = "linux-x86_64"; 322 - sha256 = "bcfe246fd61ba41e23d9860b88abbbd61e4da5ed9755d2d39c1d24785cb6ffc2"; 322 + sha256 = "bed6d9827609128910ca7d5e8ec754b3a0c80e350ba619e74fdc43f2e59342d4"; 323 323 } 324 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/my/firefox-126.0b5.tar.bz2"; 324 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/my/firefox-127.0b2.tar.bz2"; 325 325 locale = "my"; 326 326 arch = "linux-x86_64"; 327 - sha256 = "4170ad2c245f34d0cddd54e7bcaccfe505b417fc1d453b82b79ec052bb887e89"; 327 + sha256 = "a88a8b48ee0c5384b5e4ba4a934df39881dd382a6657cd5896537e5ffb5ede05"; 328 328 } 329 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/nb-NO/firefox-126.0b5.tar.bz2"; 329 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/nb-NO/firefox-127.0b2.tar.bz2"; 330 330 locale = "nb-NO"; 331 331 arch = "linux-x86_64"; 332 - sha256 = "881a2a3f2304618ec949050808290f324860e25d80dd3172b443fc27ba938384"; 332 + sha256 = "95dfe9aeaad511bccb918fde67cdb816d0fd7be7c7117b085df79feb7d34886d"; 333 333 } 334 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/ne-NP/firefox-126.0b5.tar.bz2"; 334 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/ne-NP/firefox-127.0b2.tar.bz2"; 335 335 locale = "ne-NP"; 336 336 arch = "linux-x86_64"; 337 - sha256 = "3c293cafc653bd77971bf8344e7b93c5df2699f02b76e8bd2671eb7853f418a7"; 337 + sha256 = "d9718cbaf47641167ea6803f878ebe2cee8c328da01d0bb5294f9cb102fcb6d3"; 338 338 } 339 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/nl/firefox-126.0b5.tar.bz2"; 339 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/nl/firefox-127.0b2.tar.bz2"; 340 340 locale = "nl"; 341 341 arch = "linux-x86_64"; 342 - sha256 = "409eedae4cf7340a9111213e6c88fd91340ca1d85b5aedd74605f70cf20cad1b"; 342 + sha256 = "4573531cae8892e5ce64e550774ec04ef20cfc373e95287105828fe36f43435b"; 343 343 } 344 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/nn-NO/firefox-126.0b5.tar.bz2"; 344 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/nn-NO/firefox-127.0b2.tar.bz2"; 345 345 locale = "nn-NO"; 346 346 arch = "linux-x86_64"; 347 - sha256 = "d59cd6b50c11672670bccfc315d36c0496967dee986f03214185718c44189729"; 347 + sha256 = "62fed9500374dc32073b34d7b7e7f9c4a1f025dcd41ccec1bd409a0066bc1184"; 348 348 } 349 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/oc/firefox-126.0b5.tar.bz2"; 349 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/oc/firefox-127.0b2.tar.bz2"; 350 350 locale = "oc"; 351 351 arch = "linux-x86_64"; 352 - sha256 = "c4e3d1eb11eac47343c8c9080e1e73b72185bb09bb52b25eed31d69fa21529c6"; 352 + sha256 = "36b6041ed53861d2fad64c8e31d1009d18b318ae046d5586c7fe0330a9500d89"; 353 353 } 354 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/pa-IN/firefox-126.0b5.tar.bz2"; 354 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/pa-IN/firefox-127.0b2.tar.bz2"; 355 355 locale = "pa-IN"; 356 356 arch = "linux-x86_64"; 357 - sha256 = "39fcdf41135ec80db479cb38cb4b825620dde6563463886080a41b606890cec8"; 357 + sha256 = "cd3178a4d6fa15869c8912dbee3c660650d9392a17064c6639ab295d28ae56df"; 358 358 } 359 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/pl/firefox-126.0b5.tar.bz2"; 359 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/pl/firefox-127.0b2.tar.bz2"; 360 360 locale = "pl"; 361 361 arch = "linux-x86_64"; 362 - sha256 = "1bfe057079a573385fe74e2fd28314242568e0701f3380830cc9dd4bfee0d753"; 362 + sha256 = "fd6e9a84ed6815415a6f9833f17b352d5c580f2dead854b5d050ece4851d19b5"; 363 363 } 364 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/pt-BR/firefox-126.0b5.tar.bz2"; 364 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/pt-BR/firefox-127.0b2.tar.bz2"; 365 365 locale = "pt-BR"; 366 366 arch = "linux-x86_64"; 367 - sha256 = "fef1097e86873f5f440cb8c2287ba1fb759a8a6cdfcdcb463a52bd422d683f28"; 367 + sha256 = "5cb87e09bb6103642172d1f59eca2b7fe7da39131a4df8c5c5e5d556569624e4"; 368 368 } 369 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/pt-PT/firefox-126.0b5.tar.bz2"; 369 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/pt-PT/firefox-127.0b2.tar.bz2"; 370 370 locale = "pt-PT"; 371 371 arch = "linux-x86_64"; 372 - sha256 = "2c3d49059792fe94a58d617211bd0425e26ae826cd14acc9337b0bc10142d006"; 372 + sha256 = "8615acec0e99561e1e894b26aec495fcb20b2a86ecf58132ef8a3bbe1661abcd"; 373 373 } 374 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/rm/firefox-126.0b5.tar.bz2"; 374 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/rm/firefox-127.0b2.tar.bz2"; 375 375 locale = "rm"; 376 376 arch = "linux-x86_64"; 377 - sha256 = "2d55c3f9b253d636d971c0ed075b8e05b5afceb419ebd5a04a73f8ff4a70550d"; 377 + sha256 = "bb3241561ae0127fb8fcb27f6b287089626019e92523fba57111b0d8eb1c5a07"; 378 378 } 379 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/ro/firefox-126.0b5.tar.bz2"; 379 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/ro/firefox-127.0b2.tar.bz2"; 380 380 locale = "ro"; 381 381 arch = "linux-x86_64"; 382 - sha256 = "1fd413429bb9643903e01edce0954fb8e58aa381d4d5443c1f625599dc4e9072"; 382 + sha256 = "2db0820b0e3df8ac8c201cdbe6460de89ba0307762d57b63946b57eb459f2654"; 383 383 } 384 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/ru/firefox-126.0b5.tar.bz2"; 384 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/ru/firefox-127.0b2.tar.bz2"; 385 385 locale = "ru"; 386 386 arch = "linux-x86_64"; 387 - sha256 = "6d775551e9afd71352e3b9680d6b73a94763b650ff887577f387c8182d44a982"; 387 + sha256 = "f81b7e3938bff5a3a299ab8e5461890273c2e3e1a6dba82063db4eef9e7dade3"; 388 388 } 389 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/sat/firefox-126.0b5.tar.bz2"; 389 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/sat/firefox-127.0b2.tar.bz2"; 390 390 locale = "sat"; 391 391 arch = "linux-x86_64"; 392 - sha256 = "276e336274bc16684842d0f16960071d9c967372e9b2db6a9d922b93a974877f"; 392 + sha256 = "1fdc6ee7707f3a3fdbc4bdc63be308f07eb3929aa4b3b10c86cb3c36cf7ebefe"; 393 393 } 394 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/sc/firefox-126.0b5.tar.bz2"; 394 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/sc/firefox-127.0b2.tar.bz2"; 395 395 locale = "sc"; 396 396 arch = "linux-x86_64"; 397 - sha256 = "98fd54a97fded3e2529da8f38027579b0138d672f600c172cf480d99ba83a0e6"; 397 + sha256 = "6ff69281a6f4c6d76522f7c77bed70c094ac440b9e32dec9d428c53c0b4ef2d5"; 398 398 } 399 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/sco/firefox-126.0b5.tar.bz2"; 399 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/sco/firefox-127.0b2.tar.bz2"; 400 400 locale = "sco"; 401 401 arch = "linux-x86_64"; 402 - sha256 = "547a86fece1ce1194d4125ed0a692e6b58de3d91f987cdbd986b51545944e4a2"; 402 + sha256 = "d67d9d93a886d431572d4d5cafd162aae445e51c4b5e2182d04f621f1967ee59"; 403 403 } 404 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/si/firefox-126.0b5.tar.bz2"; 404 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/si/firefox-127.0b2.tar.bz2"; 405 405 locale = "si"; 406 406 arch = "linux-x86_64"; 407 - sha256 = "b51da37e167c6c8007364f7dae2dab54b3bb8be7be77172fca509da47a44496a"; 407 + sha256 = "e86b70eced0f5b03ce1fe607dc2af7157cef886d22fa5b940d293314579bbb7d"; 408 408 } 409 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/sk/firefox-126.0b5.tar.bz2"; 409 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/sk/firefox-127.0b2.tar.bz2"; 410 410 locale = "sk"; 411 411 arch = "linux-x86_64"; 412 - sha256 = "d7cb0bb885280bf8d127c353c75eca0ff7d29c664a581777feb7ef8e2cdad224"; 412 + sha256 = "7e5ed858cbf865bf58c00995c023810e3af765044c7c3d329eecd097923d767f"; 413 413 } 414 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/sl/firefox-126.0b5.tar.bz2"; 414 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/sl/firefox-127.0b2.tar.bz2"; 415 415 locale = "sl"; 416 416 arch = "linux-x86_64"; 417 - sha256 = "a3aed1ac28bc1cab53f102d9babf78f9ef911ca4bbc82df112849aef5b44a340"; 417 + sha256 = "1f478d69f4ade3a000b06c9bbb55df375a1b19ccd8feab80c355141c3745a3d0"; 418 418 } 419 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/son/firefox-126.0b5.tar.bz2"; 419 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/son/firefox-127.0b2.tar.bz2"; 420 420 locale = "son"; 421 421 arch = "linux-x86_64"; 422 - sha256 = "76aab06c52a21bcd47e2b011d615c0a24d7948a4bc41795523acdc970f169edd"; 422 + sha256 = "48ea869f09cafb9cec502f4156a41df9adbd4c129840596029809bcb0f0e2eef"; 423 423 } 424 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/sq/firefox-126.0b5.tar.bz2"; 424 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/sq/firefox-127.0b2.tar.bz2"; 425 425 locale = "sq"; 426 426 arch = "linux-x86_64"; 427 - sha256 = "a9e607be04fb14a780ae3f691460e251ef040bc5d63a161c4cb57eaea1d03e06"; 427 + sha256 = "9015e159779159398ec555278a68d0092064ae1edddc5c3421aaf425ef20a8c7"; 428 428 } 429 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/sr/firefox-126.0b5.tar.bz2"; 429 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/sr/firefox-127.0b2.tar.bz2"; 430 430 locale = "sr"; 431 431 arch = "linux-x86_64"; 432 - sha256 = "7577abfc5615d03e905a8b3a6e6907f9ac3fc9f852ac4b74ea420aafa4027974"; 432 + sha256 = "f28facc0fb7dc5ed720e4b1227cdf7e39023ac8d6e5f72474907e84ef3027bb4"; 433 433 } 434 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/sv-SE/firefox-126.0b5.tar.bz2"; 434 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/sv-SE/firefox-127.0b2.tar.bz2"; 435 435 locale = "sv-SE"; 436 436 arch = "linux-x86_64"; 437 - sha256 = "2a290055cb7452176a8cb36879611a8608b08439ea2c56c07d0f38ad7ed1d78d"; 437 + sha256 = "9e6d42a3f5a101fefa6c1a304ab139273d9a363c1ea967f58f12b61828101943"; 438 438 } 439 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/szl/firefox-126.0b5.tar.bz2"; 439 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/szl/firefox-127.0b2.tar.bz2"; 440 440 locale = "szl"; 441 441 arch = "linux-x86_64"; 442 - sha256 = "9c9717adb2694e4c4a2d2e8743709be2fdafe1a39756527bca41e08bcbdae5ae"; 442 + sha256 = "d20841dba01c4a3c8ecea6eea8dcd215b9f428cd0a8fd163166674c2f09b9afe"; 443 443 } 444 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/ta/firefox-126.0b5.tar.bz2"; 444 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/ta/firefox-127.0b2.tar.bz2"; 445 445 locale = "ta"; 446 446 arch = "linux-x86_64"; 447 - sha256 = "e15a375ed866faf40fc3721bfba4a7db657e06cbf4b95b7e98446d47be2944f5"; 447 + sha256 = "898c22d8d59395eaed7519eae5b9227283a8cec50b9c899a85129f30575c6cec"; 448 448 } 449 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/te/firefox-126.0b5.tar.bz2"; 449 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/te/firefox-127.0b2.tar.bz2"; 450 450 locale = "te"; 451 451 arch = "linux-x86_64"; 452 - sha256 = "73744888ccb61dfa0d7e00578a3562b7a52c3cb959c9fd42dc865d94cd2e0853"; 452 + sha256 = "94bfc953d203b49163756fad31b860313060860b6816c9e940ffa419e8a0f1c6"; 453 453 } 454 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/tg/firefox-126.0b5.tar.bz2"; 454 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/tg/firefox-127.0b2.tar.bz2"; 455 455 locale = "tg"; 456 456 arch = "linux-x86_64"; 457 - sha256 = "6bb78afe160c7f2aa81b6fefb8019fe15b43f6b3ae1520dd2f2e3a2cf095f684"; 457 + sha256 = "15a834f7064747052c700c419e337f7d2e6c0c2945ad62ae6d801d6ecca14208"; 458 458 } 459 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/th/firefox-126.0b5.tar.bz2"; 459 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/th/firefox-127.0b2.tar.bz2"; 460 460 locale = "th"; 461 461 arch = "linux-x86_64"; 462 - sha256 = "68594ec62ac6f9e5d625b98808500da43894c6e620ce84294b19d69baf507057"; 462 + sha256 = "29dc55972c657cd010e993edf30e74b639cce2d18b49dfe24bf7ec9b0f91353e"; 463 463 } 464 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/tl/firefox-126.0b5.tar.bz2"; 464 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/tl/firefox-127.0b2.tar.bz2"; 465 465 locale = "tl"; 466 466 arch = "linux-x86_64"; 467 - sha256 = "e84ae356c9c5ade2c74c5efd31f8d0763ce08f2bfab47c9fd78803565ddbb8eb"; 467 + sha256 = "33cbd2e1126492466f8c7d9759dc632408269ff816450291d2477d26ab087c88"; 468 468 } 469 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/tr/firefox-126.0b5.tar.bz2"; 469 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/tr/firefox-127.0b2.tar.bz2"; 470 470 locale = "tr"; 471 471 arch = "linux-x86_64"; 472 - sha256 = "3f69c024458eb206a833063aacecd4a70cf6992226b77a9ab95badab12ec9e2c"; 472 + sha256 = "90c3f4025a2805d55c236b366d83d415224fecc63f540af94aff09763ca72621"; 473 473 } 474 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/trs/firefox-126.0b5.tar.bz2"; 474 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/trs/firefox-127.0b2.tar.bz2"; 475 475 locale = "trs"; 476 476 arch = "linux-x86_64"; 477 - sha256 = "466c44c5db785b3727a3240b955cbc9a70da512c94230663957f7d7207065149"; 477 + sha256 = "7b741c41db47fad0bf4c63a5f4138cb2835e771cf93cba6a8696d25d9ecace69"; 478 478 } 479 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/uk/firefox-126.0b5.tar.bz2"; 479 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/uk/firefox-127.0b2.tar.bz2"; 480 480 locale = "uk"; 481 481 arch = "linux-x86_64"; 482 - sha256 = "142d8c32e7670b0ede164d9b0d90f60990cd98794f94af00d4710f7669371129"; 482 + sha256 = "a0aa50971cfd3f404b8e5626372b6931c0e317c8f4cebe48f8d2e16a437d95c2"; 483 483 } 484 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/ur/firefox-126.0b5.tar.bz2"; 484 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/ur/firefox-127.0b2.tar.bz2"; 485 485 locale = "ur"; 486 486 arch = "linux-x86_64"; 487 - sha256 = "de606cffb9b8d5441bbcea0db6718a3c5ef5352385b966790c01b8e2703141b4"; 487 + sha256 = "416c7f1595cb6b530f4b368906cc6b1923346e6e4874742a7dffc43eb7488c94"; 488 488 } 489 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/uz/firefox-126.0b5.tar.bz2"; 489 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/uz/firefox-127.0b2.tar.bz2"; 490 490 locale = "uz"; 491 491 arch = "linux-x86_64"; 492 - sha256 = "862a18e1be26effe08af12a805f4a9b33a43249c63fa22ecee7d0129d5321a6c"; 492 + sha256 = "9a8f52384037d26e1e41e80f62fec0b53cf8ae963f162d60176fafd4172a3e8b"; 493 493 } 494 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/vi/firefox-126.0b5.tar.bz2"; 494 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/vi/firefox-127.0b2.tar.bz2"; 495 495 locale = "vi"; 496 496 arch = "linux-x86_64"; 497 - sha256 = "90567dd577f106ea84f87211ba0a1657c91f6b09063cad90ec99d26c2ec49f02"; 497 + sha256 = "27cfd839bd664f24c737da29937cf0eaad742de74983af89dd2816c06e73061a"; 498 498 } 499 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/xh/firefox-126.0b5.tar.bz2"; 499 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/xh/firefox-127.0b2.tar.bz2"; 500 500 locale = "xh"; 501 501 arch = "linux-x86_64"; 502 - sha256 = "65d18f15887e7b83e5d1026599bab3eb49b34c79cdc2c59db20d1ac94fa92312"; 502 + sha256 = "d1d120e6f6dec19695da0c15e317a1c6fe442e4a4a52f4a21d51bf6364769fc1"; 503 503 } 504 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/zh-CN/firefox-126.0b5.tar.bz2"; 504 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/zh-CN/firefox-127.0b2.tar.bz2"; 505 505 locale = "zh-CN"; 506 506 arch = "linux-x86_64"; 507 - sha256 = "cbe68dab2ce96b73bc397bb0b925df0e2c10df9b3bafcb4b74c667aeb8950a03"; 507 + sha256 = "962ff97f66f2c77b4efe5fa292df61629c9e47e19fe4cadebcb54d2f80c15eea"; 508 508 } 509 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-x86_64/zh-TW/firefox-126.0b5.tar.bz2"; 509 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-x86_64/zh-TW/firefox-127.0b2.tar.bz2"; 510 510 locale = "zh-TW"; 511 511 arch = "linux-x86_64"; 512 - sha256 = "f8e8a1ec3d71f59d5ed74ad43c8988ea8ae535cc8a256c1b4c43470891fd920a"; 512 + sha256 = "1e5801ddb6ebdf53fd7707c01c73f22c7a27a5b7fc7536a3610fcd067eb9dfe9"; 513 513 } 514 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/ach/firefox-126.0b5.tar.bz2"; 514 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/ach/firefox-127.0b2.tar.bz2"; 515 515 locale = "ach"; 516 516 arch = "linux-i686"; 517 - sha256 = "ceca411e0d96ff89b59b8073abbd228ac246e7c09c3465825f8ffa22c8534a25"; 517 + sha256 = "802c6d008d96d11e6c71003d276af7e98361a8edcf523b0cad11784cf03f7507"; 518 518 } 519 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/af/firefox-126.0b5.tar.bz2"; 519 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/af/firefox-127.0b2.tar.bz2"; 520 520 locale = "af"; 521 521 arch = "linux-i686"; 522 - sha256 = "6a68baed628ddcb9e271745dbcdffacd59ba071e3cd40602bfa17ad37d41e219"; 522 + sha256 = "530670e03c7d074d9c8d5d0afb326636961616b27eb7699ec6b25df006d2c7de"; 523 523 } 524 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/an/firefox-126.0b5.tar.bz2"; 524 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/an/firefox-127.0b2.tar.bz2"; 525 525 locale = "an"; 526 526 arch = "linux-i686"; 527 - sha256 = "6d399f5c9b0a5e3d2ba183956625276549c1bdffaca198d17a6b7e41d3504df2"; 527 + sha256 = "a65ac8a8079190546f9ee7c69b3ee1a02c399a0489b1c45ac8b4edc75e6196a4"; 528 528 } 529 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/ar/firefox-126.0b5.tar.bz2"; 529 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/ar/firefox-127.0b2.tar.bz2"; 530 530 locale = "ar"; 531 531 arch = "linux-i686"; 532 - sha256 = "36c8d6c2fb1a53effd23093de381b206199c49af71c457b584d77a54875cc85e"; 532 + sha256 = "321b67c2599e7b6331de8ba121d4bdde3ec769faf28655d862d8ac290a3bd83d"; 533 533 } 534 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/ast/firefox-126.0b5.tar.bz2"; 534 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/ast/firefox-127.0b2.tar.bz2"; 535 535 locale = "ast"; 536 536 arch = "linux-i686"; 537 - sha256 = "f082b51e0a8f001241b01dd68710185e30dc486bdbe72e88ebd4a5d8f81ad2f1"; 537 + sha256 = "12d6e84029f88fa28c50c2f412636b6efd78e4394b398c11adfcccc1968ac4de"; 538 538 } 539 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/az/firefox-126.0b5.tar.bz2"; 539 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/az/firefox-127.0b2.tar.bz2"; 540 540 locale = "az"; 541 541 arch = "linux-i686"; 542 - sha256 = "414f65c8da90cac9dd9263b1676d87b6d45f6d70684b471c48ecc1c77ef3fc94"; 542 + sha256 = "ff39be5bead1890b2042b438f304f94f7ff034261dc38337638294505952e998"; 543 543 } 544 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/be/firefox-126.0b5.tar.bz2"; 544 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/be/firefox-127.0b2.tar.bz2"; 545 545 locale = "be"; 546 546 arch = "linux-i686"; 547 - sha256 = "c8422e7b05de0b06bbee7ccb00662950aba2fc39c4de3a3ccaab678b1eab67ff"; 547 + sha256 = "a27a07598d0c2c8c829eaded33a78c1005c364bb362ab62a986a9b3dbdc8c499"; 548 548 } 549 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/bg/firefox-126.0b5.tar.bz2"; 549 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/bg/firefox-127.0b2.tar.bz2"; 550 550 locale = "bg"; 551 551 arch = "linux-i686"; 552 - sha256 = "af6eda65e459df5ba22750ed561299a0d3098321969f0d6c838e7c259872457a"; 552 + sha256 = "57b8d1d00e932c88d0da08e7c8875d5e902face54493adecf78b642a1a674bf3"; 553 553 } 554 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/bn/firefox-126.0b5.tar.bz2"; 554 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/bn/firefox-127.0b2.tar.bz2"; 555 555 locale = "bn"; 556 556 arch = "linux-i686"; 557 - sha256 = "46724ab53c981519d9992b87ada36b97953785a64ff73867ecb180decaefb0c6"; 557 + sha256 = "760753808a4316851201c9b03ae4ba48bcf1453ad55b3cd35be7c59216632865"; 558 558 } 559 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/br/firefox-126.0b5.tar.bz2"; 559 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/br/firefox-127.0b2.tar.bz2"; 560 560 locale = "br"; 561 561 arch = "linux-i686"; 562 - sha256 = "84eca14fec1998e46f13b4005f7342b7e7ef983e74c4f92429a67765d6772873"; 562 + sha256 = "d85255a1a0ac8768c30c04c63b5720f99da2e9819beaf16c1d919a94517ee779"; 563 563 } 564 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/bs/firefox-126.0b5.tar.bz2"; 564 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/bs/firefox-127.0b2.tar.bz2"; 565 565 locale = "bs"; 566 566 arch = "linux-i686"; 567 - sha256 = "690b5119417934a49bf7bab42f616f5cd02e066868914eef14dec467c26caf7d"; 567 + sha256 = "1e7ad576c18ab7ba06f5096b04aee21894d35aef360f33821d72d32d616344aa"; 568 568 } 569 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/ca-valencia/firefox-126.0b5.tar.bz2"; 569 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/ca-valencia/firefox-127.0b2.tar.bz2"; 570 570 locale = "ca-valencia"; 571 571 arch = "linux-i686"; 572 - sha256 = "0235b4daedb450be2d520cbdc2761668bc534fcef98bcab46cff4b5a1fc5a993"; 572 + sha256 = "6c9c9d8f5aa45258db2a83097861e4449ec344363dd9bfa188feef0519c1a3c0"; 573 573 } 574 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/ca/firefox-126.0b5.tar.bz2"; 574 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/ca/firefox-127.0b2.tar.bz2"; 575 575 locale = "ca"; 576 576 arch = "linux-i686"; 577 - sha256 = "7004c1c5e76103084bfc33078cce427eb12e5165cb025c9b98437a2552e97ebd"; 577 + sha256 = "e8dfe5520631c2c58eba5a091751078c14efb52e0133bc3d22d21a0be5d4705b"; 578 578 } 579 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/cak/firefox-126.0b5.tar.bz2"; 579 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/cak/firefox-127.0b2.tar.bz2"; 580 580 locale = "cak"; 581 581 arch = "linux-i686"; 582 - sha256 = "12e2a6fc96f7cf7dc02d0d0cc62c07c22afa794b11a0c0a9ff78f7a58dfb82eb"; 582 + sha256 = "5b390a91a65f791526ad61d7d51283d45ce1f2b53a70a5cffd4e452a8da2bb72"; 583 583 } 584 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/cs/firefox-126.0b5.tar.bz2"; 584 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/cs/firefox-127.0b2.tar.bz2"; 585 585 locale = "cs"; 586 586 arch = "linux-i686"; 587 - sha256 = "9dc39fef30ce900c2590aa83e4d835497d0c8f0c92b12ced53b7fb69b575ff46"; 587 + sha256 = "cd87ac0d87aa06361c56569b9a3958c20e39a065cb5e7eacbf25186b9b031470"; 588 588 } 589 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/cy/firefox-126.0b5.tar.bz2"; 589 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/cy/firefox-127.0b2.tar.bz2"; 590 590 locale = "cy"; 591 591 arch = "linux-i686"; 592 - sha256 = "b2717e2b66f40ab699d6b6ad7bde1dfbb9f05b25a9991338a2ce870309d50d33"; 592 + sha256 = "4494e4f47da2fcd54309d781e3097467ee38b3a3dc38da11c8aff6b26b33d7ac"; 593 593 } 594 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/da/firefox-126.0b5.tar.bz2"; 594 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/da/firefox-127.0b2.tar.bz2"; 595 595 locale = "da"; 596 596 arch = "linux-i686"; 597 - sha256 = "5e65737aa2c58e85e2a5da501fb074774edbaf3c90ba35adbda5e228e989367c"; 597 + sha256 = "e38bc2ac598c2d5102ca10bd98a2ddf936c02e291e8fb886920c0b0ac8597db3"; 598 598 } 599 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/de/firefox-126.0b5.tar.bz2"; 599 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/de/firefox-127.0b2.tar.bz2"; 600 600 locale = "de"; 601 601 arch = "linux-i686"; 602 - sha256 = "13ec999725bd3e29a75564abd8382b18d7a93fad5190f90f566896de1d4e4391"; 602 + sha256 = "ef7f7a96869d0e3d020d12b6a6205c9c213028f8cb9275e4ba06db89a0029880"; 603 603 } 604 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/dsb/firefox-126.0b5.tar.bz2"; 604 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/dsb/firefox-127.0b2.tar.bz2"; 605 605 locale = "dsb"; 606 606 arch = "linux-i686"; 607 - sha256 = "735c6d3989a8477771eb90c0d3e002ecb1fd6ad86df2330c1e6934ee9306ecde"; 607 + sha256 = "57c0b187aa2addcd44cb9dd7b09f014a3157e645c39ceb2d6f705a9339801c86"; 608 608 } 609 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/el/firefox-126.0b5.tar.bz2"; 609 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/el/firefox-127.0b2.tar.bz2"; 610 610 locale = "el"; 611 611 arch = "linux-i686"; 612 - sha256 = "340384791251a7b150fa7b0971b8e0be096b810a739374af0e5196b94c486227"; 612 + sha256 = "0a269fdebb8a6620b21c9b658ef8aeeac2096b354aeecd3d704782fd52cd50b8"; 613 613 } 614 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/en-CA/firefox-126.0b5.tar.bz2"; 614 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/en-CA/firefox-127.0b2.tar.bz2"; 615 615 locale = "en-CA"; 616 616 arch = "linux-i686"; 617 - sha256 = "c9160a9b6d84a47d772a86839bd571e32e5e709cba968904d529d1e6037424f7"; 617 + sha256 = "9c7e024a7b57462589ea2acd0899c497ad49af9dc1c4ae87c443535e6cba609f"; 618 618 } 619 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/en-GB/firefox-126.0b5.tar.bz2"; 619 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/en-GB/firefox-127.0b2.tar.bz2"; 620 620 locale = "en-GB"; 621 621 arch = "linux-i686"; 622 - sha256 = "009bc08956d4e277e7f755dc5d646af918c897bfc1c19e53b3798d5fc6c27552"; 622 + sha256 = "3bdce7ce9098691eba4772bc666deb1f94bed373896fa15de1f15a8d4e215d09"; 623 623 } 624 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/en-US/firefox-126.0b5.tar.bz2"; 624 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/en-US/firefox-127.0b2.tar.bz2"; 625 625 locale = "en-US"; 626 626 arch = "linux-i686"; 627 - sha256 = "2ba786e17d399865c2804e2f482486c88b96147fda2940f91ebc5d6fb8c8c7cc"; 627 + sha256 = "b3158a4159a97b2ff19af94bf5bb7c023f492b5917aa508489be4e5fe5b64e2b"; 628 628 } 629 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/eo/firefox-126.0b5.tar.bz2"; 629 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/eo/firefox-127.0b2.tar.bz2"; 630 630 locale = "eo"; 631 631 arch = "linux-i686"; 632 - sha256 = "671d2040f839b2b04365cdb39a9843cc5b44d865cabc21c990a3c8bab8352298"; 632 + sha256 = "2c6bc4bd14e9370b55da8b3e62f875f8702890d346310e4da7c10676b42f4a7b"; 633 633 } 634 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/es-AR/firefox-126.0b5.tar.bz2"; 634 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/es-AR/firefox-127.0b2.tar.bz2"; 635 635 locale = "es-AR"; 636 636 arch = "linux-i686"; 637 - sha256 = "6794493fba480b3edf6fdbbff5fddbe512df75d67a1e5776e0191adcac31bbf3"; 637 + sha256 = "c24a364747f3908921b30f9123b2d3c4b0ac5ae7ef699e165829dcbab5e1be9a"; 638 638 } 639 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/es-CL/firefox-126.0b5.tar.bz2"; 639 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/es-CL/firefox-127.0b2.tar.bz2"; 640 640 locale = "es-CL"; 641 641 arch = "linux-i686"; 642 - sha256 = "5bd489e8169dd4fd8b1e1176ad55eaef9db0f80608ff6b76aa87905f7e31947f"; 642 + sha256 = "762fab1b8f2a39a21a826ce43bf16e080e1ac7691e4c274fc271e1b3cf034b16"; 643 643 } 644 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/es-ES/firefox-126.0b5.tar.bz2"; 644 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/es-ES/firefox-127.0b2.tar.bz2"; 645 645 locale = "es-ES"; 646 646 arch = "linux-i686"; 647 - sha256 = "ed36b3d79a6c104c8dc6c28c5f90cd874313facde07b8d8a147207e14d262f4a"; 647 + sha256 = "e7a5b3f9dc59111f24a0bac107c6a93ff5b57a7943a1d71aaae67aa43f3400bb"; 648 648 } 649 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/es-MX/firefox-126.0b5.tar.bz2"; 649 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/es-MX/firefox-127.0b2.tar.bz2"; 650 650 locale = "es-MX"; 651 651 arch = "linux-i686"; 652 - sha256 = "c63912d626371e8608a10e2fde4ab08dccd683b843266fe5a9751bd6f181cd18"; 652 + sha256 = "1ae2aab1022e231969814476eb8fcc59e5c0fbbea425adf792df732f24f8b6b7"; 653 653 } 654 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/et/firefox-126.0b5.tar.bz2"; 654 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/et/firefox-127.0b2.tar.bz2"; 655 655 locale = "et"; 656 656 arch = "linux-i686"; 657 - sha256 = "aab284558624951a0b456b0aeec3dbe24f7db2b6d9200af844a4feecbcf2e5f5"; 657 + sha256 = "1051ac29e2bbb640273a0926b18568d71276a3b189f1741ab5e50222e1b47bac"; 658 658 } 659 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/eu/firefox-126.0b5.tar.bz2"; 659 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/eu/firefox-127.0b2.tar.bz2"; 660 660 locale = "eu"; 661 661 arch = "linux-i686"; 662 - sha256 = "12f2c0ff6b6aa9ee57123658a3c4780eb1715b348340832db593c00597f70ae7"; 662 + sha256 = "8e2de2befda0278010a8dcbcfd97a5463ae3d911bd2c5576a3c1899b7dd284ee"; 663 663 } 664 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/fa/firefox-126.0b5.tar.bz2"; 664 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/fa/firefox-127.0b2.tar.bz2"; 665 665 locale = "fa"; 666 666 arch = "linux-i686"; 667 - sha256 = "9152133624785ee9d890885daef561b8d40afe20dbbe8a322a607e68f53fa930"; 667 + sha256 = "3c731dc5e9fd464d303abe7ee9c6748e6eaac838433abfc6ee49ba8da4de41a6"; 668 668 } 669 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/ff/firefox-126.0b5.tar.bz2"; 669 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/ff/firefox-127.0b2.tar.bz2"; 670 670 locale = "ff"; 671 671 arch = "linux-i686"; 672 - sha256 = "54d96ce8f7aa91fc003d84aac88e4b64541d8dd637e73b28bcaeeab7174bc5bc"; 672 + sha256 = "6f5896c468957a97805ca32e6707c0bef05d074e48c0e98c748e437003244591"; 673 673 } 674 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/fi/firefox-126.0b5.tar.bz2"; 674 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/fi/firefox-127.0b2.tar.bz2"; 675 675 locale = "fi"; 676 676 arch = "linux-i686"; 677 - sha256 = "0027ef0b7bcb74c71207b719fa11d4037f8fa094ec1ada6f2eb4a122546227e3"; 677 + sha256 = "239998cd45b41d2891164d51617a17cd8216127d3a74f05b5d518e8fb619e95b"; 678 678 } 679 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/fr/firefox-126.0b5.tar.bz2"; 679 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/fr/firefox-127.0b2.tar.bz2"; 680 680 locale = "fr"; 681 681 arch = "linux-i686"; 682 - sha256 = "19d1b85044fb62490459f73a2950c7f838cafca1ad6faea453b1a0d863f9773a"; 682 + sha256 = "8b1e30a397131582378a12d1534d0be8cd977e685419e2ffcd8bea2782802bf1"; 683 683 } 684 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/fur/firefox-126.0b5.tar.bz2"; 684 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/fur/firefox-127.0b2.tar.bz2"; 685 685 locale = "fur"; 686 686 arch = "linux-i686"; 687 - sha256 = "e828482839a6ab4ad5b07129f68aa20df4e87f5ad00549b6a935d78c104be608"; 687 + sha256 = "f2523e7bb7e36143bdf9232cb6e764eca8c8b35bac2a36220527361b785a14e4"; 688 688 } 689 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/fy-NL/firefox-126.0b5.tar.bz2"; 689 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/fy-NL/firefox-127.0b2.tar.bz2"; 690 690 locale = "fy-NL"; 691 691 arch = "linux-i686"; 692 - sha256 = "ceed7138a03e781d886c4501237c0debe4ccc1c93bdb13a2a66c123e533ff984"; 692 + sha256 = "0dca8df8605677b9411860662122413769aaa0df4316a4e25edcb76e24fb56a0"; 693 693 } 694 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/ga-IE/firefox-126.0b5.tar.bz2"; 694 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/ga-IE/firefox-127.0b2.tar.bz2"; 695 695 locale = "ga-IE"; 696 696 arch = "linux-i686"; 697 - sha256 = "07a926e35884398db3128a54f90699c61abb289f4fb56f5f1c538b27f7c990b1"; 697 + sha256 = "f78afd9e6b8bcecd193476e54be34b2ed3073af79f61e2027559521495992c34"; 698 698 } 699 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/gd/firefox-126.0b5.tar.bz2"; 699 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/gd/firefox-127.0b2.tar.bz2"; 700 700 locale = "gd"; 701 701 arch = "linux-i686"; 702 - sha256 = "a69ed32870bf43b616d09007c09697e4e7929cbfaf4c986a9f434c829a46451e"; 702 + sha256 = "44dbfdcc965165a5e57f80b25d4ae2fb137f9ecd0b581d35a264fe7b750ac308"; 703 703 } 704 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/gl/firefox-126.0b5.tar.bz2"; 704 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/gl/firefox-127.0b2.tar.bz2"; 705 705 locale = "gl"; 706 706 arch = "linux-i686"; 707 - sha256 = "39eca241d736369e09e327daaae521a01c2ee126baebee0559471e5377e559b7"; 707 + sha256 = "1b904594ef61448f9c71455b4ebf8ab6bc5441805d06caa5a147f6980a839b90"; 708 708 } 709 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/gn/firefox-126.0b5.tar.bz2"; 709 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/gn/firefox-127.0b2.tar.bz2"; 710 710 locale = "gn"; 711 711 arch = "linux-i686"; 712 - sha256 = "17810d1a89e594d3513650bafcc631d500fa984e6790cf852e6e9d71365321c5"; 712 + sha256 = "56b8ca430ef56cda043e5f07bb2b130175f9faea370a0eba9e953783522cd2be"; 713 713 } 714 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/gu-IN/firefox-126.0b5.tar.bz2"; 714 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/gu-IN/firefox-127.0b2.tar.bz2"; 715 715 locale = "gu-IN"; 716 716 arch = "linux-i686"; 717 - sha256 = "357987ac6755e622fb3c744b5cfe530240f3192075c5f3f826a9daf7da420712"; 717 + sha256 = "0cb8d510942390b9068aa2ee1118195afbcb05d376802894cbc6497fdc448a16"; 718 718 } 719 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/he/firefox-126.0b5.tar.bz2"; 719 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/he/firefox-127.0b2.tar.bz2"; 720 720 locale = "he"; 721 721 arch = "linux-i686"; 722 - sha256 = "a14429a035e34d2993dabc4492dc6ee57c5cee6173b453e19a07d268a89f01eb"; 722 + sha256 = "7c244649f59b76fe9fe4920e6457b730aa5bfb2202997697caeaa1bfa3013842"; 723 723 } 724 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/hi-IN/firefox-126.0b5.tar.bz2"; 724 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/hi-IN/firefox-127.0b2.tar.bz2"; 725 725 locale = "hi-IN"; 726 726 arch = "linux-i686"; 727 - sha256 = "ac426d39cb3e064127a769c8a2bb45d165c7a72b9ad2cb8ebf05da192f0ce348"; 727 + sha256 = "3831280bc05f5bc1d23d5718c441662b4bda9440b9d32b6a5b42f42265a80349"; 728 728 } 729 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/hr/firefox-126.0b5.tar.bz2"; 729 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/hr/firefox-127.0b2.tar.bz2"; 730 730 locale = "hr"; 731 731 arch = "linux-i686"; 732 - sha256 = "ddf235e1f3f9228d7e8c88a8b0cea6c1d63f1cf63e46223e5e73b07b0d593245"; 732 + sha256 = "ce115265ad6e5345183d1a4e3bf213aa95975a1042f18ae9f85835a231bb4997"; 733 733 } 734 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/hsb/firefox-126.0b5.tar.bz2"; 734 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/hsb/firefox-127.0b2.tar.bz2"; 735 735 locale = "hsb"; 736 736 arch = "linux-i686"; 737 - sha256 = "2620c4edcc178bd4827e46ee6bee9a51c06d95d0e4412fcd906fcab47a2f481e"; 737 + sha256 = "ceb3d3c54dd4419c3ae70ad547efa4ed504f30fb881be9be900a8b82babb2ba1"; 738 738 } 739 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/hu/firefox-126.0b5.tar.bz2"; 739 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/hu/firefox-127.0b2.tar.bz2"; 740 740 locale = "hu"; 741 741 arch = "linux-i686"; 742 - sha256 = "9aded5f3993dc498c37f9f91fcf5b778a02f664f3ee25ec880691d2480fb8f03"; 742 + sha256 = "aa0e8489b91506c0afb6fb586aacf506f0ec240d8c8a1ac0435a68fc6f6b47a5"; 743 743 } 744 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/hy-AM/firefox-126.0b5.tar.bz2"; 744 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/hy-AM/firefox-127.0b2.tar.bz2"; 745 745 locale = "hy-AM"; 746 746 arch = "linux-i686"; 747 - sha256 = "fc35e1abdfc19be9424dde459c02114e1e8263d1a7526e1bdadeef3cba571903"; 747 + sha256 = "93180a0eb04aec1f415470650762110286b02c25f1644da75caa440625a20073"; 748 748 } 749 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/ia/firefox-126.0b5.tar.bz2"; 749 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/ia/firefox-127.0b2.tar.bz2"; 750 750 locale = "ia"; 751 751 arch = "linux-i686"; 752 - sha256 = "8ec912f951202389d97105df641d4f30fdab1131acb9d426f7038e65fa0d494f"; 752 + sha256 = "bd6a9752759078725b0d3661267026e2e0510be9d03d189ba63fcce5c256600a"; 753 753 } 754 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/id/firefox-126.0b5.tar.bz2"; 754 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/id/firefox-127.0b2.tar.bz2"; 755 755 locale = "id"; 756 756 arch = "linux-i686"; 757 - sha256 = "7b64a8997419df4f5474a80538ab970510598bce5a13cd57d45db67b95559609"; 757 + sha256 = "11ea58a1bc5e85dcd768b09be677f7295fb00be2b6427407cc57f9e140fcb1b0"; 758 758 } 759 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/is/firefox-126.0b5.tar.bz2"; 759 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/is/firefox-127.0b2.tar.bz2"; 760 760 locale = "is"; 761 761 arch = "linux-i686"; 762 - sha256 = "71613574a4b1e4a33d29b282d4e50b77865733a744eae17e15a62aa747855d66"; 762 + sha256 = "67a7bb9ae2859d3d851b70ccfdec595ff8c03acb6dbf58f450b1f082ae642f77"; 763 763 } 764 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/it/firefox-126.0b5.tar.bz2"; 764 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/it/firefox-127.0b2.tar.bz2"; 765 765 locale = "it"; 766 766 arch = "linux-i686"; 767 - sha256 = "939fbabba1f341d1296df1140a94dcbc0180887df70134021a94f8d9b370f42e"; 767 + sha256 = "3870dc235cd7b3b81d5ac940c31b5a241e8bd09d3c6a318841e7dcef84f7b0ad"; 768 768 } 769 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/ja/firefox-126.0b5.tar.bz2"; 769 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/ja/firefox-127.0b2.tar.bz2"; 770 770 locale = "ja"; 771 771 arch = "linux-i686"; 772 - sha256 = "62f9ba084329183ed68295bc2f1dfc374ee665fd842ee0bf21b1e25a1b5416bb"; 772 + sha256 = "81ed603272c859077abb04dcaab22ddf7fd5e7f126b690b746dff4696b3a36fd"; 773 773 } 774 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/ka/firefox-126.0b5.tar.bz2"; 774 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/ka/firefox-127.0b2.tar.bz2"; 775 775 locale = "ka"; 776 776 arch = "linux-i686"; 777 - sha256 = "d9af3d20399e9aa786cfec4c86a3c833a01bbd3a8987473668937557ee44e186"; 777 + sha256 = "8f2efc868ae8255c3f7ea58d37a065bb5fe2c54da8f8825e3a79c0aa4452d126"; 778 778 } 779 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/kab/firefox-126.0b5.tar.bz2"; 779 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/kab/firefox-127.0b2.tar.bz2"; 780 780 locale = "kab"; 781 781 arch = "linux-i686"; 782 - sha256 = "2cd13c1e82bab687d17b1a517cefa10729b951dbbd021e4d98a1c26e791314e8"; 782 + sha256 = "2e13952743a01d7be50b25860c32e1a8fb0d85dc72927a1b414445aba8506ae7"; 783 783 } 784 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/kk/firefox-126.0b5.tar.bz2"; 784 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/kk/firefox-127.0b2.tar.bz2"; 785 785 locale = "kk"; 786 786 arch = "linux-i686"; 787 - sha256 = "cb41f01e7d62c82da4c0d73868acf9580f9847e0c8ea9d9d255ba7e517d657a6"; 787 + sha256 = "3b4a9a9a0d269c5252804627af1962a4a0faa1c34c74649a25ed7de8c2e87237"; 788 788 } 789 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/km/firefox-126.0b5.tar.bz2"; 789 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/km/firefox-127.0b2.tar.bz2"; 790 790 locale = "km"; 791 791 arch = "linux-i686"; 792 - sha256 = "b6b18a47c9544880f2996092d11aaf61e9db093e55d75f5781bcb1ecb72b1008"; 792 + sha256 = "2cfa1961ba21b569b005265fb1c94fc3160a7471f8afc97376581e9a8d0d002c"; 793 793 } 794 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/kn/firefox-126.0b5.tar.bz2"; 794 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/kn/firefox-127.0b2.tar.bz2"; 795 795 locale = "kn"; 796 796 arch = "linux-i686"; 797 - sha256 = "91c94c7b774b01bdbd9bc779beed08a84f63461aa8026da13e77cc5732d04609"; 797 + sha256 = "5949b0f3787cd02e1d7bd67505d44a539d4b6fd51d0bbe2e8e8c39c6779b7599"; 798 798 } 799 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/ko/firefox-126.0b5.tar.bz2"; 799 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/ko/firefox-127.0b2.tar.bz2"; 800 800 locale = "ko"; 801 801 arch = "linux-i686"; 802 - sha256 = "ef58ac71e216ae522860a4aece4901120e53592ffa13c6a59cd06f78a8272dba"; 802 + sha256 = "d20a267c8e3456e48f9e55bdd7ce802fbb1dcf10bbff4d7b0d713c69213839bc"; 803 803 } 804 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/lij/firefox-126.0b5.tar.bz2"; 804 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/lij/firefox-127.0b2.tar.bz2"; 805 805 locale = "lij"; 806 806 arch = "linux-i686"; 807 - sha256 = "751281d726765270d445575a09bcf021269a0d0205a03b49fafa95b6a109ae85"; 807 + sha256 = "cf93af57e572d19fbf14bf82962e190851f5289e0e7ec880d8430c56d27a15e0"; 808 808 } 809 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/lt/firefox-126.0b5.tar.bz2"; 809 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/lt/firefox-127.0b2.tar.bz2"; 810 810 locale = "lt"; 811 811 arch = "linux-i686"; 812 - sha256 = "d70751a805a1b09cb7dd113c64b3ee2ae49c26c5c576e8be05f20a4074cafc1b"; 812 + sha256 = "8e40a6d950e26ed383db3f185f210856cb6275a443035053745dc26bed5d9eca"; 813 813 } 814 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/lv/firefox-126.0b5.tar.bz2"; 814 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/lv/firefox-127.0b2.tar.bz2"; 815 815 locale = "lv"; 816 816 arch = "linux-i686"; 817 - sha256 = "d117fcc82eeeeaaa468ef3191a682c0605930c6dc9321ae31546d4a0805f6a1e"; 817 + sha256 = "1a13b48ce78ee7eeff86810a6b61812e1e0a806f1c8d6e83a9bbd9fa3d437014"; 818 818 } 819 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/mk/firefox-126.0b5.tar.bz2"; 819 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/mk/firefox-127.0b2.tar.bz2"; 820 820 locale = "mk"; 821 821 arch = "linux-i686"; 822 - sha256 = "ab07439555307e5174608c44ec3083051ebc98e712041cdd6a55c18854a5516f"; 822 + sha256 = "46058fdd03e603ecd5cc5082b354b8ca6b88f4487fc16363b3266d97716f1692"; 823 823 } 824 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/mr/firefox-126.0b5.tar.bz2"; 824 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/mr/firefox-127.0b2.tar.bz2"; 825 825 locale = "mr"; 826 826 arch = "linux-i686"; 827 - sha256 = "e9f7cad42a6b23557ce6393228763eacf617d39c22d3a25e672b05303648a149"; 827 + sha256 = "88fc368db21346eca9f9b9313ddcab255345c965cbfeaa67c0b2bc68b7346a3e"; 828 828 } 829 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/ms/firefox-126.0b5.tar.bz2"; 829 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/ms/firefox-127.0b2.tar.bz2"; 830 830 locale = "ms"; 831 831 arch = "linux-i686"; 832 - sha256 = "8081bb08a4cd0df2cfb2af38233ce90d5ff279250de8b00fab1c6ea7a1070c74"; 832 + sha256 = "ed11b3b8bfe7b2fc1795840a5c1143010469539de22afe7fa0888f41e47fd2f3"; 833 833 } 834 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/my/firefox-126.0b5.tar.bz2"; 834 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/my/firefox-127.0b2.tar.bz2"; 835 835 locale = "my"; 836 836 arch = "linux-i686"; 837 - sha256 = "fdde8f4f13f4ec204d6dd1f0cc538f26c7fc10d4820a3c300a68c89a4708ea43"; 837 + sha256 = "e071ab2630480076419dbdf9b460d7b61f51f8af738a70129da0bd432e89959f"; 838 838 } 839 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/nb-NO/firefox-126.0b5.tar.bz2"; 839 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/nb-NO/firefox-127.0b2.tar.bz2"; 840 840 locale = "nb-NO"; 841 841 arch = "linux-i686"; 842 - sha256 = "f03070ab64b573765e8afe8cfa1d1bd361e26ebb61c43665a1fe5ea5423ca6d7"; 842 + sha256 = "186bc2408a9c0171f2cdcc165c6760b5f16402af6b50c85e07dbce7995c69d1b"; 843 843 } 844 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/ne-NP/firefox-126.0b5.tar.bz2"; 844 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/ne-NP/firefox-127.0b2.tar.bz2"; 845 845 locale = "ne-NP"; 846 846 arch = "linux-i686"; 847 - sha256 = "841139b185d724fb24163c4e940257d73a1d10255d8cf85c0130320a92486fda"; 847 + sha256 = "a423eb0406f195122b0907e22bc9061f37c5e0c4ac274e828cce919c2e0bf61a"; 848 848 } 849 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/nl/firefox-126.0b5.tar.bz2"; 849 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/nl/firefox-127.0b2.tar.bz2"; 850 850 locale = "nl"; 851 851 arch = "linux-i686"; 852 - sha256 = "5d399980953adf1612522ff9e1e24f556b7ae0889b66acd3b2e8a0755308cab6"; 852 + sha256 = "7ae86d515956d3ea41ed9a4c1b975c954d735d4b91f11d6b0c6e6cda4b98d64c"; 853 853 } 854 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/nn-NO/firefox-126.0b5.tar.bz2"; 854 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/nn-NO/firefox-127.0b2.tar.bz2"; 855 855 locale = "nn-NO"; 856 856 arch = "linux-i686"; 857 - sha256 = "eb37103d8f4ef619f6809f6dfb1d87b235f9bd357acb93a1c97c929bdf18c6a2"; 857 + sha256 = "419774970cf5be7976a916cefe01ab19830b3f27ad42c4ce28758a3b65ec87f2"; 858 858 } 859 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/oc/firefox-126.0b5.tar.bz2"; 859 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/oc/firefox-127.0b2.tar.bz2"; 860 860 locale = "oc"; 861 861 arch = "linux-i686"; 862 - sha256 = "8a10238c0e8cc48234ff6acd073dc0cab6dc494b20b701b8f3b426242d64b08b"; 862 + sha256 = "b3850404a88ebfdaf98fbe6c88e38c6475c92780ee280f347be2acb4e09aa65b"; 863 863 } 864 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/pa-IN/firefox-126.0b5.tar.bz2"; 864 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/pa-IN/firefox-127.0b2.tar.bz2"; 865 865 locale = "pa-IN"; 866 866 arch = "linux-i686"; 867 - sha256 = "845ea79e53f8bd03a12d443d51122a769c0d3aa95cfdce9ac82fcff2fecf1882"; 867 + sha256 = "e0fad8907831ff00a302001717e5930d9a8d7e064671ed4364a55ce5bc752faa"; 868 868 } 869 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/pl/firefox-126.0b5.tar.bz2"; 869 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/pl/firefox-127.0b2.tar.bz2"; 870 870 locale = "pl"; 871 871 arch = "linux-i686"; 872 - sha256 = "e6787b2d190da966d48ce17189c442bfd7376f55d271b02afbc6555e50052060"; 872 + sha256 = "b26c59e0257e1c53d2367d9f74f14a51b4e6d95abde0995baa850c5667d36d27"; 873 873 } 874 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/pt-BR/firefox-126.0b5.tar.bz2"; 874 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/pt-BR/firefox-127.0b2.tar.bz2"; 875 875 locale = "pt-BR"; 876 876 arch = "linux-i686"; 877 - sha256 = "61526013ebbbc38d753423acba412e6df40e8872a1a8890b2bcb010d0749f773"; 877 + sha256 = "3e95a3bcc4369199292233d50fdd5670fafd2d5380f1ae5c44d956c0c7416468"; 878 878 } 879 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/pt-PT/firefox-126.0b5.tar.bz2"; 879 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/pt-PT/firefox-127.0b2.tar.bz2"; 880 880 locale = "pt-PT"; 881 881 arch = "linux-i686"; 882 - sha256 = "c6ac02f336e13313693cd50bd744a15ae9948d7f21bb65cd2b71ddf05bd84f68"; 882 + sha256 = "dfb0fd547f97c851b25247434bc4a8bd9c176340dab050036a87bbd074b72328"; 883 883 } 884 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/rm/firefox-126.0b5.tar.bz2"; 884 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/rm/firefox-127.0b2.tar.bz2"; 885 885 locale = "rm"; 886 886 arch = "linux-i686"; 887 - sha256 = "6b68fd8bfc7d7c923b9e85a5876789be4d2e293a06e2ce94f63b89314297d723"; 887 + sha256 = "31f5753dde47f161da02bf347f06161b73805d167a75cb33c5d293b2887c8502"; 888 888 } 889 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/ro/firefox-126.0b5.tar.bz2"; 889 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/ro/firefox-127.0b2.tar.bz2"; 890 890 locale = "ro"; 891 891 arch = "linux-i686"; 892 - sha256 = "96dcf7577671ab41572b84fa33c91b1f847a819a20f62b23fdf86f9047ed9ff6"; 892 + sha256 = "465b624d0bfa22361167301d8131133e9976bd837c11228491a64a072ad24e33"; 893 893 } 894 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/ru/firefox-126.0b5.tar.bz2"; 894 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/ru/firefox-127.0b2.tar.bz2"; 895 895 locale = "ru"; 896 896 arch = "linux-i686"; 897 - sha256 = "13838f4841acd30745acc6d8ac4e4fe9317408ff0334d24b857c44a589960076"; 897 + sha256 = "a0abae3a6f7ce4957d066a66b0107b2911a0276b232b9edfea27ccbfe49ca8df"; 898 898 } 899 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/sat/firefox-126.0b5.tar.bz2"; 899 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/sat/firefox-127.0b2.tar.bz2"; 900 900 locale = "sat"; 901 901 arch = "linux-i686"; 902 - sha256 = "4e1aa1e417289c790f67061fdc7ca753ba5f0a6ac0cf2c7b319ff56e96059ea1"; 902 + sha256 = "8c3ec37d6e31a28a6320f3d19f372915836bfc166a2b0fcf64e535a60a74b2a7"; 903 903 } 904 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/sc/firefox-126.0b5.tar.bz2"; 904 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/sc/firefox-127.0b2.tar.bz2"; 905 905 locale = "sc"; 906 906 arch = "linux-i686"; 907 - sha256 = "5370018102b2d99eb1095f579a2eb913f814fd6119f981b9091e3d2ab31ae6f5"; 907 + sha256 = "d00ccd6dc27847a2e97f5685f1b33f5172222b79150abbebd1fdbf49dee6890a"; 908 908 } 909 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/sco/firefox-126.0b5.tar.bz2"; 909 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/sco/firefox-127.0b2.tar.bz2"; 910 910 locale = "sco"; 911 911 arch = "linux-i686"; 912 - sha256 = "6b630539247d6a3bf04bd49bf88e017d6124cb122236ea78bd1411d4aaabf722"; 912 + sha256 = "507a36b0eb5d038887562e714d87d833c7cc64c2abb6d0e4e3ea74e0c429ac8b"; 913 913 } 914 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/si/firefox-126.0b5.tar.bz2"; 914 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/si/firefox-127.0b2.tar.bz2"; 915 915 locale = "si"; 916 916 arch = "linux-i686"; 917 - sha256 = "24b6d7657d85e9fc6c4c2040d9265294e625523e74f41654b3d2cb3ab7f7cdce"; 917 + sha256 = "d7a7b33b015b37f44bef599957f51231ec08f5a5d3c00a6504d422c8d3ad87f4"; 918 918 } 919 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/sk/firefox-126.0b5.tar.bz2"; 919 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/sk/firefox-127.0b2.tar.bz2"; 920 920 locale = "sk"; 921 921 arch = "linux-i686"; 922 - sha256 = "454c0fa1d2d0192fc3c292a65f343b626209858874af70b61ef23ab553960fd0"; 922 + sha256 = "e0ca68f949323840ac6b8ec262a2625f746573edcdbdf4ab22c668b3b4c9efb8"; 923 923 } 924 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/sl/firefox-126.0b5.tar.bz2"; 924 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/sl/firefox-127.0b2.tar.bz2"; 925 925 locale = "sl"; 926 926 arch = "linux-i686"; 927 - sha256 = "06404ae7588f88cca7298a8be3d642824fa4f36a81fcc2153986b008aa92d55a"; 927 + sha256 = "beaf16de3b7ad2ef5630d50728bbd737645b590b2f4b871d63145d9e5241575f"; 928 928 } 929 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/son/firefox-126.0b5.tar.bz2"; 929 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/son/firefox-127.0b2.tar.bz2"; 930 930 locale = "son"; 931 931 arch = "linux-i686"; 932 - sha256 = "b4314086740ecff614b996820b8510f21a945a0d6ffa47d335ed29f2905b0b68"; 932 + sha256 = "91dca715b0c6d54b07888859233a817e4eece005cac56ca33018dd69610a0647"; 933 933 } 934 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/sq/firefox-126.0b5.tar.bz2"; 934 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/sq/firefox-127.0b2.tar.bz2"; 935 935 locale = "sq"; 936 936 arch = "linux-i686"; 937 - sha256 = "2d765c05e3760fb409f3b1150485f601a053d86ea04af1a2e50b9561811b22aa"; 937 + sha256 = "265aa0678fec2f0ae82fad6cc9146108ee27115e48d7a5bfb6ced4318aa41fa2"; 938 938 } 939 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/sr/firefox-126.0b5.tar.bz2"; 939 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/sr/firefox-127.0b2.tar.bz2"; 940 940 locale = "sr"; 941 941 arch = "linux-i686"; 942 - sha256 = "8ff306adbd480e9cd2d970a53fef27d3c395e34fdec447f7336610647bd699d2"; 942 + sha256 = "027e4fc73188090fd106f7f087ae8833616267f43d8bcceea7f8e74d91f26c93"; 943 943 } 944 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/sv-SE/firefox-126.0b5.tar.bz2"; 944 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/sv-SE/firefox-127.0b2.tar.bz2"; 945 945 locale = "sv-SE"; 946 946 arch = "linux-i686"; 947 - sha256 = "ba9c313ba259620e99e9a6081e441a09dc93f79c684986ff8f4d5cbc31d5a8c4"; 947 + sha256 = "225897596c390dcfe359c88ce0a4c8cc9f963ae669c18f4503980dfcbcdf8429"; 948 948 } 949 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/szl/firefox-126.0b5.tar.bz2"; 949 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/szl/firefox-127.0b2.tar.bz2"; 950 950 locale = "szl"; 951 951 arch = "linux-i686"; 952 - sha256 = "cddeccf3445bc9f109b828ec6c19ff4afc16977a92e44490db269851e502830c"; 952 + sha256 = "0426a3cb8f45602c594acd0b31c06916876c9b81f54416aba0664bb5a431759c"; 953 953 } 954 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/ta/firefox-126.0b5.tar.bz2"; 954 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/ta/firefox-127.0b2.tar.bz2"; 955 955 locale = "ta"; 956 956 arch = "linux-i686"; 957 - sha256 = "a658ad77c57548a19187b504c5684e6e94f41013dd2778579419e909bc709058"; 957 + sha256 = "a61b2e58319bc006afd286aa7033991afaa951f391ec318f96c5a78fab08d809"; 958 958 } 959 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/te/firefox-126.0b5.tar.bz2"; 959 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/te/firefox-127.0b2.tar.bz2"; 960 960 locale = "te"; 961 961 arch = "linux-i686"; 962 - sha256 = "1cbb9543785690ff78e2cee8b02305b32ca7b5a5df190cbf9f00237357c05f41"; 962 + sha256 = "6bf1fe0d350292b0bf8e0062c0d0f7fff686577ae38d7e09f6df623eca2b189d"; 963 963 } 964 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/tg/firefox-126.0b5.tar.bz2"; 964 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/tg/firefox-127.0b2.tar.bz2"; 965 965 locale = "tg"; 966 966 arch = "linux-i686"; 967 - sha256 = "bb93d2995e8d39bace1a7cc4641b56ac79631669a993a1f296e7fe016617df1f"; 967 + sha256 = "8334b57d369f887744b9408d49f7be109383451a9d807269b1b2c385d7289563"; 968 968 } 969 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/th/firefox-126.0b5.tar.bz2"; 969 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/th/firefox-127.0b2.tar.bz2"; 970 970 locale = "th"; 971 971 arch = "linux-i686"; 972 - sha256 = "955e20194a32a7c08ad96fab1ba6afd6850b0cb012c0e4de395c1c5cbfbd8dc4"; 972 + sha256 = "fa09f96e57eef946aae291bc8345d3eb756fca006918d15305c5cf8f043b6bbe"; 973 973 } 974 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/tl/firefox-126.0b5.tar.bz2"; 974 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/tl/firefox-127.0b2.tar.bz2"; 975 975 locale = "tl"; 976 976 arch = "linux-i686"; 977 - sha256 = "fa982788ef58d98081b9670932549e9d8220dddcf643069d1ac944253dc0e610"; 977 + sha256 = "10818379d02c2e03e689df0e78ce12a16940c5f8f551306033fd25f6959006da"; 978 978 } 979 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/tr/firefox-126.0b5.tar.bz2"; 979 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/tr/firefox-127.0b2.tar.bz2"; 980 980 locale = "tr"; 981 981 arch = "linux-i686"; 982 - sha256 = "3f12c1b742d4945b8fc7019a470b682ad409d89ca679900d6f0185b313640dde"; 982 + sha256 = "da0245ccbad0ee59b0433430ec593bd16ce9f77acf3bfdb1eea9bb30e38bef94"; 983 983 } 984 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/trs/firefox-126.0b5.tar.bz2"; 984 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/trs/firefox-127.0b2.tar.bz2"; 985 985 locale = "trs"; 986 986 arch = "linux-i686"; 987 - sha256 = "b059aa4c12343e7940fdf7de08da40fcf9a5f230c5470ccd8ef3bd491c8ce2db"; 987 + sha256 = "7928d1db0d14626428129905c37a1c4c83bc7e654598c95fdf68636601aedb58"; 988 988 } 989 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/uk/firefox-126.0b5.tar.bz2"; 989 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/uk/firefox-127.0b2.tar.bz2"; 990 990 locale = "uk"; 991 991 arch = "linux-i686"; 992 - sha256 = "f6349cd8a79e36f81d53b597b1068a5b853f34378dac2aaa59db213081764b76"; 992 + sha256 = "62008374b1314d49e9ac5a8af9e5189e77e970ede38ce773d0937c8519ade5e4"; 993 993 } 994 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/ur/firefox-126.0b5.tar.bz2"; 994 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/ur/firefox-127.0b2.tar.bz2"; 995 995 locale = "ur"; 996 996 arch = "linux-i686"; 997 - sha256 = "94ec0fc0bc2d3d53d7acce4300cf09571a0cfbace00ba41a69ef75ef742c709e"; 997 + sha256 = "b5e55f174f1add6720c1259a7f3f29f801c12d27da5c544694a2afef05cf7a99"; 998 998 } 999 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/uz/firefox-126.0b5.tar.bz2"; 999 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/uz/firefox-127.0b2.tar.bz2"; 1000 1000 locale = "uz"; 1001 1001 arch = "linux-i686"; 1002 - sha256 = "e77772aabe8473943b5c062a1d7e6b887cd2e8205d5c0d87ac69819832c493f6"; 1002 + sha256 = "af8394428fe6f17ede74063a4c496dc6cc18dc24f564a8de35b064b438a5c57b"; 1003 1003 } 1004 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/vi/firefox-126.0b5.tar.bz2"; 1004 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/vi/firefox-127.0b2.tar.bz2"; 1005 1005 locale = "vi"; 1006 1006 arch = "linux-i686"; 1007 - sha256 = "c73802774f2f9dd73a62b9d07fa77d2e8da62f2ab519d4a1454b71d6a67cf9fe"; 1007 + sha256 = "36ed9d2754f411f8c8ded02ba02e22c0f091edc5b40531a4e4efe93b4423fb31"; 1008 1008 } 1009 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/xh/firefox-126.0b5.tar.bz2"; 1009 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/xh/firefox-127.0b2.tar.bz2"; 1010 1010 locale = "xh"; 1011 1011 arch = "linux-i686"; 1012 - sha256 = "cea6198851ea912ac1d0e2e060fcec056054230dd532ba64996cb1e148fef6cd"; 1012 + sha256 = "ca49e6e55d7fdae7f1355953720e9727e83b5b0ef73d46e40614a0d753106d6d"; 1013 1013 } 1014 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/zh-CN/firefox-126.0b5.tar.bz2"; 1014 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/zh-CN/firefox-127.0b2.tar.bz2"; 1015 1015 locale = "zh-CN"; 1016 1016 arch = "linux-i686"; 1017 - sha256 = "0ece0aef6ee9112e92e72c570be6eca108b5331694de4247a2aaab2003a95770"; 1017 + sha256 = "7c03fc982bb854769af190288181ea54cc9e2e642b07cd81738c7e783da94f4d"; 1018 1018 } 1019 - { url = "https://archive.mozilla.org/pub/firefox/releases/126.0b5/linux-i686/zh-TW/firefox-126.0b5.tar.bz2"; 1019 + { url = "https://archive.mozilla.org/pub/firefox/releases/127.0b2/linux-i686/zh-TW/firefox-127.0b2.tar.bz2"; 1020 1020 locale = "zh-TW"; 1021 1021 arch = "linux-i686"; 1022 - sha256 = "b2cd12df0910ce19de2a1a4f09415ed318b25e9059b526c79cea473e72c60727"; 1022 + sha256 = "c8344aec0ab9d510c36cd134ef46e9bb3bd0f2fdea78453f9eae9bfdc5999825"; 1023 1023 } 1024 1024 ]; 1025 1025 }
+409 -409
pkgs/applications/networking/browsers/firefox-bin/developer-edition_sources.nix
··· 1 1 { 2 - version = "126.0b5"; 2 + version = "127.0b2"; 3 3 sources = [ 4 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/ach/firefox-126.0b5.tar.bz2"; 4 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/ach/firefox-127.0b2.tar.bz2"; 5 5 locale = "ach"; 6 6 arch = "linux-x86_64"; 7 - sha256 = "aadea702b7fd435c9a6a90673c1b055e78e6c31bf5ea8b22b362c394b429cfc0"; 7 + sha256 = "1c30d80705710a2733b95a46d906bce469a14794cd4b2036fa1e0f9d76b1733a"; 8 8 } 9 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/af/firefox-126.0b5.tar.bz2"; 9 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/af/firefox-127.0b2.tar.bz2"; 10 10 locale = "af"; 11 11 arch = "linux-x86_64"; 12 - sha256 = "9d0443133506dfbd6f20038aa8fc5449baffc2ec39290332145c2069f8bc9a14"; 12 + sha256 = "4837c99b89f061b7799b68427cbc9a3099c6f61d7b191534fb6736f716af0193"; 13 13 } 14 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/an/firefox-126.0b5.tar.bz2"; 14 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/an/firefox-127.0b2.tar.bz2"; 15 15 locale = "an"; 16 16 arch = "linux-x86_64"; 17 - sha256 = "687d8a868302fac2a46168d1e0c3b9b6d40eadd906a17cc67732c7c1d9abeaed"; 17 + sha256 = "9f55436840df59e10483445bef81f2b53380e5a7acbc0c85c5167083fc6c222c"; 18 18 } 19 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/ar/firefox-126.0b5.tar.bz2"; 19 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/ar/firefox-127.0b2.tar.bz2"; 20 20 locale = "ar"; 21 21 arch = "linux-x86_64"; 22 - sha256 = "f69161d5163d3d36686a3ccb6a8d60a86846c2858e9c9bd1c471677f3bb9e6e3"; 22 + sha256 = "243c3f9f4e2f132450446b9452f8ca0f82595c5eab1156ccd79738e3435f2051"; 23 23 } 24 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/ast/firefox-126.0b5.tar.bz2"; 24 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/ast/firefox-127.0b2.tar.bz2"; 25 25 locale = "ast"; 26 26 arch = "linux-x86_64"; 27 - sha256 = "652bbb9d51ace74d186ae3de36aeebbd7e71a5e72a354c604106da44e632931e"; 27 + sha256 = "622f1db93bb1f9cb01d63991f7fbf192e80c12ecfd5617cd0cd7d0ef44657321"; 28 28 } 29 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/az/firefox-126.0b5.tar.bz2"; 29 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/az/firefox-127.0b2.tar.bz2"; 30 30 locale = "az"; 31 31 arch = "linux-x86_64"; 32 - sha256 = "30e40363485d7bd0893c08f05dc97741e08cfceb04a7d2eb7d5ccf17c72bf944"; 32 + sha256 = "aac2aa13f3c22b499a8dd2783f48c5095bed5ee5f7d0704cc7415910ef812252"; 33 33 } 34 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/be/firefox-126.0b5.tar.bz2"; 34 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/be/firefox-127.0b2.tar.bz2"; 35 35 locale = "be"; 36 36 arch = "linux-x86_64"; 37 - sha256 = "fac31c7f86d82dd015f1227d4b39924e1e08cbc9d0b6a9dde5207f2e3529c76d"; 37 + sha256 = "4fbb3ab76de025286c768ad0be9c50b32111caa8e8b18f279eb6c3d9926dfccb"; 38 38 } 39 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/bg/firefox-126.0b5.tar.bz2"; 39 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/bg/firefox-127.0b2.tar.bz2"; 40 40 locale = "bg"; 41 41 arch = "linux-x86_64"; 42 - sha256 = "9a6fa24f51767f3b303d61d7dfc760ca55defa1296bfc9d037ecd1ed6afd9c09"; 42 + sha256 = "66e3ff1dfa7334acd55d33f0c2aed72d06d9a60ab47f2d1ad5f876bde167c31a"; 43 43 } 44 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/bn/firefox-126.0b5.tar.bz2"; 44 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/bn/firefox-127.0b2.tar.bz2"; 45 45 locale = "bn"; 46 46 arch = "linux-x86_64"; 47 - sha256 = "65b6bc95679547df0a6986fbd7156be0fb1e6848bcdba02b645c5779e54054a7"; 47 + sha256 = "56ea0a236ef4d2bfbc0de6ec74544c87d5e89577bbafad5438c4b90b9df533fb"; 48 48 } 49 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/br/firefox-126.0b5.tar.bz2"; 49 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/br/firefox-127.0b2.tar.bz2"; 50 50 locale = "br"; 51 51 arch = "linux-x86_64"; 52 - sha256 = "d555b830bbdc48e0b5a59d4a4f2f73a2294c099b5a91bdbbd32531f4a89b84ab"; 52 + sha256 = "b26d9498d4daabb52791a33313c75e578892393515ff5832554deb7708446808"; 53 53 } 54 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/bs/firefox-126.0b5.tar.bz2"; 54 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/bs/firefox-127.0b2.tar.bz2"; 55 55 locale = "bs"; 56 56 arch = "linux-x86_64"; 57 - sha256 = "3cba8d16d5edc777353a8654b91e7cd1176cdc2acb8c7df5d2713951dc21bb2a"; 57 + sha256 = "de26000f9441c7d7307d525d976d4e6ea1db422d8053b44a716e6fbb5b624f39"; 58 58 } 59 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/ca-valencia/firefox-126.0b5.tar.bz2"; 59 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/ca-valencia/firefox-127.0b2.tar.bz2"; 60 60 locale = "ca-valencia"; 61 61 arch = "linux-x86_64"; 62 - sha256 = "040147cd8ecd354485d3df4691ca99036d8ec2ff0f25add7729e4a2751d9d178"; 62 + sha256 = "52b7eadd956972d150eac74e33b86ebcad1c0091a11510bb3dfe87685088ba5e"; 63 63 } 64 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/ca/firefox-126.0b5.tar.bz2"; 64 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/ca/firefox-127.0b2.tar.bz2"; 65 65 locale = "ca"; 66 66 arch = "linux-x86_64"; 67 - sha256 = "0614be9b81fb8ec1156a6b226d82e02346a2c229b148ff170583a0f14a7b66f8"; 67 + sha256 = "fa759d2458a220c9c03dbc85ebb10ab98956cec9e344cd470c74ac3461ce153a"; 68 68 } 69 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/cak/firefox-126.0b5.tar.bz2"; 69 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/cak/firefox-127.0b2.tar.bz2"; 70 70 locale = "cak"; 71 71 arch = "linux-x86_64"; 72 - sha256 = "7ab6099b339aa64775562c0e388b604a571ba610ed2d22835b6ba3fea3f685ce"; 72 + sha256 = "5f202c4e1fbbba07af31d383860946f94faea1830c8ae39f7cb37b5080d622a5"; 73 73 } 74 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/cs/firefox-126.0b5.tar.bz2"; 74 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/cs/firefox-127.0b2.tar.bz2"; 75 75 locale = "cs"; 76 76 arch = "linux-x86_64"; 77 - sha256 = "b367e93b63e0eab7a7e1176b2cc877cc31e1b8bfbe23c64c4db2492f915ebd64"; 77 + sha256 = "ac939957ff1efe4f6d96ec5ae077ddcba83f1d774c8d4615e4a960cac219d654"; 78 78 } 79 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/cy/firefox-126.0b5.tar.bz2"; 79 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/cy/firefox-127.0b2.tar.bz2"; 80 80 locale = "cy"; 81 81 arch = "linux-x86_64"; 82 - sha256 = "fc659db104968d92aebdbf60b0341132891ed6d14c0b444547a10a2a2d4be262"; 82 + sha256 = "3f95cfa51c6bfed6fdab542f66494dc70972311c4efc21de5437fb759be4da25"; 83 83 } 84 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/da/firefox-126.0b5.tar.bz2"; 84 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/da/firefox-127.0b2.tar.bz2"; 85 85 locale = "da"; 86 86 arch = "linux-x86_64"; 87 - sha256 = "4ba74c927d83e8e84f4db5b8e20b9a593c2866640187deb15c9308242cd20994"; 87 + sha256 = "ea7adbca9138439cdaf44ab49788bd5f3f630603c4fb6c0da9dcf80812f084a3"; 88 88 } 89 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/de/firefox-126.0b5.tar.bz2"; 89 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/de/firefox-127.0b2.tar.bz2"; 90 90 locale = "de"; 91 91 arch = "linux-x86_64"; 92 - sha256 = "e7bd1092bc9bef535a642ad0abc90bc855f83350f22bd2345f23f0924917b194"; 92 + sha256 = "4958ecd34b92a03c0177cd65e658e5f6e1c4dc5731bbd9bab447be6c1d6c99b7"; 93 93 } 94 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/dsb/firefox-126.0b5.tar.bz2"; 94 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/dsb/firefox-127.0b2.tar.bz2"; 95 95 locale = "dsb"; 96 96 arch = "linux-x86_64"; 97 - sha256 = "8a27aec7aa633671f6e5ec385f2787216257b3a667f79246db496b239f6216d7"; 97 + sha256 = "8018f3f9ddf1c089f2faf2d6a195fbe5bf4826857d8673e4e1a6e06d73b40186"; 98 98 } 99 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/el/firefox-126.0b5.tar.bz2"; 99 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/el/firefox-127.0b2.tar.bz2"; 100 100 locale = "el"; 101 101 arch = "linux-x86_64"; 102 - sha256 = "4a773f33acfe4f2f6e27d8b59dc5df448262f972985c1cfeeb86debd167eb536"; 102 + sha256 = "193c8c06baebb8c9b1d892d8f596f31d9d37c5f884a76a98b9d1849a8bedf467"; 103 103 } 104 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/en-CA/firefox-126.0b5.tar.bz2"; 104 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/en-CA/firefox-127.0b2.tar.bz2"; 105 105 locale = "en-CA"; 106 106 arch = "linux-x86_64"; 107 - sha256 = "bb878750660b575da5519c88cf06200e5006ba8072b580c4aea1dd9b701ad4ba"; 107 + sha256 = "888a8a7b8c9375898822ba45eb59f834c06fa9977a6f50826a5206af8e6fce2c"; 108 108 } 109 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/en-GB/firefox-126.0b5.tar.bz2"; 109 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/en-GB/firefox-127.0b2.tar.bz2"; 110 110 locale = "en-GB"; 111 111 arch = "linux-x86_64"; 112 - sha256 = "ac6fbb711d9de6c3a307b0bffcfcf7e5a3d50b9b62a280b026bfd7695280c223"; 112 + sha256 = "ca2ffd9d2464d888f525af46fa0dd1820846bc3fb746e9d7eb4e17207738fb60"; 113 113 } 114 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/en-US/firefox-126.0b5.tar.bz2"; 114 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/en-US/firefox-127.0b2.tar.bz2"; 115 115 locale = "en-US"; 116 116 arch = "linux-x86_64"; 117 - sha256 = "8698e5366a2f746208a52ac38ccf4087fb1c1ae4b2cc5596ab6ad289339a88cd"; 117 + sha256 = "4e292c98e7451c6824c772e66392e15c14fefa495c548cf776f604fcd1032ef3"; 118 118 } 119 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/eo/firefox-126.0b5.tar.bz2"; 119 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/eo/firefox-127.0b2.tar.bz2"; 120 120 locale = "eo"; 121 121 arch = "linux-x86_64"; 122 - sha256 = "e7f31b325611365b62223d816ce6f6a0d5b5d1b13d7683d37f6dbf1fe134cccd"; 122 + sha256 = "7c7742c2ca61abb5fdc1d360827e63422a8209c0543cb9f92d468bd2472f93f8"; 123 123 } 124 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/es-AR/firefox-126.0b5.tar.bz2"; 124 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/es-AR/firefox-127.0b2.tar.bz2"; 125 125 locale = "es-AR"; 126 126 arch = "linux-x86_64"; 127 - sha256 = "e2e6cec00240ff005879786c3b2ac9eaa32bf52f1c9bb56119161f16121f7476"; 127 + sha256 = "20311f7a35249d2748e876e7259c1183fd1b21d5af8ef35dffea87f6abaa5662"; 128 128 } 129 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/es-CL/firefox-126.0b5.tar.bz2"; 129 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/es-CL/firefox-127.0b2.tar.bz2"; 130 130 locale = "es-CL"; 131 131 arch = "linux-x86_64"; 132 - sha256 = "d31e59b6ab3bb8ff78c334edf03e4151e56449b5d4de5a1463e3e5e720488cbb"; 132 + sha256 = "1d99ca8c0cb353d0e70fa7226960e5edbd1e9633704cfdbded14a35c35ecdd52"; 133 133 } 134 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/es-ES/firefox-126.0b5.tar.bz2"; 134 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/es-ES/firefox-127.0b2.tar.bz2"; 135 135 locale = "es-ES"; 136 136 arch = "linux-x86_64"; 137 - sha256 = "bac16e3d7bf01339fac50077514f0e8444290a6c0349839bb155a8539324679d"; 137 + sha256 = "5ebd693e23751eb58e22cbc475d4f2dbb7dd8c1947f6622bea9e62e34cd7d9b5"; 138 138 } 139 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/es-MX/firefox-126.0b5.tar.bz2"; 139 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/es-MX/firefox-127.0b2.tar.bz2"; 140 140 locale = "es-MX"; 141 141 arch = "linux-x86_64"; 142 - sha256 = "e41b8afba817a5eb84117a1526cfe26ebf3f8467d6dc5abac057ffe0d2e0ea94"; 142 + sha256 = "40f1e0b20d278f9b6ecb27eb92b38d70e30302f55dc7760833f301c8784b02c8"; 143 143 } 144 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/et/firefox-126.0b5.tar.bz2"; 144 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/et/firefox-127.0b2.tar.bz2"; 145 145 locale = "et"; 146 146 arch = "linux-x86_64"; 147 - sha256 = "20ad510b43d37a58fd80c590340a947c1b6df95590b97bfff7cd4c62d07723b2"; 147 + sha256 = "1b62463a5fa33ff427499b0be0ca7bce79ba22267b1e34703ead2ce4d23ab040"; 148 148 } 149 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/eu/firefox-126.0b5.tar.bz2"; 149 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/eu/firefox-127.0b2.tar.bz2"; 150 150 locale = "eu"; 151 151 arch = "linux-x86_64"; 152 - sha256 = "d1806f999e5b91deb3fa5e4c7858e35c8e141f347efc990fa461069bcc5f8175"; 152 + sha256 = "fd613163704eb0cb42eaa1127414787e4c48867b83271d515f57ee4b02eb6e87"; 153 153 } 154 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/fa/firefox-126.0b5.tar.bz2"; 154 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/fa/firefox-127.0b2.tar.bz2"; 155 155 locale = "fa"; 156 156 arch = "linux-x86_64"; 157 - sha256 = "db81f9f32f2ffa07d99ffec55c19ab610a71ce33acdad63aed6a51482f73b3ad"; 157 + sha256 = "17b8f8fe61498e95e458b9d2484ae2d576536e8bf2e7c400a7a7ff419a895acb"; 158 158 } 159 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/ff/firefox-126.0b5.tar.bz2"; 159 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/ff/firefox-127.0b2.tar.bz2"; 160 160 locale = "ff"; 161 161 arch = "linux-x86_64"; 162 - sha256 = "590d831346b3e052dc07ad2682ede64289c7d34698eaa5e367403553429f6b6f"; 162 + sha256 = "ffc6f5d23528e9e5066f0c6cf67913ab1ad9b68b900882c184e974c966a0d6c2"; 163 163 } 164 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/fi/firefox-126.0b5.tar.bz2"; 164 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/fi/firefox-127.0b2.tar.bz2"; 165 165 locale = "fi"; 166 166 arch = "linux-x86_64"; 167 - sha256 = "a97ad5462016ca9bb909ed62989257a2a84f6474541fd4d110f85d5363e86323"; 167 + sha256 = "8640338310a43b0aa8c11d9d3bd5004e0dcfa90f079c7a009eb1aeb3d5d02794"; 168 168 } 169 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/fr/firefox-126.0b5.tar.bz2"; 169 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/fr/firefox-127.0b2.tar.bz2"; 170 170 locale = "fr"; 171 171 arch = "linux-x86_64"; 172 - sha256 = "f376c6778bc22ccc6fb08164e246d86a1410a767c76530c0e995bba633805c49"; 172 + sha256 = "c18af63aadf7a6b1ea3b3ea61a584be01a10a18323c6d2ef4d81ad91c80816d1"; 173 173 } 174 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/fur/firefox-126.0b5.tar.bz2"; 174 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/fur/firefox-127.0b2.tar.bz2"; 175 175 locale = "fur"; 176 176 arch = "linux-x86_64"; 177 - sha256 = "bc5b436e9b1ef0a835ca79d522a802b105792bac55fc94c21f5e1cc8c2ae650c"; 177 + sha256 = "3b38905c0e59a97c0ad91b61a7b7de6a277b2a036190b18c242f34b975bdb1bd"; 178 178 } 179 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/fy-NL/firefox-126.0b5.tar.bz2"; 179 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/fy-NL/firefox-127.0b2.tar.bz2"; 180 180 locale = "fy-NL"; 181 181 arch = "linux-x86_64"; 182 - sha256 = "e6e84437be056e031149e13ae3ad67327c1aa737cb1c4f4d2aadb20be453c057"; 182 + sha256 = "cf81df13bf9e76be89582a5b52def414797a9d19d15dc8a30b3e3d101def9376"; 183 183 } 184 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/ga-IE/firefox-126.0b5.tar.bz2"; 184 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/ga-IE/firefox-127.0b2.tar.bz2"; 185 185 locale = "ga-IE"; 186 186 arch = "linux-x86_64"; 187 - sha256 = "147bfbeff3cef160c82f978c88f6fc2f2aaf1225213a96704343d5baffde7a24"; 187 + sha256 = "91ba2719606eb3ff5a9210e36886b809d9892a3d18d664def9cadb5ebf19caa5"; 188 188 } 189 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/gd/firefox-126.0b5.tar.bz2"; 189 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/gd/firefox-127.0b2.tar.bz2"; 190 190 locale = "gd"; 191 191 arch = "linux-x86_64"; 192 - sha256 = "e00839b12a3bf928ed25804ed34607bb2d5904a9aa16a1cb701d45105cc36301"; 192 + sha256 = "8f7aa1cb682e639eee5d7bc13ca9227bb1826cbef605cde516cef4421f8de02a"; 193 193 } 194 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/gl/firefox-126.0b5.tar.bz2"; 194 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/gl/firefox-127.0b2.tar.bz2"; 195 195 locale = "gl"; 196 196 arch = "linux-x86_64"; 197 - sha256 = "0689aa03acab6daec08748be34ce4dbb59419706dbb92e1ec5796ea574160d3e"; 197 + sha256 = "660b9d9d9d26124a03bebdc0a68889617b9e85bbfa1bd8baf6cd8a52fa9a3fd4"; 198 198 } 199 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/gn/firefox-126.0b5.tar.bz2"; 199 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/gn/firefox-127.0b2.tar.bz2"; 200 200 locale = "gn"; 201 201 arch = "linux-x86_64"; 202 - sha256 = "4a4177a177e6fd1c9c2d284c968ddd1eabf95cc68a1521f6727787235b0f8cfb"; 202 + sha256 = "71570c4b2159c4ac5fefbd34f51d4e0378ee10e26918ebc09707c267240ef11d"; 203 203 } 204 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/gu-IN/firefox-126.0b5.tar.bz2"; 204 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/gu-IN/firefox-127.0b2.tar.bz2"; 205 205 locale = "gu-IN"; 206 206 arch = "linux-x86_64"; 207 - sha256 = "4df4c1632484eb1de64dff8cc3e564b85a1f0d3f3fd984caaea9cfa7ec330a67"; 207 + sha256 = "21449a33ddb633af1f117349196fecd68be58014ea7f42ec9da64188ad229f82"; 208 208 } 209 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/he/firefox-126.0b5.tar.bz2"; 209 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/he/firefox-127.0b2.tar.bz2"; 210 210 locale = "he"; 211 211 arch = "linux-x86_64"; 212 - sha256 = "50f51a218cb85bfb291b35f19d320886c31c86f3bc62dadb4b8a67e61f09dbe2"; 212 + sha256 = "8ebcf8985090e91d04994470e977d281a17823da2fa3756afb087d806dc67759"; 213 213 } 214 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/hi-IN/firefox-126.0b5.tar.bz2"; 214 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/hi-IN/firefox-127.0b2.tar.bz2"; 215 215 locale = "hi-IN"; 216 216 arch = "linux-x86_64"; 217 - sha256 = "78628f9f924247648ca6bfa5f9879d9d971e5cfd20c38d490d545f37544a5631"; 217 + sha256 = "fd1bb13d1bec3520f191b3257fc605435815259a8690c84a91c5aa58cb0afcbc"; 218 218 } 219 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/hr/firefox-126.0b5.tar.bz2"; 219 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/hr/firefox-127.0b2.tar.bz2"; 220 220 locale = "hr"; 221 221 arch = "linux-x86_64"; 222 - sha256 = "e423d5f514b7a81a6b0587e507ddf3ec34dea9c2355b3637fe928dc19a94680f"; 222 + sha256 = "74ed4d0986ef34a91503d13c20763485fb8e5fd24576cca048002543036b385d"; 223 223 } 224 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/hsb/firefox-126.0b5.tar.bz2"; 224 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/hsb/firefox-127.0b2.tar.bz2"; 225 225 locale = "hsb"; 226 226 arch = "linux-x86_64"; 227 - sha256 = "aa12cd9f3f5e40e4cb34835bde908d19fa49cd56fd5644ea7d10e7b246181e06"; 227 + sha256 = "551c2b5e65017d6393ba8b846d3da77c9ff6c28f063d2a4cf268d9757030577b"; 228 228 } 229 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/hu/firefox-126.0b5.tar.bz2"; 229 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/hu/firefox-127.0b2.tar.bz2"; 230 230 locale = "hu"; 231 231 arch = "linux-x86_64"; 232 - sha256 = "84b3e5042cef460bc83703274f77dd0eeb8b4b0afca499b5ce9521beb994ca9e"; 232 + sha256 = "cacb6956e8bc6470386f9ea29e18a168efbfb89d5e5e0f2e6695bf1c18f04843"; 233 233 } 234 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/hy-AM/firefox-126.0b5.tar.bz2"; 234 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/hy-AM/firefox-127.0b2.tar.bz2"; 235 235 locale = "hy-AM"; 236 236 arch = "linux-x86_64"; 237 - sha256 = "8871dce1aa612830bce519312efcbcfda4f117397cc5e87b2dc0456e6d71fbff"; 237 + sha256 = "a27bb9215094731fbf00ca8d5b8c6ad20aaf6f190420cfd0a8c8f653e0671b22"; 238 238 } 239 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/ia/firefox-126.0b5.tar.bz2"; 239 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/ia/firefox-127.0b2.tar.bz2"; 240 240 locale = "ia"; 241 241 arch = "linux-x86_64"; 242 - sha256 = "6b5464a8913c7a6cca023c5e19466e2ea217a71366d833b50dad61fb27f9a4ed"; 242 + sha256 = "c569048fd1a2746fce3783131df479d5343666e32de87b76be198b918492ef9d"; 243 243 } 244 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/id/firefox-126.0b5.tar.bz2"; 244 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/id/firefox-127.0b2.tar.bz2"; 245 245 locale = "id"; 246 246 arch = "linux-x86_64"; 247 - sha256 = "bebdc7251b629e9aef7456180cc8ec38f624d50239d92ab4290e0ced3013c14b"; 247 + sha256 = "73060c390dcf4b1eaf748fe4d1515a31c1f09bb9efe070d8437b695e6cdb681f"; 248 248 } 249 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/is/firefox-126.0b5.tar.bz2"; 249 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/is/firefox-127.0b2.tar.bz2"; 250 250 locale = "is"; 251 251 arch = "linux-x86_64"; 252 - sha256 = "489c56e584acade82eecc7873c3c4e68c8ba23c6441311cf1c166e633f233618"; 252 + sha256 = "146b506486380f36d223cc2b4b9f27a69a5a520cedc3bc89b6ad62e1c740558e"; 253 253 } 254 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/it/firefox-126.0b5.tar.bz2"; 254 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/it/firefox-127.0b2.tar.bz2"; 255 255 locale = "it"; 256 256 arch = "linux-x86_64"; 257 - sha256 = "7f0724aafaeb78001de81008e165bd8c7e76db4633b8f452d577a5f50a1eaa7d"; 257 + sha256 = "21c1a11e7e61a3fcb022d2a836c2549a8010d75f9321df321d6814aa8406a87e"; 258 258 } 259 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/ja/firefox-126.0b5.tar.bz2"; 259 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/ja/firefox-127.0b2.tar.bz2"; 260 260 locale = "ja"; 261 261 arch = "linux-x86_64"; 262 - sha256 = "d6fbcb972566b90e4858b14ae864eaed088e4ef04e4a642b43656765e15be008"; 262 + sha256 = "623af7fc6524b2cbd7b6004106d07cc08fa1880656a158a781a2bc58e6c5f2f9"; 263 263 } 264 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/ka/firefox-126.0b5.tar.bz2"; 264 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/ka/firefox-127.0b2.tar.bz2"; 265 265 locale = "ka"; 266 266 arch = "linux-x86_64"; 267 - sha256 = "b5454dacd7c3b2af91f880980d6948fb864c99a92f5a6b7d1cf775a70bb1df22"; 267 + sha256 = "fe4d470dbe0a2f68906fd59d7d8050ff4ed892f32eca6efc9c4e1d8087b92123"; 268 268 } 269 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/kab/firefox-126.0b5.tar.bz2"; 269 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/kab/firefox-127.0b2.tar.bz2"; 270 270 locale = "kab"; 271 271 arch = "linux-x86_64"; 272 - sha256 = "326a5e1c452b869ecf119a3874330ccb341baf10f68a17716350e39dcc6621dd"; 272 + sha256 = "352ad29d40d91e9920f361cfa0cd9e568a866e0839e393dce9e5ebd1c4a8d11d"; 273 273 } 274 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/kk/firefox-126.0b5.tar.bz2"; 274 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/kk/firefox-127.0b2.tar.bz2"; 275 275 locale = "kk"; 276 276 arch = "linux-x86_64"; 277 - sha256 = "bdecf37f2f73eba68e3690dbf8c3a8c6174e4e54d6255f1e435bf106212f30ae"; 277 + sha256 = "edb1a446f157add1c8654379252f8bd75b2c8ebffa8665fbcc51bab8ec39432d"; 278 278 } 279 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/km/firefox-126.0b5.tar.bz2"; 279 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/km/firefox-127.0b2.tar.bz2"; 280 280 locale = "km"; 281 281 arch = "linux-x86_64"; 282 - sha256 = "f9f37b2e1b81d104295ae5c926ae201b2bf1e6620eda3c1d0a82e17153c3efb8"; 282 + sha256 = "0aad12c2aabbc32983f5d3163a2bea6b6c2a896d84c7adc49d711ad4d3d13ce7"; 283 283 } 284 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/kn/firefox-126.0b5.tar.bz2"; 284 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/kn/firefox-127.0b2.tar.bz2"; 285 285 locale = "kn"; 286 286 arch = "linux-x86_64"; 287 - sha256 = "9d3cba10d8ddaa85e7e1ade5484f3638f88c4b6d009cef4225ce53f2b5870096"; 287 + sha256 = "0803c2ed47e49b0647fa3d1923c5d6efc263860e8477eb18d64cb7bba3fdfdf6"; 288 288 } 289 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/ko/firefox-126.0b5.tar.bz2"; 289 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/ko/firefox-127.0b2.tar.bz2"; 290 290 locale = "ko"; 291 291 arch = "linux-x86_64"; 292 - sha256 = "10884ab9adc0203b5352ac38e1a496b5accca5dbc364c2b383de351f16d6a420"; 292 + sha256 = "6cdcd8707ab42730a5f32e5508a8e2dc895e77d1efda48f2eaf3f2f6033b3f66"; 293 293 } 294 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/lij/firefox-126.0b5.tar.bz2"; 294 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/lij/firefox-127.0b2.tar.bz2"; 295 295 locale = "lij"; 296 296 arch = "linux-x86_64"; 297 - sha256 = "954f466f7a1803b63aef624e02e3a8bb1bb449e5941695e61596962d56679821"; 297 + sha256 = "5bdaab3beb4ce4c198a122a770a4571ce4b182c98b6ef728b83a4bc8a8901a53"; 298 298 } 299 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/lt/firefox-126.0b5.tar.bz2"; 299 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/lt/firefox-127.0b2.tar.bz2"; 300 300 locale = "lt"; 301 301 arch = "linux-x86_64"; 302 - sha256 = "0995741098c46398493bc153ee797d540d63d77bec642143326d066e9a4349ee"; 302 + sha256 = "88a6f46a68039f2c546f6c0005e8bb125e94975b500bdd9b46d1cd9641fba2be"; 303 303 } 304 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/lv/firefox-126.0b5.tar.bz2"; 304 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/lv/firefox-127.0b2.tar.bz2"; 305 305 locale = "lv"; 306 306 arch = "linux-x86_64"; 307 - sha256 = "20063e09da70ce19d9abb0bc6c6f657c6d5661f4a20c281fa56c06354034dc10"; 307 + sha256 = "9e93206d7bcffa76b39bb9b05783ab26748de2adb39363d9fec27e6a1538ac57"; 308 308 } 309 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/mk/firefox-126.0b5.tar.bz2"; 309 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/mk/firefox-127.0b2.tar.bz2"; 310 310 locale = "mk"; 311 311 arch = "linux-x86_64"; 312 - sha256 = "b27ce3d8dc0fa083afaab8844350cba8d0b356cc0dd8cc591458c993396f637a"; 312 + sha256 = "b0bdb66867d9f65a577b6dbccc7da07dd937fecd54b81d62d323c6ee430dace6"; 313 313 } 314 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/mr/firefox-126.0b5.tar.bz2"; 314 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/mr/firefox-127.0b2.tar.bz2"; 315 315 locale = "mr"; 316 316 arch = "linux-x86_64"; 317 - sha256 = "6fa92ad541934296b50c34105908feaf2124125350cf913bb1656bf7fac5784b"; 317 + sha256 = "d1cead8f2962c62f8aea10a37fdc1aff01dbda3ff512ec845c64439a73be9fab"; 318 318 } 319 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/ms/firefox-126.0b5.tar.bz2"; 319 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/ms/firefox-127.0b2.tar.bz2"; 320 320 locale = "ms"; 321 321 arch = "linux-x86_64"; 322 - sha256 = "d0623362a8a8830f117870464de0c0e648e32cb66b960efdf49c43a3c6dd3530"; 322 + sha256 = "f0e5662e0f69ed59a6223b7640083ccae6bd7dc074e81d44470e4c900ff2f8c9"; 323 323 } 324 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/my/firefox-126.0b5.tar.bz2"; 324 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/my/firefox-127.0b2.tar.bz2"; 325 325 locale = "my"; 326 326 arch = "linux-x86_64"; 327 - sha256 = "4a96f707867cc48b34c558da67b4b3ab2c561d4f9221635bb559a622d5ac5481"; 327 + sha256 = "62ba69d29bc5ae973bbecaf8bb7b54159504714e054f5f445c6fbc42c003155e"; 328 328 } 329 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/nb-NO/firefox-126.0b5.tar.bz2"; 329 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/nb-NO/firefox-127.0b2.tar.bz2"; 330 330 locale = "nb-NO"; 331 331 arch = "linux-x86_64"; 332 - sha256 = "155a097e982c47636f7f9f9816669ad201dd11f2e4d034a4b5f27757234ac73d"; 332 + sha256 = "babb77e460c5a1929ca7304b593e4ca0ad7c1eef5edad63a5050440f5e89af51"; 333 333 } 334 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/ne-NP/firefox-126.0b5.tar.bz2"; 334 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/ne-NP/firefox-127.0b2.tar.bz2"; 335 335 locale = "ne-NP"; 336 336 arch = "linux-x86_64"; 337 - sha256 = "7e9dd8d3cfd969b25c2e01d813f997df86e9c05016e98a8e991dbc72482c545f"; 337 + sha256 = "8a45664de4538143a91803a4e47347d6300eb57fcf8b15940ffde3102532e4a3"; 338 338 } 339 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/nl/firefox-126.0b5.tar.bz2"; 339 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/nl/firefox-127.0b2.tar.bz2"; 340 340 locale = "nl"; 341 341 arch = "linux-x86_64"; 342 - sha256 = "25fc631ec62ba8b488c923c06dc7d1846102069f6b9fec259017809bb964ace0"; 342 + sha256 = "590ea36cdaeba3a89bee54ee5ca14ec2018923d5671619fef9792ae4eb10b7b7"; 343 343 } 344 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/nn-NO/firefox-126.0b5.tar.bz2"; 344 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/nn-NO/firefox-127.0b2.tar.bz2"; 345 345 locale = "nn-NO"; 346 346 arch = "linux-x86_64"; 347 - sha256 = "3d76232fe1126d94f64c7dfec0975acb6b8db9668275cc43fad5a62a2b9f9a04"; 347 + sha256 = "12aadc65dca6e91f11f48d0178ac05b022c55d607cbb1dd9a579badfb8a3dc1a"; 348 348 } 349 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/oc/firefox-126.0b5.tar.bz2"; 349 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/oc/firefox-127.0b2.tar.bz2"; 350 350 locale = "oc"; 351 351 arch = "linux-x86_64"; 352 - sha256 = "0dfda755cc4f2b4db90bb1715fce8ea630f8458cb42aa32a6008ecb8f2d7535c"; 352 + sha256 = "a1623356d931da57da8a4efdac7ce5fe4c8d970229cb01dda72096e4e44b540d"; 353 353 } 354 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/pa-IN/firefox-126.0b5.tar.bz2"; 354 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/pa-IN/firefox-127.0b2.tar.bz2"; 355 355 locale = "pa-IN"; 356 356 arch = "linux-x86_64"; 357 - sha256 = "10b14b2f8d54dda727c1ecd6dba83a5e9cad880f4228cc398e6ca7fc1b43227b"; 357 + sha256 = "33d0d467e71988396a6f1ba75892da58426db6343ddebec5d4fb9267c8dc26a3"; 358 358 } 359 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/pl/firefox-126.0b5.tar.bz2"; 359 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/pl/firefox-127.0b2.tar.bz2"; 360 360 locale = "pl"; 361 361 arch = "linux-x86_64"; 362 - sha256 = "50ee99d11d384f079480bbb9c824519e7b4756b3d4c7fd908353b3d95d538b6c"; 362 + sha256 = "cfceaef341b7f2b06071ce796191d0750b139c85e53f83e35b997a8bbcc60048"; 363 363 } 364 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/pt-BR/firefox-126.0b5.tar.bz2"; 364 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/pt-BR/firefox-127.0b2.tar.bz2"; 365 365 locale = "pt-BR"; 366 366 arch = "linux-x86_64"; 367 - sha256 = "2e09ea51ac746045fd40fa6a7925e0683d7fc13eab785de294d7b1ed540d04b7"; 367 + sha256 = "fc18b49558806f5bd83dd79cd268660c74c10b68f9d2f306907ff3d70f4eddcc"; 368 368 } 369 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/pt-PT/firefox-126.0b5.tar.bz2"; 369 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/pt-PT/firefox-127.0b2.tar.bz2"; 370 370 locale = "pt-PT"; 371 371 arch = "linux-x86_64"; 372 - sha256 = "ab9bd6fa3dac37103ceaeee7665ed803c4934d4d8412b22fc6ce175c1b537b1f"; 372 + sha256 = "a8b3d56f1deff85a403f52292ef5bb404d9d879b2a5f104a509b0a8b80c104d7"; 373 373 } 374 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/rm/firefox-126.0b5.tar.bz2"; 374 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/rm/firefox-127.0b2.tar.bz2"; 375 375 locale = "rm"; 376 376 arch = "linux-x86_64"; 377 - sha256 = "1b86c15f6bc1036dfd583ead5ffb1495850c1d6f513af0cb9ee6c7e0703d51c8"; 377 + sha256 = "f03d015b74f1c4c59efae1185332fcd375886cfb1879039e952913e0bc01653c"; 378 378 } 379 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/ro/firefox-126.0b5.tar.bz2"; 379 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/ro/firefox-127.0b2.tar.bz2"; 380 380 locale = "ro"; 381 381 arch = "linux-x86_64"; 382 - sha256 = "6611b9c1af4dab80244af1d6f90354d5ff55e7fc3a29ca7ac07a408c62aa527f"; 382 + sha256 = "05b1900bc3371b04f8db1ea040f66b2b9405c3656546c91b50dfb7b409f90576"; 383 383 } 384 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/ru/firefox-126.0b5.tar.bz2"; 384 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/ru/firefox-127.0b2.tar.bz2"; 385 385 locale = "ru"; 386 386 arch = "linux-x86_64"; 387 - sha256 = "8991c38c843101718b10b0d1e1380711593284cc270a7e0897201f3d667a39fc"; 387 + sha256 = "0e1e4a5b38ca98c1fd518cb69c870e2b450ce112e78e8507308c44a8b6dc3375"; 388 388 } 389 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/sat/firefox-126.0b5.tar.bz2"; 389 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/sat/firefox-127.0b2.tar.bz2"; 390 390 locale = "sat"; 391 391 arch = "linux-x86_64"; 392 - sha256 = "d61c74fca1b02ce76d2565219fdd29becb88ec31fa1d66395c9d31fad04cdeee"; 392 + sha256 = "cc41cf5b4b526a9bc895f7554b0b0893839db74b3919fcbe1db4cade1c82ea5b"; 393 393 } 394 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/sc/firefox-126.0b5.tar.bz2"; 394 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/sc/firefox-127.0b2.tar.bz2"; 395 395 locale = "sc"; 396 396 arch = "linux-x86_64"; 397 - sha256 = "64c02479980bf2971bdcf570529375e934c809ecd476fc9b51d892b1a50ea662"; 397 + sha256 = "b344ac9e2da8e6f047c73232965c7c4439266b619f8cea8c19b1ea1ca966a641"; 398 398 } 399 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/sco/firefox-126.0b5.tar.bz2"; 399 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/sco/firefox-127.0b2.tar.bz2"; 400 400 locale = "sco"; 401 401 arch = "linux-x86_64"; 402 - sha256 = "665a262095be81ba608fe959c31a1f90a6f46c20dc73b974fa82892a66559304"; 402 + sha256 = "1a7fece2bcfb3d98b9208208dc9b7a9d510600aeb70ae11e1ddd1b1b12e3601c"; 403 403 } 404 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/si/firefox-126.0b5.tar.bz2"; 404 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/si/firefox-127.0b2.tar.bz2"; 405 405 locale = "si"; 406 406 arch = "linux-x86_64"; 407 - sha256 = "6f32d4c36a30e855f467095935fc2b9417046868602506d3b7b575ad8e3f373a"; 407 + sha256 = "56ee33a89ca89666e1472d53efa2a8acff04ec522a3163222dfa1d6d1cf49a57"; 408 408 } 409 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/sk/firefox-126.0b5.tar.bz2"; 409 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/sk/firefox-127.0b2.tar.bz2"; 410 410 locale = "sk"; 411 411 arch = "linux-x86_64"; 412 - sha256 = "d603440e7ee9b65e12327024ffbd240a63493feab83fd09d2b6ff5ee5c6565c8"; 412 + sha256 = "902a5924145bdaf90115c2c57431bd1991a6cee462f6987da29d1b8e34db71c3"; 413 413 } 414 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/sl/firefox-126.0b5.tar.bz2"; 414 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/sl/firefox-127.0b2.tar.bz2"; 415 415 locale = "sl"; 416 416 arch = "linux-x86_64"; 417 - sha256 = "19fe649c94f9f5d6f583c2fc437d63c4998fd8954f14674e691d8c55329a865c"; 417 + sha256 = "d311ed3866a915878a16bc533f9ae737ddf3d05c49f24a9b13f4b592f3388219"; 418 418 } 419 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/son/firefox-126.0b5.tar.bz2"; 419 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/son/firefox-127.0b2.tar.bz2"; 420 420 locale = "son"; 421 421 arch = "linux-x86_64"; 422 - sha256 = "33ffee14974d1723f91fb456d2a2f7a61f4b9d8f8c205744b455b143cb22f32d"; 422 + sha256 = "7428961daa14b04b2f7edd973c71426b18a48fc4ce50242c93a286133296ed36"; 423 423 } 424 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/sq/firefox-126.0b5.tar.bz2"; 424 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/sq/firefox-127.0b2.tar.bz2"; 425 425 locale = "sq"; 426 426 arch = "linux-x86_64"; 427 - sha256 = "b6a69416597c5b62863d5bcc9ee4ac63de03e13808b7875bbf75d531578e1db7"; 427 + sha256 = "79012e6a60439783acc6c0eb1728ca9941e74caf4de4124ef92e5b298e24edbf"; 428 428 } 429 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/sr/firefox-126.0b5.tar.bz2"; 429 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/sr/firefox-127.0b2.tar.bz2"; 430 430 locale = "sr"; 431 431 arch = "linux-x86_64"; 432 - sha256 = "7a354737335048a21a95c581a7db7b4186779f97e4900304a5bb93566af4952f"; 432 + sha256 = "4bbc651ff8ee786d86abb4bdc80a3ef1854abe0e11cb6edaef278c9af0f45424"; 433 433 } 434 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/sv-SE/firefox-126.0b5.tar.bz2"; 434 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/sv-SE/firefox-127.0b2.tar.bz2"; 435 435 locale = "sv-SE"; 436 436 arch = "linux-x86_64"; 437 - sha256 = "58e676c649f9d6135cc347349660a7b364429fdf8f025570f8b0791868f5d0ab"; 437 + sha256 = "9ab669d6ce2f9759fbaa5fdfc3d8484c6be7325b8fea6c10fbb189c79f7d63fa"; 438 438 } 439 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/szl/firefox-126.0b5.tar.bz2"; 439 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/szl/firefox-127.0b2.tar.bz2"; 440 440 locale = "szl"; 441 441 arch = "linux-x86_64"; 442 - sha256 = "4dedbb590cc4ef2330aea3d99a6f782b3c8ac2bb3cdbf21ae4f96527ea75d1bb"; 442 + sha256 = "637490e3ec6f43435acb7be533b96f578787e3a3aa7ba9d442160fea0464c2af"; 443 443 } 444 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/ta/firefox-126.0b5.tar.bz2"; 444 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/ta/firefox-127.0b2.tar.bz2"; 445 445 locale = "ta"; 446 446 arch = "linux-x86_64"; 447 - sha256 = "91d142a2c2a0d85cb468889d84ecd6411309083b7a7802e0ecaf0767a697e574"; 447 + sha256 = "1829a92df9454ffc74c36b9cc7332fd26719c9d4b92058fc5908d30f68a3f671"; 448 448 } 449 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/te/firefox-126.0b5.tar.bz2"; 449 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/te/firefox-127.0b2.tar.bz2"; 450 450 locale = "te"; 451 451 arch = "linux-x86_64"; 452 - sha256 = "a803b84500d8d456f27e48bec8e28b6dfe1b3a2138928edbba8a493f49752e84"; 452 + sha256 = "72534deb9b488b5603e01a35b30a2b83112f2dd003db42561b7f0399517731a4"; 453 453 } 454 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/tg/firefox-126.0b5.tar.bz2"; 454 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/tg/firefox-127.0b2.tar.bz2"; 455 455 locale = "tg"; 456 456 arch = "linux-x86_64"; 457 - sha256 = "3deececb0f338d687eb691efac5a4cb653ebbeff9e5cb8532c7c7f8a7566429b"; 457 + sha256 = "d24a1ebdcc76cea27f975320edb47e6ce525655b84acae8f280ebbe5631c0219"; 458 458 } 459 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/th/firefox-126.0b5.tar.bz2"; 459 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/th/firefox-127.0b2.tar.bz2"; 460 460 locale = "th"; 461 461 arch = "linux-x86_64"; 462 - sha256 = "ef83982d27cff044938d0648bd4eaeae5ffa99e3d64f5abeee0b5008fa2ed93d"; 462 + sha256 = "719686c8efeacd4b63e7e9aa94209cff67366ccc86c544e4a2bc842567a9e3a9"; 463 463 } 464 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/tl/firefox-126.0b5.tar.bz2"; 464 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/tl/firefox-127.0b2.tar.bz2"; 465 465 locale = "tl"; 466 466 arch = "linux-x86_64"; 467 - sha256 = "2b52f3b404d8f7d289300116f7069a19bfdcef4d28cbc31951137ee91b771f01"; 467 + sha256 = "c78cc08b8c1cfe4ffc80a5e807faf4af7e90a57a5b9739f33639a646e28ebacf"; 468 468 } 469 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/tr/firefox-126.0b5.tar.bz2"; 469 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/tr/firefox-127.0b2.tar.bz2"; 470 470 locale = "tr"; 471 471 arch = "linux-x86_64"; 472 - sha256 = "abdd243d3de3fe4410da0d5c332538fd106a3bf7007d7bc410700bc83277b1a2"; 472 + sha256 = "2a5853136c6f5dd07afdc08aaebbc60aa4dd456b4aba234cc688954a15774391"; 473 473 } 474 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/trs/firefox-126.0b5.tar.bz2"; 474 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/trs/firefox-127.0b2.tar.bz2"; 475 475 locale = "trs"; 476 476 arch = "linux-x86_64"; 477 - sha256 = "bbfe1fba6424c743ff7e6e8ba692e7cf9a46491e29af4d9efba330d44d4625e8"; 477 + sha256 = "6dcf30137ac65487e742da53b78d65c0340499844c2218544b8e7bfb05e97781"; 478 478 } 479 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/uk/firefox-126.0b5.tar.bz2"; 479 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/uk/firefox-127.0b2.tar.bz2"; 480 480 locale = "uk"; 481 481 arch = "linux-x86_64"; 482 - sha256 = "85d2599c2161979f181df50a17c1b77cb74e71f1be94d2b753b8987ec9349eb7"; 482 + sha256 = "a527e757cce638eee372653ee01ec10bbfad73d82790392fa1ee61af0bbf2597"; 483 483 } 484 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/ur/firefox-126.0b5.tar.bz2"; 484 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/ur/firefox-127.0b2.tar.bz2"; 485 485 locale = "ur"; 486 486 arch = "linux-x86_64"; 487 - sha256 = "9eba764802ef50860b4a1c85b3202a6464c3e1ef2bb5df70d6d052735cfac21b"; 487 + sha256 = "85cb53b95c31ac441c8ddc94345e8fa9d850c21026983be4c04f5ea9868f6dce"; 488 488 } 489 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/uz/firefox-126.0b5.tar.bz2"; 489 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/uz/firefox-127.0b2.tar.bz2"; 490 490 locale = "uz"; 491 491 arch = "linux-x86_64"; 492 - sha256 = "82f8614c230a75f41e5c5639c60b658d4fac8fa9056615c64cf4a928ae1eb418"; 492 + sha256 = "2c911bfe03d0a0d3fdb916994175e14c364a537ba4f5bbdf99f6f690c3613eb5"; 493 493 } 494 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/vi/firefox-126.0b5.tar.bz2"; 494 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/vi/firefox-127.0b2.tar.bz2"; 495 495 locale = "vi"; 496 496 arch = "linux-x86_64"; 497 - sha256 = "f595caa6bd9f77b151c9a5d74020870df9a8c7827360a491fa6174d85265a026"; 497 + sha256 = "adb663aed1929e13a453aeecb61c4f4f004ea8371f38c09e92b7d54d748430b4"; 498 498 } 499 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/xh/firefox-126.0b5.tar.bz2"; 499 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/xh/firefox-127.0b2.tar.bz2"; 500 500 locale = "xh"; 501 501 arch = "linux-x86_64"; 502 - sha256 = "27ff854d32c01c3a2bb9e7133b7a2ced467e47ef99f5144b8d24a3b7ca313ad6"; 502 + sha256 = "6bf462938eb5fb8d49c48e184f5369720678fd6b57db637a8caf6e646c902beb"; 503 503 } 504 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/zh-CN/firefox-126.0b5.tar.bz2"; 504 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/zh-CN/firefox-127.0b2.tar.bz2"; 505 505 locale = "zh-CN"; 506 506 arch = "linux-x86_64"; 507 - sha256 = "67636bffcfb4e156be1fcb3f4d686ae892a78385f77d8d735f79b2c849740a6e"; 507 + sha256 = "c739dfc3c269b15f0908a981a4e3378a60d267749c538f1ea8ace08cf0c6b83f"; 508 508 } 509 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-x86_64/zh-TW/firefox-126.0b5.tar.bz2"; 509 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-x86_64/zh-TW/firefox-127.0b2.tar.bz2"; 510 510 locale = "zh-TW"; 511 511 arch = "linux-x86_64"; 512 - sha256 = "62229e20c259a5d9f070477bce5c5082053b68f10017014eaef714a627056ec1"; 512 + sha256 = "1c042f3953a99a593fd214fafcfc18cd60106691a220ad763c216c24a24af907"; 513 513 } 514 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/ach/firefox-126.0b5.tar.bz2"; 514 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/ach/firefox-127.0b2.tar.bz2"; 515 515 locale = "ach"; 516 516 arch = "linux-i686"; 517 - sha256 = "e745ec55aee55bb8f68fbe076d0177eeffd730390633b31817575a0e644dcb03"; 517 + sha256 = "72d6c4dab751df00c1db3865f2ed9e2eeb74495b8f52f7c3397f00ea3d99b72e"; 518 518 } 519 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/af/firefox-126.0b5.tar.bz2"; 519 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/af/firefox-127.0b2.tar.bz2"; 520 520 locale = "af"; 521 521 arch = "linux-i686"; 522 - sha256 = "e70f999ee5b532d1602e7cb43db58219ea09ba123ef571ce39374fb6afa15c07"; 522 + sha256 = "63b500d84f8e4677a0f12e664d4797d5a5144ab5ea8682a33df0d90672d73ff9"; 523 523 } 524 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/an/firefox-126.0b5.tar.bz2"; 524 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/an/firefox-127.0b2.tar.bz2"; 525 525 locale = "an"; 526 526 arch = "linux-i686"; 527 - sha256 = "4f50f835ceeed6552c71faa076b8d4828ca555224c21d57044fe895ee28175b6"; 527 + sha256 = "324d1cc5c897a779b9d3b884802f552e3dc35e0ddcb6fbe4e103ca16cefc0e06"; 528 528 } 529 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/ar/firefox-126.0b5.tar.bz2"; 529 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/ar/firefox-127.0b2.tar.bz2"; 530 530 locale = "ar"; 531 531 arch = "linux-i686"; 532 - sha256 = "ba0d02b76cfdb14da5be452c51c19825ae41a866248e7cb5f2b997f75a25c505"; 532 + sha256 = "46698609453be896ebbf525441b93a22649f58b48daaa6497b7c82cf0dced27e"; 533 533 } 534 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/ast/firefox-126.0b5.tar.bz2"; 534 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/ast/firefox-127.0b2.tar.bz2"; 535 535 locale = "ast"; 536 536 arch = "linux-i686"; 537 - sha256 = "83031e923adbcb3e2e97fd2e76e8babac19de9cd74e9645524181dc10a3b3e9f"; 537 + sha256 = "15334e0e03b14dd1cad216c48ed2647a307d6972c59af2ce8a50c34d8f6536dd"; 538 538 } 539 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/az/firefox-126.0b5.tar.bz2"; 539 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/az/firefox-127.0b2.tar.bz2"; 540 540 locale = "az"; 541 541 arch = "linux-i686"; 542 - sha256 = "6a508a257fd60549dd860478cbeca325d253339ce6fab4689c06088b13ecb704"; 542 + sha256 = "25832b0e66044c906d3d18e45cc8056829a48d6a258263d57a318fb80f779f47"; 543 543 } 544 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/be/firefox-126.0b5.tar.bz2"; 544 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/be/firefox-127.0b2.tar.bz2"; 545 545 locale = "be"; 546 546 arch = "linux-i686"; 547 - sha256 = "21d59f6ad32aa479152d66f8175076635b1c73b4e207f1aa35e07157ea777316"; 547 + sha256 = "5da75213b69375da57461b62b87c74fe1d9338d1d82db15d7595dd0dd47184be"; 548 548 } 549 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/bg/firefox-126.0b5.tar.bz2"; 549 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/bg/firefox-127.0b2.tar.bz2"; 550 550 locale = "bg"; 551 551 arch = "linux-i686"; 552 - sha256 = "40024c75ff970c4aeac578bce18132da65f3cfd350ddf3ac40db3d77b89bdb1b"; 552 + sha256 = "1e46f0babb84f05a850fe210a1758a220b36588dfede7acedbfb175fca02efa8"; 553 553 } 554 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/bn/firefox-126.0b5.tar.bz2"; 554 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/bn/firefox-127.0b2.tar.bz2"; 555 555 locale = "bn"; 556 556 arch = "linux-i686"; 557 - sha256 = "63fdf24099be89b42f8de2f1cf6be1b88fbab53549db2f2aac32f6f104d2fb21"; 557 + sha256 = "340e7f95b2634f55828bd9ab7aa71fb66aa9286dc6dfe1556b3424ee3d6211e8"; 558 558 } 559 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/br/firefox-126.0b5.tar.bz2"; 559 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/br/firefox-127.0b2.tar.bz2"; 560 560 locale = "br"; 561 561 arch = "linux-i686"; 562 - sha256 = "76a417479be76f62776386d9f4d47b1cd82b14ff2822dbf291e157a947323178"; 562 + sha256 = "78c61645c894beeb1fc0f8ff0cbe2b5965bd8836e69352dd14c7afc9325c3639"; 563 563 } 564 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/bs/firefox-126.0b5.tar.bz2"; 564 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/bs/firefox-127.0b2.tar.bz2"; 565 565 locale = "bs"; 566 566 arch = "linux-i686"; 567 - sha256 = "fa82ff92eca43fa651f180dfcae0e138398f4960c2802b7b8023b50a17e0cff9"; 567 + sha256 = "fef646ca2156fd30c13265cfebb1ae8b2412096d8c49195fbe601f24a3f13b8f"; 568 568 } 569 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/ca-valencia/firefox-126.0b5.tar.bz2"; 569 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/ca-valencia/firefox-127.0b2.tar.bz2"; 570 570 locale = "ca-valencia"; 571 571 arch = "linux-i686"; 572 - sha256 = "73ee09b6b91f8e38387084affb6d3533e7583056e4add60cf2d986223f870932"; 572 + sha256 = "5db919c4472c9ee6604b5d696307f80803b6c75cb31eae31b5cb0ba0fa6dbce5"; 573 573 } 574 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/ca/firefox-126.0b5.tar.bz2"; 574 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/ca/firefox-127.0b2.tar.bz2"; 575 575 locale = "ca"; 576 576 arch = "linux-i686"; 577 - sha256 = "3de33a1ff17e433d4670d0f5824634014e3954aa3cf04707d117bb30c14c8325"; 577 + sha256 = "1556e239f46068cd74d09419216c1d80f924099657c528840f0458207c60667a"; 578 578 } 579 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/cak/firefox-126.0b5.tar.bz2"; 579 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/cak/firefox-127.0b2.tar.bz2"; 580 580 locale = "cak"; 581 581 arch = "linux-i686"; 582 - sha256 = "3380c26b6a7ef5e172000972b5f0c6552f42777f442893752fbf9eef90934f5b"; 582 + sha256 = "ed744ad20501944ea277503aeac81e80eede8f6510bb17b14a4a44fdc221e51e"; 583 583 } 584 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/cs/firefox-126.0b5.tar.bz2"; 584 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/cs/firefox-127.0b2.tar.bz2"; 585 585 locale = "cs"; 586 586 arch = "linux-i686"; 587 - sha256 = "f2b6c9af691b6801ca43658e4a84f29de5564826df6b28c46f16bd98b6cb098a"; 587 + sha256 = "1bd77cd1fbfa98aac9e671207a792b4608ee89ba0a80e3d4c5379b5f8ca6840e"; 588 588 } 589 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/cy/firefox-126.0b5.tar.bz2"; 589 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/cy/firefox-127.0b2.tar.bz2"; 590 590 locale = "cy"; 591 591 arch = "linux-i686"; 592 - sha256 = "48352b9c604ab522a5fa0053b2c0bf3a0bff1efb1b084bbfd76fdbf84c08114a"; 592 + sha256 = "aa33ddad03a86c2e86b19c8fc53ff68e47f7258a36db61bf99c7f09689ebd54b"; 593 593 } 594 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/da/firefox-126.0b5.tar.bz2"; 594 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/da/firefox-127.0b2.tar.bz2"; 595 595 locale = "da"; 596 596 arch = "linux-i686"; 597 - sha256 = "3eaae894a7aa15604b70fe046209f1b59213c789160e6cab1d647f3541f339b1"; 597 + sha256 = "24d6b807c6e5af3f4f5eb905165c30e4da754fbaf2a77e01703189281575fd6c"; 598 598 } 599 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/de/firefox-126.0b5.tar.bz2"; 599 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/de/firefox-127.0b2.tar.bz2"; 600 600 locale = "de"; 601 601 arch = "linux-i686"; 602 - sha256 = "bbbfe83e4dbc5b32d8cc619a662cefb79d41dd918be3def4af8f65f665e63486"; 602 + sha256 = "2b02c27cbfa8757d52fa83a713e34494a8f6d32ed3c06d5a65e80d6c8f61d0e1"; 603 603 } 604 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/dsb/firefox-126.0b5.tar.bz2"; 604 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/dsb/firefox-127.0b2.tar.bz2"; 605 605 locale = "dsb"; 606 606 arch = "linux-i686"; 607 - sha256 = "d3cc51b4db1e54768515e40a2389c8103e683538a04bb74141379fa49e171875"; 607 + sha256 = "0b88fcbc7ae3c1fa90ac95afaefbabecaa27f3cade1b29601dacd830f85ed027"; 608 608 } 609 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/el/firefox-126.0b5.tar.bz2"; 609 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/el/firefox-127.0b2.tar.bz2"; 610 610 locale = "el"; 611 611 arch = "linux-i686"; 612 - sha256 = "828f22975e4887cc159aeb5a9d3bbc52c9e7c725b67d360726416df200a419f0"; 612 + sha256 = "1a0fd9122a50bb9be44e708445fce01c13ff647d33dd12ad97ebeddab3b48e0b"; 613 613 } 614 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/en-CA/firefox-126.0b5.tar.bz2"; 614 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/en-CA/firefox-127.0b2.tar.bz2"; 615 615 locale = "en-CA"; 616 616 arch = "linux-i686"; 617 - sha256 = "3884e77d81703ef9d6acbff25af5927865bdde7d4981e18655abb3166bbddb65"; 617 + sha256 = "e6a0237854cb5caec800b5891a459ca18d499b6084cbbf2640a058b1de84969a"; 618 618 } 619 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/en-GB/firefox-126.0b5.tar.bz2"; 619 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/en-GB/firefox-127.0b2.tar.bz2"; 620 620 locale = "en-GB"; 621 621 arch = "linux-i686"; 622 - sha256 = "7b9adb908e1c7d1c179029ff25aaa00a758e04bb8a5a607fb90b1b245b337022"; 622 + sha256 = "85fd87d1d8c5d36281b9dbd5f6e1b702155bcf01f416840cb855d734499d3e47"; 623 623 } 624 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/en-US/firefox-126.0b5.tar.bz2"; 624 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/en-US/firefox-127.0b2.tar.bz2"; 625 625 locale = "en-US"; 626 626 arch = "linux-i686"; 627 - sha256 = "9942b9508e98fc122bba6c0e7d38fa8557095e70f42152ea3c4b20b889dd0fd1"; 627 + sha256 = "5f272b38ea6f9c022fd8de8007e5edd6efd541d4decde664ae8e1384ad08adb3"; 628 628 } 629 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/eo/firefox-126.0b5.tar.bz2"; 629 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/eo/firefox-127.0b2.tar.bz2"; 630 630 locale = "eo"; 631 631 arch = "linux-i686"; 632 - sha256 = "1cc4a48d5a3ae5297d1ad31ea0ca57d92a3b2921886cfc589da5d09c696e13e5"; 632 + sha256 = "5d7eae015528d9abd14468be11f2733fec6a414907536a27ab35e55cab85e914"; 633 633 } 634 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/es-AR/firefox-126.0b5.tar.bz2"; 634 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/es-AR/firefox-127.0b2.tar.bz2"; 635 635 locale = "es-AR"; 636 636 arch = "linux-i686"; 637 - sha256 = "9111c3381205b7172dccc16fe7196dfa355c492d3dd00b3bb15c8e5facb36c3d"; 637 + sha256 = "8341d9c04aae5b53d50e7bd53c1252cc123ae3e8d727c06ebcdb11a9ed4d4c35"; 638 638 } 639 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/es-CL/firefox-126.0b5.tar.bz2"; 639 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/es-CL/firefox-127.0b2.tar.bz2"; 640 640 locale = "es-CL"; 641 641 arch = "linux-i686"; 642 - sha256 = "2f77fc72d82b996ea5e0cc6334f1a90bc0c719a5db46cb04f83702725e578ad2"; 642 + sha256 = "7289ef98833d65d87bfb18be5399a957f51309b16f8159c3f2217a190518a519"; 643 643 } 644 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/es-ES/firefox-126.0b5.tar.bz2"; 644 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/es-ES/firefox-127.0b2.tar.bz2"; 645 645 locale = "es-ES"; 646 646 arch = "linux-i686"; 647 - sha256 = "b4e354ef02a92683efb1b37641b70289b7f9125fc8bacd2eb56db73cb716411e"; 647 + sha256 = "8eb1c37ea72e9b0236eee4358f9f26457779f8380b69df6557326429fef503e2"; 648 648 } 649 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/es-MX/firefox-126.0b5.tar.bz2"; 649 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/es-MX/firefox-127.0b2.tar.bz2"; 650 650 locale = "es-MX"; 651 651 arch = "linux-i686"; 652 - sha256 = "52186331c8196014eb6cff4df3b5f8a05c5128d3adcf3e1753fe98052a5a12e4"; 652 + sha256 = "b0d10daadc2d08055f662fec68214b237132b573ec47e99d2960919722b95570"; 653 653 } 654 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/et/firefox-126.0b5.tar.bz2"; 654 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/et/firefox-127.0b2.tar.bz2"; 655 655 locale = "et"; 656 656 arch = "linux-i686"; 657 - sha256 = "6770e974febfa296032c0b0cfa502ed5e49d4f5abd6e5c955faff8521149750e"; 657 + sha256 = "9a1416673d108f758e9dec558b0172f51c8a5b89dc404a92ea53771b908e4680"; 658 658 } 659 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/eu/firefox-126.0b5.tar.bz2"; 659 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/eu/firefox-127.0b2.tar.bz2"; 660 660 locale = "eu"; 661 661 arch = "linux-i686"; 662 - sha256 = "b85b03cfaf1e267221870983c0758f0bb55cb56dafc8b2fa5bf2abd5ed21c995"; 662 + sha256 = "1e53908af6ab2880153e8e064d41e78e1122e7bf947d66dd8af65a34a0721c25"; 663 663 } 664 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/fa/firefox-126.0b5.tar.bz2"; 664 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/fa/firefox-127.0b2.tar.bz2"; 665 665 locale = "fa"; 666 666 arch = "linux-i686"; 667 - sha256 = "bf5f61add2c256e3bbfa5c88226281a2db10ed03d00b402f86704b4da8b0afa4"; 667 + sha256 = "e28778489b5441ea01313a7dbdc90d21364ab96749090920f702a444208e55e3"; 668 668 } 669 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/ff/firefox-126.0b5.tar.bz2"; 669 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/ff/firefox-127.0b2.tar.bz2"; 670 670 locale = "ff"; 671 671 arch = "linux-i686"; 672 - sha256 = "7f84fd845da18d148c5c63466a1750d0f424f644e7732b8d9e13d4deeabc0a2a"; 672 + sha256 = "e58f6d9b8eddb6d274b4715eb82cbe6899c40e8fa32cbf007f28e4e6650aafe0"; 673 673 } 674 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/fi/firefox-126.0b5.tar.bz2"; 674 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/fi/firefox-127.0b2.tar.bz2"; 675 675 locale = "fi"; 676 676 arch = "linux-i686"; 677 - sha256 = "7dc05fc7c6c79576ef97efe8b09456686e04a2b5a4d315de26aa4a7de6c445d8"; 677 + sha256 = "82956e939fe1c1d85c09153365b30edb77eac0e33b330c4d343700b034465076"; 678 678 } 679 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/fr/firefox-126.0b5.tar.bz2"; 679 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/fr/firefox-127.0b2.tar.bz2"; 680 680 locale = "fr"; 681 681 arch = "linux-i686"; 682 - sha256 = "e25887b699127aa34bd89a1e95a8a66ee3c755fe88425ef14f8b5ec74ca24f74"; 682 + sha256 = "6a1fbec35e84fca5deb28aeef5c39d5549534b3725071663cb0088390beefaa3"; 683 683 } 684 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/fur/firefox-126.0b5.tar.bz2"; 684 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/fur/firefox-127.0b2.tar.bz2"; 685 685 locale = "fur"; 686 686 arch = "linux-i686"; 687 - sha256 = "6f42f68553ed54a7933fe22d35e72a0251bc4bf115a05005ad0e5136afacb8f4"; 687 + sha256 = "9bc2ce0f10dc3b43d799238e09af614925d4a0040b29811f99f46027ea97f910"; 688 688 } 689 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/fy-NL/firefox-126.0b5.tar.bz2"; 689 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/fy-NL/firefox-127.0b2.tar.bz2"; 690 690 locale = "fy-NL"; 691 691 arch = "linux-i686"; 692 - sha256 = "32552aad5837fd035f1b6c8609327b0fdecd21ed068bf1c087c37d5fa289ff2d"; 692 + sha256 = "48c235ec4e318d3333701cd9fdbfcf25e27134accaf14aabfb7764463dc813c8"; 693 693 } 694 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/ga-IE/firefox-126.0b5.tar.bz2"; 694 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/ga-IE/firefox-127.0b2.tar.bz2"; 695 695 locale = "ga-IE"; 696 696 arch = "linux-i686"; 697 - sha256 = "ef3a8cc08ea7efaa89571f101502f41eb420ff93eee126bd135b58a34a2eb507"; 697 + sha256 = "774edd13527f00028f2e90e5af22f1747bb4a2e1c6b80e7849e9fd4af2031b4f"; 698 698 } 699 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/gd/firefox-126.0b5.tar.bz2"; 699 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/gd/firefox-127.0b2.tar.bz2"; 700 700 locale = "gd"; 701 701 arch = "linux-i686"; 702 - sha256 = "200ceeb1cc4ce76c7eeb138474d0e92a673dcaa7ce9c422144ffea12192258d7"; 702 + sha256 = "ee49542e1c43ab6e85f9c6bf43eebdb1f3e8c26da082f5c8e32883f932ddd6bc"; 703 703 } 704 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/gl/firefox-126.0b5.tar.bz2"; 704 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/gl/firefox-127.0b2.tar.bz2"; 705 705 locale = "gl"; 706 706 arch = "linux-i686"; 707 - sha256 = "23faa528dfa7650fd08eb563d1f35161b64df07f0e6c39fb973e731b259d2f6f"; 707 + sha256 = "40e25036b2fa4d1c45287272749b83d8b6997c27968f5154f59d5fd1448d1aed"; 708 708 } 709 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/gn/firefox-126.0b5.tar.bz2"; 709 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/gn/firefox-127.0b2.tar.bz2"; 710 710 locale = "gn"; 711 711 arch = "linux-i686"; 712 - sha256 = "298baa1de50fae2edc5de0f7dbc574a2234ae829875dba8fe23462f1dc34bcd9"; 712 + sha256 = "8fe7e211c79b3cef4a2e752ed31f028ba29dea103747b2502b002cf22af97b1a"; 713 713 } 714 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/gu-IN/firefox-126.0b5.tar.bz2"; 714 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/gu-IN/firefox-127.0b2.tar.bz2"; 715 715 locale = "gu-IN"; 716 716 arch = "linux-i686"; 717 - sha256 = "0ef24de04d3e31ce6b6484c83e3daa5ccb2e756039ff5a60cfe27107ad6c5ad9"; 717 + sha256 = "6174d4d698c06431df17b3f3ca8b40463620f2de8a84c6d60bd7aa37a2202f84"; 718 718 } 719 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/he/firefox-126.0b5.tar.bz2"; 719 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/he/firefox-127.0b2.tar.bz2"; 720 720 locale = "he"; 721 721 arch = "linux-i686"; 722 - sha256 = "80da93cde19b28f04130f8fb0c2b53ecf13e0894ddd4568a5326e24ae688b30b"; 722 + sha256 = "aea8d49e71f5567725fd1498d1ada41ee5ddb4a39e984fb82a7a37e6461ddf82"; 723 723 } 724 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/hi-IN/firefox-126.0b5.tar.bz2"; 724 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/hi-IN/firefox-127.0b2.tar.bz2"; 725 725 locale = "hi-IN"; 726 726 arch = "linux-i686"; 727 - sha256 = "b3cf03edf9b7ce6be6300f7f0d5da539bfaec1ee76258958c4eb2656296950cc"; 727 + sha256 = "fb0d1b12197bd756b66b318024f3bd8b6d082460447fa8e25858bcd83709c483"; 728 728 } 729 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/hr/firefox-126.0b5.tar.bz2"; 729 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/hr/firefox-127.0b2.tar.bz2"; 730 730 locale = "hr"; 731 731 arch = "linux-i686"; 732 - sha256 = "3aabe5e9a05e995882ed37093450967f573b752c20fffec199e6fbc26dfbb963"; 732 + sha256 = "0d122bc0c58f6d19e2508d70cf509c06c7fc6eacdf38e7f96d1006f837b97615"; 733 733 } 734 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/hsb/firefox-126.0b5.tar.bz2"; 734 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/hsb/firefox-127.0b2.tar.bz2"; 735 735 locale = "hsb"; 736 736 arch = "linux-i686"; 737 - sha256 = "19591b3d2ab98eefa993e71558c00320a5bafde9dfef83ea62aa5d466150ca0e"; 737 + sha256 = "a248a771f298fc00b1f752a4f48838e356f1a0be8da21b2eced40cf238a5b574"; 738 738 } 739 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/hu/firefox-126.0b5.tar.bz2"; 739 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/hu/firefox-127.0b2.tar.bz2"; 740 740 locale = "hu"; 741 741 arch = "linux-i686"; 742 - sha256 = "8a54355ee1ec9d0670b0d5a785ed5a19667159928687cac8769926adcf48fb68"; 742 + sha256 = "6851a94bb5ae5f5b9995bb71f38419faa0a1cd4aeb09f73d839927f440148815"; 743 743 } 744 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/hy-AM/firefox-126.0b5.tar.bz2"; 744 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/hy-AM/firefox-127.0b2.tar.bz2"; 745 745 locale = "hy-AM"; 746 746 arch = "linux-i686"; 747 - sha256 = "db30cafc71ccc29f1bd338ea78ad0ac046e2a29a7f20a5b58092398f5b0d11be"; 747 + sha256 = "e495954e290bb7159d9583d7de648aaece79bd729bc88b5f3653ebf8edb2e8bb"; 748 748 } 749 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/ia/firefox-126.0b5.tar.bz2"; 749 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/ia/firefox-127.0b2.tar.bz2"; 750 750 locale = "ia"; 751 751 arch = "linux-i686"; 752 - sha256 = "49ba196e9942db242d421976456fa5178df9b41d270f5c1961d1b5d69b7515c0"; 752 + sha256 = "5bd7790ed21c2ef82c75ee31ca352701ebeffb7ecb14a73f5a514504980728e7"; 753 753 } 754 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/id/firefox-126.0b5.tar.bz2"; 754 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/id/firefox-127.0b2.tar.bz2"; 755 755 locale = "id"; 756 756 arch = "linux-i686"; 757 - sha256 = "bd2c2b87753d57172229943e8129523e37057a7118b7fc7597f9898df7e0b9f1"; 757 + sha256 = "c720c3ce0be48455be7738af00c65f63717796b3a61418f91e1fac66cac01488"; 758 758 } 759 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/is/firefox-126.0b5.tar.bz2"; 759 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/is/firefox-127.0b2.tar.bz2"; 760 760 locale = "is"; 761 761 arch = "linux-i686"; 762 - sha256 = "cb185e548abfd9169e8db7367df3079779badb29b842a87492030e8402a690aa"; 762 + sha256 = "9097e1aba384bf9035ad51b723a61093b2eb97b81c8bddb336c2aacbb35f9470"; 763 763 } 764 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/it/firefox-126.0b5.tar.bz2"; 764 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/it/firefox-127.0b2.tar.bz2"; 765 765 locale = "it"; 766 766 arch = "linux-i686"; 767 - sha256 = "6c06b0f3ab4ad2e5d81bfd3332f7554f3be85fb5a8ff55649d569d90a8cc89be"; 767 + sha256 = "cddbf8afd27f4fc901e9d7a171287a4f82c5e6659df7ab9ad59801f9c8f649e4"; 768 768 } 769 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/ja/firefox-126.0b5.tar.bz2"; 769 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/ja/firefox-127.0b2.tar.bz2"; 770 770 locale = "ja"; 771 771 arch = "linux-i686"; 772 - sha256 = "99549b3ae26f1c816c76a75909e1f80dc86d233a1b7fa508ee85eff681a635f8"; 772 + sha256 = "5c80ada93f5d568c71e21d9c3bd27995c1669505b981497b1f13bb7b3f02c777"; 773 773 } 774 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/ka/firefox-126.0b5.tar.bz2"; 774 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/ka/firefox-127.0b2.tar.bz2"; 775 775 locale = "ka"; 776 776 arch = "linux-i686"; 777 - sha256 = "6d897e6c4e1f6c3ba73ecfa74f0892f24f8c75d09ac6ed81466b8a5775c4ea6d"; 777 + sha256 = "7e68ae94a62328b693d36d657b81fef4211cef4b9e074bd03ee2963bb30f0ab1"; 778 778 } 779 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/kab/firefox-126.0b5.tar.bz2"; 779 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/kab/firefox-127.0b2.tar.bz2"; 780 780 locale = "kab"; 781 781 arch = "linux-i686"; 782 - sha256 = "6e0b66d33d9d589a1ff7999cf88f261b0a8fc6c1ec59c07df05c2fe102f358ee"; 782 + sha256 = "884dda123990eaf650eb6838a344f36c7aae7915f3540cb8d252f06a9467e814"; 783 783 } 784 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/kk/firefox-126.0b5.tar.bz2"; 784 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/kk/firefox-127.0b2.tar.bz2"; 785 785 locale = "kk"; 786 786 arch = "linux-i686"; 787 - sha256 = "45b86094d4491f8c60ccd8a0bf29f89859f6ffa5ed2c083fe73279dc05fecdc1"; 787 + sha256 = "9a633805b09925b1e5a00dd4291680584507ab7e94dfa8ba553641a196f5adb4"; 788 788 } 789 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/km/firefox-126.0b5.tar.bz2"; 789 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/km/firefox-127.0b2.tar.bz2"; 790 790 locale = "km"; 791 791 arch = "linux-i686"; 792 - sha256 = "6ba5101ba76f482f98f1eee501e3541ca2aca9becbdb8e1c4643e90006eaa0da"; 792 + sha256 = "0322b0cbbeb52b2cbd80395ca31d1f08794291f79aedb79e9d9658fad8234e80"; 793 793 } 794 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/kn/firefox-126.0b5.tar.bz2"; 794 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/kn/firefox-127.0b2.tar.bz2"; 795 795 locale = "kn"; 796 796 arch = "linux-i686"; 797 - sha256 = "c07f3148396eee897f020ce04558fadcea9b3b6f138c6c39ed4b3aa57a79a5ad"; 797 + sha256 = "51621c8c9f5b88402c493ce6813b84afe00236c5971155e1952c52e075014ead"; 798 798 } 799 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/ko/firefox-126.0b5.tar.bz2"; 799 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/ko/firefox-127.0b2.tar.bz2"; 800 800 locale = "ko"; 801 801 arch = "linux-i686"; 802 - sha256 = "281f31ac39e10c6be379b6bcd4a857959aee8db44b0511c8ca9325d4fab7539c"; 802 + sha256 = "7537bb740007e4e7bf8cdadb72c78e6cd9c4cecf4b1672b9092e9a1a0c04557f"; 803 803 } 804 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/lij/firefox-126.0b5.tar.bz2"; 804 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/lij/firefox-127.0b2.tar.bz2"; 805 805 locale = "lij"; 806 806 arch = "linux-i686"; 807 - sha256 = "3c2af4d878658d1a323bef0abb12ae0a8425cd462198d08262718b20325528cd"; 807 + sha256 = "77cc77b6d45440c7beff04dc4c5fc3043f5d62a6d8a7fa5cec1d068aeb74d6d2"; 808 808 } 809 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/lt/firefox-126.0b5.tar.bz2"; 809 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/lt/firefox-127.0b2.tar.bz2"; 810 810 locale = "lt"; 811 811 arch = "linux-i686"; 812 - sha256 = "868423a70743ca1d2631d064a08061178dc3ce6443beb3a3707fb4112e0e43b1"; 812 + sha256 = "3dd9ed70c21c268ffa9c39632a0fa8b6f48cfabe9834826abeb120d88fb242fc"; 813 813 } 814 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/lv/firefox-126.0b5.tar.bz2"; 814 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/lv/firefox-127.0b2.tar.bz2"; 815 815 locale = "lv"; 816 816 arch = "linux-i686"; 817 - sha256 = "625022c66c3d7a266b91098da78094c3185fd3b1143ea530df71a1c05e3b842f"; 817 + sha256 = "d493c414466ed8a117b40ead6d13caebf32c9c59abb1658db5d87933ecc7ba5c"; 818 818 } 819 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/mk/firefox-126.0b5.tar.bz2"; 819 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/mk/firefox-127.0b2.tar.bz2"; 820 820 locale = "mk"; 821 821 arch = "linux-i686"; 822 - sha256 = "6ec70a56d648fa616a3c6a8a284e9bced88e7ce2f50218718db5f04f58a09ec0"; 822 + sha256 = "adad74ff34d5aca45ca24c39471249c8aba082a3b2cba081def171e6420a2fc7"; 823 823 } 824 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/mr/firefox-126.0b5.tar.bz2"; 824 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/mr/firefox-127.0b2.tar.bz2"; 825 825 locale = "mr"; 826 826 arch = "linux-i686"; 827 - sha256 = "ef4651dea53de6e7870289f1003f4d2f719c5fb5b360d6674355e2ce04cf95e6"; 827 + sha256 = "fc44b325f0556f6284fa09b9989bb4aee9dde7f2b98c274ec1c876cca54a651d"; 828 828 } 829 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/ms/firefox-126.0b5.tar.bz2"; 829 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/ms/firefox-127.0b2.tar.bz2"; 830 830 locale = "ms"; 831 831 arch = "linux-i686"; 832 - sha256 = "5b24c603ead07e26421844f07d9809f6c19b89582cd09f6473cf6abc5db5aa73"; 832 + sha256 = "665b68f4eca82def832a30f77e206eb6d3ab25959a97c88e94d219652c73a07f"; 833 833 } 834 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/my/firefox-126.0b5.tar.bz2"; 834 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/my/firefox-127.0b2.tar.bz2"; 835 835 locale = "my"; 836 836 arch = "linux-i686"; 837 - sha256 = "3439db4e7ebde599e2a6baa262acd29a6c2b2087d9e6e1439d7644c49da645fe"; 837 + sha256 = "5317071a0c2e88c84685c220a39e67b1ee410966dbc3d7f352bb37f619ab2ca3"; 838 838 } 839 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/nb-NO/firefox-126.0b5.tar.bz2"; 839 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/nb-NO/firefox-127.0b2.tar.bz2"; 840 840 locale = "nb-NO"; 841 841 arch = "linux-i686"; 842 - sha256 = "4033990ccaaf2937f05280962b7cc72f2b78ee39783bf279affde551a6c998f1"; 842 + sha256 = "00734efcb8d9aa70720bfed3d49718044aba1088c48beb9d3a618439e806bc17"; 843 843 } 844 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/ne-NP/firefox-126.0b5.tar.bz2"; 844 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/ne-NP/firefox-127.0b2.tar.bz2"; 845 845 locale = "ne-NP"; 846 846 arch = "linux-i686"; 847 - sha256 = "d4ea47c773d8ac97701f13705c0a1fc13d0f1de8f861584adbabbe00d6480ae3"; 847 + sha256 = "0aa7eaf8cddd8399be7e4361bd700641b4e23c55c5ba571307a5d68a23825d52"; 848 848 } 849 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/nl/firefox-126.0b5.tar.bz2"; 849 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/nl/firefox-127.0b2.tar.bz2"; 850 850 locale = "nl"; 851 851 arch = "linux-i686"; 852 - sha256 = "e7b2ba4a793462905777a897fbd16377296151c4a11757abf678ad58632ffde0"; 852 + sha256 = "c45ce8548a7681039d2f8eea1034e34b669f98e8b1ce195f1e97585a75f7add6"; 853 853 } 854 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/nn-NO/firefox-126.0b5.tar.bz2"; 854 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/nn-NO/firefox-127.0b2.tar.bz2"; 855 855 locale = "nn-NO"; 856 856 arch = "linux-i686"; 857 - sha256 = "eafec75a25348745aa88acb24d6caaddf5e7bdbcb4f538e1e3e4c1167784768c"; 857 + sha256 = "d43f42e73f98b724652eb7d771bf3766c53337985df41ad3a93bc9dc6ced1c39"; 858 858 } 859 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/oc/firefox-126.0b5.tar.bz2"; 859 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/oc/firefox-127.0b2.tar.bz2"; 860 860 locale = "oc"; 861 861 arch = "linux-i686"; 862 - sha256 = "2c0b590f5506a46431a3270e6b12ce4824f7ae9e04e6c145a071ca524b309eec"; 862 + sha256 = "dfd0c96c49bf69e55f86d9b81f81c9e61af87323a68624c7ae9d1fe337404e02"; 863 863 } 864 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/pa-IN/firefox-126.0b5.tar.bz2"; 864 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/pa-IN/firefox-127.0b2.tar.bz2"; 865 865 locale = "pa-IN"; 866 866 arch = "linux-i686"; 867 - sha256 = "2af8102efcdd489a5cff669f4b37f1b98156a118260ab60d3d626d7c61ce9b86"; 867 + sha256 = "704a4534dd144aab5b99a2a1daa42af6ff2fc85ff586d7fefcd90daabd39f691"; 868 868 } 869 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/pl/firefox-126.0b5.tar.bz2"; 869 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/pl/firefox-127.0b2.tar.bz2"; 870 870 locale = "pl"; 871 871 arch = "linux-i686"; 872 - sha256 = "aa55f3d1d6c1206717f0190607598bd8a878cf439e4cad104751e57cdeb85f90"; 872 + sha256 = "dccbf1e6b1c463c60cb321be32a2d169e4669ba295a9e46a24c1fdb1a9a3fc60"; 873 873 } 874 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/pt-BR/firefox-126.0b5.tar.bz2"; 874 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/pt-BR/firefox-127.0b2.tar.bz2"; 875 875 locale = "pt-BR"; 876 876 arch = "linux-i686"; 877 - sha256 = "09284e4c296dad6cef7964d26ee32e8bdcc4fe92060dc555d8a532e491f81cf2"; 877 + sha256 = "30954bceb1149e8f0fb1f2572b48e6a812f9040e2956a0a00ba9861eed0419a4"; 878 878 } 879 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/pt-PT/firefox-126.0b5.tar.bz2"; 879 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/pt-PT/firefox-127.0b2.tar.bz2"; 880 880 locale = "pt-PT"; 881 881 arch = "linux-i686"; 882 - sha256 = "df14751d2697dd65d48eb9db603a3571c8b3190b6c55f489cefa6d3a3a8a157a"; 882 + sha256 = "3adb9cabe5ef28e532c9876459a7c711bff44e829c555db57f228a2034aee55e"; 883 883 } 884 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/rm/firefox-126.0b5.tar.bz2"; 884 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/rm/firefox-127.0b2.tar.bz2"; 885 885 locale = "rm"; 886 886 arch = "linux-i686"; 887 - sha256 = "d87f9d823aa7d558acf224ac38f593e3e5209e4266ed407ad2264947b7b6dfab"; 887 + sha256 = "c392f15e019222daff27c5be0d5e695d41840e7df3ddeefc3768936a1899c60f"; 888 888 } 889 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/ro/firefox-126.0b5.tar.bz2"; 889 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/ro/firefox-127.0b2.tar.bz2"; 890 890 locale = "ro"; 891 891 arch = "linux-i686"; 892 - sha256 = "7d3eb55686c8cd3f80adb635ffb7f8a2056839df92324014bc2efecf05332fc9"; 892 + sha256 = "57b2b6e3aa50de0cc122c9612a098adc3d406ae6700af3799d900f6b1099fd16"; 893 893 } 894 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/ru/firefox-126.0b5.tar.bz2"; 894 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/ru/firefox-127.0b2.tar.bz2"; 895 895 locale = "ru"; 896 896 arch = "linux-i686"; 897 - sha256 = "498150f664b618217a6860c44b0ea40a873fb54a99dbb8287e156bb18ad7493c"; 897 + sha256 = "b0c0f87f4689c29a5ab1dd05bec2fd890764e8610baf480d48f2bc56c45d8c1a"; 898 898 } 899 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/sat/firefox-126.0b5.tar.bz2"; 899 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/sat/firefox-127.0b2.tar.bz2"; 900 900 locale = "sat"; 901 901 arch = "linux-i686"; 902 - sha256 = "6e2b704f0a6d47bf49ee8bbc4704093792f16dd3e44b78fad658ee92ee680d38"; 902 + sha256 = "29f12ee83180384d8480a0ff3b7eb8d8380ba6e80aaa79889ecdb507ba5a18cf"; 903 903 } 904 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/sc/firefox-126.0b5.tar.bz2"; 904 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/sc/firefox-127.0b2.tar.bz2"; 905 905 locale = "sc"; 906 906 arch = "linux-i686"; 907 - sha256 = "2e38cbd7c6304ab68cbf310d6e155a3923b5fdd0eab9e4501e191aaa1c792a75"; 907 + sha256 = "feb0ff2b4a5ecb51daf6a9a37f835e50894ba73300242d5f1375e210aed9df09"; 908 908 } 909 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/sco/firefox-126.0b5.tar.bz2"; 909 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/sco/firefox-127.0b2.tar.bz2"; 910 910 locale = "sco"; 911 911 arch = "linux-i686"; 912 - sha256 = "e1f7336f6fcee8d067c9e8ea3310c98e268b0c1325ca9ab3e2e3b985c0f13871"; 912 + sha256 = "ce078b281d4f8a57b3bff091ac6e7bb04ecf401885150443945390ef0da30d1c"; 913 913 } 914 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/si/firefox-126.0b5.tar.bz2"; 914 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/si/firefox-127.0b2.tar.bz2"; 915 915 locale = "si"; 916 916 arch = "linux-i686"; 917 - sha256 = "2dbcd443b0a604ad8606910da3f3461e426277cf95889d356c46a3ef91b7c92a"; 917 + sha256 = "b9dc142b29f4c982e86fb58a7813801fa208386ceadd5f4ce9e46616f524d2d3"; 918 918 } 919 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/sk/firefox-126.0b5.tar.bz2"; 919 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/sk/firefox-127.0b2.tar.bz2"; 920 920 locale = "sk"; 921 921 arch = "linux-i686"; 922 - sha256 = "a749249d1ffde0dfa6e887dda6dec28cd331e68d1b9c536f8656cf4fc549ad63"; 922 + sha256 = "9171e3fa56a0611a9e4adc5c2aa4e873b79f0e229ce21f5cd61a855bfe67f228"; 923 923 } 924 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/sl/firefox-126.0b5.tar.bz2"; 924 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/sl/firefox-127.0b2.tar.bz2"; 925 925 locale = "sl"; 926 926 arch = "linux-i686"; 927 - sha256 = "0fba214a2ec166ed2d198ee67cbb70823fc2ab719501fa8721e347e5890033aa"; 927 + sha256 = "8d6385d9865439c3184b4c6fabe5a205bca7c96facc510e9d0ad37e338a3685c"; 928 928 } 929 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/son/firefox-126.0b5.tar.bz2"; 929 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/son/firefox-127.0b2.tar.bz2"; 930 930 locale = "son"; 931 931 arch = "linux-i686"; 932 - sha256 = "b5c1b4da06025a762c3a7e0d825c8d217b99b9997d84cb63fa1b3331d04c3d5c"; 932 + sha256 = "6041cc7f8929ea4e1109b6bfbd5214415333528a2f371d7226f1d6f9c78b7c0b"; 933 933 } 934 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/sq/firefox-126.0b5.tar.bz2"; 934 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/sq/firefox-127.0b2.tar.bz2"; 935 935 locale = "sq"; 936 936 arch = "linux-i686"; 937 - sha256 = "2e7cfb921900b72557b620b7cfde39d05a7632726db38c656a1625a589941583"; 937 + sha256 = "f3d64bf45a205a52f8ce9da83a8929b8946552d8d9b5b2e44d2c4c54b09eb7cc"; 938 938 } 939 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/sr/firefox-126.0b5.tar.bz2"; 939 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/sr/firefox-127.0b2.tar.bz2"; 940 940 locale = "sr"; 941 941 arch = "linux-i686"; 942 - sha256 = "9e7d7fdddf0c05299448db0e6271ffb8bb297367400cf010af92d38a667c85f7"; 942 + sha256 = "1189d0fac0bfab52f2536d61ff5b8e9e6bc456cf64d3c9b5c519bb7db86c6cd2"; 943 943 } 944 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/sv-SE/firefox-126.0b5.tar.bz2"; 944 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/sv-SE/firefox-127.0b2.tar.bz2"; 945 945 locale = "sv-SE"; 946 946 arch = "linux-i686"; 947 - sha256 = "37c2f75952cf9c5c138e890f4b5c4d18c5d6b166b9f361c0532fb2955363f61a"; 947 + sha256 = "3df8ed2df85ac7cf573518774e6b2d42e4573b9f9396f1cd161072e72135bb0c"; 948 948 } 949 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/szl/firefox-126.0b5.tar.bz2"; 949 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/szl/firefox-127.0b2.tar.bz2"; 950 950 locale = "szl"; 951 951 arch = "linux-i686"; 952 - sha256 = "b42a7bdd7cdef45d354f43eb3d8640dfd7f4213870d9a5ad5eb62ae497f1ea58"; 952 + sha256 = "159652951edeefc0a9fdd9c2ef4babb0faf846e14c54a06f00c1e393b2d52ad1"; 953 953 } 954 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/ta/firefox-126.0b5.tar.bz2"; 954 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/ta/firefox-127.0b2.tar.bz2"; 955 955 locale = "ta"; 956 956 arch = "linux-i686"; 957 - sha256 = "96e64f57a2390f994cc906b4035573b44bddf80578317ea73cf1c9a95c2662ca"; 957 + sha256 = "b69da473595cb0bf2c540382431f1921d23626902927f6e8433121597954c078"; 958 958 } 959 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/te/firefox-126.0b5.tar.bz2"; 959 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/te/firefox-127.0b2.tar.bz2"; 960 960 locale = "te"; 961 961 arch = "linux-i686"; 962 - sha256 = "bc8240e066017f3715ca683d77829cc4ed2ab12ea384d79afa759e87fd86aaa2"; 962 + sha256 = "8a9537e0643c1bd097e343dd270c900be40829ccddab1f2852afc3f7f5291fcb"; 963 963 } 964 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/tg/firefox-126.0b5.tar.bz2"; 964 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/tg/firefox-127.0b2.tar.bz2"; 965 965 locale = "tg"; 966 966 arch = "linux-i686"; 967 - sha256 = "ab31902edd38fcffb6fa025ee37861ed6b57ca8d08800d6e4f3349bfb7a2a0e7"; 967 + sha256 = "2b4c01abde3afda35764babfe2314bbc54ff5926d184459fce296de19ae4538c"; 968 968 } 969 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/th/firefox-126.0b5.tar.bz2"; 969 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/th/firefox-127.0b2.tar.bz2"; 970 970 locale = "th"; 971 971 arch = "linux-i686"; 972 - sha256 = "6bde3a57c5a1f50686d6264327ff3d1b0884f94067b459b4b397e564674e3470"; 972 + sha256 = "d5b5c5ba8985d964fb618d8a02b00a332d10c88e0c00c0a08392d5152d1a2aee"; 973 973 } 974 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/tl/firefox-126.0b5.tar.bz2"; 974 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/tl/firefox-127.0b2.tar.bz2"; 975 975 locale = "tl"; 976 976 arch = "linux-i686"; 977 - sha256 = "f89803ec0fc5c5c41c057fb123895a433198abb2c92c3b86ea60edd10d436816"; 977 + sha256 = "01126fa975a56c35bd39b18bd5fee40a41f937d6de745e19d43adde8313216f6"; 978 978 } 979 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/tr/firefox-126.0b5.tar.bz2"; 979 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/tr/firefox-127.0b2.tar.bz2"; 980 980 locale = "tr"; 981 981 arch = "linux-i686"; 982 - sha256 = "edd57c9e0a205bcc2696d9fd7dec8ebd06966fa532cfe38dd947045ff14c9c12"; 982 + sha256 = "9944290424fec68114cc56e7d7f9461d382999ef9f3aa257b796efc4bc45ed1d"; 983 983 } 984 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/trs/firefox-126.0b5.tar.bz2"; 984 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/trs/firefox-127.0b2.tar.bz2"; 985 985 locale = "trs"; 986 986 arch = "linux-i686"; 987 - sha256 = "0290566d5979ed70e64eb69601bb63404b9f5877f510e86be14dbe7e51d352d0"; 987 + sha256 = "2bc7e9a06be8d2ea6e9a9db06456ef7762040a9669657f7715e8abd7ed8cb301"; 988 988 } 989 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/uk/firefox-126.0b5.tar.bz2"; 989 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/uk/firefox-127.0b2.tar.bz2"; 990 990 locale = "uk"; 991 991 arch = "linux-i686"; 992 - sha256 = "d3268a194f9b0bf66afdcb3a412d0eab6cdac32b4dcff6330a701fe92614a2b6"; 992 + sha256 = "d301919a3f538bd360f471abc2718295a86018fb6c2ef60843373e1eec2b3ac6"; 993 993 } 994 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/ur/firefox-126.0b5.tar.bz2"; 994 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/ur/firefox-127.0b2.tar.bz2"; 995 995 locale = "ur"; 996 996 arch = "linux-i686"; 997 - sha256 = "4ea0d1695d25ddb08c73ecba4458a7ade7794c0868de1cffc902ea8ed165f5e8"; 997 + sha256 = "ca49185a9f77b621f7fe3db460181d5dd3f3ffcf5dbfec5e451339efd0ef96d2"; 998 998 } 999 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/uz/firefox-126.0b5.tar.bz2"; 999 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/uz/firefox-127.0b2.tar.bz2"; 1000 1000 locale = "uz"; 1001 1001 arch = "linux-i686"; 1002 - sha256 = "d0d1529593d8f7a5b234fa298ec83f04611814aab584da2b390e8e7937fd40e4"; 1002 + sha256 = "0f6c983b18585e1b9b2cdbc47e86a1b56d62126d0b90d770391e9d7502a392aa"; 1003 1003 } 1004 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/vi/firefox-126.0b5.tar.bz2"; 1004 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/vi/firefox-127.0b2.tar.bz2"; 1005 1005 locale = "vi"; 1006 1006 arch = "linux-i686"; 1007 - sha256 = "afde0e30cf0235c1d104188066b8671b9495441fc03b46d4ca895848b1028e4c"; 1007 + sha256 = "f621f3b433ac410b996f7c7e7e94b680ee7d3425d2e41bdccdfd567ecec094ac"; 1008 1008 } 1009 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/xh/firefox-126.0b5.tar.bz2"; 1009 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/xh/firefox-127.0b2.tar.bz2"; 1010 1010 locale = "xh"; 1011 1011 arch = "linux-i686"; 1012 - sha256 = "636989a36a31c8a3a81e41bbc03ec7461f05e942eda17d6c65c8876614d5169f"; 1012 + sha256 = "631336f561f9153d0fbd941758aae76bd003ad541a8fb28a650610fba0f84ffd"; 1013 1013 } 1014 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/zh-CN/firefox-126.0b5.tar.bz2"; 1014 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/zh-CN/firefox-127.0b2.tar.bz2"; 1015 1015 locale = "zh-CN"; 1016 1016 arch = "linux-i686"; 1017 - sha256 = "ae0ee3d69d5c14e36f643c8a7aa50d45e2033d21e657c8c5693acc0a8059c2a1"; 1017 + sha256 = "7332654e1f050b6eabfca74a9fa9ef024f75f77ccc4ec6b8c042a33d1fa09dd0"; 1018 1018 } 1019 - { url = "https://archive.mozilla.org/pub/devedition/releases/126.0b5/linux-i686/zh-TW/firefox-126.0b5.tar.bz2"; 1019 + { url = "https://archive.mozilla.org/pub/devedition/releases/127.0b2/linux-i686/zh-TW/firefox-127.0b2.tar.bz2"; 1020 1020 locale = "zh-TW"; 1021 1021 arch = "linux-i686"; 1022 - sha256 = "1bdb0ca6b4cc73080c6baa43e8b70668068f722abfeb437a3daee71fe58d6771"; 1022 + sha256 = "77d4db4421b562f34126da6fe7d26221fabc27b1ca7a413c9fc55ed9d89d1f3a"; 1023 1023 } 1024 1024 ]; 1025 1025 }
+4 -4
pkgs/applications/networking/browsers/firefox/packages.nix
··· 33 33 34 34 firefox-beta = buildMozillaMach rec { 35 35 pname = "firefox-beta"; 36 - version = "126.0b5"; 36 + version = "127.0b2"; 37 37 applicationName = "Mozilla Firefox Beta"; 38 38 src = fetchurl { 39 39 url = "mirror://mozilla/firefox/releases/${version}/source/firefox-${version}.source.tar.xz"; 40 - sha512 = "5a079e4f01c95baf5b26a5d61521eea493fa4c3cdf91985fbbee313ddc50af1d941915abd6d0ffa97927d80f2016cbdcd3c80c11cfc3068cf83a62f3b45026ad"; 40 + sha512 = "ce3bb42674fb5c820ce46a1f86d482d9c7631f1e0f31fe63c0813436cb54b3bbae9b53f397dc6cfc48b28682f720bfd042bb68715a3c653046870f2d50e9ed04"; 41 41 }; 42 42 43 43 meta = { ··· 62 62 63 63 firefox-devedition = buildMozillaMach rec { 64 64 pname = "firefox-devedition"; 65 - version = "126.0b5"; 65 + version = "127.0b2"; 66 66 applicationName = "Mozilla Firefox Developer Edition"; 67 67 requireSigning = false; 68 68 branding = "browser/branding/aurora"; 69 69 src = fetchurl { 70 70 url = "mirror://mozilla/devedition/releases/${version}/source/firefox-${version}.source.tar.xz"; 71 - sha512 = "cb36cdf70035ed96cb877d41e499d7df03fc6a939f4a5395fef110a44f7d810ad4e8fa393c784f3e7d286ffde0c4f3ad0fd38e81236a301a24d4e74eece702b1"; 71 + sha512 = "109e834e533db1a815151777170cdc0617a1f725ce8e5af04e63ac9e874edb22a33d51f2d85fcbb0c4132c3884785a54f6ea0ffaf7a0cc764e033fda311c48d6"; 72 72 }; 73 73 74 74 meta = {
+2 -2
pkgs/applications/networking/cluster/arkade/default.nix
··· 7 7 8 8 buildGoModule rec { 9 9 pname = "arkade"; 10 - version = "0.11.11"; 10 + version = "0.11.12"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "alexellis"; 14 14 repo = "arkade"; 15 15 rev = version; 16 - hash = "sha256-Pevsq/u6sI00k874PiAVwzgTqzzja1D2zsfebIFJv/0="; 16 + hash = "sha256-tioWLZ1Bd+gC2FvbhrxFPIkOJb9ycx9sGVmh+a/4hwo="; 17 17 }; 18 18 19 19 CGO_ENABLED = 0;
+4 -4
pkgs/applications/networking/cluster/fluxcd/default.nix
··· 7 7 }: 8 8 9 9 let 10 - version = "2.2.3"; 11 - sha256 = "sha256-1Z9EXqK+xnFGeWjoac1QZwOoMiYRRU1HEAZRaEpUOYs="; 12 - manifestsSha256 = "sha256-HSl15rJknWeKqi3kYTHJvQlw5eD77OkFhIn0K+Ovv8I="; 10 + version = "2.3.0"; 11 + sha256 = "sha256-ZQs1rWI31qDo/BgjrmiNnEdR2OL8bUHVz+j5VceEp2k="; 12 + manifestsSha256 = "sha256-PdhR+UDquIJWtpSymtT6V7qO5fVJOkFz6RGzAx7xeb4="; 13 13 14 14 manifests = fetchzip { 15 15 url = ··· 29 29 inherit sha256; 30 30 }; 31 31 32 - vendorHash = "sha256-UPX5V3VwpX/eDy9ktqpvYb0JOzKRHH2nIQZzZ0jrYoQ="; 32 + vendorHash = "sha256-0YH3pgFrsnh5jIsZpj/sIgfiOCTtIlPltMS5mdGz1eM="; 33 33 34 34 postUnpack = '' 35 35 cp -r ${manifests} source/cmd/flux/manifests
+3 -3
pkgs/applications/networking/cluster/helm/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "kubernetes-helm"; 5 - version = "3.14.4"; 5 + version = "3.15.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "helm"; 9 9 repo = "helm"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-Wt5ovKa2CHrD0VSxvReYAwoC4SsuZHAhi/P6Kn1H7So="; 11 + sha256 = "sha256-0YBpxXM/+mU0y1lf/h3xFbF5nfbjk6D9qT10IMR9XUY="; 12 12 }; 13 - vendorHash = "sha256-b25LUyr4B4fF/WF4Q+zzrDo78kuSTEPBklKkA4o+DBo="; 13 + vendorHash = "sha256-VPahAeeRz3fk1475dlCofiLVAKXMhpvspENmQmlPyPM="; 14 14 15 15 subPackages = [ "cmd/helm" ]; 16 16 ldflags = [
+2 -2
pkgs/applications/networking/cluster/kubeconform/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "kubeconform"; 5 - version = "0.6.5"; 5 + version = "0.6.6"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "yannh"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-4rHEkzoO0AuuFB6G/z1WjGqfYMaHF3Z1YDAhIbBVCts="; 11 + sha256 = "sha256-pE5DDtraN5ubEsM+QfY5y/dqM31VsQ3FeM/c56AJ648="; 12 12 }; 13 13 14 14 vendorHash = null;
+2 -2
pkgs/applications/networking/cluster/kubernetes/default.nix
··· 20 20 21 21 buildGoModule rec { 22 22 pname = "kubernetes"; 23 - version = "1.30.0"; 23 + version = "1.30.1"; 24 24 25 25 src = fetchFromGitHub { 26 26 owner = "kubernetes"; 27 27 repo = "kubernetes"; 28 28 rev = "v${version}"; 29 - hash = "sha256-7xRRpchjwtV3dGbZ2hN9qj6soAuiF/K7vTY0LzE6Z5w="; 29 + hash = "sha256-nTVjgNMnB6775ubzK7ezOxR5Z0z5PBxx88CxtbxGxrY="; 30 30 }; 31 31 32 32 vendorHash = null;
+2 -2
pkgs/applications/networking/cluster/tektoncd-cli/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "tektoncd-cli"; 5 - version = "0.36.0"; 5 + version = "0.37.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "tektoncd"; 9 9 repo = "cli"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-no/F9PqChokG2so3LeptHYO3BXoqWFyMtY/5nlEMT8Y="; 11 + sha256 = "sha256-PoWpNuv3Tw3vjuMRZGcpy6R6OeSYSHy1DMmzE7P2LLY="; 12 12 }; 13 13 14 14 vendorHash = null;
+6 -1
pkgs/applications/networking/feedreaders/russ/default.nix
··· 3 3 , fetchFromGitHub 4 4 , rustPlatform 5 5 , xorg 6 + , darwin 6 7 }: 7 8 8 9 rustPlatform.buildRustPackage { ··· 21 22 # tests are network based :( 22 23 doCheck = false; 23 24 25 + buildInputs = lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [ 26 + CoreServices 27 + AppKit 28 + ]); 29 + 24 30 meta = with lib; { 25 31 description = "A TUI RSS reader with vim-like controls and a local-first, offline-first focus"; 26 32 mainProgram = "russ"; ··· 28 34 license = with licenses; [ agpl3Only ]; 29 35 maintainers = with maintainers; [ blusk ]; 30 36 changelog = "https://github.com/ckampfe/russ/blob/master/CHANGELOG.md"; 31 - broken = stdenv.isDarwin; 32 37 }; 33 38 }
+2 -2
pkgs/applications/networking/instant-messengers/discord/default.nix
··· 2 2 let 3 3 versions = 4 4 if stdenv.isLinux then { 5 - stable = "0.0.53"; 5 + stable = "0.0.54"; 6 6 ptb = "0.0.84"; 7 7 canary = "0.0.382"; 8 8 development = "0.0.18"; ··· 17 17 x86_64-linux = { 18 18 stable = fetchurl { 19 19 url = "https://dl.discordapp.net/apps/linux/${version}/discord-${version}.tar.gz"; 20 - hash = "sha256-HD8bDFUV3YGk/t3Rbm26nXWDvUjjIf4ykdO6YGDtvTU="; 20 + hash = "sha256-ruaotzJ+dvqNUV/e4xpJ1rorGiC4Im57BSSiddP8ZF8="; 21 21 }; 22 22 ptb = fetchurl { 23 23 url = "https://dl-ptb.discordapp.net/apps/linux/${version}/discord-ptb-${version}.tar.gz";
+6 -6
pkgs/applications/networking/instant-messengers/slack/default.nix
··· 45 45 46 46 pname = "slack"; 47 47 48 - x86_64-darwin-version = "4.37.101"; 49 - x86_64-darwin-sha256 = "03k4iv6y7y1z9ac7if35r3lk7kp7ic4aa4rdyzbrzihvpfb3nvdh"; 48 + x86_64-darwin-version = "4.38.121"; 49 + x86_64-darwin-sha256 = "1w0s6j8z8961sv4y00jxpy5gjlj0dswyxs15c7isb26ii11nn1i2"; 50 50 51 - x86_64-linux-version = "4.37.101"; 52 - x86_64-linux-sha256 = "0vmaam0aiqcqmm8n3zrjmf012d6pdi0g1d08v1zhgx2rhl614ff9"; 51 + x86_64-linux-version = "4.38.121"; 52 + x86_64-linux-sha256 = "0qp7wxmdg2lpvbx7gshgbqxf7jjvgnwx20cfjwgw6wwzanb0gi96"; 53 53 54 - aarch64-darwin-version = "4.37.101"; 55 - aarch64-darwin-sha256 = "07qfqrq32sh5cw7vmq2x0s5zvkvcl7j1kkvdncg36fay9276f2pp"; 54 + aarch64-darwin-version = "4.38.121"; 55 + aarch64-darwin-sha256 = "161z947p7a2d7584hybl77chab8y027cqpph2hd2s4b5k6bchkj5"; 56 56 57 57 version = { 58 58 x86_64-darwin = x86_64-darwin-version;
+6 -2
pkgs/applications/networking/maestral-qt/default.nix
··· 11 11 python3.pkgs.buildPythonApplication rec { 12 12 pname = "maestral-qt"; 13 13 version = "1.9.3"; 14 + pyproject = true; 15 + 14 16 disabled = python3.pythonOlder "3.7"; 15 17 16 18 src = fetchFromGitHub { ··· 20 22 hash = "sha256-7Lt0Neobtofd1JDoz8BhGn+nFKaMLbM/6z0QQmtEKpA="; 21 23 }; 22 24 23 - format = "pyproject"; 25 + build-system = with python3.pkgs; [ 26 + setuptools 27 + ]; 24 28 25 - propagatedBuildInputs = with python3.pkgs; [ 29 + dependencies = with python3.pkgs; [ 26 30 click 27 31 markdown2 28 32 maestral
+3 -3
pkgs/applications/networking/netmaker/default.nix
··· 10 10 11 11 buildGoModule rec { 12 12 pname = "netmaker"; 13 - version = "0.24.0"; 13 + version = "0.24.1"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "gravitl"; 17 17 repo = pname; 18 18 rev = "v${version}"; 19 - hash = "sha256-eY0L8dgFTZmkwSXYKCOOnNbFgxTydNoVHEoZBS3oMwM="; 19 + hash = "sha256-Me1hux+Y3EiT9vlP4+4019JPcDEW0d5byFO6YIfKbbw="; 20 20 }; 21 21 22 - vendorHash = "sha256-RRSkdDo6N8742YjzORGOTCzqH7WcSraJger8XOryqio="; 22 + vendorHash = "sha256-BlZYXLvB05BTI2gMke8I2ob4jYSrixfpBUqKzNcHisI="; 23 23 24 24 inherit subPackages; 25 25
+2 -2
pkgs/applications/networking/sniffers/wireshark/default.nix
··· 54 54 55 55 stdenv.mkDerivation rec { 56 56 pname = "wireshark-${if withQt then "qt" else "cli"}"; 57 - version = "4.2.4"; 57 + version = "4.2.5"; 58 58 59 59 outputs = [ "out" "dev" ]; 60 60 ··· 62 62 repo = "wireshark"; 63 63 owner = "wireshark"; 64 64 rev = "v${version}"; 65 - hash = "sha256-yGKqklNy1SkmWOaYI0jsTy2rLq5W/dbh8fIUrBSSdw8="; 65 + hash = "sha256-g0b0YGWQzWsALVnNJl/WQGl9J2QjaLnry2VL6qvN1FQ="; 66 66 }; 67 67 68 68 patches = [
+2 -2
pkgs/applications/networking/sync/storj-uplink/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "storj-uplink"; 8 - version = "1.104.1"; 8 + version = "1.104.5"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "storj"; 12 12 repo = "storj"; 13 13 rev = "v${version}"; 14 - hash = "sha256-wB8SK91eJp+8Jjc/bfMqDQQC3FYtSLEjpqVdxEq9P3c="; 14 + hash = "sha256-tzAArj813Hn/iH3LEsz1bytoOr2GfI5kyKZdXNgYwSE="; 15 15 }; 16 16 17 17 subPackages = [ "cmd/uplink" ];
+2 -2
pkgs/applications/office/qownnotes/default.nix
··· 21 21 let 22 22 pname = "qownnotes"; 23 23 appname = "QOwnNotes"; 24 - version = "24.5.1"; 24 + version = "24.5.2"; 25 25 in 26 26 stdenv.mkDerivation { 27 27 inherit pname version; 28 28 29 29 src = fetchurl { 30 30 url = "https://github.com/pbek/QOwnNotes/releases/download/v${version}/qownnotes-${version}.tar.xz"; 31 - hash = "sha256-ktf28AKNr0FcWzJ0A2s3mpU2qgmibpT0rUN9d18mE88="; 31 + hash = "sha256-jfkTCLXHLqKub6I+p4WVXiPFojVdZkCOMz02tUQOCos="; 32 32 }; 33 33 34 34 nativeBuildInputs = [
+1
pkgs/applications/radio/gnuradio/wrapper.nix
··· 95 95 "--prefix" "XDG_DATA_DIRS" ":" "${unwrapped.gtk}/share" 96 96 "--prefix" "XDG_DATA_DIRS" ":" "${unwrapped.gtk}/share/gsettings-schemas/${unwrapped.gtk.name}" 97 97 "--prefix" "GI_TYPELIB_PATH" ":" "${lib.makeSearchPath "lib/girepository-1.0" [ 98 + (lib.getLib glib) 98 99 unwrapped.gtk 99 100 gsettings-desktop-schemas 100 101 atk
+2 -2
pkgs/applications/radio/qlog/default.nix
··· 16 16 17 17 stdenv.mkDerivation rec { 18 18 pname = "qlog"; 19 - version = "0.35.0"; 19 + version = "0.35.1"; 20 20 21 21 src = fetchFromGitHub { 22 22 owner = "foldynl"; 23 23 repo = "QLog"; 24 24 rev = "v${version}"; 25 - hash = "sha256-f+H1NglsNhUTbH0JOWmvERrEQEwDAIRkJCD4ELC4oA8="; 25 + hash = "sha256-qmTep8cwNFxgvWO6tOtk+kwjhEltjJTc0Fo4o01GzIo="; 26 26 fetchSubmodules = true; 27 27 }; 28 28
+2 -2
pkgs/applications/science/biology/iqtree/default.nix
··· 10 10 11 11 stdenv.mkDerivation rec { 12 12 pname = "iqtree"; 13 - version = "2.3.2"; 13 + version = "2.3.4"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "iqtree"; 17 17 repo = "iqtree2"; 18 18 rev = "v${version}"; 19 - hash = "sha256-hAJs48PhIyZSKSRZjQJKQwoJlt6DPRQwaDsuZ00VZII="; 19 + hash = "sha256-dnUFllqcABB3JDYoCwPGtIYD/h5lzX2XKOroDpijPpU="; 20 20 fetchSubmodules = true; 21 21 }; 22 22
+2 -2
pkgs/applications/science/electronics/nvc/default.nix
··· 15 15 16 16 stdenv.mkDerivation rec { 17 17 pname = "nvc"; 18 - version = "1.12.1"; 18 + version = "1.12.2"; 19 19 20 20 src = fetchFromGitHub { 21 21 owner = "nickg"; 22 22 repo = "nvc"; 23 23 rev = "r${version}"; 24 - hash = "sha256-9ZbX2G4IR/SYSA4DOsTBIRrJeYublyrDUXT+V+KgaC0="; 24 + hash = "sha256-9nqho+iDqy8oQLSxBppXoafzEuS6AkcUuqEY3xxfFs4="; 25 25 }; 26 26 27 27 nativeBuildInputs = [
+3 -3
pkgs/applications/terminal-emulators/rio/default.nix
··· 51 51 in 52 52 rustPlatform.buildRustPackage rec { 53 53 pname = "rio"; 54 - version = "0.0.36"; 54 + version = "0.0.37"; 55 55 56 56 src = fetchFromGitHub { 57 57 owner = "raphamorim"; 58 58 repo = "rio"; 59 59 rev = "v${version}"; 60 - hash = "sha256-QCQFFnlKD5olaGjRwDlj5/EBV6Qy/bFAZOQRtCSPamc="; 60 + hash = "sha256-rY5nuZcMbK9PYxfGYdVheOOVIC4I/11EOWpNmG6gH9A="; 61 61 }; 62 62 63 - cargoHash = "sha256-Ea0scCbM9mfxC1YL3HCoBk93eVW20bj2mJyauyDSzT8="; 63 + cargoHash = "sha256-tHcUMxe9HwTzm2oDwaTyuh+UZUwW64xPX/cftxqZoz8="; 64 64 65 65 nativeBuildInputs = [ 66 66 ncurses
+2 -2
pkgs/applications/version-management/ghorg/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "ghorg"; 5 - version = "1.9.11"; 5 + version = "1.9.12"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "gabrie30"; 9 9 repo = "ghorg"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-22/HM/DYkNh8V1v09fca6/3TLwzYudpH/VNbh+3+iyE="; 11 + sha256 = "sha256-8M8ovb3T7iSHXepG1eH3ByX+g5iVRl4/pctigQ4I0Pk="; 12 12 }; 13 13 14 14 doCheck = false;
+12 -6
pkgs/applications/version-management/gitprompt-rs/default.nix pkgs/by-name/gi/gitprompt-rs/package.nix
··· 4 4 rustPlatform, 5 5 git, 6 6 }: 7 - rustPlatform.buildRustPackage rec { 7 + let 8 + version = "0.3.0"; 9 + in 10 + rustPlatform.buildRustPackage { 8 11 pname = "gitprompt-rs"; 9 - version = "0.3.0"; 12 + inherit version; 10 13 11 14 src = fetchFromGitHub { 12 15 owner = "9ary"; 13 - repo = pname; 16 + repo = "gitprompt-rs"; 14 17 rev = version; 15 18 hash = "sha256-BqI3LbG7I/0wjzJaP8bxRwTM56joLqVaQCmAydX5vQM="; 16 19 }; ··· 22 25 --replace 'Command::new("git")' 'Command::new("${git}/bin/git")' 23 26 ''; 24 27 25 - meta = with lib; { 28 + meta = { 26 29 description = "Simple Git prompt"; 27 30 homepage = "https://github.com/9ary/gitprompt-rs"; 28 - license = with licenses; [ mpl20 ]; 29 - maintainers = with maintainers; [ isabelroses cafkafk ]; 31 + license = lib.licenses.mpl20; 32 + maintainers = with lib.maintainers; [ 33 + isabelroses 34 + cafkafk 35 + ]; 30 36 mainProgram = "gitprompt-rs"; 31 37 }; 32 38 }
+6 -4
pkgs/applications/video/go2tv/default.nix
··· 14 14 15 15 buildGoModule rec { 16 16 pname = "go2tv" + lib.optionalString (!withGui) "-lite"; 17 - version = "1.16.0"; 17 + version = "1.16.1"; 18 18 19 19 src = fetchFromGitHub { 20 20 owner = "alexballas"; 21 21 repo = "go2tv"; 22 - rev = "v${version}"; 23 - sha256 = "sha256-ZP4ZpNc5l4Acw83Q4rSvPYByvgiKpkbxxu0bseivW58="; 22 + rev = "refs/tags/v${version}"; 23 + hash = "sha256-7m5GikrdcrJyl+KYuSk1JWLW2SsHOcBJNJuq2BahxHc="; 24 24 }; 25 25 26 26 vendorHash = "sha256-na79rF/9o+s6E4i08Ocs6u98IABc19sTGFvjI6yeJFo="; ··· 39 39 ] ++ lib.optionals stdenv.isDarwin [ Carbon Cocoa Kernel UserNotifications ]; 40 40 41 41 ldflags = [ 42 - "-s" "-w" 42 + "-s" 43 + "-w" 43 44 "-linkmode=external" 44 45 ]; 45 46 ··· 51 52 meta = with lib; { 52 53 description = "Cast media files to UPnP/DLNA Media Renderers and Smart TVs"; 53 54 homepage = "https://github.com/alexballas/go2tv"; 55 + changelog = "https://github.com/alexballas/go2tv/releases/tag/v${version}"; 54 56 license = licenses.mit; 55 57 maintainers = with maintainers; [ gdamjan ]; 56 58 mainProgram = "go2tv";
+2 -2
pkgs/applications/video/obs-studio/plugins/advanced-scene-switcher/default.nix
··· 23 23 24 24 stdenv.mkDerivation rec { 25 25 pname = "advanced-scene-switcher"; 26 - version = "1.26.0"; 26 + version = "1.26.1"; 27 27 28 28 src = fetchFromGitHub { 29 29 owner = "WarmUpTill"; 30 30 repo = "SceneSwitcher"; 31 31 rev = version; 32 - hash = "sha256-ba+QQWekDp/9V+kNcNowXXJrfU4DCttz0tSoC7Ko1bE="; 32 + hash = "sha256-nig6MBPorKz/mZ7t4SbcW00ukEV9DWVDLAOgWX53xoo="; 33 33 }; 34 34 35 35 nativeBuildInputs = [
+96 -72
pkgs/by-name/al/alephone/package.nix
··· 1 - { lib 2 - , stdenv 3 - , fetchurl 4 - , alsa-lib 5 - , boost 6 - , curl 7 - , ffmpeg_4 8 - , icoutils 9 - , libGLU 10 - , libmad 11 - , libogg 12 - , libpng 13 - , libsndfile 14 - , libvorbis 15 - , lua 16 - , makeDesktopItem 17 - , makeWrapper 18 - , miniupnpc 19 - , openal 20 - , pkg-config 21 - , SDL2 22 - , SDL2_image 23 - , SDL2_net 24 - , SDL2_ttf 25 - , speex 26 - , unzip 27 - , zlib 28 - , zziplib 29 - , alephone 1 + { 2 + lib, 3 + stdenv, 4 + fetchurl, 5 + alsa-lib, 6 + boost, 7 + curl, 8 + ffmpeg_4, 9 + icoutils, 10 + libGLU, 11 + libmad, 12 + libogg, 13 + libpng, 14 + libsndfile, 15 + libvorbis, 16 + lua, 17 + makeDesktopItem, 18 + makeWrapper, 19 + miniupnpc, 20 + openal, 21 + pkg-config, 22 + SDL2, 23 + SDL2_image, 24 + SDL2_net, 25 + SDL2_ttf, 26 + speex, 27 + unzip, 28 + zlib, 29 + zziplib, 30 + alephone, 31 + testers, 30 32 }: 31 33 32 34 stdenv.mkDerivation (finalAttrs: { 33 - outputs = [ "out" "icons" ]; 35 + outputs = [ 36 + "out" 37 + "icons" 38 + ]; 34 39 pname = "alephone"; 35 - version = "1.8"; 40 + version = "1.8.1"; 36 41 37 42 src = fetchurl { 38 43 url = 39 - let date = "20240510"; 40 - in "https://github.com/Aleph-One-Marathon/alephone/releases/download/release-${date}/AlephOne-${date}.tar.bz2"; 41 - sha256 = "sha256-3+3lTAVOxTTs13uuVsmq4CKmdNkQv+lY7YV1HkIwvDs="; 44 + let 45 + date = "20240513"; 46 + in 47 + "https://github.com/Aleph-One-Marathon/alephone/releases/download/release-${date}/AlephOne-${date}.tar.bz2"; 48 + sha256 = "sha256-IUvMfG4jtN/QXq4DQIDuI0+Bl3MSSwDGKOyjfcRWgvE="; 42 49 }; 43 50 44 - nativeBuildInputs = [ pkg-config icoutils ]; 51 + nativeBuildInputs = [ 52 + pkg-config 53 + icoutils 54 + ]; 45 55 46 56 buildInputs = [ 47 57 alsa-lib ··· 80 90 done 81 91 popd 82 92 ''; 93 + 94 + passthru.tests.version = 95 + # test that the version is correct 96 + testers.testVersion { package = alephone; }; 83 97 84 98 meta = { 85 - description = 86 - "Aleph One is the open source continuation of Bungie’s Marathon 2 game engine"; 99 + description = "Aleph One is the open source continuation of Bungie’s Marathon 2 game engine"; 87 100 mainProgram = "alephone"; 88 101 homepage = "https://alephone.lhowon.org/"; 89 102 license = [ lib.licenses.gpl3 ]; ··· 92 105 }; 93 106 94 107 passthru.makeWrapper = 95 - { pname 96 - , desktopName 97 - , version 98 - , zip 99 - , meta 100 - , icon ? alephone.icons + "/alephone.png" 101 - , ... 108 + { 109 + pname, 110 + desktopName, 111 + version, 112 + zip, 113 + meta, 114 + icon ? alephone.icons + "/alephone.png", 115 + ... 102 116 }@extraArgs: 103 - stdenv.mkDerivation ({ 104 - inherit pname version; 117 + stdenv.mkDerivation ( 118 + { 119 + inherit pname version; 105 120 106 - desktopItem = makeDesktopItem { 107 - name = desktopName; 108 - exec = pname; 109 - genericName = pname; 110 - categories = [ "Game" ]; 111 - comment = meta.description; 112 - inherit desktopName icon; 113 - }; 121 + desktopItem = makeDesktopItem { 122 + name = desktopName; 123 + exec = pname; 124 + genericName = pname; 125 + categories = [ "Game" ]; 126 + comment = meta.description; 127 + inherit desktopName icon; 128 + }; 114 129 115 - src = zip; 130 + src = zip; 116 131 117 - nativeBuildInputs = [ makeWrapper unzip ]; 132 + nativeBuildInputs = [ 133 + makeWrapper 134 + unzip 135 + ]; 118 136 119 - dontConfigure = true; 120 - dontBuild = true; 137 + dontConfigure = true; 138 + dontBuild = true; 121 139 122 - installPhase = '' 123 - mkdir -p $out/bin $out/data/$pname $out/share/applications 124 - cp -a * $out/data/$pname 125 - cp $desktopItem/share/applications/* $out/share/applications 126 - makeWrapper ${alephone}/bin/alephone $out/bin/$pname \ 127 - --add-flags $out/data/$pname 128 - ''; 129 - } // extraArgs // { 130 - meta = alephone.meta // { 131 - license = lib.licenses.free; 132 - mainProgram = pname; 133 - hydraPlatforms = [ ]; 134 - } // meta; 135 - }); 140 + installPhase = '' 141 + mkdir -p $out/bin $out/data/$pname $out/share/applications 142 + cp -a * $out/data/$pname 143 + cp $desktopItem/share/applications/* $out/share/applications 144 + makeWrapper ${alephone}/bin/alephone $out/bin/$pname \ 145 + --add-flags $out/data/$pname 146 + ''; 147 + } 148 + // extraArgs 149 + // { 150 + meta = 151 + alephone.meta 152 + // { 153 + license = lib.licenses.free; 154 + mainProgram = pname; 155 + hydraPlatforms = [ ]; 156 + } 157 + // meta; 158 + } 159 + ); 136 160 })
+7 -11
pkgs/by-name/an/anyk/package.nix
··· 15 15 , python3 16 16 }: 17 17 let 18 - # Downloads can be found here: https://nav.gov.hu/nyomtatvanyok/letoltesek/nyomtatvanykitolto_programok/nyomtatvany_apeh/keretprogramok/AbevJava 19 - # There are no versioned download URLs but archive.org can be used to preserve them. 20 - # The original download URL is: https://nav.gov.hu/pfile/programFile?path=/nyomtatvanyok/letoltesek/nyomtatvanykitolto_programok/nyomtatvany_apeh/keretprogramok/AbevJava 21 - # You can put the URL here to create a fresh archive URL: https://web.archive.org/save 22 - abevjavaSrc = fetchzip { 23 - url = "https://web.archive.org/web/20231106112510if_/https://nav.gov.hu/pfile/programFile?path=/nyomtatvanyok/letoltesek/nyomtatvanykitolto_programok/nyomtatvany_apeh/keretprogramok/AbevJava"; 24 - sha256 = "sha256-qt0mHv3HI6C8OltFjSR47+RLSnmB2Si5U8rXEvdN4/c="; 18 + # Run update.py to update this file. 19 + inherit (lib.importJSON ./version.json) version url sha256; 20 + 21 + src = fetchzip { 22 + inherit url sha256; 25 23 extension = "zip"; 26 24 stripRoot = false; 27 25 }; ··· 49 47 (runCommandLocal "anyk-patch" {} '' 50 48 mkdir $out 51 49 cd $out 52 - ${unzip}/bin/unzip ${abevjavaSrc}/application/abevjava.jar hu/piller/enykp/niszws/ClientStubBuilder.class 50 + ${unzip}/bin/unzip ${src}/application/abevjava.jar hu/piller/enykp/niszws/ClientStubBuilder.class 53 51 ${python3}/bin/python ${./patch_paths.py} hu/piller/enykp/niszws/ClientStubBuilder.class 54 52 '') 55 53 ]; ··· 89 87 ''; 90 88 in stdenv.mkDerivation { 91 89 pname = "anyk"; 92 - version = "3.26.0"; 93 - 94 - src = abevjavaSrc; 90 + inherit version src; 95 91 96 92 dontConfigure = true; 97 93 dontBuild = true;
+29
pkgs/by-name/an/anyk/update.py
··· 1 + #! /usr/bin/env nix-shell 2 + #! nix-shell -i python3 -p "python3.withPackages (p: [p.waybackpy])" 3 + import subprocess 4 + from pathlib import Path 5 + import re 6 + import json 7 + import waybackpy 8 + 9 + # NAV doesn't provide stable versioned URLs so we put the download link in Wayback Machine to preserve it. 10 + 11 + print("Archiving...") 12 + save_api = waybackpy.WaybackMachineSaveAPI("https://nav.gov.hu/pfile/programFile?path=/nyomtatvanyok/letoltesek/nyomtatvanykitolto_programok/nyomtatvany_apeh/keretprogramok/AbevJava") 13 + 14 + url = save_api.save() 15 + 16 + print("Prefetching...") 17 + sha256, unpack_path = subprocess.check_output(["nix-prefetch-url", "--unpack", "--print-path", url], universal_newlines=True).split("\n")[:2] 18 + 19 + print("Extracting version...") 20 + manifest = (Path(unpack_path) / "META-INF" / "MANIFEST.MF").read_text() 21 + 22 + version = re.search("Implementation-Version: (.+)", manifest).group(1) 23 + 24 + print("Writing version.json...") 25 + (Path(__file__).parent / "version.json").write_text(json.dumps({ 26 + "url": url, 27 + "sha256": sha256, 28 + "version": version, 29 + }, indent=2) + "\n")
+5
pkgs/by-name/an/anyk/version.json
··· 1 + { 2 + "url": "https://web.archive.org/web/20240506155046/https://nav.gov.hu/pfile/programFile?path=/nyomtatvanyok/letoltesek/nyomtatvanykitolto_programok/nyomtatvany_apeh/keretprogramok/AbevJava", 3 + "sha256": "1bvhk8b5b1f5f940zzmpx7xp858p2a27iwqij43fs4kqagz2v782", 4 + "version": "3.33.0" 5 + }
+54
pkgs/by-name/db/dbeaver-bin/package.nix
··· 1 + { lib 2 + , stdenvNoCC 3 + , fetchurl 4 + }: 5 + 6 + stdenvNoCC.mkDerivation (finalAttrs: { 7 + pname = "dbeaver-bin"; 8 + version = "24.0.4"; 9 + 10 + src = 11 + let 12 + inherit (stdenvNoCC.hostPlatform) system; 13 + selectSystem = attrs: attrs.${system} or (throw "Unsupported system: ${system}"); 14 + suffix = selectSystem { 15 + x86_64-linux = "linux.gtk.x86_64-nojdk.tar.gz"; 16 + aarch64-linux = "linux.gtk.aarch64-nojdk.tar.gz"; 17 + }; 18 + hash = selectSystem { 19 + x86_64-linux = "sha256-sRXfEXTZNHJqBIwHGvYJUoa20qH7KLjygGP7uoaxT1M="; 20 + aarch64-linux = "sha256-CQg2+p1P+Bg1uFM1PMTWtweS0TNElXTP7tI7D5WxixM="; 21 + }; 22 + in 23 + fetchurl { 24 + url = "https://github.com/dbeaver/dbeaver/releases/download/${finalAttrs.version}/dbeaver-ce-${finalAttrs.version}-${suffix}"; 25 + inherit hash; 26 + }; 27 + 28 + dontConfigure = true; 29 + dontBuild = true; 30 + 31 + installPhase = '' 32 + runHook preInstall 33 + mkdir -p $out/usr/share/dbeaver $out/bin 34 + cp -r * $out/usr/share/dbeaver 35 + ln -s $out/usr/share/dbeaver/dbeaver $out/bin/dbeaver 36 + runHook postInstall 37 + ''; 38 + 39 + meta = with lib; { 40 + homepage = "https://dbeaver.io/"; 41 + description = "Universal SQL Client for developers, DBA and analysts. Supports MySQL, PostgreSQL, MariaDB, SQLite, and more"; 42 + longDescription = '' 43 + Free multi-platform database tool for developers, SQL programmers, database 44 + administrators and analysts. Supports all popular databases: MySQL, 45 + PostgreSQL, MariaDB, SQLite, Oracle, DB2, SQL Server, Sybase, MS Access, 46 + Teradata, Firebird, Derby, etc. 47 + ''; 48 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 49 + license = licenses.asl20; 50 + platforms = platforms.linux; 51 + maintainers = with maintainers; [ gepbird mkg20001 ]; 52 + mainProgram = "dbeaver"; 53 + }; 54 + })
+2 -2
pkgs/by-name/do/dotnet-outdated/package.nix
··· 8 8 9 9 in buildDotnetModule rec { 10 10 pname = "dotnet-outdated"; 11 - version = "4.6.1"; 11 + version = "4.6.2"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "dotnet-outdated"; 15 15 repo = pname; 16 16 rev = "v${version}"; 17 - hash = "sha256-cYEW++XKCBhB4fyGj4bDKOBuQ1CJwm9CfZfiZUiy7Sw="; 17 + hash = "sha256-wXPcFYnbQbnF1xg3PA9iQsd0BrMD2P+OzZYLd4XwhbQ="; 18 18 }; 19 19 20 20 inherit dotnet-sdk;
+81
pkgs/by-name/ee/eepers/package.nix
··· 1 + { 2 + lib, 3 + stdenv, 4 + fetchFromGitHub, 5 + gnat, 6 + raylib, 7 + alsa-lib, 8 + wayland, 9 + }: 10 + 11 + stdenv.mkDerivation rec { 12 + pname = "eepers"; 13 + version = "1.3"; 14 + 15 + src = fetchFromGitHub { 16 + owner = "tsoding"; 17 + repo = "eepers"; 18 + rev = "refs/tags/v${version}"; 19 + hash = "sha256-KG7ci327qlTtlN4yV54P8Q34ExFLJfTGMTZxN3RtZbc="; 20 + }; 21 + 22 + postPatch = '' 23 + substituteInPlace eepers.adb \ 24 + --replace-fail "assets/" "$out/assets/" 25 + ''; 26 + 27 + buildInputs = [ 28 + gnat 29 + raylib 30 + ]; 31 + 32 + buildPhase = '' 33 + runHook preBuild 34 + 35 + gnatmake -f -O3 \ 36 + -Wall \ 37 + -Wextra \ 38 + -gnat2012 \ 39 + -o eepers-linux eepers.adb \ 40 + -bargs \ 41 + -largs -lraylib -lm \ 42 + -pthread 43 + 44 + runHook postBuild 45 + ''; 46 + 47 + postFixup = '' 48 + patchelf $out/bin/eepers \ 49 + --add-needed libwayland-client.so \ 50 + --add-needed libwayland-cursor.so \ 51 + --add-needed libwayland-egl.so \ 52 + --add-needed libasound.so \ 53 + --add-rpath ${ 54 + lib.makeLibraryPath [ 55 + alsa-lib 56 + wayland 57 + ] 58 + } 59 + ''; 60 + 61 + installPhase = '' 62 + runHook preInstall 63 + 64 + mkdir -p $out/bin 65 + cp ./eepers-linux $out/bin/eepers 66 + 67 + cp -r ./assets $out/ 68 + 69 + runHook postInstall 70 + ''; 71 + 72 + meta = { 73 + description = "Simple Turn-based Game"; 74 + homepage = "https://github.com/tsoding/eepers"; 75 + changelog = "https://github.com/tsoding/eepers/blob/${src.rev}/CHANGELOG.txt"; 76 + license = lib.licenses.mit; 77 + maintainers = with lib.maintainers; [ GaetanLepage ]; 78 + mainProgram = "eepers"; 79 + platforms = lib.platforms.all; 80 + }; 81 + }
+23 -18
pkgs/by-name/er/errands/package.nix
··· 1 - { lib 2 - , fetchFromGitHub 3 - , python3Packages 4 - , gobject-introspection 5 - , libadwaita 6 - , wrapGAppsHook4 7 - , meson 8 - , ninja 9 - , desktop-file-utils 10 - , pkg-config 11 - , appstream 12 - , libsecret 13 - , gtk4 14 - , gtksourceview5 1 + { 2 + lib, 3 + fetchFromGitHub, 4 + python3Packages, 5 + gobject-introspection, 6 + libadwaita, 7 + wrapGAppsHook4, 8 + meson, 9 + ninja, 10 + desktop-file-utils, 11 + pkg-config, 12 + appstream, 13 + libsecret, 14 + libportal, 15 + gtk4, 16 + gtksourceview5, 15 17 }: 16 - 17 18 python3Packages.buildPythonApplication rec { 18 19 pname = "errands"; 19 - version = "45.1.9"; 20 + version = "46.1"; 20 21 21 22 pyproject = false; 22 23 ··· 24 25 owner = "mrvladus"; 25 26 repo = "Errands"; 26 27 rev = "refs/tags/${version}"; 27 - hash = "sha256-q8vmT7XUx3XJjPfbEd/c3HrTENfopl1MqwT0x5OuG0c="; 28 + hash = "sha256-v1ifArrfq+vOr7K2L7s/PeXXCH1FLzlvReBKEdXzr3U="; 28 29 }; 29 30 30 31 nativeBuildInputs = [ ··· 40 41 41 42 buildInputs = [ 42 43 libadwaita 44 + libportal 43 45 libsecret 44 46 gtksourceview5 45 47 ]; ··· 62 64 homepage = "https://github.com/mrvladus/Errands"; 63 65 license = licenses.mit; 64 66 mainProgram = "errands"; 65 - maintainers = with maintainers; [ sund3RRR ]; 67 + maintainers = with maintainers; [ 68 + luftmensch-luftmensch 69 + sund3RRR 70 + ]; 66 71 }; 67 72 }
+3 -3
pkgs/by-name/ez/eza/package.nix
··· 17 17 18 18 rustPlatform.buildRustPackage rec { 19 19 pname = "eza"; 20 - version = "0.18.15"; 20 + version = "0.18.16"; 21 21 22 22 src = fetchFromGitHub { 23 23 owner = "eza-community"; 24 24 repo = "eza"; 25 25 rev = "v${version}"; 26 - hash = "sha256-8Kv2jDWb1HDjxeGZ36btQM/b+lx3yKkkvMxDyzmMUvw="; 26 + hash = "sha256-VaQLPQseLgxzDMnlMsfh5XGhjNYIBrMDBm2JsY2Gou4="; 27 27 }; 28 28 29 - cargoHash = "sha256-xV1pa2vQwB9u7KUMiTawuVSgg7fmxOUxz6tFsyXak8o="; 29 + cargoHash = "sha256-zxIGYNdgAJQHng1jfaJPwAlbflJi0W5osAf5F2Is0ws="; 30 30 31 31 nativeBuildInputs = [ cmake pkg-config installShellFiles pandoc ]; 32 32 buildInputs = [ zlib ]
+20 -4
pkgs/by-name/fl/flet-client-flutter/package.nix
··· 7 7 , makeWrapper 8 8 , mimalloc 9 9 , orc 10 - , nix-update-script 10 + , yq 11 + , runCommand 12 + , gitUpdater 11 13 , mpv-unwrapped 12 14 , libplacebo 15 + , _experimental-update-script-combinators 16 + , flet-client-flutter 13 17 }: 14 18 15 19 flutter.buildFlutterApplication rec { 16 20 pname = "flet-client-flutter"; 17 - version = "0.22.0"; 21 + version = "0.22.1"; 18 22 19 23 src = fetchFromGitHub { 20 24 owner = "flet-dev"; 21 25 repo = "flet"; 22 26 rev = "v${version}"; 23 - hash = "sha256-uN6PxgltbGlSocF561W6Dpo9cPOsvGAsRwZ8nER+5x4="; 27 + hash = "sha256-mjqPIm4LspW1LB4H08FVwEN0JOwTPTLaUxOjZ3n6u8A="; 24 28 }; 25 29 26 30 sourceRoot = "${src.name}/client"; ··· 51 55 ++ libplacebo.buildInputs 52 56 ; 53 57 54 - passthru.updateScript = nix-update-script { }; 58 + passthru = { 59 + pubspecSource = runCommand "pubspec.lock.json" { 60 + buildInputs = [ yq ]; 61 + inherit (flet-client-flutter) src; 62 + } '' 63 + cat $src/client/pubspec.lock | yq > $out 64 + ''; 65 + 66 + updateScript = _experimental-update-script-combinators.sequence [ 67 + (gitUpdater { rev-prefix = "v"; }) 68 + (_experimental-update-script-combinators.copyAttrOutputToFile "flet-client-flutter.pubspecSource" ./pubspec.lock.json) 69 + ]; 70 + }; 55 71 56 72 meta = { 57 73 description = "A framework that enables you to easily build realtime web, mobile, and desktop apps in Python. The frontend part";
+21 -11
pkgs/by-name/fl/flet-client-flutter/pubspec.lock.json
··· 170 170 "source": "hosted", 171 171 "version": "3.1.1" 172 172 }, 173 + "cross_file": { 174 + "dependency": "transitive", 175 + "description": { 176 + "name": "cross_file", 177 + "sha256": "55d7b444feb71301ef6b8838dbc1ae02e63dd48c8773f3810ff53bb1e2945b32", 178 + "url": "https://pub.dev" 179 + }, 180 + "source": "hosted", 181 + "version": "0.3.4+1" 182 + }, 173 183 "crypto": { 174 184 "dependency": "transitive", 175 185 "description": { ··· 244 254 "dependency": "transitive", 245 255 "description": { 246 256 "name": "file_picker", 247 - "sha256": "4e42aacde3b993c5947467ab640882c56947d9d27342a5b6f2895b23956954a6", 257 + "sha256": "29c90806ac5f5fb896547720b73b17ee9aed9bba540dc5d91fe29f8c5745b10a", 248 258 "url": "https://pub.dev" 249 259 }, 250 260 "source": "hosted", 251 - "version": "6.1.1" 261 + "version": "8.0.3" 252 262 }, 253 263 "fixnum": { 254 264 "dependency": "transitive", ··· 277 287 "relative": true 278 288 }, 279 289 "source": "path", 280 - "version": "0.22.0" 290 + "version": "0.22.1" 281 291 }, 282 292 "flet_audio": { 283 293 "dependency": "direct main", ··· 286 296 "relative": true 287 297 }, 288 298 "source": "path", 289 - "version": "0.22.0" 299 + "version": "0.22.1" 290 300 }, 291 301 "flet_audio_recorder": { 292 302 "dependency": "direct main", ··· 295 305 "relative": true 296 306 }, 297 307 "source": "path", 298 - "version": "0.22.0" 308 + "version": "0.22.1" 299 309 }, 300 310 "flet_lottie": { 301 311 "dependency": "direct main", ··· 304 314 "relative": true 305 315 }, 306 316 "source": "path", 307 - "version": "0.22.0" 317 + "version": "0.22.1" 308 318 }, 309 319 "flet_rive": { 310 320 "dependency": "direct main", ··· 313 323 "relative": true 314 324 }, 315 325 "source": "path", 316 - "version": "0.22.0" 326 + "version": "0.22.1" 317 327 }, 318 328 "flet_video": { 319 329 "dependency": "direct main", ··· 322 332 "relative": true 323 333 }, 324 334 "source": "path", 325 - "version": "0.22.0" 335 + "version": "0.22.1" 326 336 }, 327 337 "flet_webview": { 328 338 "dependency": "direct main", ··· 331 341 "relative": true 332 342 }, 333 343 "source": "path", 334 - "version": "0.22.0" 344 + "version": "0.22.1" 335 345 }, 336 346 "flutter": { 337 347 "dependency": "direct main", ··· 1445 1455 "dependency": "transitive", 1446 1456 "description": { 1447 1457 "name": "web", 1448 - "sha256": "1d9158c616048c38f712a6646e317a3426da10e884447626167240d45209cbad", 1458 + "sha256": "97da13628db363c635202ad97068d47c5b8aa555808e7a9411963c533b449b27", 1449 1459 "url": "https://pub.dev" 1450 1460 }, 1451 1461 "source": "hosted", 1452 - "version": "0.5.0" 1462 + "version": "0.5.1" 1453 1463 }, 1454 1464 "web_socket_channel": { 1455 1465 "dependency": "transitive",
+61
pkgs/by-name/fo/fooyin/package.nix
··· 1 + { stdenv 2 + , lib 3 + , fetchFromGitHub 4 + , cmake 5 + , pkg-config 6 + , alsa-lib 7 + , ffmpeg 8 + , kdePackages 9 + , kdsingleapplication 10 + , openssl 11 + , pipewire 12 + , taglib 13 + , zlib 14 + }: 15 + 16 + stdenv.mkDerivation (finalAttrs: { 17 + pname = "fooyin"; 18 + version = "0.4.2"; 19 + 20 + src = fetchFromGitHub { 21 + owner = "ludouzi"; 22 + repo = "fooyin"; 23 + rev = "v" + finalAttrs.version; 24 + hash = "sha256-1U7eqXVcp0lO/X92oNQ3mWdozgJ1eroQPojscSWH6+I="; 25 + }; 26 + 27 + buildInputs = [ 28 + alsa-lib 29 + ffmpeg 30 + kdsingleapplication 31 + pipewire 32 + kdePackages.qcoro 33 + kdePackages.qtbase 34 + kdePackages.qtsvg 35 + taglib 36 + ]; 37 + 38 + nativeBuildInputs = [ 39 + cmake 40 + pkg-config 41 + kdePackages.qttools 42 + kdePackages.wrapQtAppsHook 43 + ]; 44 + 45 + cmakeFlags = [ 46 + (lib.cmakeBool "BUILD_TESTING" (finalAttrs.doCheck or false)) 47 + # we need INSTALL_FHS to be true as the various artifacts are otherwise just dumped in the root 48 + # of $out and the fixupPhase cleans things up anyway 49 + (lib.cmakeBool "INSTALL_FHS" true) 50 + ]; 51 + 52 + env.LANG = "C.UTF-8"; 53 + 54 + meta = with lib; { 55 + description = "A customisable music player"; 56 + mainProgram = "fooyin"; 57 + license = licenses.gpl3Only; 58 + maintainers = with maintainers; [ peterhoeg ]; 59 + platforms = platforms.all; 60 + }; 61 + })
+2 -2
pkgs/by-name/fo/forbidden/package.nix
··· 5 5 6 6 python3.pkgs.buildPythonApplication rec { 7 7 pname = "forbidden"; 8 - version = "10.9"; 8 + version = "11.2"; 9 9 pyproject = true; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "ivan-sincek"; 13 13 repo = "forbidden"; 14 14 rev = "refs/tags/v${version}"; 15 - hash = "sha256-LggF9giKKKO2F65zS0lPCshaDauy+s6YyRGr3BL0tJU="; 15 + hash = "sha256-XRN5zQgyBbMxDKAutW3XNIAbBVdAeXZtxsNbmjLyKRc="; 16 16 }; 17 17 18 18 build-system = with python3.pkgs; [
+2 -2
pkgs/by-name/ga/gamescope/package.nix
··· 44 44 in 45 45 stdenv.mkDerivation (finalAttrs: { 46 46 pname = "gamescope"; 47 - version = "3.14.13"; 47 + version = "3.14.15"; 48 48 49 49 src = fetchFromGitHub { 50 50 owner = "ValveSoftware"; 51 51 repo = "gamescope"; 52 52 rev = "refs/tags/${finalAttrs.version}"; 53 53 fetchSubmodules = true; 54 - hash = "sha256-oBOD4kGrZaiAoK1vmr9FB9igMnraNpm0+mHqezHwC78="; 54 + hash = "sha256-K7Sz5HWelHZoc6gPFBDfymjn8P7mWNX6FuyaL4t6qeI="; 55 55 }; 56 56 57 57 patches = [
+6 -5
pkgs/by-name/go/google-chrome/package.nix
··· 64 64 65 65 in stdenv.mkDerivation (finalAttrs: { 66 66 pname = "google-chrome"; 67 - version = "124.0.6367.201"; 67 + version = "125.0.6422.60"; 68 68 69 69 src = fetchurl { 70 70 url = "https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_${finalAttrs.version}-1_amd64.deb"; 71 - hash = "sha256-RvQdpDmWRcsASh1b8M0Zg+AvZprE5qhi14shfo0WlfE="; 71 + hash = "sha256-Q0QMPthJLVquJp7fm6QN+lDb0quZsT7hv6KRXfdBMl4="; 72 72 }; 73 73 74 74 nativeBuildInputs = [ patchelf makeWrapper ]; ··· 146 146 updateScript = writeScript "update-google-chrome.sh" '' 147 147 #!/usr/bin/env nix-shell 148 148 #!nix-shell -i bash -p curl jq common-updater-scripts 149 + set -euo pipefail 149 150 url="https://versionhistory.googleapis.com/v1/chrome/platforms/linux/channels/stable/versions/all/releases" 150 - response=$(curl --silent $url) 151 - version=$(jq ".releases[0].version" --raw-output <<< "$response") 152 - update-source-version ${finalAttrs.pname} "$version" --ignore-same-hash 151 + response="$(curl --silent --fail $url)" 152 + version="$(jq ".releases[0].version" --raw-output <<< $response)" 153 + update-source-version ${finalAttrs.pname} $version --ignore-same-hash 153 154 ''; 154 155 }; 155 156
+24
pkgs/by-name/ha/hare/003-hardcode-qbe-and-harec.patch
··· 1 + diff --git a/cmd/hare/build.ha b/cmd/hare/build.ha 2 + index b2ac6518..417b46c6 100644 3 + --- a/cmd/hare/build.ha 4 + +++ b/cmd/hare/build.ha 5 + @@ -37,7 +37,7 @@ fn build(name: str, cmd: *getopt::command) (void | error) = { 6 + case let ncpu: size => 7 + yield ncpu; 8 + }, 9 + - version = build::get_version(os::tryenv("HAREC", "harec"))?, 10 + + version = build::get_version(os::tryenv("HAREC", "@harec@"))?, 11 + arch = arch.qbe_name, 12 + platform = build::get_platform(os::sysname())?, 13 + ... 14 + @@ -145,8 +145,8 @@ fn build(name: str, cmd: *getopt::command) (void | error) = { 15 + set_arch_tags(&ctx.ctx.tags, arch); 16 + 17 + ctx.cmds = ["", 18 + - os::tryenv("HAREC", "harec"), 19 + - os::tryenv("QBE", "qbe"), 20 + + os::tryenv("HAREC", "@harec@"), 21 + + os::tryenv("QBE", "@qbe@"), 22 + os::tryenv("AS", arch.as_cmd), 23 + os::tryenv("LD", arch.ld_cmd), 24 + ];
+87 -70
pkgs/by-name/ha/hare/package.nix
··· 1 - { lib 2 - , stdenv 3 - , fetchFromSourcehut 4 - , binutils-unwrapped 5 - , harec 6 - , makeWrapper 7 - , qbe 8 - , gitUpdater 9 - , scdoc 10 - , tzdata 11 - , substituteAll 12 - , fetchpatch 13 - , callPackage 14 - , enableCrossCompilation ? (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.is64bit) 15 - , pkgsCross 16 - , x86_64PkgsCrossToolchain ? pkgsCross.gnu64 17 - , aarch64PkgsCrossToolchain ? pkgsCross.aarch64-multiplatform 18 - , riscv64PkgsCrossToolchain ? pkgsCross.riscv64 1 + { 2 + lib, 3 + stdenv, 4 + fetchFromSourcehut, 5 + harec, 6 + qbe, 7 + gitUpdater, 8 + scdoc, 9 + tzdata, 10 + substituteAll, 11 + fetchpatch, 12 + callPackage, 13 + enableCrossCompilation ? (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.is64bit), 14 + pkgsCross, 15 + x86_64PkgsCrossToolchain ? pkgsCross.gnu64, 16 + aarch64PkgsCrossToolchain ? pkgsCross.aarch64-multiplatform, 17 + riscv64PkgsCrossToolchain ? pkgsCross.riscv64, 19 18 }: 20 19 21 20 # There's no support for `aarch64` or `riscv64` for freebsd nor for openbsd on nix. 22 21 # See `lib.systems.doubles.aarch64` and `lib.systems.doubles.riscv64`. 23 - assert let 24 - inherit (stdenv.hostPlatform) isLinux is64bit; 25 - inherit (lib) intersectLists platforms concatStringsSep; 26 - workingPlatforms = intersectLists platforms.linux (with platforms; x86_64 ++ aarch64 ++ riscv64); 27 - in 28 - (enableCrossCompilation -> !(isLinux && is64bit)) 22 + assert 23 + let 24 + inherit (stdenv.hostPlatform) isLinux is64bit; 25 + inherit (lib) intersectLists platforms concatStringsSep; 26 + workingPlatforms = intersectLists platforms.linux (with platforms; x86_64 ++ aarch64 ++ riscv64); 27 + in 28 + (enableCrossCompilation -> !(isLinux && is64bit)) 29 29 -> builtins.throw '' 30 - The cross-compilation toolchains may only be enabled on the following platforms: 31 - ${concatStringsSep "\n" workingPlatforms} 32 - ''; 30 + The cross-compilation toolchains may only be enabled on the following platforms: 31 + ${concatStringsSep "\n" workingPlatforms} 32 + ''; 33 33 34 34 let 35 + buildArch = stdenv.buildPlatform.uname.processor; 35 36 arch = stdenv.hostPlatform.uname.processor; 36 - qbePlatform = { 37 - x86_64 = "amd64_sysv"; 38 - aarch64 = "arm64"; 39 - riscv64 = "rv64"; 40 - }.${arch}; 41 37 platform = lib.toLower stdenv.hostPlatform.uname.system; 38 + qbePlatform = 39 + { 40 + x86_64 = "amd64_sysv"; 41 + aarch64 = "arm64"; 42 + riscv64 = "rv64"; 43 + } 44 + .${arch}; 42 45 embeddedOnBinaryTools = 43 46 let 44 - genToolsFromToolchain = toolchain: 47 + genPaths = 48 + toolchain: 45 49 let 46 - crossTargetPrefix = toolchain.stdenv.cc.targetPrefix; 47 - toolchainArch = toolchain.stdenv.hostPlatform.uname.processor; 48 - absOrRelPath = toolDrv: toolBasename: 49 - if arch == toolchainArch then toolBasename 50 - else lib.getExe' toolDrv "${crossTargetPrefix}${toolBasename}"; 50 + inherit (toolchain.stdenv.cc) targetPrefix; 51 + inherit (toolchain.stdenv.targetPlatform.uname) processor; 51 52 in 52 53 { 53 - "ld" = absOrRelPath toolchain.buildPackages.binutils "ld"; 54 - "as" = absOrRelPath toolchain.buildPackages.binutils "as"; 55 - "cc" = absOrRelPath toolchain.stdenv.cc "cc"; 54 + "${processor}" = { 55 + "ld" = lib.getExe' toolchain.buildPackages.binutils "${targetPrefix}ld"; 56 + "as" = lib.getExe' toolchain.buildPackages.binutils "${targetPrefix}as"; 57 + "cc" = lib.getExe' toolchain.stdenv.cc "${targetPrefix}cc"; 58 + }; 56 59 }; 57 60 in 58 - { 59 - x86_64 = genToolsFromToolchain x86_64PkgsCrossToolchain; 60 - aarch64 = genToolsFromToolchain aarch64PkgsCrossToolchain; 61 - riscv64 = genToolsFromToolchain riscv64PkgsCrossToolchain; 62 - }; 61 + builtins.foldl' (acc: elem: acc // (genPaths elem)) { } [ 62 + x86_64PkgsCrossToolchain 63 + aarch64PkgsCrossToolchain 64 + riscv64PkgsCrossToolchain 65 + ]; 66 + crossCompMakeFlags = builtins.filter (x: !(lib.hasPrefix (lib.toUpper buildArch) x)) [ 67 + "RISCV64_AS=${embeddedOnBinaryTools.riscv64.as}" 68 + "RISCV64_CC=${embeddedOnBinaryTools.riscv64.cc}" 69 + "RISCV64_LD=${embeddedOnBinaryTools.riscv64.ld}" 70 + "AARCH64_AS=${embeddedOnBinaryTools.aarch64.as}" 71 + "AARCH64_CC=${embeddedOnBinaryTools.aarch64.cc}" 72 + "AARCH64_LD=${embeddedOnBinaryTools.aarch64.ld}" 73 + "X86_64_AS=${embeddedOnBinaryTools.x86_64.as}" 74 + "X86_64_CC=${embeddedOnBinaryTools.x86_64.cc}" 75 + "X86_64_LD=${embeddedOnBinaryTools.x86_64.ld}" 76 + ]; 63 77 in 64 78 stdenv.mkDerivation (finalAttrs: { 65 79 pname = "hare"; 66 80 version = "0.24.0"; 67 81 68 - outputs = [ "out" "man" ]; 82 + outputs = [ 83 + "out" 84 + "man" 85 + ]; 69 86 70 87 src = fetchFromSourcehut { 71 88 owner = "~sircmpwn"; ··· 88 105 # Don't build haredoc since it uses the build `hare` bin, which breaks 89 106 # cross-compilation. 90 107 ./002-dont-build-haredoc.patch 108 + # Hardcode harec and qbe. 109 + (substituteAll { 110 + src = ./003-hardcode-qbe-and-harec.patch; 111 + harec = lib.getExe harec; 112 + qbe = lib.getExe qbe; 113 + }) 114 + # Display toolchains when using `hare version -v`. 115 + (fetchpatch { 116 + url = "https://git.sr.ht/~sircmpwn/hare/commit/e35f2284774436f422e06f0e8d290b173ced1677.patch"; 117 + hash = "sha256-A59bGO/9tOghV8/MomTxd8xRExkHVdoMom2d+HTfQGg="; 118 + }) 91 119 ]; 92 120 93 121 nativeBuildInputs = [ 94 122 harec 95 - makeWrapper 96 123 qbe 97 124 scdoc 98 125 ]; 99 126 127 + # Needed for build frameworks like `haredo`, which set the HAREC and QBE env vars to `harec` and 128 + # `qbe` respectively. 129 + propagatedBuildInputs = [ 130 + harec 131 + qbe 132 + ]; 133 + 100 134 buildInputs = [ 101 - binutils-unwrapped 102 135 harec 103 136 qbe 104 - tzdata 105 137 ]; 106 138 107 139 makeFlags = [ ··· 110 142 "ARCH=${arch}" 111 143 "VERSION=${finalAttrs.version}-nixpkgs" 112 144 "QBEFLAGS=-t${qbePlatform}" 113 - "CC=${stdenv.cc.targetPrefix}cc" 114 145 "AS=${stdenv.cc.targetPrefix}as" 115 146 "LD=${stdenv.cc.targetPrefix}ld" 147 + "${lib.toUpper buildArch}_AS=${embeddedOnBinaryTools.${buildArch}.as}" 148 + "${lib.toUpper buildArch}_CC=${embeddedOnBinaryTools.${buildArch}.cc}" 149 + "${lib.toUpper buildArch}_LD=${embeddedOnBinaryTools.${buildArch}.ld}" 116 150 # Strip the variable of an empty $(SRCDIR)/hare/third-party, since nix does 117 151 # not follow the FHS. 118 152 "HAREPATH=$(SRCDIR)/hare/stdlib" 119 - ] ++ lib.optionals enableCrossCompilation [ 120 - "RISCV64_AS=${embeddedOnBinaryTools.riscv64.as}" 121 - "RISCV64_CC=${embeddedOnBinaryTools.riscv64.cc}" 122 - "RISCV64_LD=${embeddedOnBinaryTools.riscv64.ld}" 123 - "AARCH64_AS=${embeddedOnBinaryTools.aarch64.as}" 124 - "AARCH64_CC=${embeddedOnBinaryTools.aarch64.cc}" 125 - "AARCH64_LD=${embeddedOnBinaryTools.aarch64.ld}" 126 - "x86_64_AS=${embeddedOnBinaryTools.x86_64.as}" 127 - "x86_64_CC=${embeddedOnBinaryTools.x86_64.cc}" 128 - "x86_64_LD=${embeddedOnBinaryTools.x86_64.ld}" 129 - ]; 153 + ] ++ lib.optionals enableCrossCompilation crossCompMakeFlags; 130 154 131 155 enableParallelBuilding = true; 132 156 ··· 141 165 ln -s configs/${platform}.mk config.mk 142 166 ''; 143 167 144 - postFixup = '' 145 - wrapProgram $out/bin/hare \ 146 - --prefix PATH : ${lib.makeBinPath [binutils-unwrapped harec qbe]} 147 - ''; 148 - 149 168 setupHook = ./setup-hook.sh; 150 169 151 170 passthru = { 152 171 updateScript = gitUpdater { }; 153 172 tests = lib.optionalAttrs enableCrossCompilation { 154 - crossCompilation = callPackage ./cross-compilation-tests.nix { 155 - hare = finalAttrs.finalPackage; 156 - }; 173 + crossCompilation = callPackage ./cross-compilation-tests.nix { hare = finalAttrs.finalPackage; }; 157 174 }; 158 175 }; 159 176
+3 -3
pkgs/by-name/hu/hugo/package.nix
··· 10 10 11 11 buildGoModule rec { 12 12 pname = "hugo"; 13 - version = "0.125.7"; 13 + version = "0.126.1"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "gohugoio"; 17 17 repo = "hugo"; 18 18 rev = "refs/tags/v${version}"; 19 - hash = "sha256-aONA9qfoilte73wBTZFu8rrVz+O8xtnRk/rOxJLANS8="; 19 + hash = "sha256-c421kzgD6PFM/9Rn+NmZGyRlJPWhQPraW/4HcuRoEUU="; 20 20 }; 21 21 22 - vendorHash = "sha256-ZEaByHlJIfzGbmdadDpCJGCybj9SOHRzrrzR/S/zRnc="; 22 + vendorHash = "sha256-VfwiA5LCAJ1pkmMCy/Dcc5bLKkNY1MHtxHcHvKLoWHs="; 23 23 24 24 doCheck = false; 25 25
+3 -3
pkgs/by-name/ig/ignite-cli/package.nix
··· 8 8 9 9 buildGoModule rec { 10 10 pname = "ignite-cli"; 11 - version = "28.3.0"; 11 + version = "28.4.0"; 12 12 13 13 src = fetchFromGitHub { 14 14 repo = "cli"; 15 15 owner = "ignite"; 16 16 rev = "v${version}"; 17 - hash = "sha256-VLbVXZRKunvqM2gZlFrRdpIG558w6WFIRa/XHZwqA7s="; 17 + hash = "sha256-FxTOtowoGXJvGt+qnVOogOnxAurFPe9ihQpBhxhwEkI="; 18 18 }; 19 19 20 - vendorHash = "sha256-pT9WQuoA1LfeA2MO1giuO2hfwydiWqjyYXdSbqfHdhs="; 20 + vendorHash = "sha256-ZqyZTvJ7IeEbQ/jRjaEiWT8xNnZdiaY3qJKeQtaHzXc="; 21 21 22 22 nativeBuildInputs = [ makeWrapper ]; 23 23
+8
pkgs/by-name/ig/igvm-tooling/package.nix
··· 35 35 sha256 = "sha256-hNfkclxaYViy66TPHqLV3mqD7wqBuBN9MnMLaDOeRNM="; 36 36 stripLen = 1; 37 37 }) 38 + # allow for determinist id block signing 39 + # remove once https://github.com/microsoft/igvm-tooling/pull/55 is merged 40 + (fetchpatch { 41 + name = "0003-add-deterministic-id-block-signature-mode.patch"; 42 + url = "https://github.com/microsoft/igvm-tooling/commit/03ad7825ade76ac25e308bb85f92e89b732e0bf1.patch"; 43 + sha256 = "sha256-Y7DFr0KgGtY8KOt6fLWd32sTaig/zHFe7n83+Yb9ls8="; 44 + stripLen = 1; 45 + }) 38 46 ]; 39 47 40 48 postPatch = ''
+39
pkgs/by-name/iz/izrss/package.nix
··· 1 + { 2 + lib, 3 + buildGoModule, 4 + fetchFromGitHub, 5 + ... 6 + }: 7 + let 8 + version = "0.0.5"; 9 + in 10 + buildGoModule { 11 + pname = "izrss"; 12 + inherit version; 13 + 14 + src = fetchFromGitHub { 15 + owner = "isabelroses"; 16 + repo = "izrss"; 17 + rev = "refs/tags/v${version}"; 18 + hash = "sha256-6ayTxAjVqMjgDbk4oJjxzSUkWA6kU3Rnvvma+ryy4bw="; 19 + }; 20 + 21 + ldflags = [ 22 + "-s" 23 + "-w" 24 + "-X main.version=${version}" 25 + ]; 26 + 27 + vendorHash = "sha256-gH5AFroreBD0tQmT99Bmo2pAdPkiPWUNGsmKX4p3/JA="; 28 + 29 + meta = with lib; { 30 + description = "An RSS feed reader for the terminal written in Go"; 31 + homepage = "https://github.com/isabelroses/izrss"; 32 + license = licenses.gpl3Plus; 33 + maintainers = with maintainers; [ 34 + isabelroses 35 + luftmensch-luftmensch 36 + ]; 37 + mainProgram = "izrss"; 38 + }; 39 + }
+3 -3
pkgs/by-name/ka/katawa-shoujo-re-engineered/package.nix
··· 9 9 }: 10 10 stdenvNoCC.mkDerivation (finalAttrs: { 11 11 pname = "katawa-shoujo-re-engineered"; 12 - version = "1.4.4"; 12 + version = "1.4.7"; 13 13 14 14 src = fetchFromGitea { 15 15 # GitHub mirror at fleetingheart/ksre ··· 17 17 owner = "fhs"; 18 18 repo = "katawa-shoujo-re-engineered"; 19 19 rev = "v${finalAttrs.version}"; 20 - hash = "sha256-RYJM/wGVWqIRZzHLUtUZ5mKUrUftDVaOwS1f/EpW6Tk="; 20 + hash = "sha256-E+2G47vWA7o4bFWttoMDfPjAG32K8FDv+OluMjzPDQw="; 21 21 }; 22 22 23 23 desktopItems = [ ··· 59 59 cc-by-nc-nd-30 60 60 ]; 61 61 mainProgram = "katawa-shoujo-re-engineered"; 62 - maintainers = with lib.maintainers; [ quantenzitrone ]; 62 + maintainers = with lib.maintainers; [ quantenzitrone rapiteanu ]; 63 63 platforms = renpy.meta.platforms; 64 64 }; 65 65 })
+2 -2
pkgs/by-name/kc/kcl-cli/package.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "kcl-cli"; 8 - version = "0.8.8"; 8 + version = "0.8.9"; 9 9 src = fetchFromGitHub { 10 10 owner = "kcl-lang"; 11 11 repo = "cli"; 12 12 rev = "v${version}"; 13 - hash = "sha256-Bk/sCNMDupdY/YyKT+VoPIzEfjFDa5z9pevcCPnTX8U="; 13 + hash = "sha256-slU3n7YCV5VfvXArzlcITb9epdu/gyXlAWq9KLjGdJA="; 14 14 }; 15 15 vendorHash = "sha256-Xv8Tfq9Kb1xGFCWZQwBFDX9xZW9j99td/DUb7jBtkpE="; 16 16 ldflags = [
+36
pkgs/by-name/kx/kx-aspe-cli/package.nix
··· 1 + { 2 + lib, 3 + rustPlatform, 4 + fetchFromGitea, 5 + pkg-config, 6 + openssl, 7 + }: 8 + 9 + rustPlatform.buildRustPackage rec { 10 + pname = "kx-aspe-cli"; 11 + version = "0-unstable-2024-04-06"; 12 + 13 + src = fetchFromGitea { 14 + domain = "codeberg.org"; 15 + owner = "keyoxide"; 16 + repo = "kx-aspe-cli"; 17 + rev = "492df7edae95a8636bb59c4e5c1607053dab2c78"; 18 + hash = "sha256-xSJTwyHNqDHyH6dgwlWnvqNCzTvmFntk+XgAaxODWAY="; 19 + }; 20 + 21 + nativeBuildInputs = [ pkg-config ]; 22 + 23 + buildInputs = [ openssl ]; 24 + 25 + cargoHash = "sha256-ZZwb5WHKFMAP5yPT1DDi+nWy7rjM/UI6ahagNqTDDMM="; 26 + 27 + meta = { 28 + homepage = "https://github.com/rustic-rs/rustic"; 29 + changelog = "https://codeberg.org/keyoxide/kx-aspe-cli/src/commit/${src.rev}/CHANGELOG.md"; 30 + description = "Keyoxide profile generator CLI using ASPE"; 31 + mainProgram = "kx-aspe"; 32 + platforms = lib.platforms.linux; 33 + license = [ lib.licenses.asl20 ]; 34 + maintainers = [ lib.maintainers.nobbz ]; 35 + }; 36 + }
+3 -3
pkgs/by-name/ky/kyverno-chainsaw/package.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "kyverno-chainsaw"; 5 - version = "0.2.0"; 5 + version = "0.2.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "kyverno"; 9 9 repo = "chainsaw"; 10 10 rev = "v${version}"; 11 - hash = "sha256-+w7cn2lrNlgMvmmIJgx6wukJcSyeHLEzpM3uH20cYJ8="; 11 + hash = "sha256-eQA4KiQH1tIbolQBKPId8hKCO0mcUnEyJ77+WSGYDjQ="; 12 12 }; 13 13 14 - vendorHash = "sha256-BDpNt/0d/QkJlkyWkw96xVos8kml1BwvStM8NqB4WC8="; 14 + vendorHash = "sha256-3x1HAt08Tbs56vaT2tBS//FPRn4JdFOI00XmlXMbs3w="; 15 15 16 16 ldflags = [ 17 17 "-s" "-w"
+2 -2
pkgs/by-name/li/libewf-legacy/package.nix
··· 11 11 12 12 stdenv.mkDerivation (finalAttrs: { 13 13 pname = "libewf-legacy"; 14 - version = "20140814"; 14 + version = "20140816"; 15 15 16 16 src = fetchurl { 17 17 url = "https://github.com/libyal/libewf-legacy/releases/download/${finalAttrs.version}/libewf-${finalAttrs.version}.tar.gz"; 18 - hash = "sha256-OM3QXwnaIDeo66UNjzmu6to53SxgCMn/rE9VTPlX5BQ="; 18 + hash = "sha256-ay0Hj7OGFnm6g5Qv6lHp5gKcN+wuoMN/V0QlbW9wJak="; 19 19 }; 20 20 21 21 nativeBuildInputs = [ pkg-config ];
+2 -2
pkgs/by-name/li/litmusctl/package.nix
··· 7 7 8 8 buildGoModule rec { 9 9 pname = "litmusctl"; 10 - version = "1.5.0"; 10 + version = "1.6.0"; 11 11 12 12 nativeBuildInputs = [ 13 13 installShellFiles ··· 21 21 owner = "litmuschaos"; 22 22 repo = "litmusctl"; 23 23 rev = "${version}"; 24 - hash = "sha256-FORrvPKDTG48WV03+HbXiBJa1IHfHV7yMDhQX64kn6U="; 24 + hash = "sha256-aJcnK4VhtqVFaSUf0A40qGb0TBKiqlgkwY2nRdfTl2E="; 25 25 }; 26 26 27 27 vendorHash = "sha256-U4dp2E2TZ3rds63PS6GzUVhb2qDSv92bf9JCkWpdLew=";
+2 -2
pkgs/by-name/ll/llama-cpp/package.nix
··· 72 72 in 73 73 effectiveStdenv.mkDerivation (finalAttrs: { 74 74 pname = "llama-cpp"; 75 - version = "2843"; 75 + version = "2901"; 76 76 77 77 src = fetchFromGitHub { 78 78 owner = "ggerganov"; 79 79 repo = "llama.cpp"; 80 80 rev = "refs/tags/b${finalAttrs.version}"; 81 - hash = "sha256-wT/E4osmhZUSSW73DoNTs5BMTa1yU4E2mDpwiS0pEQc="; 81 + hash = "sha256-bsPqSvJ9/iXE/wu+8kHikt1YPxX5XC+WsPbXTuSlsAo="; 82 82 leaveDotGit = true; 83 83 postFetch = '' 84 84 git -C "$out" rev-parse --short HEAD > $out/COMMIT
+2 -2
pkgs/by-name/ma/marwaita-x/package.nix
··· 10 10 11 11 stdenvNoCC.mkDerivation (finalAttrs: { 12 12 pname = "marwaita-x"; 13 - version = "0.9"; 13 + version = "1.0"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "darkomarko42"; 17 17 repo = "marwaita-x"; 18 18 rev = finalAttrs.version; 19 - sha256 = "sha256-yf/3ukb52rbCXMObeiHrMdD1cTRjY739p7Vg+DBFReo="; 19 + sha256 = "sha256-uSJfrM1QOTTV03WS6BpQh3GCgkW4+9w3aw+giwiCYWU="; 20 20 }; 21 21 22 22 buildInputs = [
+3 -3
pkgs/by-name/me/mermaid-cli/package.nix
··· 11 11 12 12 stdenv.mkDerivation rec { 13 13 pname = "mermaid-cli"; 14 - version = "10.8.0"; 14 + version = "10.9.0"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "mermaid-js"; 18 18 repo = "mermaid-cli"; 19 19 rev = version; 20 - hash = "sha256-nCLLv8QXx9N4WiUFw3WB+Rpfd4H4oCFa1ac01al+ovY="; 20 + hash = "sha256-o9QaJsJlfqsAguYGHAdf8aqZWbOgDJs+0KVQAVtRlA0="; 21 21 }; 22 22 23 23 offlineCache = fetchYarnDeps { 24 24 yarnLock = "${src}/yarn.lock"; 25 - hash = "sha256-thZxaa7S3vlS1Ws+G5dklun+ISCV908p1Ov7qb8fP3c="; 25 + hash = "sha256-SfRzn5FxO+Ls+ne7ay3tySNLr+awEJ9fo/nwcAY11qA="; 26 26 }; 27 27 28 28 nativeBuildInputs = [
+2 -2
pkgs/by-name/mo/monaspace/package.nix
··· 5 5 6 6 stdenvNoCC.mkDerivation (finalAttrs: { 7 7 pname = "monaspace"; 8 - version = "1.100"; 8 + version = "1.101"; 9 9 10 10 src = fetchzip { 11 11 url = "https://github.com/githubnext/monaspace/releases/download/v${finalAttrs.version}/monaspace-v${finalAttrs.version}.zip"; 12 12 stripRoot = false; 13 - hash = "sha256-PNeWDWYSd/oAviwyvwiQSLeATGqGIFYZWjKp+trT5x4="; 13 + hash = "sha256-o5s4XBuwqA4sJ5KhEn5oYttBj4ojekr/LO6Ww9oQRGw="; 14 14 }; 15 15 16 16 outputs = [ "out" "woff" ];
+4 -4
pkgs/by-name/mo/mousam/package.nix
··· 12 12 13 13 python3Packages.buildPythonApplication rec { 14 14 pname = "mousam"; 15 - version = "1.1.0"; 15 + version = "1.2.0"; 16 16 # built with meson, not a python format 17 - format = "other"; 17 + pyproject = false; 18 18 19 19 src = fetchFromGitHub { 20 20 owner = "amit9838"; 21 21 repo = "mousam"; 22 22 rev = "v${version}"; 23 - hash = "sha256-4NJLJ9aPCufvqZGzqQEjSxryofcg4mwk0UohlgUYcqk="; 23 + hash = "sha256-/mOb4Pgdn5DcxwHjlI8L9kKD/Y6a4vROLbsQBb62VXM="; 24 24 }; 25 25 26 26 nativeBuildInputs = [ ··· 36 36 libadwaita 37 37 ]; 38 38 39 - propagatedBuildInputs = with python3Packages; [ 39 + dependencies = with python3Packages; [ 40 40 pygobject3 41 41 requests 42 42 ];
+2 -2
pkgs/by-name/ne/neovim-unwrapped/package.nix
··· 66 66 67 67 in { 68 68 pname = "neovim-unwrapped"; 69 - version = "0.9.5"; 69 + version = "0.10.0"; 70 70 71 71 __structuredAttrs = true; 72 72 ··· 74 74 owner = "neovim"; 75 75 repo = "neovim"; 76 76 rev = "v${finalAttrs.version}"; 77 - hash = "sha256-CcaBqA0yFCffNPmXOJTo8c9v1jrEBiqAl8CG5Dj5YxE="; 77 + hash = "sha256-FCOipXHkAbkuFw9JjEpOIJ8BkyMkjkI0Dp+SzZ4yZlw="; 78 78 }; 79 79 80 80 patches = [
+3 -3
pkgs/by-name/ne/netclient/package.nix
··· 8 8 9 9 buildGoModule rec { 10 10 pname = "netclient"; 11 - version = "0.24.0"; 11 + version = "0.24.1"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "gravitl"; 15 15 repo = "netclient"; 16 16 rev = "v${version}"; 17 - hash = "sha256-p7cPOPmD/13Mvp0aHRDj3MXfkiaimqrTeg9D7bRU3AM="; 17 + hash = "sha256-oS0DqrlOyab0MS7qSEquEIixcOYnlGuCYtCBmfEURm0="; 18 18 }; 19 19 20 - vendorHash = "sha256-mxDhjvNrV4oMHKHQHaxg35Tn30czmjGD3MTRh/Dexv4="; 20 + vendorHash = "sha256-09pRwsB2ycB/MK3isXZLBZDpga95SHYkNPjWWYtUuoU="; 21 21 22 22 buildInputs = lib.optional stdenv.isDarwin darwin.apple_sdk.frameworks.Cocoa 23 23 ++ lib.optional stdenv.isLinux libX11;
+27
pkgs/by-name/pa/parinfer-rust-emacs/package.nix
··· 1 + { 2 + fetchFromGitHub, 3 + lib, 4 + llvmPackages, 5 + rustPlatform, 6 + }: 7 + rustPlatform.buildRustPackage rec { 8 + pname = "parinfer-rust-emacs"; 9 + version = "0.4.6"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "justinbarclay"; 13 + repo = "parinfer-rust-emacs"; 14 + rev = "v${version}"; 15 + hash = "sha256-SNs/75beomxvexfE4+3v/l9Xl5w5SY0EWcORHvRitOw="; 16 + }; 17 + 18 + cargoHash = "sha256-LmfcY9iR7BGh3dF/raSZTIwburtaQRI3I3XvOZG343M="; 19 + 20 + meta = with lib; { 21 + description = "An emacs centric fork of parinfer-rust"; 22 + mainProgram = "parinfer-rust"; 23 + homepage = "https://github.com/justinbarclay/parinfer-rust-emacs"; 24 + license = licenses.isc; 25 + maintainers = with maintainers; [ brsvh ]; 26 + }; 27 + }
+2 -2
pkgs/by-name/py/pyprland/package.nix
··· 7 7 8 8 python3Packages.buildPythonApplication rec { 9 9 pname = "pyprland"; 10 - version = "2.2.17"; 10 + version = "2.2.20"; 11 11 format = "pyproject"; 12 12 13 13 disabled = python3Packages.pythonOlder "3.10"; ··· 16 16 owner = "hyprland-community"; 17 17 repo = "pyprland"; 18 18 rev = "refs/tags/${version}"; 19 - hash = "sha256-S1bIIazrBWyjF8tOcIk0AwwWq9gbpTKNsjr9iYA5lKk="; 19 + hash = "sha256-/eJ3emWI2l9jYgD7RX6tGUy6wHHQ25qS6Xd1x1uWZ1w="; 20 20 }; 21 21 22 22 nativeBuildInputs = with python3Packages; [ poetry-core ];
+2 -2
pkgs/by-name/qu/quarkus/package.nix
··· 7 7 8 8 stdenv.mkDerivation (finalAttrs: { 9 9 pname = "quarkus-cli"; 10 - version = "3.10.0"; 10 + version = "3.10.1"; 11 11 12 12 src = fetchurl { 13 13 url = "https://github.com/quarkusio/quarkus/releases/download/${finalAttrs.version}/quarkus-cli-${finalAttrs.version}.tar.gz"; 14 - hash = "sha256-hJNlz2DpA30fKpZu2O0I31oDSAfdW/s/xXzwOdRX9kw="; 14 + hash = "sha256-bS+d7CvzsMcIdex+cZ8DMFOkIgT9G1ktMDu2wc6XySU="; 15 15 }; 16 16 17 17 nativeBuildInputs = [ makeWrapper ];
+3 -3
pkgs/by-name/rw/rwpspread/package.nix
··· 8 8 9 9 rustPlatform.buildRustPackage rec { 10 10 pname = "rwpspread"; 11 - version = "0.2.6"; 11 + version = "0.3.0"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "0xk1f0"; 15 15 repo = "rwpspread"; 16 16 rev = "v${version}"; 17 - hash = "sha256-6pYMKBm3f0kH+KD6yWy7/H/bg8v7hNm81KAKHp02HY8="; 17 + hash = "sha256-B8K8/M5cUSchG54ar0ZY2XOH6lYLimdZr+dk5ffdplY="; 18 18 }; 19 - cargoHash = "sha256-/SjSwjrqODx9imtVxmOCrG4KwhXymHokyQ8FSC1SOd8="; 19 + cargoHash = "sha256-bTCXgaE8+nxuEFeOMSihL3lfmbIxiv1f400rmyV2b8k="; 20 20 21 21 nativeBuildInputs = [ pkg-config ]; 22 22
+3 -29
pkgs/by-name/sc/scion/package.nix
··· 5 5 , nixosTests 6 6 }: 7 7 let 8 - version = "0.10.0"; 9 - 10 - # Injects a `t.Skip()` into a given test since there's apparently no other way to skip tests here. 11 - # ref: https://github.com/NixOS/nixpkgs/blob/047bc33866bf7004d0ce9ed0af78dab5ceddaab0/pkgs/by-name/vi/vikunja/package.nix#L96 12 - skipTest = lineOffset: testCase: file: 13 - let 14 - jumpAndAppend = lib.concatStringsSep ";" (lib.replicate (lineOffset - 1) "n" ++ [ "a" ]); 15 - in 16 - '' 17 - sed -i -e '/${testCase}/{ 18 - ${jumpAndAppend} t.Skip(); 19 - }' ${file} 20 - ''; 8 + version = "0.11.0"; 21 9 in 22 10 23 11 buildGoModule { ··· 29 17 owner = "scionproto"; 30 18 repo = "scion"; 31 19 rev = "v${version}"; 32 - hash = "sha256-8yXjEDo1k0+7O0gx2acAZMrG/r+iePfNCG+FolCSKwI="; 20 + hash = "sha256-JemqSr1XBwW1hLuWQrApY/hqLj/VpW3xSJedVIoFSiY="; 33 21 }; 34 22 35 - vendorHash = "sha256-4nTp6vOyS7qDn8HmNO0NGCNU7wCb8ww8a15Yv3MPEq8="; 23 + vendorHash = "sha256-akFbHgo8xI2/4aQsyutjhXPM5d0A3se3kG/6Ebw1Qcs="; 36 24 37 25 excludedPackages = [ "acceptance" "demo" "tools" "pkg/private/xtest/graphupdater" ]; 38 26 39 - # This can be removed in the next release of scion since its fixed upstream 40 - # https://github.com/scionproto/scion/pull/4476 41 - postConfigure = '' 42 - # This test needs docker, so lets skip it 43 - ${skipTest 1 "TestOpensslCompatible" "scion-pki/trcs/sign_test.go"} 44 - ''; 45 - 46 27 postInstall = '' 47 28 set +e 48 29 mv $out/bin/gateway $out/bin/scion-ip-gateway ··· 54 35 ''; 55 36 56 37 doCheck = true; 57 - 58 - patches = [ 59 - (fetchpatch2 { 60 - url = "https://github.com/scionproto/scion/commit/cb7fa6d6aab55c9eb90556c2b996b87539f8aa02.patch"; 61 - hash = "sha256-mMGJMPB6T7KeDXjEXffdrhzyKwaFmhuisK6PjHOJIdU="; 62 - }) 63 - ]; 64 38 65 39 passthru.tests = { 66 40 inherit (nixosTests) scion-freestanding-deployment;
+2 -2
pkgs/by-name/se/sesh/package.nix
··· 5 5 }: 6 6 buildGoModule rec { 7 7 pname = "sesh"; 8 - version = "1.1.0"; 8 + version = "1.1.1"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "joshmedeski"; 12 12 repo = "sesh"; 13 13 rev = "v${version}"; 14 - hash = "sha256-4p3Pqts6GSyUGX9hCQS/vTZiHbi5UQkrzzIA1Fheamc="; 14 + hash = "sha256-Q0ErSM4r3wNjGu4p0EVhvdWkz4Cd46XD0hauN7idMRg="; 15 15 }; 16 16 17 17 vendorHash = "sha256-zt1/gE4bVj+3yr9n0kT2FMYMEmiooy3k1lQ77rN6sTk=";
+3 -3
pkgs/by-name/st/stackit-cli/package.nix
··· 12 12 13 13 buildGoModule rec { 14 14 pname = "stackit-cli"; 15 - version = "0.4.0"; 15 + version = "0.6.0"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "stackitcloud"; 19 19 repo = "stackit-cli"; 20 20 rev = "v${version}"; 21 - hash = "sha256-qujqRLXkQqUrpmyEkawPyEmCleXN43Wvv+sFwevVtqA="; 21 + hash = "sha256-Rd4kuU1iMCxuNhL0GwAX625hIAv6O2URmP7JTeMduMo"; 22 22 }; 23 23 24 - vendorHash = "sha256-SOX6jL7KX4FvYUyE3vyA8pjKwe4co073QZ1qRMGm3/Q="; 24 + vendorHash = "sha256-PRCra/i4n+YvYC+onBYO/uZ8JlyTjibfZsGMM53COcw="; 25 25 26 26 subPackages = [ "." ]; 27 27
+2 -2
pkgs/by-name/st/stats/package.nix
··· 10 10 11 11 stdenvNoCC.mkDerivation (finalAttrs: { 12 12 pname = "stats"; 13 - version = "2.10.11"; 13 + version = "2.10.13"; 14 14 15 15 src = fetchurl { 16 16 url = "https://github.com/exelban/stats/releases/download/v${finalAttrs.version}/Stats.dmg"; 17 - hash = "sha256-vF32tDuSAZJrZ21iKtM+/2qk9WWoyMddrtg5wK2+IaI="; 17 + hash = "sha256-AzH1rZFqEH8sovZZfJykvsEmCedEZWigQFHWHl6/PdE="; 18 18 }; 19 19 20 20 sourceRoot = ".";
+13 -13
pkgs/by-name/st/stereotool/package.nix
··· 16 16 17 17 stdenv.mkDerivation rec { 18 18 pname = "stereotool"; 19 - version = "10.21"; 19 + version = "10.30"; 20 20 21 21 srcs = 22 22 let ··· 35 35 (fetchurl { 36 36 name = "alsa"; 37 37 url = "https://download.thimeo.com/stereo_tool_gui_64_${versionNoPoint}"; 38 - hash = "sha256-ByRguhZ29ertQM3q+TPUUT1BMnAJGbwNe8WbNxLhcmk="; 38 + hash = "sha256-sy1ps4knMlSKVapSQTJ6+8Q7x70/CpRUj7UkWWUkraI="; 39 39 }) 40 40 # Jack version for 64bits. 41 41 (fetchurl { 42 42 name = "jack"; 43 43 url = "https://download.thimeo.com/stereo_tool_gui_jack_64_${versionNoPoint}"; 44 - hash = "sha256-ByRguhZ29ertQM3q+TPUUT1BMnAJGbwNe8WbNxLhcmk="; 44 + hash = "sha256-sy1ps4knMlSKVapSQTJ6+8Q7x70/CpRUj7UkWWUkraI="; 45 45 }) 46 46 # Cmd version for 64bits 47 47 (fetchurl { 48 48 name = "cmd"; 49 49 url = "https://download.thimeo.com/stereo_tool_cmd_64_${versionNoPoint}"; 50 - hash = "sha256-PGheJfOQJzI1gs05qW9vcAMoVnCPIHR2qS0GIg5V6vw="; 50 + hash = "sha256-ncrMkuqNkdhfa1l5Ya+EMoeySDTkFshbpXVIvoJdEAc="; 51 51 }) 52 52 ]; 53 53 # Sources if the system is aarch64-linux ··· 55 55 (fetchurl { 56 56 name = "alsa"; 57 57 url = "https://download.thimeo.com/stereo_tool_gui_pi2_64_${versionNoPoint}"; 58 - hash = "sha256-iwoc6c+ox+2DSqmiz8mpDotDjqki7iL0jgqc7Z1htNI="; 58 + hash = "sha256-o4KW7oPPUYrFLKGo/Q+ISrga9EoA7FUZUzuGtYVVT+Y="; 59 59 }) 60 60 (fetchurl { 61 61 name = "jack"; 62 62 url = "https://download.thimeo.com/stereo_tool_gui_jack_pi2_64_${versionNoPoint}"; 63 - hash = "sha256-iwoc6c+ox+2DSqmiz8mpDotDjqki7iL0jgqc7Z1htNI=="; 63 + hash = "sha256-o4KW7oPPUYrFLKGo/Q+ISrga9EoA7FUZUzuGtYVVT+Y="; 64 64 }) 65 65 (fetchurl { 66 66 name = "cmd"; 67 67 url = "https://download.thimeo.com/stereo_tool_pi2_64_${versionNoPoint}"; 68 - hash = "sha256-bIFnQkJB9XoEKo7IG+MSMvx/ia1C8i97Cw7EX4EDizk="; 68 + hash = "sha256-kzzPh/l+ShvdFnFqTn6CGsj8MlMxikuhi7tThD3qFEk="; 69 69 }) 70 70 ]; 71 71 # Sources if the system is aarch32-linux ··· 73 73 (fetchurl { 74 74 name = "alsa"; 75 75 url = "https://download.thimeo.com/stereo_tool_gui_pi2_${versionNoPoint}"; 76 - hash = "sha256-922yqmis5acvASU2rEi5YzFLAUuDO7BiEiW49RKfcoU="; 76 + hash = "sha256-D5e72QabHJPaXhLa06pkS+Q/X6PiRzTn8jF2EpSf41k="; 77 77 }) 78 78 (fetchurl { 79 79 name = "jack"; 80 80 url = "https://download.thimeo.com/stereo_tool_gui_jack_pi2_${versionNoPoint}"; 81 - hash = "sha256-922yqmis5acvASU2rEi5YzFLAUuDO7BiEiW49RKfcoU="; 81 + hash = "sha256-D5e72QabHJPaXhLa06pkS+Q/X6PiRzTn8jF2EpSf41k="; 82 82 }) 83 83 (fetchurl { 84 84 name = "cmd"; 85 85 url = "https://download.thimeo.com/stereo_tool_pi2_${versionNoPoint}"; 86 - hash = "sha256-xKM5Mg6gEAvbp63rd81ssnx2Bj1hUylCo36mQBYwIvg="; 86 + hash = "sha256-RELyXszIVjsAl0qPufLbcqDTKFOTt4Hqp8CsAl56Ybo="; 87 87 }) 88 88 ]; 89 89 # Sources if the system is 32bits i686 ··· 92 92 # The name is the name of this source in the build directory 93 93 name = "alsa"; 94 94 url = "https://download.thimeo.com/stereo_tool_gui_${versionNoPoint}"; 95 - hash = "sha256-iEPqJvmXKXD4AVbM+1QZeUOwpMjMT7ROYNQpmhRVZyw="; 95 + hash = "sha256-JSy88rTlbqIclLIg1HT+OYltve5lw8Q2fH6MIQNouUk="; 96 96 }) 97 97 (fetchurl { 98 98 name = "jack"; 99 99 url = "https://download.thimeo.com/stereo_tool_gui_jack_${versionNoPoint}"; 100 - hash = "sha256-iEPqJvmXKXD4AVbM+1QZeUOwpMjMT7ROYNQpmhRVZyw="; 100 + hash = "sha256-JSy88rTlbqIclLIg1HT+OYltve5lw8Q2fH6MIQNouUk="; 101 101 }) 102 102 (fetchurl { 103 103 name = "cmd"; 104 104 url = "https://download.thimeo.com/stereo_tool_cmd_${versionNoPoint}"; 105 - hash = "sha256-sk13wj7XvuwTDWWW6tMYHdTV9XjPeHe6hHv2JPBxBLA="; 105 + hash = "sha256-b6v0TJaCaJKZP6uwJmmHek4y51YsK8NoslysljYHcF0="; 106 106 }) 107 107 ]; 108 108 }.${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}"));
+2 -2
pkgs/by-name/st/strictdoc/package.nix
··· 5 5 6 6 python3.pkgs.buildPythonApplication rec { 7 7 pname = "strictdoc"; 8 - version = "0.0.54"; 8 + version = "0.0.55"; 9 9 pyproject = true; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "strictdoc-project"; 13 13 repo = "strictdoc"; 14 14 rev = "refs/tags/${version}"; 15 - hash = "sha256-gsZgvT3bSHxxFLhEqlHjoRZiYZwyFr377CGYWYOssyM="; 15 + hash = "sha256-QIwDtOaqRq59zdF5IZ7xwas5LLYt98Vyv00HkgGgahM="; 16 16 }; 17 17 18 18 nativeBuildInputs = [
+13 -13
pkgs/by-name/ta/tabby/Cargo.lock
··· 41 41 42 42 [[package]] 43 43 name = "aim-downloader" 44 - version = "0.11.0" 44 + version = "0.11.1" 45 45 dependencies = [ 46 46 "async-stream", 47 47 "clap", ··· 1980 1980 1981 1981 [[package]] 1982 1982 name = "http-api-bindings" 1983 - version = "0.11.0" 1983 + version = "0.11.1" 1984 1984 dependencies = [ 1985 1985 "anyhow", 1986 1986 "async-openai", ··· 2642 2642 2643 2643 [[package]] 2644 2644 name = "llama-cpp-bindings" 2645 - version = "0.11.0" 2645 + version = "0.11.1" 2646 2646 dependencies = [ 2647 2647 "async-stream", 2648 2648 "async-trait", ··· 4927 4927 4928 4928 [[package]] 4929 4929 name = "tabby" 4930 - version = "0.11.0" 4930 + version = "0.11.1" 4931 4931 dependencies = [ 4932 4932 "anyhow", 4933 4933 "assert-json-diff", ··· 4980 4980 4981 4981 [[package]] 4982 4982 name = "tabby-common" 4983 - version = "0.11.0" 4983 + version = "0.11.1" 4984 4984 dependencies = [ 4985 4985 "anyhow", 4986 4986 "async-trait", ··· 5003 5003 5004 5004 [[package]] 5005 5005 name = "tabby-db" 5006 - version = "0.11.0" 5006 + version = "0.11.1" 5007 5007 dependencies = [ 5008 5008 "anyhow", 5009 5009 "assert_matches", ··· 5020 5020 5021 5021 [[package]] 5022 5022 name = "tabby-db-macros" 5023 - version = "0.11.0" 5023 + version = "0.11.1" 5024 5024 dependencies = [ 5025 5025 "quote", 5026 5026 "syn 2.0.52", ··· 5028 5028 5029 5029 [[package]] 5030 5030 name = "tabby-download" 5031 - version = "0.11.0" 5031 + version = "0.11.1" 5032 5032 dependencies = [ 5033 5033 "aim-downloader", 5034 5034 "anyhow", ··· 5040 5040 5041 5041 [[package]] 5042 5042 name = "tabby-inference" 5043 - version = "0.11.0" 5043 + version = "0.11.1" 5044 5044 dependencies = [ 5045 5045 "anyhow", 5046 5046 "async-stream", ··· 5054 5054 5055 5055 [[package]] 5056 5056 name = "tabby-scheduler" 5057 - version = "0.11.0" 5057 + version = "0.11.1" 5058 5058 dependencies = [ 5059 5059 "anyhow", 5060 5060 "async-trait", ··· 5096 5096 5097 5097 [[package]] 5098 5098 name = "tabby-schema" 5099 - version = "0.11.0" 5099 + version = "0.11.1" 5100 5100 dependencies = [ 5101 5101 "anyhow", 5102 5102 "async-trait", ··· 5120 5120 5121 5121 [[package]] 5122 5122 name = "tabby-search" 5123 - version = "0.11.0" 5123 + version = "0.11.1" 5124 5124 dependencies = [ 5125 5125 "anyhow", 5126 5126 "git2", ··· 5130 5130 5131 5131 [[package]] 5132 5132 name = "tabby-webserver" 5133 - version = "0.11.0" 5133 + version = "0.11.1" 5134 5134 dependencies = [ 5135 5135 "anyhow", 5136 5136 "apalis",
+3 -3
pkgs/by-name/ta/tabby/package.nix
··· 32 32 # https://github.com/NixOS/nixpkgs/blob/master/pkgs/tools/misc/ollama/default.nix 33 33 34 34 pname = "tabby"; 35 - version = "0.11.0"; 35 + version = "0.11.1"; 36 36 37 37 38 38 availableAccelerations = flatten [ ··· 78 78 # to use a specific device type as it is relying on llama-cpp only being 79 79 # built to use one type of device. 80 80 # 81 - # See: https://github.com/TabbyML/tabby/blob/v0.11.0/crates/llama-cpp-bindings/include/engine.h#L20 81 + # See: https://github.com/TabbyML/tabby/blob/v0.11.1/crates/llama-cpp-bindings/include/engine.h#L20 82 82 # 83 83 llamaccpPackage = llama-cpp.override { 84 84 rocmSupport = enableRocm; ··· 108 108 owner = "TabbyML"; 109 109 repo = "tabby"; 110 110 rev = "v${version}"; 111 - hash = "sha256-7PHCvI2/QSFVs6SAXrx8rohU5Wu8QRaqsI1CimnUGQY="; 111 + hash = "sha256-OgAE526aW3mVqf6fVmBmL5/B4gH9B54QLEITQk9Kgsg="; 112 112 fetchSubmodules = true; 113 113 }; 114 114
+37
pkgs/by-name/tr/tracexec/package.nix
··· 1 + { 2 + lib, 3 + rustPlatform, 4 + fetchFromGitHub, 5 + }: 6 + 7 + rustPlatform.buildRustPackage rec { 8 + pname = "tracexec"; 9 + version = "0.2.2"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "kxxt"; 13 + repo = "tracexec"; 14 + rev = "v${version}"; 15 + hash = "sha256-X2hLaBndeYLBMnDe2MT4pgZiPj0COHG2uTvAbW+JVd4="; 16 + }; 17 + 18 + cargoHash = "sha256-3xANOv+A4soDcKMINy+RnI8l6uS3koZpw3CMIUCmK5A="; 19 + 20 + # Remove test binaries and only retain tracexec 21 + postInstall = '' 22 + find "$out/bin" -type f \! -name tracexec -print0 | xargs -0 rm -v 23 + ''; 24 + 25 + # ptrace is not allowed in sandbox 26 + doCheck = false; 27 + 28 + meta = { 29 + description = "A small utility for tracing execve{,at} and pre-exec behavior"; 30 + homepage = "https://github.com/kxxt/tracexec"; 31 + changelog = "https://github.com/kxxt/tracexec/blob/${src.rev}/CHANGELOG.md"; 32 + license = lib.licenses.gpl2; 33 + maintainers = with lib.maintainers; [ fpletz ]; 34 + mainProgram = "tracexec"; 35 + platforms = lib.platforms.linux; 36 + }; 37 + }
+2 -2
pkgs/by-name/un/unciv/package.nix
··· 27 27 in 28 28 stdenv.mkDerivation rec { 29 29 pname = "unciv"; 30 - version = "4.11.10"; 30 + version = "4.11.12"; 31 31 32 32 src = fetchurl { 33 33 url = "https://github.com/yairm210/Unciv/releases/download/${version}/Unciv.jar"; 34 - hash = "sha256-RBdMgxJRVM8dj4eDh/ZAzJkyWoAJnpge3Vg25H9+Eak="; 34 + hash = "sha256-duhcNkK5Ah8KpyzIzwZvSKRjuYuVg1H6luKUPHjHwlc="; 35 35 }; 36 36 37 37 dontUnpack = true;
+2 -2
pkgs/by-name/un/unrar/package.nix
··· 5 5 6 6 stdenv.mkDerivation (finalAttrs: { 7 7 pname = "unrar"; 8 - version = "7.0.8"; 8 + version = "7.0.9"; 9 9 10 10 src = fetchzip { 11 11 url = "https://www.rarlab.com/rar/unrarsrc-${finalAttrs.version}.tar.gz"; 12 12 stripRoot = false; 13 - hash = "sha256-oyLU4LkjzqjpiPLMpsTJWqaF9Tr4Tg441vXo3JiORDo="; 13 + hash = "sha256-lHh02uqHdX2Q9yyaGiHlkdBjlQE1tQyB44d39yDE4ls="; 14 14 }; 15 15 16 16 sourceRoot = finalAttrs.src.name;
+171 -232
pkgs/by-name/uv/uv/Cargo.lock
··· 90 90 91 91 [[package]] 92 92 name = "anstyle" 93 - version = "1.0.6" 93 + version = "1.0.7" 94 94 source = "registry+https://github.com/rust-lang/crates.io-index" 95 - checksum = "8901269c6307e8d93993578286ac0edf7f195079ffff5ebdeea6a59ffb7e36bc" 95 + checksum = "038dfcf04a5feb68e9c60b21c9625a54c2c0616e79b72b0fd87075a056ae1d1b" 96 96 97 97 [[package]] 98 98 name = "anstyle-parse" 99 - version = "0.2.3" 99 + version = "0.2.4" 100 100 source = "registry+https://github.com/rust-lang/crates.io-index" 101 - checksum = "c75ac65da39e5fe5ab759307499ddad880d724eed2f6ce5b5e8a26f4f387928c" 101 + checksum = "c03a11a9034d92058ceb6ee011ce58af4a9bf61491aa7e1e59ecd24bd40d22d4" 102 102 dependencies = [ 103 103 "utf8parse", 104 104 ] 105 105 106 106 [[package]] 107 107 name = "anstyle-query" 108 - version = "1.0.2" 108 + version = "1.0.3" 109 109 source = "registry+https://github.com/rust-lang/crates.io-index" 110 - checksum = "e28923312444cdd728e4738b3f9c9cac739500909bb3d3c94b43551b16517648" 110 + checksum = "a64c907d4e79225ac72e2a354c9ce84d50ebb4586dee56c82b3ee73004f537f5" 111 111 dependencies = [ 112 112 "windows-sys 0.52.0", 113 113 ] 114 114 115 115 [[package]] 116 116 name = "anstyle-wincon" 117 - version = "3.0.2" 117 + version = "3.0.3" 118 118 source = "registry+https://github.com/rust-lang/crates.io-index" 119 - checksum = "1cd54b81ec8d6180e24654d0b371ad22fc3dd083b6ff8ba325b72e00c87660a7" 119 + checksum = "61a38449feb7068f52bb06c12759005cf459ee52bb4adc1d5a7c4322d716fb19" 120 120 dependencies = [ 121 121 "anstyle", 122 122 "windows-sys 0.52.0", ··· 124 124 125 125 [[package]] 126 126 name = "anyhow" 127 - version = "1.0.82" 127 + version = "1.0.83" 128 128 source = "registry+https://github.com/rust-lang/crates.io-index" 129 - checksum = "f538837af36e6f6a9be0faa67f9a314f8119e4e4b5867c6ab40ed60360142519" 129 + checksum = "25bdb32cbbdce2b519a9cd7df3a678443100e265d5e25ca763b7572a5104f5f3" 130 130 131 131 [[package]] 132 132 name = "arbitrary" ··· 197 197 198 198 [[package]] 199 199 name = "async-channel" 200 - version = "2.2.1" 200 + version = "2.3.0" 201 201 source = "registry+https://github.com/rust-lang/crates.io-index" 202 - checksum = "136d4d23bcc79e27423727b36823d86233aad06dfea531837b038394d11e9928" 202 + checksum = "9f2776ead772134d55b62dd45e59a79e21612d85d0af729b8b7d3967d601a62a" 203 203 dependencies = [ 204 204 "concurrent-queue", 205 205 "event-listener", ··· 210 210 211 211 [[package]] 212 212 name = "async-compression" 213 - version = "0.4.9" 213 + version = "0.4.10" 214 214 source = "registry+https://github.com/rust-lang/crates.io-index" 215 - checksum = "4e9eabd7a98fe442131a17c316bd9349c43695e49e730c3c8e12cfb5f4da2693" 215 + checksum = "9c90a406b4495d129f00461241616194cb8a032c8d1c53c657f0961d5f8e0498" 216 216 dependencies = [ 217 217 "brotli", 218 218 "bzip2", ··· 234 234 dependencies = [ 235 235 "proc-macro2", 236 236 "quote", 237 - "syn 2.0.58", 237 + "syn 2.0.61", 238 238 ] 239 239 240 240 [[package]] ··· 273 273 274 274 [[package]] 275 275 name = "autocfg" 276 - version = "1.2.0" 276 + version = "1.3.0" 277 277 source = "registry+https://github.com/rust-lang/crates.io-index" 278 - checksum = "f1fdabc7756949593fe60f30ec81974b613357de856987752631dea1e3394c80" 278 + checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0" 279 279 280 280 [[package]] 281 281 name = "axoasset" 282 - version = "0.9.1" 282 + version = "0.9.3" 283 283 source = "registry+https://github.com/rust-lang/crates.io-index" 284 - checksum = "5e05853b0d9abfab8e7532cad0d07ec396dd95c1a81926b49ab3cfa121a9d8d6" 284 + checksum = "6d492e2a60fbacf2154ee58fd4bc3dd7385a5febf10fef6145924fd3117cd920" 285 285 dependencies = [ 286 286 "camino", 287 - "image", 288 287 "miette", 289 288 "mime", 290 289 "serde", ··· 318 317 319 318 [[package]] 320 319 name = "axoupdater" 321 - version = "0.6.1" 320 + version = "0.6.2" 322 321 source = "registry+https://github.com/rust-lang/crates.io-index" 323 - checksum = "aa409472ff4f15f57ed338dc73f9586b3ee244c65ddbaa1f4f9bdbb26c9bd4f6" 322 + checksum = "8fd70e10a815d55bcef2a2e0907b189fc6d800558b7481883ad6535d5ae7cd42" 324 323 dependencies = [ 325 324 "axoasset", 326 325 "axoprocess", ··· 400 399 "criterion", 401 400 "distribution-filename", 402 401 "distribution-types", 403 - "fs-err", 404 402 "once_cell", 405 403 "pep508_rs", 406 404 "platform-tags", 407 - "tempfile", 408 405 "tokio", 409 406 "uv-cache", 410 407 "uv-client", 411 408 "uv-configuration", 409 + "uv-distribution", 412 410 "uv-interpreter", 413 411 "uv-resolver", 414 412 "uv-types", ··· 455 453 456 454 [[package]] 457 455 name = "brotli" 458 - version = "5.0.0" 456 + version = "6.0.0" 459 457 source = "registry+https://github.com/rust-lang/crates.io-index" 460 - checksum = "19483b140a7ac7174d34b5a581b406c64f84da5409d3e09cf4fff604f9270e67" 458 + checksum = "74f7971dbd9326d58187408ab83117d8ac1bb9c17b085fdacd1cf2f598719b6b" 461 459 dependencies = [ 462 460 "alloc-no-stdlib", 463 461 "alloc-stdlib", ··· 610 608 611 609 [[package]] 612 610 name = "cc" 613 - version = "1.0.92" 611 + version = "1.0.97" 614 612 source = "registry+https://github.com/rust-lang/crates.io-index" 615 - checksum = "2678b2e3449475e95b0aa6f9b506a28e61b3dc8996592b983695e8ebb58a8b41" 613 + checksum = "099a5357d84c4c61eb35fc8eafa9a79a902c2f76911e5747ced4e032edd8d9b4" 616 614 dependencies = [ 617 615 "jobserver", 618 616 "libc", 617 + "once_cell", 619 618 ] 620 619 621 620 [[package]] ··· 755 754 "heck 0.5.0", 756 755 "proc-macro2", 757 756 "quote", 758 - "syn 2.0.58", 757 + "syn 2.0.61", 759 758 ] 760 759 761 760 [[package]] ··· 803 802 804 803 [[package]] 805 804 name = "colorchoice" 806 - version = "1.0.0" 805 + version = "1.0.1" 807 806 source = "registry+https://github.com/rust-lang/crates.io-index" 808 - checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" 807 + checksum = "0b6a852b24ab71dffc585bcb46eaf7959d175cb865a7152e35b348d1b2960422" 809 808 810 809 [[package]] 811 810 name = "colored" ··· 819 818 820 819 [[package]] 821 820 name = "concurrent-queue" 822 - version = "2.4.0" 821 + version = "2.5.0" 823 822 source = "registry+https://github.com/rust-lang/crates.io-index" 824 - checksum = "d16048cd947b08fa32c24458a22f5dc5e835264f689f4f5653210c69fd107363" 823 + checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973" 825 824 dependencies = [ 826 825 "crossbeam-utils", 827 826 ] ··· 994 993 checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856" 995 994 dependencies = [ 996 995 "cfg-if", 997 - "hashbrown 0.14.3", 996 + "hashbrown 0.14.5", 998 997 "lock_api", 999 998 "once_cell", 1000 - "parking_lot_core 0.9.9", 999 + "parking_lot_core 0.9.10", 1001 1000 ] 1002 1001 1003 1002 [[package]] ··· 1026 1025 1027 1026 [[package]] 1028 1027 name = "deadpool-runtime" 1029 - version = "0.1.3" 1028 + version = "0.1.4" 1030 1029 source = "registry+https://github.com/rust-lang/crates.io-index" 1031 - checksum = "63dfa964fe2a66f3fde91fc70b267fe193d822c7e603e2a675a49a7f46ad3f49" 1030 + checksum = "092966b41edc516079bdf31ec78a2e0588d1d0c08f78b91d8307215928642b2b" 1032 1031 1033 1032 [[package]] 1034 1033 name = "derivative" ··· 1049 1048 dependencies = [ 1050 1049 "proc-macro2", 1051 1050 "quote", 1052 - "syn 2.0.58", 1051 + "syn 2.0.61", 1053 1052 ] 1054 1053 1055 1054 [[package]] ··· 1104 1103 dependencies = [ 1105 1104 "proc-macro2", 1106 1105 "quote", 1107 - "syn 2.0.58", 1106 + "syn 2.0.61", 1108 1107 ] 1109 1108 1110 1109 [[package]] ··· 1207 1206 1208 1207 [[package]] 1209 1208 name = "errno" 1210 - version = "0.3.8" 1209 + version = "0.3.9" 1211 1210 source = "registry+https://github.com/rust-lang/crates.io-index" 1212 - checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245" 1211 + checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba" 1213 1212 dependencies = [ 1214 1213 "libc", 1215 1214 "windows-sys 0.52.0", ··· 1228 1227 1229 1228 [[package]] 1230 1229 name = "event-listener-strategy" 1231 - version = "0.5.1" 1230 + version = "0.5.2" 1232 1231 source = "registry+https://github.com/rust-lang/crates.io-index" 1233 - checksum = "332f51cb23d20b0de8458b86580878211da09bcd4503cb579c225b3d124cabb3" 1232 + checksum = "0f214dc438f977e6d4e3500aaa277f5ad94ca83fbbd9b1a15713ce2344ccc5a1" 1234 1233 dependencies = [ 1235 1234 "event-listener", 1236 1235 "pin-project-lite", ··· 1238 1237 1239 1238 [[package]] 1240 1239 name = "fastrand" 1241 - version = "2.0.2" 1240 + version = "2.1.0" 1242 1241 source = "registry+https://github.com/rust-lang/crates.io-index" 1243 - checksum = "658bd65b1cf4c852a3cc96f18a8ce7b5640f6b703f905c7d74532294c2a63984" 1242 + checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a" 1244 1243 1245 1244 [[package]] 1246 1245 name = "fdeflate" ··· 1420 1419 dependencies = [ 1421 1420 "proc-macro2", 1422 1421 "quote", 1423 - "syn 2.0.58", 1422 + "syn 2.0.61", 1424 1423 ] 1425 1424 1426 1425 [[package]] ··· 1465 1464 1466 1465 [[package]] 1467 1466 name = "getrandom" 1468 - version = "0.2.14" 1467 + version = "0.2.15" 1469 1468 source = "registry+https://github.com/rust-lang/crates.io-index" 1470 - checksum = "94b22e06ecb0110981051723910cbf0b5f5e09a2062dd7663334ee79a9d1286c" 1469 + checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7" 1471 1470 dependencies = [ 1472 1471 "cfg-if", 1473 1472 "js-sys", ··· 1577 1576 1578 1577 [[package]] 1579 1578 name = "hashbrown" 1580 - version = "0.14.3" 1579 + version = "0.14.5" 1581 1580 source = "registry+https://github.com/rust-lang/crates.io-index" 1582 - checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604" 1581 + checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" 1583 1582 1584 1583 [[package]] 1585 1584 name = "heck" ··· 1806 1805 ] 1807 1806 1808 1807 [[package]] 1809 - name = "image" 1810 - version = "0.24.9" 1811 - source = "registry+https://github.com/rust-lang/crates.io-index" 1812 - checksum = "5690139d2f55868e080017335e4b94cb7414274c74f1669c84fb5feba2c9f69d" 1813 - dependencies = [ 1814 - "bytemuck", 1815 - "byteorder", 1816 - "color_quant", 1817 - "num-traits", 1818 - ] 1819 - 1820 - [[package]] 1821 1808 name = "imagesize" 1822 1809 version = "0.11.0" 1823 1810 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1830 1817 checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26" 1831 1818 dependencies = [ 1832 1819 "equivalent", 1833 - "hashbrown 0.14.3", 1820 + "hashbrown 0.14.5", 1834 1821 "serde", 1835 1822 ] 1836 1823 ··· 1971 1958 1972 1959 [[package]] 1973 1960 name = "jobserver" 1974 - version = "0.1.28" 1961 + version = "0.1.31" 1975 1962 source = "registry+https://github.com/rust-lang/crates.io-index" 1976 - checksum = "ab46a6e9526ddef3ae7f787c06f0f2600639ba80ea3eade3d8e670a2230f51d6" 1963 + checksum = "d2b099aaa34a9751c5bf0878add70444e1ed2dd73f347be99003d4577277de6e" 1977 1964 dependencies = [ 1978 1965 "libc", 1979 1966 ] ··· 2029 2016 2030 2017 [[package]] 2031 2018 name = "libc" 2032 - version = "0.2.153" 2019 + version = "0.2.154" 2033 2020 source = "registry+https://github.com/rust-lang/crates.io-index" 2034 - checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd" 2021 + checksum = "ae743338b92ff9146ce83992f766a31066a91a8c84a45e0e9f21e7cf6de6d346" 2035 2022 2036 2023 [[package]] 2037 2024 name = "libgit2-sys" ··· 2117 2104 2118 2105 [[package]] 2119 2106 name = "lock_api" 2120 - version = "0.4.11" 2107 + version = "0.4.12" 2121 2108 source = "registry+https://github.com/rust-lang/crates.io-index" 2122 - checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45" 2109 + checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17" 2123 2110 dependencies = [ 2124 2111 "autocfg", 2125 2112 "scopeguard", ··· 2231 2218 dependencies = [ 2232 2219 "proc-macro2", 2233 2220 "quote", 2234 - "syn 2.0.58", 2221 + "syn 2.0.61", 2235 2222 ] 2236 2223 2237 2224 [[package]] ··· 2340 2327 2341 2328 [[package]] 2342 2329 name = "num-traits" 2343 - version = "0.2.18" 2330 + version = "0.2.19" 2344 2331 source = "registry+https://github.com/rust-lang/crates.io-index" 2345 - checksum = "da0df0e5185db44f69b44f26786fe401b6c293d1907744beaa7fa62b2e5a517a" 2332 + checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" 2346 2333 dependencies = [ 2347 2334 "autocfg", 2348 2335 ] ··· 2355 2342 dependencies = [ 2356 2343 "hermit-abi", 2357 2344 "libc", 2358 - ] 2359 - 2360 - [[package]] 2361 - name = "num_enum" 2362 - version = "0.7.2" 2363 - source = "registry+https://github.com/rust-lang/crates.io-index" 2364 - checksum = "02339744ee7253741199f897151b38e72257d13802d4ee837285cc2990a90845" 2365 - dependencies = [ 2366 - "num_enum_derive", 2367 - ] 2368 - 2369 - [[package]] 2370 - name = "num_enum_derive" 2371 - version = "0.7.2" 2372 - source = "registry+https://github.com/rust-lang/crates.io-index" 2373 - checksum = "681030a937600a36906c185595136d26abfebb4aa9c65701cefcaf8578bb982b" 2374 - dependencies = [ 2375 - "proc-macro-crate", 2376 - "proc-macro2", 2377 - "quote", 2378 - "syn 2.0.58", 2379 2345 ] 2380 2346 2381 2347 [[package]] ··· 2478 2444 2479 2445 [[package]] 2480 2446 name = "parking_lot" 2481 - version = "0.12.1" 2447 + version = "0.12.2" 2482 2448 source = "registry+https://github.com/rust-lang/crates.io-index" 2483 - checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" 2449 + checksum = "7e4af0ca4f6caed20e900d564c242b8e5d4903fdacf31d3daf527b66fe6f42fb" 2484 2450 dependencies = [ 2485 2451 "lock_api", 2486 - "parking_lot_core 0.9.9", 2452 + "parking_lot_core 0.9.10", 2487 2453 ] 2488 2454 2489 2455 [[package]] ··· 2502 2468 2503 2469 [[package]] 2504 2470 name = "parking_lot_core" 2505 - version = "0.9.9" 2471 + version = "0.9.10" 2506 2472 source = "registry+https://github.com/rust-lang/crates.io-index" 2507 - checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e" 2473 + checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8" 2508 2474 dependencies = [ 2509 2475 "cfg-if", 2510 2476 "libc", 2511 - "redox_syscall 0.4.1", 2477 + "redox_syscall 0.5.1", 2512 2478 "smallvec", 2513 - "windows-targets 0.48.5", 2479 + "windows-targets 0.52.5", 2514 2480 ] 2515 2481 2516 2482 [[package]] 2517 2483 name = "paste" 2518 - version = "1.0.14" 2484 + version = "1.0.15" 2519 2485 source = "registry+https://github.com/rust-lang/crates.io-index" 2520 - checksum = "de3145af08024dea9fa9914f381a17b8fc6034dfb00f3a84013f7ff43f29ed4c" 2486 + checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a" 2521 2487 2522 2488 [[package]] 2523 2489 name = "path-absolutize" ··· 2562 2528 version = "0.4.2" 2563 2529 dependencies = [ 2564 2530 "derivative", 2565 - "indexmap", 2566 2531 "insta", 2567 2532 "log", 2568 2533 "once_cell", ··· 2578 2543 "unicode-width", 2579 2544 "url", 2580 2545 "uv-fs", 2581 - "uv-git", 2582 2546 "uv-normalize", 2583 2547 ] 2584 2548 ··· 2590 2554 2591 2555 [[package]] 2592 2556 name = "pest" 2593 - version = "2.7.8" 2557 + version = "2.7.10" 2594 2558 source = "registry+https://github.com/rust-lang/crates.io-index" 2595 - checksum = "56f8023d0fb78c8e03784ea1c7f3fa36e68a723138990b8d5a47d916b651e7a8" 2559 + checksum = "560131c633294438da9f7c4b08189194b20946c8274c6b9e38881a7874dc8ee8" 2596 2560 dependencies = [ 2597 2561 "memchr", 2598 2562 "thiserror", ··· 2601 2565 2602 2566 [[package]] 2603 2567 name = "pest_derive" 2604 - version = "2.7.8" 2568 + version = "2.7.10" 2605 2569 source = "registry+https://github.com/rust-lang/crates.io-index" 2606 - checksum = "b0d24f72393fd16ab6ac5738bc33cdb6a9aa73f8b902e8fe29cf4e67d7dd1026" 2570 + checksum = "26293c9193fbca7b1a3bf9b79dc1e388e927e6cacaa78b4a3ab705a1d3d41459" 2607 2571 dependencies = [ 2608 2572 "pest", 2609 2573 "pest_generator", ··· 2611 2575 2612 2576 [[package]] 2613 2577 name = "pest_generator" 2614 - version = "2.7.8" 2578 + version = "2.7.10" 2615 2579 source = "registry+https://github.com/rust-lang/crates.io-index" 2616 - checksum = "fdc17e2a6c7d0a492f0158d7a4bd66cc17280308bbaff78d5bef566dca35ab80" 2580 + checksum = "3ec22af7d3fb470a85dd2ca96b7c577a1eb4ef6f1683a9fe9a8c16e136c04687" 2617 2581 dependencies = [ 2618 2582 "pest", 2619 2583 "pest_meta", 2620 2584 "proc-macro2", 2621 2585 "quote", 2622 - "syn 2.0.58", 2586 + "syn 2.0.61", 2623 2587 ] 2624 2588 2625 2589 [[package]] 2626 2590 name = "pest_meta" 2627 - version = "2.7.8" 2591 + version = "2.7.10" 2628 2592 source = "registry+https://github.com/rust-lang/crates.io-index" 2629 - checksum = "934cd7631c050f4674352a6e835d5f6711ffbfb9345c2fc0107155ac495ae293" 2593 + checksum = "d7a240022f37c361ec1878d646fc5b7d7c4d28d5946e1a80ad5a7a4f4ca0bdcd" 2630 2594 dependencies = [ 2631 2595 "once_cell", 2632 2596 "pest", ··· 2635 2599 2636 2600 [[package]] 2637 2601 name = "petgraph" 2638 - version = "0.6.4" 2602 + version = "0.6.5" 2639 2603 source = "registry+https://github.com/rust-lang/crates.io-index" 2640 - checksum = "e1d3afd2628e69da2be385eb6f2fd57c8ac7977ceeff6dc166ff1657b0e386a9" 2604 + checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db" 2641 2605 dependencies = [ 2642 2606 "fixedbitset", 2643 2607 "indexmap", ··· 2666 2630 dependencies = [ 2667 2631 "proc-macro2", 2668 2632 "quote", 2669 - "syn 2.0.58", 2633 + "syn 2.0.61", 2670 2634 ] 2671 2635 2672 2636 [[package]] ··· 2793 2757 ] 2794 2758 2795 2759 [[package]] 2796 - name = "proc-macro-crate" 2797 - version = "3.1.0" 2798 - source = "registry+https://github.com/rust-lang/crates.io-index" 2799 - checksum = "6d37c51ca738a55da99dc0c4a34860fd675453b8b36209178c2249bb13651284" 2800 - dependencies = [ 2801 - "toml_edit 0.21.1", 2802 - ] 2803 - 2804 - [[package]] 2805 2760 name = "proc-macro2" 2806 - version = "1.0.79" 2761 + version = "1.0.82" 2807 2762 source = "registry+https://github.com/rust-lang/crates.io-index" 2808 - checksum = "e835ff2298f5721608eb1a980ecaee1aef2c132bf95ecc026a11b7bf3c01c02e" 2763 + checksum = "8ad3d49ab951a01fbaafe34f2ec74122942fe18a3f9814c3268f1bb72042131b" 2809 2764 dependencies = [ 2810 2765 "unicode-ident", 2811 2766 ] ··· 2852 2807 "indoc", 2853 2808 "libc", 2854 2809 "memoffset 0.9.1", 2855 - "parking_lot 0.12.1", 2810 + "parking_lot 0.11.2", 2856 2811 "portable-atomic", 2857 2812 "pyo3-build-config", 2858 2813 "pyo3-ffi", ··· 2900 2855 "proc-macro2", 2901 2856 "pyo3-macros-backend", 2902 2857 "quote", 2903 - "syn 2.0.58", 2858 + "syn 2.0.61", 2904 2859 ] 2905 2860 2906 2861 [[package]] ··· 2913 2868 "proc-macro2", 2914 2869 "pyo3-build-config", 2915 2870 "quote", 2916 - "syn 2.0.58", 2871 + "syn 2.0.61", 2917 2872 ] 2918 2873 2919 2874 [[package]] ··· 3041 2996 ] 3042 2997 3043 2998 [[package]] 2999 + name = "redox_syscall" 3000 + version = "0.5.1" 3001 + source = "registry+https://github.com/rust-lang/crates.io-index" 3002 + checksum = "469052894dcb553421e483e4209ee581a45100d31b4018de03e5a7ad86374a7e" 3003 + dependencies = [ 3004 + "bitflags 2.5.0", 3005 + ] 3006 + 3007 + [[package]] 3044 3008 name = "redox_users" 3045 3009 version = "0.4.5" 3046 3010 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 3126 3090 "indoc", 3127 3091 "insta", 3128 3092 "itertools 0.12.1", 3129 - "pep440_rs", 3130 3093 "pep508_rs", 3131 3094 "regex", 3132 3095 "reqwest", 3133 3096 "reqwest-middleware", 3134 - "serde", 3135 3097 "tempfile", 3136 3098 "test-case", 3137 3099 "thiserror", ··· 3194 3156 3195 3157 [[package]] 3196 3158 name = "reqwest-middleware" 3197 - version = "0.3.0" 3159 + version = "0.3.1" 3198 3160 source = "registry+https://github.com/rust-lang/crates.io-index" 3199 - checksum = "0209efb52486ad88136190094ee214759ef7507068b27992256ed6610eb71a01" 3161 + checksum = "a45d100244a467870f6cb763c4484d010a6bed6bd610b3676e3825d93fb4cfbd" 3200 3162 dependencies = [ 3201 3163 "anyhow", 3202 3164 "async-trait", ··· 3373 3335 3374 3336 [[package]] 3375 3337 name = "rustc-demangle" 3376 - version = "0.1.23" 3338 + version = "0.1.24" 3377 3339 source = "registry+https://github.com/rust-lang/crates.io-index" 3378 - checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" 3340 + checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f" 3379 3341 3380 3342 [[package]] 3381 3343 name = "rustc-hash" ··· 3385 3347 3386 3348 [[package]] 3387 3349 name = "rustix" 3388 - version = "0.38.32" 3350 + version = "0.38.34" 3389 3351 source = "registry+https://github.com/rust-lang/crates.io-index" 3390 - checksum = "65e04861e65f21776e67888bfbea442b3642beaa0138fdb1dd7a84a52dffdb89" 3352 + checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f" 3391 3353 dependencies = [ 3392 3354 "bitflags 2.5.0", 3393 3355 "errno", ··· 3398 3360 3399 3361 [[package]] 3400 3362 name = "rustls" 3401 - version = "0.22.3" 3363 + version = "0.22.4" 3402 3364 source = "registry+https://github.com/rust-lang/crates.io-index" 3403 - checksum = "99008d7ad0bbbea527ec27bddbc0e432c5b87d8175178cee68d2eec9c4a1813c" 3365 + checksum = "bf4ef73721ac7bcd79b2b315da7779d8fc09718c6b3d2d1b2d94850eb8c18432" 3404 3366 dependencies = [ 3405 3367 "log", 3406 3368 "ring", ··· 3435 3397 3436 3398 [[package]] 3437 3399 name = "rustls-pki-types" 3438 - version = "1.4.1" 3400 + version = "1.7.0" 3439 3401 source = "registry+https://github.com/rust-lang/crates.io-index" 3440 - checksum = "ecd36cc4259e3e4514335c4a138c6b43171a8d61d8f5c9348f9fc7529416f247" 3402 + checksum = "976295e77ce332211c0d24d92c0e83e50f5c5f046d11082cea19f3df13a3562d" 3441 3403 3442 3404 [[package]] 3443 3405 name = "rustls-webpki" 3444 - version = "0.102.2" 3406 + version = "0.102.3" 3445 3407 source = "registry+https://github.com/rust-lang/crates.io-index" 3446 - checksum = "faaa0a62740bedb9b2ef5afa303da42764c012f743917351dc9a237ea1663610" 3408 + checksum = "f3bce581c0dd41bce533ce695a1437fa16a7ab5ac3ccfa99fe1a620a7885eabf" 3447 3409 dependencies = [ 3448 3410 "ring", 3449 3411 "rustls-pki-types", ··· 3468 3430 3469 3431 [[package]] 3470 3432 name = "ryu" 3471 - version = "1.0.17" 3433 + version = "1.0.18" 3472 3434 source = "registry+https://github.com/rust-lang/crates.io-index" 3473 - checksum = "e86697c916019a8588c99b5fac3cead74ec0b4b819707a682fd4d23fa0ce1ba1" 3435 + checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" 3474 3436 3475 3437 [[package]] 3476 3438 name = "same-file" ··· 3492 3454 3493 3455 [[package]] 3494 3456 name = "schemars" 3495 - version = "0.8.17" 3457 + version = "0.8.19" 3496 3458 source = "registry+https://github.com/rust-lang/crates.io-index" 3497 - checksum = "7f55c82c700538496bdc329bb4918a81f87cc8888811bd123cf325a0f2f8d309" 3459 + checksum = "fc6e7ed6919cb46507fb01ff1654309219f62b4d603822501b0b80d42f6f21ef" 3498 3460 dependencies = [ 3499 3461 "dyn-clone", 3500 3462 "schemars_derive", ··· 3505 3467 3506 3468 [[package]] 3507 3469 name = "schemars_derive" 3508 - version = "0.8.17" 3470 + version = "0.8.19" 3509 3471 source = "registry+https://github.com/rust-lang/crates.io-index" 3510 - checksum = "83263746fe5e32097f06356968a077f96089739c927a61450efa069905eec108" 3472 + checksum = "185f2b7aa7e02d418e453790dde16890256bbd2bcd04b7dc5348811052b53f49" 3511 3473 dependencies = [ 3512 3474 "proc-macro2", 3513 3475 "quote", 3514 3476 "serde_derive_internals", 3515 - "syn 2.0.58", 3477 + "syn 2.0.61", 3516 3478 ] 3517 3479 3518 3480 [[package]] ··· 3529 3491 3530 3492 [[package]] 3531 3493 name = "security-framework" 3532 - version = "2.10.0" 3494 + version = "2.11.0" 3533 3495 source = "registry+https://github.com/rust-lang/crates.io-index" 3534 - checksum = "770452e37cad93e0a50d5abc3990d2bc351c36d0328f86cefec2f2fb206eaef6" 3496 + checksum = "c627723fd09706bacdb5cf41499e95098555af3c3c29d014dc3c458ef6be11c0" 3535 3497 dependencies = [ 3536 - "bitflags 1.3.2", 3498 + "bitflags 2.5.0", 3537 3499 "core-foundation", 3538 3500 "core-foundation-sys", 3539 3501 "libc", ··· 3542 3504 3543 3505 [[package]] 3544 3506 name = "security-framework-sys" 3545 - version = "2.10.0" 3507 + version = "2.11.0" 3546 3508 source = "registry+https://github.com/rust-lang/crates.io-index" 3547 - checksum = "41f3cc463c0ef97e11c3461a9d3787412d30e8e7eb907c79180c4a57bf7c04ef" 3509 + checksum = "317936bbbd05227752583946b9e66d7ce3b489f84e11a94a510b4437fef407d7" 3548 3510 dependencies = [ 3549 3511 "core-foundation-sys", 3550 3512 "libc", ··· 3552 3514 3553 3515 [[package]] 3554 3516 name = "semver" 3555 - version = "1.0.22" 3517 + version = "1.0.23" 3556 3518 source = "registry+https://github.com/rust-lang/crates.io-index" 3557 - checksum = "92d43fe69e652f3df9bdc2b85b2854a0825b86e4fb76bc44d945137d053639ca" 3519 + checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b" 3558 3520 3559 3521 [[package]] 3560 3522 name = "serde" 3561 - version = "1.0.200" 3523 + version = "1.0.201" 3562 3524 source = "registry+https://github.com/rust-lang/crates.io-index" 3563 - checksum = "ddc6f9cc94d67c0e21aaf7eda3a010fd3af78ebf6e096aa6e2e13c79749cce4f" 3525 + checksum = "780f1cebed1629e4753a1a38a3c72d30b97ec044f0aef68cb26650a3c5cf363c" 3564 3526 dependencies = [ 3565 3527 "serde_derive", 3566 3528 ] 3567 3529 3568 3530 [[package]] 3569 3531 name = "serde_derive" 3570 - version = "1.0.200" 3532 + version = "1.0.201" 3571 3533 source = "registry+https://github.com/rust-lang/crates.io-index" 3572 - checksum = "856f046b9400cee3c8c94ed572ecdb752444c24528c035cd35882aad6f492bcb" 3534 + checksum = "c5e405930b9796f1c00bee880d03fc7e0bb4b9a11afc776885ffe84320da2865" 3573 3535 dependencies = [ 3574 3536 "proc-macro2", 3575 3537 "quote", 3576 - "syn 2.0.58", 3538 + "syn 2.0.61", 3577 3539 ] 3578 3540 3579 3541 [[package]] ··· 3584 3546 dependencies = [ 3585 3547 "proc-macro2", 3586 3548 "quote", 3587 - "syn 2.0.58", 3549 + "syn 2.0.61", 3588 3550 ] 3589 3551 3590 3552 [[package]] 3591 3553 name = "serde_json" 3592 - version = "1.0.116" 3554 + version = "1.0.117" 3593 3555 source = "registry+https://github.com/rust-lang/crates.io-index" 3594 - checksum = "3e17db7126d17feb94eb3fad46bf1a96b034e8aacbc2e775fe81505f8b0b2813" 3556 + checksum = "455182ea6142b14f93f4bc5320a2b31c1f266b66a4a5c858b013302a5d8cbfc3" 3595 3557 dependencies = [ 3596 3558 "itoa", 3597 3559 "ryu", ··· 3658 3620 3659 3621 [[package]] 3660 3622 name = "signal-hook-registry" 3661 - version = "1.4.1" 3623 + version = "1.4.2" 3662 3624 source = "registry+https://github.com/rust-lang/crates.io-index" 3663 - checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1" 3625 + checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1" 3664 3626 dependencies = [ 3665 3627 "libc", 3666 3628 ] ··· 3721 3683 3722 3684 [[package]] 3723 3685 name = "socket2" 3724 - version = "0.5.6" 3686 + version = "0.5.7" 3725 3687 source = "registry+https://github.com/rust-lang/crates.io-index" 3726 - checksum = "05ffd9c0a93b7543e062e759284fcf5f5e3b098501104bfbdde4d404db792871" 3688 + checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c" 3727 3689 dependencies = [ 3728 3690 "libc", 3729 3691 "windows-sys 0.52.0", ··· 3826 3788 3827 3789 [[package]] 3828 3790 name = "syn" 3829 - version = "2.0.58" 3791 + version = "2.0.61" 3830 3792 source = "registry+https://github.com/rust-lang/crates.io-index" 3831 - checksum = "44cfb93f38070beee36b3fef7d4f5a16f27751d94b187b666a5cc5e9b0d30687" 3793 + checksum = "c993ed8ccba56ae856363b1845da7266a7cb78e1d146c8a32d54b45a8b831fc9" 3832 3794 dependencies = [ 3833 3795 "proc-macro2", 3834 3796 "quote", ··· 3921 3883 "cfg-if", 3922 3884 "proc-macro2", 3923 3885 "quote", 3924 - "syn 2.0.58", 3886 + "syn 2.0.61", 3925 3887 ] 3926 3888 3927 3889 [[package]] ··· 3932 3894 dependencies = [ 3933 3895 "proc-macro2", 3934 3896 "quote", 3935 - "syn 2.0.58", 3897 + "syn 2.0.61", 3936 3898 "test-case-core", 3937 3899 ] 3938 3900 ··· 3948 3910 3949 3911 [[package]] 3950 3912 name = "test-log-macros" 3951 - version = "0.2.15" 3913 + version = "0.2.16" 3952 3914 source = "registry+https://github.com/rust-lang/crates.io-index" 3953 - checksum = "c8f546451eaa38373f549093fe9fd05e7d2bade739e2ddf834b9968621d60107" 3915 + checksum = "5999e24eaa32083191ba4e425deb75cdf25efefabe5aaccb7446dd0d4122a3f5" 3954 3916 dependencies = [ 3955 3917 "proc-macro2", 3956 3918 "quote", 3957 - "syn 2.0.58", 3919 + "syn 2.0.61", 3958 3920 ] 3959 3921 3960 3922 [[package]] ··· 3979 3941 3980 3942 [[package]] 3981 3943 name = "thiserror" 3982 - version = "1.0.59" 3944 + version = "1.0.60" 3983 3945 source = "registry+https://github.com/rust-lang/crates.io-index" 3984 - checksum = "f0126ad08bff79f29fc3ae6a55cc72352056dfff61e3ff8bb7129476d44b23aa" 3946 + checksum = "579e9083ca58dd9dcf91a9923bb9054071b9ebbd800b342194c9feb0ee89fc18" 3985 3947 dependencies = [ 3986 3948 "thiserror-impl", 3987 3949 ] 3988 3950 3989 3951 [[package]] 3990 3952 name = "thiserror-impl" 3991 - version = "1.0.59" 3953 + version = "1.0.60" 3992 3954 source = "registry+https://github.com/rust-lang/crates.io-index" 3993 - checksum = "d1cd413b5d558b4c5bf3680e324a6fa5014e7b7c067a51e69dbdf47eb7148b66" 3955 + checksum = "e2470041c06ec3ac1ab38d0356a6119054dedaea53e12fbefc0de730a1c08524" 3994 3956 dependencies = [ 3995 3957 "proc-macro2", 3996 3958 "quote", 3997 - "syn 2.0.58", 3959 + "syn 2.0.61", 3998 3960 ] 3999 3961 4000 3962 [[package]] ··· 4094 4056 "libc", 4095 4057 "mio", 4096 4058 "num_cpus", 4097 - "parking_lot 0.12.1", 4059 + "parking_lot 0.12.2", 4098 4060 "pin-project-lite", 4099 4061 "signal-hook-registry", 4100 4062 "socket2", ··· 4110 4072 dependencies = [ 4111 4073 "proc-macro2", 4112 4074 "quote", 4113 - "syn 2.0.58", 4075 + "syn 2.0.61", 4114 4076 ] 4115 4077 4116 4078 [[package]] ··· 4174 4136 "serde", 4175 4137 "serde_spanned", 4176 4138 "toml_datetime", 4177 - "toml_edit 0.22.9", 4139 + "toml_edit", 4178 4140 ] 4179 4141 4180 4142 [[package]] ··· 4188 4150 4189 4151 [[package]] 4190 4152 name = "toml_edit" 4191 - version = "0.21.1" 4153 + version = "0.22.12" 4192 4154 source = "registry+https://github.com/rust-lang/crates.io-index" 4193 - checksum = "6a8534fd7f78b5405e860340ad6575217ce99f38d4d5c8f2442cb5ecb50090e1" 4194 - dependencies = [ 4195 - "indexmap", 4196 - "toml_datetime", 4197 - "winnow 0.5.40", 4198 - ] 4199 - 4200 - [[package]] 4201 - name = "toml_edit" 4202 - version = "0.22.9" 4203 - source = "registry+https://github.com/rust-lang/crates.io-index" 4204 - checksum = "8e40bb779c5187258fd7aad0eb68cb8706a0a81fa712fbea808ab43c4b8374c4" 4155 + checksum = "d3328d4f68a705b2a4498da1d580585d39a6510f98318a2cec3018a7ec61ddef" 4205 4156 dependencies = [ 4206 4157 "indexmap", 4207 4158 "serde", 4208 4159 "serde_spanned", 4209 4160 "toml_datetime", 4210 - "winnow 0.6.5", 4161 + "winnow", 4211 4162 ] 4212 4163 4213 4164 [[package]] ··· 4258 4209 dependencies = [ 4259 4210 "proc-macro2", 4260 4211 "quote", 4261 - "syn 2.0.58", 4212 + "syn 2.0.61", 4262 4213 ] 4263 4214 4264 4215 [[package]] ··· 4531 4482 4532 4483 [[package]] 4533 4484 name = "uv" 4534 - version = "0.1.42" 4485 + version = "0.1.44" 4535 4486 dependencies = [ 4536 4487 "anstream", 4537 4488 "anyhow", ··· 4738 4689 "serde_json", 4739 4690 "tracing", 4740 4691 "uv-auth", 4741 - "uv-cache", 4742 4692 "uv-normalize", 4743 4693 ] 4744 4694 ··· 4780 4730 "uv-client", 4781 4731 "uv-configuration", 4782 4732 "uv-dispatch", 4733 + "uv-distribution", 4783 4734 "uv-fs", 4784 4735 "uv-installer", 4785 4736 "uv-interpreter", ··· 4800 4751 "futures", 4801 4752 "install-wheel-rs", 4802 4753 "itertools 0.12.1", 4803 - "pep508_rs", 4804 4754 "rustc-hash", 4805 4755 "tracing", 4806 4756 "uv-build", 4807 4757 "uv-cache", 4808 4758 "uv-client", 4809 4759 "uv-configuration", 4760 + "uv-distribution", 4810 4761 "uv-installer", 4811 4762 "uv-interpreter", 4812 4763 "uv-resolver", ··· 4887 4838 "once_cell", 4888 4839 "path-absolutize", 4889 4840 "tempfile", 4890 - "tokio", 4891 4841 "tracing", 4892 4842 "urlencoding", 4893 4843 "uv-warnings", ··· 4942 4892 "tracing", 4943 4893 "url", 4944 4894 "uv-cache", 4945 - "uv-client", 4946 4895 "uv-configuration", 4947 4896 "uv-distribution", 4948 4897 "uv-extract", 4949 4898 "uv-fs", 4899 + "uv-git", 4950 4900 "uv-interpreter", 4951 4901 "uv-normalize", 4952 - "uv-requirements", 4953 4902 "uv-types", 4954 4903 "uv-warnings", 4955 4904 "walkdir", ··· 5054 5003 "cache-key", 5055 5004 "chrono", 5056 5005 "clap", 5057 - "dashmap", 5058 5006 "derivative", 5059 5007 "distribution-filename", 5060 5008 "distribution-types", ··· 5082 5030 "thiserror", 5083 5031 "tokio", 5084 5032 "tokio-stream", 5033 + "toml", 5085 5034 "tracing", 5086 5035 "url", 5087 5036 "uv-cache", 5088 5037 "uv-client", 5089 5038 "uv-configuration", 5090 5039 "uv-distribution", 5040 + "uv-git", 5091 5041 "uv-interpreter", 5092 5042 "uv-normalize", 5093 5043 "uv-types", ··· 5104 5054 "pep440_rs", 5105 5055 "pep508_rs", 5106 5056 "pypi-types", 5107 - "requirements-txt", 5108 5057 "rustc-hash", 5109 5058 "thiserror", 5110 5059 "url", ··· 5116 5065 5117 5066 [[package]] 5118 5067 name = "uv-version" 5119 - version = "0.1.42" 5068 + version = "0.1.44" 5120 5069 5121 5070 [[package]] 5122 5071 name = "uv-virtualenv" ··· 5276 5225 "once_cell", 5277 5226 "proc-macro2", 5278 5227 "quote", 5279 - "syn 2.0.58", 5228 + "syn 2.0.61", 5280 5229 "wasm-bindgen-shared", 5281 5230 ] 5282 5231 ··· 5310 5259 dependencies = [ 5311 5260 "proc-macro2", 5312 5261 "quote", 5313 - "syn 2.0.58", 5262 + "syn 2.0.61", 5314 5263 "wasm-bindgen-backend", 5315 5264 "wasm-bindgen-shared", 5316 5265 ] ··· 5410 5359 5411 5360 [[package]] 5412 5361 name = "winapi-util" 5413 - version = "0.1.6" 5362 + version = "0.1.8" 5414 5363 source = "registry+https://github.com/rust-lang/crates.io-index" 5415 - checksum = "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596" 5364 + checksum = "4d4cc384e1e73b93bafa6fb4f1df8c41695c8a91cf9c4c64358067d15a7b6c6b" 5416 5365 dependencies = [ 5417 - "winapi", 5366 + "windows-sys 0.52.0", 5418 5367 ] 5419 5368 5420 5369 [[package]] ··· 5474 5423 dependencies = [ 5475 5424 "proc-macro2", 5476 5425 "quote", 5477 - "syn 2.0.58", 5426 + "syn 2.0.61", 5478 5427 ] 5479 5428 5480 5429 [[package]] ··· 5485 5434 dependencies = [ 5486 5435 "proc-macro2", 5487 5436 "quote", 5488 - "syn 2.0.58", 5437 + "syn 2.0.61", 5489 5438 ] 5490 5439 5491 5440 [[package]] ··· 5496 5445 dependencies = [ 5497 5446 "proc-macro2", 5498 5447 "quote", 5499 - "syn 2.0.58", 5448 + "syn 2.0.61", 5500 5449 ] 5501 5450 5502 5451 [[package]] ··· 5507 5456 dependencies = [ 5508 5457 "proc-macro2", 5509 5458 "quote", 5510 - "syn 2.0.58", 5459 + "syn 2.0.61", 5511 5460 ] 5512 5461 5513 5462 [[package]] ··· 5660 5609 5661 5610 [[package]] 5662 5611 name = "winnow" 5663 - version = "0.5.40" 5612 + version = "0.6.8" 5664 5613 source = "registry+https://github.com/rust-lang/crates.io-index" 5665 - checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876" 5666 - dependencies = [ 5667 - "memchr", 5668 - ] 5669 - 5670 - [[package]] 5671 - name = "winnow" 5672 - version = "0.6.5" 5673 - source = "registry+https://github.com/rust-lang/crates.io-index" 5674 - checksum = "dffa400e67ed5a4dd237983829e66475f0a4a26938c4b04c21baede6262215b8" 5614 + checksum = "c3c52e9c97a68071b23e836c9380edae937f17b9c4667bd021973efc689f618d" 5675 5615 dependencies = [ 5676 5616 "memchr", 5677 5617 ] ··· 5770 5710 5771 5711 [[package]] 5772 5712 name = "zip" 5773 - version = "1.1.4" 5713 + version = "1.2.3" 5774 5714 source = "registry+https://github.com/rust-lang/crates.io-index" 5775 - checksum = "9cc23c04387f4da0374be4533ad1208cbb091d5c11d070dfef13676ad6497164" 5715 + checksum = "c700ea425e148de30c29c580c1f9508b93ca57ad31c9f4e96b83c194c37a7a8f" 5776 5716 dependencies = [ 5777 5717 "arbitrary", 5778 5718 "crc32fast", ··· 5780 5720 "displaydoc", 5781 5721 "flate2", 5782 5722 "indexmap", 5783 - "num_enum", 5784 5723 "thiserror", 5785 5724 ] 5786 5725
+2 -2
pkgs/by-name/uv/uv/package.nix
··· 12 12 13 13 rustPlatform.buildRustPackage rec { 14 14 pname = "uv"; 15 - version = "0.1.42"; 15 + version = "0.1.44"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "astral-sh"; 19 19 repo = "uv"; 20 20 rev = version; 21 - hash = "sha256-yfPipwfnHAPuzQqi9Jh1FFdZ2C9pCqStIf/Yu2KxQJs="; 21 + hash = "sha256-dmUnngHMj9WSDsr8es3eX9y2e8mmNcQFJ0QHi5YQT0U="; 22 22 }; 23 23 24 24 cargoLock = {
+3 -3
pkgs/by-name/ux/uxn/package.nix
··· 7 7 8 8 stdenv.mkDerivation (finalAttrs: { 9 9 pname = "uxn"; 10 - version = "1.0-unstable-2024-05-06"; 10 + version = "1.0-unstable-2024-05-10"; 11 11 12 12 src = fetchFromSourcehut { 13 13 owner = "~rabbits"; 14 14 repo = "uxn"; 15 - rev = "3a696f8fa9931857e99e50074c6994649ee62d37"; 16 - hash = "sha256-wJUyFuF7ZCKQSa3RvklQYTDGmuQa062w5E2h0/aI0cQ="; 15 + rev = "bb57b85f5724ccabdb081ff83080c2e3e0e122f7"; 16 + hash = "sha256-S/lTa6nQ7qIIibYaLfaS4l2dEKgOwXuMryvK9j7FD9Y="; 17 17 }; 18 18 19 19 outputs = [ "out" "projects" ];
+3 -3
pkgs/by-name/ve/vencord/package.nix
··· 5 5 , buildWebExtension ? false 6 6 }: 7 7 let 8 - version = "1.8.2"; 9 - gitHash = "449f955"; 8 + version = "1.8.4"; 9 + gitHash = "a5eb55e"; 10 10 in 11 11 buildNpmPackage rec { 12 12 pname = "vencord"; ··· 16 16 owner = "Vendicated"; 17 17 repo = "Vencord"; 18 18 rev = "v${version}"; 19 - hash = "sha256-zMiote0b3Uk2P+snjYBOCGEnJEErlSUj9nW/DxFtadY="; 19 + hash = "sha256-FbU1Zsz/84oSOCOSWunA5nn5qFGLQ4W3uqsbYytF/7c="; 20 20 }; 21 21 22 22 ESBUILD_BINARY_PATH = lib.getExe (esbuild.overrideAttrs (final: _: {
+107 -71
pkgs/by-name/ve/vesktop/package.nix
··· 1 - { lib 2 - , stdenv 3 - , stdenvNoCC 4 - , fetchFromGitHub 5 - , substituteAll 6 - , makeWrapper 7 - , makeDesktopItem 8 - , copyDesktopItems 9 - , vencord 10 - , electron 11 - , libicns 12 - , jq 13 - , moreutils 14 - , cacert 15 - , nodePackages 16 - , pipewire 17 - , libpulseaudio 18 - , autoPatchelfHook 19 - , withTTS ? true 1 + { 2 + lib, 3 + stdenv, 4 + stdenvNoCC, 5 + fetchFromGitHub, 6 + substituteAll, 7 + makeWrapper, 8 + makeDesktopItem, 9 + copyDesktopItems, 10 + vencord, 11 + electron, 12 + libicns, 13 + jq, 14 + moreutils, 15 + cacert, 16 + nodePackages, 17 + pipewire, 18 + libpulseaudio, 19 + autoPatchelfHook, 20 + withTTS ? true, 20 21 # Enables the use of vencord from nixpkgs instead of 21 22 # letting vesktop manage it's own version 22 - , withSystemVencord ? true 23 + withSystemVencord ? false, 23 24 }: 24 25 stdenv.mkDerivation (finalAttrs: { 25 26 pname = "vesktop"; ··· 38 39 assert lib.versionAtLeast nodePackages.pnpm.version "8.10.0"; 39 40 stdenvNoCC.mkDerivation { 40 41 pname = "${finalAttrs.pname}-pnpm-deps"; 41 - inherit (finalAttrs) src version patches ELECTRON_SKIP_BINARY_DOWNLOAD; 42 + inherit (finalAttrs) 43 + src 44 + version 45 + patches 46 + ELECTRON_SKIP_BINARY_DOWNLOAD 47 + ; 42 48 43 49 nativeBuildInputs = [ 50 + cacert 44 51 jq 45 52 moreutils 46 53 nodePackages.pnpm 47 - cacert 48 54 ]; 49 55 50 - pnpmPatch = builtins.toJSON { 51 - pnpm.supportedArchitectures = { 52 - os = [ "linux" ]; 53 - cpu = [ "x64" "arm64" ]; 54 - }; 55 - }; 56 - 57 - postPatch = '' 58 - mv package.json package.json.orig 59 - jq --raw-output ". * $pnpmPatch" package.json.orig > package.json 60 - ''; 61 - 62 - # https://github.com/NixOS/nixpkgs/blob/763e59ffedb5c25774387bf99bc725df5df82d10/pkgs/applications/misc/pot/default.nix#L56 56 + # inspired by https://github.com/NixOS/nixpkgs/blob/763e59ffedb5c25774387bf99bc725df5df82d10/pkgs/applications/misc/pot/default.nix#L56 57 + # and based on https://github.com/NixOS/nixpkgs/pull/290715 63 58 installPhase = '' 64 - export HOME=$(mktemp -d) 59 + runHook preInstall 65 60 61 + export HOME=$(mktemp -d) 66 62 pnpm config set store-dir $out 67 - pnpm install --frozen-lockfile --ignore-script 63 + # Some packages produce platform dependent outputs. We do not want to cache those in the global store 64 + pnpm config set side-effects-cache false 65 + # pnpm is going to warn us about using --force 66 + # --force allows us to fetch all dependencies including ones that aren't meant for our host platform 67 + pnpm install --force --frozen-lockfile --ignore-script 68 + 69 + ''; 68 70 71 + fixupPhase = '' 72 + runHook preFixup 73 + 74 + # Remove timestamp and sort the json files 69 75 rm -rf $out/v3/tmp 70 76 for f in $(find $out -name "*.json"); do 71 77 sed -i -E -e 's/"checkedAt":[0-9]+,//g' $f 72 78 jq --sort-keys . $f | sponge $f 73 79 done 80 + 81 + runHook postFixup 74 82 ''; 75 83 84 + dontConfigure = true; 76 85 dontBuild = true; 77 - dontFixup = true; 78 86 outputHashMode = "recursive"; 79 - outputHash = "sha256-6ezEBeYmK5va3gCh00YnJzZ77V/Ql7A3l/+csohkz68="; 87 + outputHash = "sha256-PogE8uf3W5cKSCqFHMz7FOvT7ONUP4FiFWGBgtk3UC8="; 80 88 }; 81 89 82 90 nativeBuildInputs = [ 91 + autoPatchelfHook 83 92 copyDesktopItems 93 + makeWrapper 84 94 nodePackages.pnpm 85 95 nodePackages.nodejs 86 - makeWrapper 87 - autoPatchelfHook 88 96 ]; 89 97 90 98 buildInputs = [ 91 - pipewire 92 99 libpulseaudio 100 + pipewire 93 101 stdenv.cc.cc.lib 94 102 ]; 95 103 96 - patches = [ 97 - ./disable_update_checking.patch 98 - ] ++ lib.optional withSystemVencord (substituteAll { inherit vencord; src = ./use_system_vencord.patch; }); 104 + patches = 105 + [ ./disable_update_checking.patch ] 106 + ++ lib.optional withSystemVencord (substituteAll { 107 + inherit vencord; 108 + src = ./use_system_vencord.patch; 109 + }); 99 110 100 111 ELECTRON_SKIP_BINARY_DOWNLOAD = 1; 101 112 102 - preBuild = '' 113 + configurePhase = '' 114 + runHook preConfigure 115 + 103 116 export HOME=$(mktemp -d) 104 117 export STORE_PATH=$(mktemp -d) 105 118 ··· 107 120 chmod -R +w "$STORE_PATH" 108 121 109 122 pnpm config set store-dir "$STORE_PATH" 110 - pnpm install --offline --frozen-lockfile --ignore-script 123 + pnpm install --frozen-lockfile --ignore-script --offline 111 124 patchShebangs node_modules/{*,.*} 125 + 126 + runHook postConfigure 112 127 ''; 113 128 114 - postBuild = '' 129 + buildPhase = '' 130 + runHook preBuild 131 + 115 132 pnpm build 116 133 # using `pnpm exec` here apparently makes it ignore ELECTRON_SKIP_BINARY_DOWNLOAD 117 134 ./node_modules/.bin/electron-builder \ ··· 119 136 -c.asarUnpack="**/*.node" \ 120 137 -c.electronDist=${electron}/libexec/electron \ 121 138 -c.electronVersion=${electron.version} 139 + 140 + runHook postBuild 122 141 ''; 123 142 124 143 # this is consistent with other nixpkgs electron packages and upstream, as far as I am aware 125 - installPhase = 126 - '' 127 - runHook preInstall 144 + installPhase = '' 145 + runHook preInstall 128 146 129 - mkdir -p $out/opt/Vesktop 130 - cp -r dist/linux-*unpacked/resources $out/opt/Vesktop/ 147 + mkdir -p $out/opt/Vesktop 148 + cp -r dist/linux-*unpacked/resources $out/opt/Vesktop/ 131 149 132 - pushd build 133 - ${libicns}/bin/icns2png -x icon.icns 134 - for file in icon_*x32.png; do 135 - file_suffix=''${file//icon_} 136 - install -Dm0644 $file $out/share/icons/hicolor/''${file_suffix//x32.png}/apps/vesktop.png 137 - done 150 + pushd build 151 + ${libicns}/bin/icns2png -x icon.icns 152 + for file in icon_*x32.png; do 153 + file_suffix=''${file//icon_} 154 + install -Dm0644 $file $out/share/icons/hicolor/''${file_suffix//x32.png}/apps/vesktop.png 155 + done 138 156 139 - makeWrapper ${electron}/bin/electron $out/bin/vesktop \ 140 - --add-flags $out/opt/Vesktop/resources/app.asar \ 141 - ${lib.optionalString withTTS "--add-flags \"--enable-speech-dispatcher\""} \ 142 - --add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--ozone-platform-hint=auto --enable-features=WaylandWindowDecorations --enable-wayland-ime}}" 157 + makeWrapper ${electron}/bin/electron $out/bin/vesktop \ 158 + --add-flags $out/opt/Vesktop/resources/app.asar \ 159 + ${lib.optionalString withTTS "--add-flags \"--enable-speech-dispatcher\""} \ 160 + --add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--ozone-platform-hint=auto --enable-features=WaylandWindowDecorations --enable-wayland-ime}}" 143 161 144 - runHook postInstall 145 - ''; 162 + runHook postInstall 163 + ''; 146 164 147 165 desktopItems = [ 148 166 (makeDesktopItem { ··· 152 170 icon = "vesktop"; 153 171 startupWMClass = "Vesktop"; 154 172 genericName = "Internet Messenger"; 155 - keywords = [ "discord" "vencord" "electron" "chat" ]; 156 - categories = [ "Network" "InstantMessaging" "Chat" ]; 173 + keywords = [ 174 + "discord" 175 + "vencord" 176 + "electron" 177 + "chat" 178 + ]; 179 + categories = [ 180 + "Network" 181 + "InstantMessaging" 182 + "Chat" 183 + ]; 157 184 }) 158 185 ]; 159 186 ··· 161 188 inherit (finalAttrs) pnpmDeps; 162 189 }; 163 190 164 - meta = with lib; { 191 + meta = { 165 192 description = "An alternate client for Discord with Vencord built-in"; 166 193 homepage = "https://github.com/Vencord/Vesktop"; 167 - license = licenses.gpl3Only; 168 - maintainers = with maintainers; [ getchoo Scrumplex vgskye pluiedev ]; 169 - platforms = [ "x86_64-linux" "aarch64-linux" ]; 194 + changelog = "https://github.com/Vencord/Vesktop/releases/tag/${finalAttrs.src.rev}"; 195 + license = lib.licenses.gpl3Only; 196 + maintainers = with lib.maintainers; [ 197 + getchoo 198 + Scrumplex 199 + vgskye 200 + pluiedev 201 + ]; 202 + platforms = [ 203 + "x86_64-linux" 204 + "aarch64-linux" 205 + ]; 170 206 mainProgram = "vesktop"; 171 207 }; 172 208 })
+4 -3
pkgs/by-name/vi/vieb/package.nix
··· 2 2 3 3 buildNpmPackage rec { 4 4 pname = "vieb"; 5 - version = "11.0.0"; 5 + version = "12.0.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "Jelmerro"; 9 9 repo = pname; 10 10 rev = version; 11 - hash = "sha256-OBOxT2leZYD3td1+PJdLv7Nph/gY6U9tVC7b/fUmUJw="; 11 + hash = "sha256-/gMAGmTsaS9B0qHXHq2Z/77LgcAMKjF6Mt7OiJ9l4wU="; 12 12 }; 13 13 14 14 postPatch = '' 15 15 sed -i '/"electron"/d' package.json 16 16 ''; 17 17 18 - npmDepsHash = "sha256-vgp20qVT4JZ7U24uu9ZPkveXchMNcdbljodALAMAu9s="; 18 + npmDepsHash = "sha256-sGDygjb9+tIBHykMUb3UGZrCF8btkFVObTdyx4Y3Q2c="; 19 19 makeCacheWritable = true; 20 20 dontNpmBuild = true; 21 + env.ELECTRON_SKIP_BINARY_DOWNLOAD = 1; 21 22 22 23 nativeBuildInputs = [ makeWrapper ] ++ lib.optional stdenv.isAarch64 python3; 23 24
+1
pkgs/by-name/wo/wowup-cf/package.nix
··· 27 27 longDescription = '' 28 28 WowUp is the community centered World of Warcraft addon updater. We attempt to bring the addon community together in an easy to use updater application. We have an ever growing list of supported features. 29 29 ''; 30 + mainProgram = "wowup-cf"; 30 31 homepage = "https://wowup.io/"; 31 32 downloadPage = "https://github.com/WowUp/WowUp.CF/releases"; 32 33 license = licenses.unfree;
+83 -74
pkgs/by-name/xe/xemu/package.nix
··· 1 - { lib 2 - , SDL2 3 - , SDL2_image 4 - , copyDesktopItems 5 - , fetchFromGitHub 6 - , gettext 7 - , glib 8 - , gtk3 9 - , libGLU 10 - , libdrm 11 - , libepoxy 12 - , libpcap 13 - , libsamplerate 14 - , libslirp 15 - , makeDesktopItem 16 - , mesa 17 - , meson 18 - , ninja 19 - , openssl 20 - , perl 21 - , pkg-config 22 - , python3Packages 23 - , stdenv 24 - , vte 25 - , which 26 - , wrapGAppsHook3 1 + { 2 + lib, 3 + SDL2, 4 + SDL2_image, 5 + fetchFromGitHub, 6 + gettext, 7 + glib, 8 + gtk3, 9 + libGLU, 10 + libdrm, 11 + libepoxy, 12 + libpcap, 13 + libsamplerate, 14 + libslirp, 15 + mesa, 16 + meson, 17 + ninja, 18 + openssl, 19 + perl, 20 + pkg-config, 21 + python3Packages, 22 + stdenv, 23 + vte, 24 + which, 25 + wrapGAppsHook3, 27 26 }: 28 27 29 28 stdenv.mkDerivation (finalAttrs: { ··· 38 37 hash = "sha256-VcztVzG/IN9N0SVKj6BipyqnhxXC2nTTuMjKMtFKzGw="; 39 38 }; 40 39 41 - nativeBuildInputs = [ 42 - copyDesktopItems 43 - meson 44 - ninja 45 - perl 46 - pkg-config 47 - which 48 - wrapGAppsHook3 49 - ] ++ (with python3Packages; [ 50 - python 51 - pyyaml 52 - ]); 40 + nativeBuildInputs = 41 + [ 42 + SDL2 43 + meson 44 + ninja 45 + perl 46 + pkg-config 47 + which 48 + wrapGAppsHook3 49 + ] 50 + ++ (with python3Packages; [ 51 + python 52 + pyyaml 53 + ]); 53 54 54 55 buildInputs = [ 55 56 SDL2 ··· 68 69 vte 69 70 ]; 70 71 71 - separateDebugInfo = true; 72 - 73 - dontUseMesonConfigure = true; 74 - 75 - setOutputFlags = false; 76 - 77 72 configureFlags = [ 78 73 "--disable-strip" 79 74 "--meson=meson" ··· 83 78 84 79 buildFlags = [ "qemu-system-i386" ]; 85 80 86 - desktopItems = [ 87 - (makeDesktopItem { 88 - name = "xemu"; 89 - desktopName = "xemu"; 90 - exec = "xemu"; 91 - icon = "xemu"; 92 - }) 93 - ]; 81 + separateDebugInfo = true; 82 + 83 + dontUseMesonConfigure = true; 84 + 85 + setOutputFlags = false; 86 + 87 + strictDeps = true; 94 88 95 89 postPatch = '' 96 90 patchShebangs . ··· 98 92 --replace 'date -u' "date -d @$SOURCE_DATE_EPOCH '+%Y-%m-%d %H:%M:%S'" 99 93 ''; 100 94 101 - preConfigure = '' 102 - configureFlagsArray+=("--extra-cflags=-DXBOX=1 -Wno-error=redundant-decls") 103 - '' + 104 - # When the data below can't be obtained through git, the build process tries 105 - # to run `XEMU_COMMIT=$(cat XEMU_COMMIT)` (and similar) 106 - '' 107 - echo '${finalAttrs.version}' > XEMU_VERSION 108 - ''; 95 + preConfigure = 96 + '' 97 + configureFlagsArray+=("--extra-cflags=-DXBOX=1 -Wno-error=redundant-decls") 98 + '' 99 + + 100 + # When the data below can't be obtained through git, the build process tries 101 + # to run `XEMU_COMMIT=$(cat XEMU_COMMIT)` (and similar) 102 + '' 103 + echo '${finalAttrs.version}' > XEMU_VERSION 104 + ''; 109 105 110 106 preBuild = '' 111 107 cd build 112 108 substituteInPlace ./build.ninja --replace /usr/bin/env $(which env) 113 109 ''; 114 110 115 - installPhase = let 116 - installIcon = resolution: '' 117 - install -Dm644 -T ../ui/icons/xemu_${resolution}.png \ 118 - $out/share/icons/hicolor/${resolution}/apps/xemu.png 119 - ''; 120 - in '' 121 - runHook preInstall 111 + installPhase = 112 + let 113 + installIcon = resolution: '' 114 + install -Dm644 -T ../ui/icons/xemu_${resolution}.png \ 115 + $out/share/icons/hicolor/${resolution}/apps/xemu.png 116 + ''; 117 + in 118 + '' 119 + runHook preInstall 120 + 121 + install -Dm755 -T qemu-system-i386 $out/bin/xemu 122 + '' 123 + + (lib.concatMapStringsSep "\n" installIcon [ 124 + "16x16" 125 + "24x24" 126 + "32x32" 127 + "48x48" 128 + "128x128" 129 + "256x256" 130 + "512x512" 131 + ]) 132 + + "\n" 133 + + '' 134 + install -Dm644 -T ../ui/xemu.desktop $out/share/applications/xemu.desktop 122 135 123 - install -Dm755 -T qemu-system-i386 $out/bin/xemu 124 - '' + 125 - (lib.concatMapStringsSep "\n" installIcon 126 - [ "16x16" "24x24" "32x32" "48x48" "128x128" "256x256" "512x512" ]) + "\n" + 127 - '' 128 - runHook postInstall 129 - ''; 136 + runHook postInstall 137 + ''; 130 138 131 139 meta = { 132 140 homepage = "https://xemu.app/"; ··· 143 151 platforms = lib.platforms.linux; 144 152 }; 145 153 }) 154 + # TODO: investigate failure when using __structuredAttrs
+158 -53
pkgs/by-name/ze/zed-editor/Cargo.lock
··· 384 384 "feature_flags", 385 385 "fs", 386 386 "futures 0.3.28", 387 + "fuzzy", 387 388 "gpui", 388 389 "language", 389 390 "languages", ··· 391 392 "nanoid", 392 393 "node_runtime", 393 394 "open_ai", 395 + "picker", 394 396 "project", 395 397 "rand 0.8.5", 396 398 "release_channel", ··· 412 414 version = "0.1.0" 413 415 dependencies = [ 414 416 "anyhow", 417 + "collections", 418 + "futures 0.3.28", 415 419 "gpui", 420 + "project", 416 421 "schemars", 417 422 "serde", 418 423 "serde_json", 424 + "settings", 425 + "sum_tree", 426 + "unindent", 427 + "util", 419 428 ] 420 429 421 430 [[package]] ··· 1481 1490 [[package]] 1482 1491 name = "blade-graphics" 1483 1492 version = "0.4.0" 1484 - source = "git+https://github.com/kvark/blade?rev=e82eec97691c3acdb43494484be60d661edfebf3#e82eec97691c3acdb43494484be60d661edfebf3" 1493 + source = "git+https://github.com/kvark/blade?rev=f5766863de9dcc092e90fdbbc5e0007a99e7f9bf#f5766863de9dcc092e90fdbbc5e0007a99e7f9bf" 1485 1494 dependencies = [ 1486 1495 "ash", 1487 1496 "ash-window", ··· 1511 1520 [[package]] 1512 1521 name = "blade-macros" 1513 1522 version = "0.2.1" 1514 - source = "git+https://github.com/kvark/blade?rev=e82eec97691c3acdb43494484be60d661edfebf3#e82eec97691c3acdb43494484be60d661edfebf3" 1523 + source = "git+https://github.com/kvark/blade?rev=f5766863de9dcc092e90fdbbc5e0007a99e7f9bf#f5766863de9dcc092e90fdbbc5e0007a99e7f9bf" 1515 1524 dependencies = [ 1516 1525 "proc-macro2", 1517 1526 "quote", ··· 2272 2281 "collections", 2273 2282 "ctor", 2274 2283 "dashmap", 2284 + "dev_server_projects", 2275 2285 "editor", 2276 2286 "env_logger", 2277 2287 "envy", ··· 2279 2289 "fs", 2280 2290 "futures 0.3.28", 2281 2291 "git", 2292 + "git_hosting_providers", 2282 2293 "google_ai", 2283 2294 "gpui", 2284 2295 "headless", ··· 2301 2312 "prost", 2302 2313 "rand 0.8.5", 2303 2314 "release_channel", 2304 - "remote_projects", 2305 2315 "reqwest", 2306 2316 "rpc", 2307 2317 "rustc-demangle", ··· 2316 2326 "sha2 0.10.7", 2317 2327 "sqlx", 2318 2328 "subtle", 2329 + "supermaven_api", 2319 2330 "telemetry_events", 2320 2331 "text", 2321 2332 "theme", ··· 2344 2355 "clock", 2345 2356 "collections", 2346 2357 "db", 2358 + "dev_server_projects", 2347 2359 "editor", 2348 2360 "emojis", 2349 2361 "extensions_ui", ··· 2359 2371 "pretty_assertions", 2360 2372 "project", 2361 2373 "recent_projects", 2374 + "release_channel", 2362 2375 "rich_text", 2363 2376 "rpc", 2364 2377 "schemars", ··· 2510 2523 "async-compression", 2511 2524 "async-std", 2512 2525 "async-tar", 2526 + "client", 2513 2527 "clock", 2514 2528 "collections", 2515 2529 "command_palette_hooks", 2530 + "editor", 2516 2531 "fs", 2517 2532 "futures 0.3.28", 2518 2533 "gpui", 2534 + "indoc", 2519 2535 "language", 2520 2536 "lsp", 2537 + "menu", 2521 2538 "node_runtime", 2522 2539 "parking_lot", 2540 + "project", 2523 2541 "rpc", 2524 2542 "serde", 2543 + "serde_json", 2525 2544 "settings", 2526 2545 "smol", 2527 - "util", 2528 - ] 2529 - 2530 - [[package]] 2531 - name = "copilot_ui" 2532 - version = "0.1.0" 2533 - dependencies = [ 2534 - "anyhow", 2535 - "client", 2536 - "copilot", 2537 - "editor", 2538 - "fs", 2539 - "futures 0.3.28", 2540 - "gpui", 2541 - "indoc", 2542 - "language", 2543 - "lsp", 2544 - "menu", 2545 - "project", 2546 - "serde_json", 2547 - "settings", 2548 2546 "theme", 2549 2547 "ui", 2550 2548 "util", 2551 2549 "workspace", 2552 - "zed_actions", 2553 2550 ] 2554 2551 2555 2552 [[package]] ··· 3177 3174 ] 3178 3175 3179 3176 [[package]] 3177 + name = "dev_server_projects" 3178 + version = "0.1.0" 3179 + dependencies = [ 3180 + "anyhow", 3181 + "client", 3182 + "gpui", 3183 + "rpc", 3184 + "serde", 3185 + "serde_json", 3186 + ] 3187 + 3188 + [[package]] 3180 3189 name = "diagnostics" 3181 3190 version = "0.1.0" 3182 3191 dependencies = [ ··· 3396 3405 "smol", 3397 3406 "snippet", 3398 3407 "sum_tree", 3408 + "task", 3399 3409 "text", 3400 3410 "theme", 3401 3411 "time", ··· 4385 4395 version = "0.1.0" 4386 4396 dependencies = [ 4387 4397 "anyhow", 4398 + "async-trait", 4388 4399 "clock", 4389 4400 "collections", 4401 + "derive_more", 4390 4402 "git2", 4403 + "gpui", 4391 4404 "lazy_static", 4392 4405 "log", 4393 4406 "parking_lot", 4394 4407 "pretty_assertions", 4395 - "regex", 4396 4408 "rope", 4397 4409 "serde", 4398 4410 "serde_json", ··· 4420 4432 ] 4421 4433 4422 4434 [[package]] 4435 + name = "git_hosting_providers" 4436 + version = "0.1.0" 4437 + dependencies = [ 4438 + "anyhow", 4439 + "async-trait", 4440 + "futures 0.3.28", 4441 + "git", 4442 + "gpui", 4443 + "isahc", 4444 + "pretty_assertions", 4445 + "regex", 4446 + "serde", 4447 + "serde_json", 4448 + "unindent", 4449 + "url", 4450 + "util", 4451 + ] 4452 + 4453 + [[package]] 4423 4454 name = "glob" 4424 4455 version = "0.3.1" 4425 4456 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4467 4498 version = "0.1.0" 4468 4499 dependencies = [ 4469 4500 "anyhow", 4501 + "collections", 4470 4502 "editor", 4471 4503 "gpui", 4472 4504 "indoc", ··· 4604 4636 "wayland-client", 4605 4637 "wayland-cursor", 4606 4638 "wayland-protocols", 4639 + "wayland-protocols-plasma", 4607 4640 "windows 0.53.0", 4608 4641 "x11rb", 4609 4642 "xkbcommon", ··· 5129 5162 ] 5130 5163 5131 5164 [[package]] 5165 + name = "inline_completion_button" 5166 + version = "0.1.0" 5167 + dependencies = [ 5168 + "anyhow", 5169 + "copilot", 5170 + "editor", 5171 + "fs", 5172 + "futures 0.3.28", 5173 + "gpui", 5174 + "indoc", 5175 + "language", 5176 + "lsp", 5177 + "project", 5178 + "serde_json", 5179 + "settings", 5180 + "supermaven", 5181 + "theme", 5182 + "ui", 5183 + "util", 5184 + "workspace", 5185 + "zed_actions", 5186 + ] 5187 + 5188 + [[package]] 5132 5189 name = "inotify" 5133 5190 version = "0.9.6" 5134 5191 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 5533 5590 "anyhow", 5534 5591 "client", 5535 5592 "collections", 5593 + "copilot", 5536 5594 "editor", 5537 5595 "env_logger", 5538 5596 "futures 0.3.28", ··· 5676 5734 5677 5735 [[package]] 5678 5736 name = "libmimalloc-sys" 5679 - version = "0.1.35" 5737 + version = "0.1.37" 5680 5738 source = "registry+https://github.com/rust-lang/crates.io-index" 5681 - checksum = "3979b5c37ece694f1f5e51e7ecc871fdb0f517ed04ee45f88d15d6d553cb9664" 5739 + checksum = "81eb4061c0582dedea1cbc7aff2240300dd6982e0239d1c99e65c1dbf4a30ba7" 5682 5740 dependencies = [ 5683 5741 "cc", 5684 5742 "libc", ··· 6043 6101 6044 6102 [[package]] 6045 6103 name = "mimalloc" 6046 - version = "0.1.39" 6104 + version = "0.1.41" 6047 6105 source = "registry+https://github.com/rust-lang/crates.io-index" 6048 - checksum = "fa01922b5ea280a911e323e4d2fd24b7fe5cc4042e0d2cda3c40775cdc4bdc9c" 6106 + checksum = "9f41a2280ded0da56c8cf898babb86e8f10651a34adcfff190ae9a1159c6908d" 6049 6107 dependencies = [ 6050 6108 "libmimalloc-sys", 6051 6109 ] ··· 6787 6845 name = "outline" 6788 6846 version = "0.1.0" 6789 6847 dependencies = [ 6848 + "collections", 6790 6849 "editor", 6791 6850 "fuzzy", 6792 6851 "gpui", ··· 7406 7465 "client", 7407 7466 "clock", 7408 7467 "collections", 7409 - "copilot", 7410 7468 "env_logger", 7411 7469 "fs", 7412 7470 "futures 0.3.28", ··· 7790 7848 version = "0.1.0" 7791 7849 dependencies = [ 7792 7850 "anyhow", 7851 + "dev_server_projects", 7793 7852 "editor", 7794 7853 "feature_flags", 7795 7854 "fuzzy", ··· 7799 7858 "ordered-float 2.10.0", 7800 7859 "picker", 7801 7860 "project", 7802 - "remote_projects", 7803 7861 "rpc", 7804 7862 "serde", 7805 7863 "serde_json", ··· 7935 7993 ] 7936 7994 7937 7995 [[package]] 7938 - name = "remote_projects" 7939 - version = "0.1.0" 7940 - dependencies = [ 7941 - "anyhow", 7942 - "client", 7943 - "gpui", 7944 - "rpc", 7945 - "serde", 7946 - "serde_json", 7947 - ] 7948 - 7949 - [[package]] 7950 7996 name = "rend" 7951 7997 version = "0.4.0" 7952 7998 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 8701 8747 "sha2 0.10.7", 8702 8748 "smol", 8703 8749 "tempfile", 8750 + "theme", 8751 + "tree-sitter", 8752 + "ui", 8753 + "unindent", 8704 8754 "util", 8755 + "workspace", 8705 8756 "worktree", 8706 8757 ] 8707 8758 ··· 9589 9640 ] 9590 9641 9591 9642 [[package]] 9643 + name = "supermaven" 9644 + version = "0.1.0" 9645 + dependencies = [ 9646 + "anyhow", 9647 + "client", 9648 + "collections", 9649 + "editor", 9650 + "env_logger", 9651 + "futures 0.3.28", 9652 + "gpui", 9653 + "language", 9654 + "log", 9655 + "postage", 9656 + "project", 9657 + "serde", 9658 + "serde_json", 9659 + "settings", 9660 + "smol", 9661 + "supermaven_api", 9662 + "theme", 9663 + "ui", 9664 + "util", 9665 + ] 9666 + 9667 + [[package]] 9668 + name = "supermaven_api" 9669 + version = "0.1.0" 9670 + dependencies = [ 9671 + "anyhow", 9672 + "futures 0.3.28", 9673 + "serde", 9674 + "serde_json", 9675 + "smol", 9676 + "util", 9677 + ] 9678 + 9679 + [[package]] 9592 9680 name = "sval" 9593 9681 version = "2.8.0" 9594 9682 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 9821 9909 "futures 0.3.28", 9822 9910 "gpui", 9823 9911 "hex", 9912 + "parking_lot", 9824 9913 "schemars", 9825 9914 "serde", 9826 9915 "serde_json_lenient", ··· 9833 9922 name = "tasks_ui" 9834 9923 version = "0.1.0" 9835 9924 dependencies = [ 9836 - "anyhow", 9837 9925 "editor", 9838 9926 "file_icons", 9839 9927 "fuzzy", ··· 11726 11814 ] 11727 11815 11728 11816 [[package]] 11817 + name = "wayland-protocols-plasma" 11818 + version = "0.2.0" 11819 + source = "registry+https://github.com/rust-lang/crates.io-index" 11820 + checksum = "23803551115ff9ea9bce586860c5c5a971e360825a0309264102a9495a5ff479" 11821 + dependencies = [ 11822 + "bitflags 2.4.2", 11823 + "wayland-backend", 11824 + "wayland-client", 11825 + "wayland-protocols", 11826 + "wayland-scanner", 11827 + ] 11828 + 11829 + [[package]] 11729 11830 name = "wayland-protocols-wlr" 11730 11831 version = "0.2.0" 11731 11832 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 11792 11893 dependencies = [ 11793 11894 "anyhow", 11794 11895 "client", 11795 - "copilot_ui", 11796 11896 "db", 11797 11897 "editor", 11898 + "extensions_ui", 11798 11899 "fuzzy", 11799 11900 "gpui", 11901 + "inline_completion_button", 11800 11902 "install_cli", 11801 11903 "picker", 11802 11904 "project", ··· 12403 12505 "collections", 12404 12506 "db", 12405 12507 "derive_more", 12508 + "dev_server_projects", 12406 12509 "env_logger", 12407 12510 "fs", 12408 12511 "futures 0.3.28", ··· 12415 12518 "parking_lot", 12416 12519 "postage", 12417 12520 "project", 12418 - "remote_projects", 12419 12521 "schemars", 12420 12522 "serde", 12421 12523 "serde_json", ··· 12654 12756 12655 12757 [[package]] 12656 12758 name = "zed" 12657 - version = "0.134.4" 12759 + version = "0.135.2" 12658 12760 dependencies = [ 12659 12761 "activity_indicator", 12660 12762 "anyhow", ··· 12676 12778 "collections", 12677 12779 "command_palette", 12678 12780 "copilot", 12679 - "copilot_ui", 12680 12781 "db", 12782 + "dev_server_projects", 12681 12783 "diagnostics", 12682 12784 "editor", 12683 12785 "env_logger", ··· 12688 12790 "file_icons", 12689 12791 "fs", 12690 12792 "futures 0.3.28", 12793 + "git", 12794 + "git_hosting_providers", 12691 12795 "go_to_line", 12692 12796 "gpui", 12693 12797 "headless", 12694 12798 "image_viewer", 12799 + "inline_completion_button", 12695 12800 "install_cli", 12696 12801 "isahc", 12697 12802 "journal", ··· 12715 12820 "quick_action_bar", 12716 12821 "recent_projects", 12717 12822 "release_channel", 12718 - "remote_projects", 12719 12823 "rope", 12720 12824 "search", 12721 12825 "serde", ··· 12723 12827 "settings", 12724 12828 "simplelog", 12725 12829 "smol", 12830 + "supermaven", 12726 12831 "tab_switcher", 12727 12832 "task", 12728 12833 "tasks_ui", ··· 12786 12891 12787 12892 [[package]] 12788 12893 name = "zed_elixir" 12789 - version = "0.0.1" 12894 + version = "0.0.4" 12790 12895 dependencies = [ 12791 12896 "zed_extension_api 0.0.6 (registry+https://github.com/rust-lang/crates.io-index)", 12792 12897 ] ··· 12920 13025 12921 13026 [[package]] 12922 13027 name = "zed_toml" 12923 - version = "0.1.0" 13028 + version = "0.1.1" 12924 13029 dependencies = [ 12925 13030 "zed_extension_api 0.0.6 (registry+https://github.com/rust-lang/crates.io-index)", 12926 13031 ] ··· 12941 13046 12942 13047 [[package]] 12943 13048 name = "zed_zig" 12944 - version = "0.1.1" 13049 + version = "0.1.2" 12945 13050 dependencies = [ 12946 13051 "zed_extension_api 0.0.6 (registry+https://github.com/rust-lang/crates.io-index)", 12947 13052 ]
+3 -3
pkgs/by-name/ze/zed-editor/package.nix
··· 26 26 27 27 rustPlatform.buildRustPackage rec { 28 28 pname = "zed"; 29 - version = "0.134.4"; 29 + version = "0.135.2"; 30 30 31 31 src = fetchFromGitHub { 32 32 owner = "zed-industries"; 33 33 repo = "zed"; 34 34 rev = "refs/tags/v${version}"; 35 - hash = "sha256-2/onI/tc5FlwyRuu4Yq3xJYqwNXhnIrCebQQpCKGzfs="; 35 + hash = "sha256-XnfTrcLKjJH42l9L9KxogMhNQ2u/8G4fyd6i/0dO5S0="; 36 36 fetchSubmodules = true; 37 37 }; 38 38 ··· 40 40 lockFile = ./Cargo.lock; 41 41 outputHashes = { 42 42 "async-pipe-0.1.3" = "sha256-g120X88HGT8P6GNCrzpS5SutALx5H+45Sf4iSSxzctE="; 43 - "blade-graphics-0.4.0" = "sha256-J6mVvMC8u3+8RGp6qSwU/EpvdtUPyIs2Ry9XGGiimB0="; 43 + "blade-graphics-0.4.0" = "sha256-U8278YkskWE1E60JVTx4hRv4322EV9jz8fzJkBTG3R8="; 44 44 "font-kit-0.11.0" = "sha256-+4zMzjFyMS60HfLMEXGfXqKn6P+pOngLA45udV09DM8="; 45 45 "heed-0.20.0-alpha.9" = "sha256-8bzoMmfKS+6AmeTzh0/F7WM9OBdIex+NYFER28bpA/s="; 46 46 "lsp-types-0.94.1" = "sha256-kplgPsafrgZFMI1D9pQCwmg+FKMn5HNWLbcgdXHUFVU=";
+8
pkgs/data/documentation/man-pages/default.nix
··· 21 21 22 22 enableParallelInstalling = true; 23 23 24 + postInstall = '' 25 + # The manpath executable looks up manpages from PATH. And this package won't 26 + # appear in PATH unless it has a /bin folder. Without the change 27 + # 'nix-shell -p man-pages' does not pull in the search paths. 28 + # See 'man 5 manpath' for the lookup order. 29 + mkdir -p $out/bin 30 + ''; 31 + 24 32 meta = with lib; { 25 33 description = "Linux development manual pages"; 26 34 homepage = "https://www.kernel.org/doc/man-pages/";
+2 -2
pkgs/data/misc/clash-geoip/default.nix
··· 2 2 3 3 stdenvNoCC.mkDerivation rec { 4 4 pname = "clash-geoip"; 5 - version = "20240412"; 5 + version = "20240512"; 6 6 7 7 src = fetchurl { 8 8 url = "https://github.com/Dreamacro/maxmind-geoip/releases/download/${version}/Country.mmdb"; 9 - sha256 = "sha256-xc31FwO9wku1MzLIuCScOKEgzwLPn5NuXi2H4L3+M9s="; 9 + sha256 = "sha256-vWtiTcuTcAL6E083rHPVhqduIs6tuAOph/EdwLFXHek="; 10 10 }; 11 11 12 12 dontUnpack = true;
+8 -8
pkgs/development/compilers/dotnet/8/deps.nix
··· 1 1 { fetchNuGet }: [ 2 - (fetchNuGet { pname = "runtime.linux-arm64.Microsoft.NETCore.ILAsm"; sha256 = "82be279b43a39011b6b4e3cbd46565a407ed6d263a037d2298e6401addafa9b9"; url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/a65e5cb4-26c0-410f-9457-06db3c5254be/nuget/v3/flat2/runtime.linux-arm64.microsoft.netcore.ilasm/8.0.3-servicing.24114.23/runtime.linux-arm64.microsoft.netcore.ilasm.8.0.3-servicing.24114.23.nupkg"; version = "8.0.3-servicing.24114.23"; }) 3 - (fetchNuGet { pname = "runtime.linux-arm64.Microsoft.NETCore.ILDAsm"; sha256 = "773d55eb6a015a74328e9ed3b14821940b9fe4679ca43c837815891dfc3e2611"; url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/a65e5cb4-26c0-410f-9457-06db3c5254be/nuget/v3/flat2/runtime.linux-arm64.microsoft.netcore.ildasm/8.0.3-servicing.24114.23/runtime.linux-arm64.microsoft.netcore.ildasm.8.0.3-servicing.24114.23.nupkg"; version = "8.0.3-servicing.24114.23"; }) 4 - (fetchNuGet { pname = "runtime.linux-x64.Microsoft.NETCore.ILAsm"; sha256 = "0ckmdww2fcir6s91rj9yr4bfx5ix0xdv96yszipgcw23zlv2xkci"; url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/a65e5cb4-26c0-410f-9457-06db3c5254be/nuget/v3/flat2/runtime.linux-x64.microsoft.netcore.ilasm/8.0.3-servicing.24114.23/runtime.linux-x64.microsoft.netcore.ilasm.8.0.3-servicing.24114.23.nupkg"; version = "8.0.3-servicing.24114.23"; }) 5 - (fetchNuGet { pname = "runtime.linux-x64.Microsoft.NETCore.ILDAsm"; sha256 = "0qqsbj61rw69l2idakbqfl55a44maklav1csdk8a2gcz6a32riab"; url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/a65e5cb4-26c0-410f-9457-06db3c5254be/nuget/v3/flat2/runtime.linux-x64.microsoft.netcore.ildasm/8.0.3-servicing.24114.23/runtime.linux-x64.microsoft.netcore.ildasm.8.0.3-servicing.24114.23.nupkg"; version = "8.0.3-servicing.24114.23"; }) 6 - (fetchNuGet { pname = "runtime.osx-arm64.Microsoft.NETCore.ILAsm"; sha256 = "b5d819e6bd3659ecc18b03c5ba0a425dc72645d7b14dcd768df914ae4348dd44"; url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/a65e5cb4-26c0-410f-9457-06db3c5254be/nuget/v3/flat2/runtime.osx-arm64.microsoft.netcore.ilasm/8.0.3-servicing.24114.23/runtime.osx-arm64.microsoft.netcore.ilasm.8.0.3-servicing.24114.23.nupkg"; version = "8.0.3-servicing.24114.23"; }) 7 - (fetchNuGet { pname = "runtime.osx-arm64.Microsoft.NETCore.ILDAsm"; sha256 = "316473b799e05f6fb6e5f3aaf17fcb5842155cd3fa8853dc31882e0521747e9e"; url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/a65e5cb4-26c0-410f-9457-06db3c5254be/nuget/v3/flat2/runtime.osx-arm64.microsoft.netcore.ildasm/8.0.3-servicing.24114.23/runtime.osx-arm64.microsoft.netcore.ildasm.8.0.3-servicing.24114.23.nupkg"; version = "8.0.3-servicing.24114.23"; }) 8 - (fetchNuGet { pname = "runtime.osx-x64.Microsoft.NETCore.ILAsm"; sha256 = "191b604c2e06b6a7bc2706455df3cb8e38eb6168fa1433459eda61357821b73e"; url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/a65e5cb4-26c0-410f-9457-06db3c5254be/nuget/v3/flat2/runtime.osx-x64.microsoft.netcore.ilasm/8.0.3-servicing.24114.23/runtime.osx-x64.microsoft.netcore.ilasm.8.0.3-servicing.24114.23.nupkg"; version = "8.0.3-servicing.24114.23"; }) 9 - (fetchNuGet { pname = "runtime.osx-x64.Microsoft.NETCore.ILDAsm"; sha256 = "0f76a150908c05152314f4d3e591040de757983b7940cadac3fb3ead75fdb9cf"; url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/a65e5cb4-26c0-410f-9457-06db3c5254be/nuget/v3/flat2/runtime.osx-x64.microsoft.netcore.ildasm/8.0.3-servicing.24114.23/runtime.osx-x64.microsoft.netcore.ildasm.8.0.3-servicing.24114.23.nupkg"; version = "8.0.3-servicing.24114.23"; }) 2 + (fetchNuGet { pname = "runtime.linux-arm64.Microsoft.NETCore.ILAsm"; sha256 = "4ceb7c65d355ac08753d7e255ded7261c9e3d6a3692c4641eda432d84cc5c2ef"; url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/a65e5cb4-26c0-410f-9457-06db3c5254be/nuget/v3/flat2/runtime.linux-arm64.microsoft.netcore.ilasm/8.0.4-servicing.24169.9/runtime.linux-arm64.microsoft.netcore.ilasm.8.0.4-servicing.24169.9.nupkg"; version = "8.0.4-servicing.24169.9"; }) 3 + (fetchNuGet { pname = "runtime.linux-arm64.Microsoft.NETCore.ILDAsm"; sha256 = "467caa1c74ac499a0359b813a54fcf07f664f543e2b495f33213fe5500355494"; url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/a65e5cb4-26c0-410f-9457-06db3c5254be/nuget/v3/flat2/runtime.linux-arm64.microsoft.netcore.ildasm/8.0.4-servicing.24169.9/runtime.linux-arm64.microsoft.netcore.ildasm.8.0.4-servicing.24169.9.nupkg"; version = "8.0.4-servicing.24169.9"; }) 4 + (fetchNuGet { pname = "runtime.linux-x64.Microsoft.NETCore.ILAsm"; sha256 = "0q669pidvv27vll5xpap08c2askmaqggsky00ia1d00f3bnnfxbr"; url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/a65e5cb4-26c0-410f-9457-06db3c5254be/nuget/v3/flat2/runtime.linux-x64.microsoft.netcore.ilasm/8.0.4-servicing.24169.9/runtime.linux-x64.microsoft.netcore.ilasm.8.0.4-servicing.24169.9.nupkg"; version = "8.0.4-servicing.24169.9"; }) 5 + (fetchNuGet { pname = "runtime.linux-x64.Microsoft.NETCore.ILDAsm"; sha256 = "03q3c45cn8vy3qb9q1b8m965j5z9cg9x9ja0l6271lkr4fq72qp4"; url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/a65e5cb4-26c0-410f-9457-06db3c5254be/nuget/v3/flat2/runtime.linux-x64.microsoft.netcore.ildasm/8.0.4-servicing.24169.9/runtime.linux-x64.microsoft.netcore.ildasm.8.0.4-servicing.24169.9.nupkg"; version = "8.0.4-servicing.24169.9"; }) 6 + (fetchNuGet { pname = "runtime.osx-arm64.Microsoft.NETCore.ILAsm"; sha256 = "5f84f02ef53e9e05fafddf0ef2a249d5a7990c458c90f42b365cd8b9397b2e8e"; url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/a65e5cb4-26c0-410f-9457-06db3c5254be/nuget/v3/flat2/runtime.osx-arm64.microsoft.netcore.ilasm/8.0.4-servicing.24169.9/runtime.osx-arm64.microsoft.netcore.ilasm.8.0.4-servicing.24169.9.nupkg"; version = "8.0.4-servicing.24169.9"; }) 7 + (fetchNuGet { pname = "runtime.osx-arm64.Microsoft.NETCore.ILDAsm"; sha256 = "171f006df766e439a3080496dd6e4899649e52085ca6afdb375caa57d04eb998"; url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/a65e5cb4-26c0-410f-9457-06db3c5254be/nuget/v3/flat2/runtime.osx-arm64.microsoft.netcore.ildasm/8.0.4-servicing.24169.9/runtime.osx-arm64.microsoft.netcore.ildasm.8.0.4-servicing.24169.9.nupkg"; version = "8.0.4-servicing.24169.9"; }) 8 + (fetchNuGet { pname = "runtime.osx-x64.Microsoft.NETCore.ILAsm"; sha256 = "5e1652bd1d0194300849ffaf1ef3371795f8d63889e685c2ef74434c33608f1e"; url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/a65e5cb4-26c0-410f-9457-06db3c5254be/nuget/v3/flat2/runtime.osx-x64.microsoft.netcore.ilasm/8.0.4-servicing.24169.9/runtime.osx-x64.microsoft.netcore.ilasm.8.0.4-servicing.24169.9.nupkg"; version = "8.0.4-servicing.24169.9"; }) 9 + (fetchNuGet { pname = "runtime.osx-x64.Microsoft.NETCore.ILDAsm"; sha256 = "e3b4ef11f3f8f625730fad3f59aa84a82c63f1921eb4145109723cd9f458e20b"; url = "https://pkgs.dev.azure.com/dnceng/9ee6d478-d288-47f7-aacc-f6e6d082ae6d/_packaging/a65e5cb4-26c0-410f-9457-06db3c5254be/nuget/v3/flat2/runtime.osx-x64.microsoft.netcore.ildasm/8.0.4-servicing.24169.9/runtime.osx-x64.microsoft.netcore.ildasm.8.0.4-servicing.24169.9.nupkg"; version = "8.0.4-servicing.24169.9"; }) 10 10 ]
+3 -3
pkgs/development/compilers/dotnet/8/release-info.json
··· 1 1 { 2 - "tarballHash": "sha256-GCzqK/3KGbwTRTwnwZFUCBIQnp8f0bjuUrDNTCghXyQ=", 3 - "artifactsUrl": "https://dotnetcli.azureedge.net/source-built-artifacts/assets/Private.SourceBuilt.Artifacts.8.0.103-servicing.24117.1.centos.8-x64.tar.gz", 4 - "artifactsHash": "sha256-6t7vjX/MQVp7Mk1c9v5sjcwwLUImLPdD/bvnT5ZGBEs=" 2 + "tarballHash": "sha256-Hu3mq+cJpbS6Qzvt3PmRe4iRbWJDuMUaNmRlS6tuphw=", 3 + "artifactsUrl": "https://dotnetcli.azureedge.net/source-built-artifacts/assets/Private.SourceBuilt.Artifacts.8.0.104-servicing.24171.1.centos.8-x64.tar.gz", 4 + "artifactsHash": "sha256-+ft4PIFOwfv5Z8VqW6bt71LP/HuvTWRTDYnB71Ti0O8=" 5 5 }
+6 -6
pkgs/development/compilers/dotnet/8/release.json
··· 1 1 { 2 - "release": "8.0.4", 2 + "release": "8.0.5", 3 3 "channel": "8.0", 4 - "tag": "v8.0.4", 5 - "sdkVersion": "8.0.104", 6 - "runtimeVersion": "8.0.4", 7 - "aspNetCoreVersion": "8.0.4", 4 + "tag": "v8.0.5", 5 + "sdkVersion": "8.0.105", 6 + "runtimeVersion": "8.0.5", 7 + "aspNetCoreVersion": "8.0.5", 8 8 "sourceRepository": "https://github.com/dotnet/dotnet", 9 - "sourceVersion": "83659133a1aa2b2d94f9c4ecebfa10d960e27706" 9 + "sourceVersion": "181780576f29353fd077b649e7624cf806e882e7" 10 10 }
+144 -144
pkgs/development/compilers/dotnet/versions/6.0.nix
··· 4 4 5 5 let 6 6 packages = { fetchNuGet }: [ 7 - (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.linux-arm"; version = "6.0.29"; sha256 = "1ww2rsf46bm3mrgq590ky2q2qdxx9q63my661xff24f0s4h2iy7r"; }) 8 - (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.linux-arm64"; version = "6.0.29"; sha256 = "1kkyqzlmhmms1nl08hlrss75lc8yy8qvb0kx23x0fg1dmyqnnzmw"; }) 9 - (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.linux-musl-arm64"; version = "6.0.29"; sha256 = "02yxbf6s8ncxl5gp2yq7dl08p2i3iy21bjahy9bpw44cqwcf9crs"; }) 10 - (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.linux-musl-x64"; version = "6.0.29"; sha256 = "0wdy09kilnasa64jad3j2piggr7iad9z1jhxc24vchq9nalhdbxk"; }) 11 - (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.linux-x64"; version = "6.0.29"; sha256 = "0z359wbz3014rwz7cdcr60qr6mrcwsbwwh36g59a5hncxb1g73rj"; }) 12 - (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.osx-x64"; version = "6.0.29"; sha256 = "031kalc7mp8w35rwvnb13jbwwi8cgmny7nywsk3717iy6blxldih"; }) 13 - (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.win-arm64"; version = "6.0.29"; sha256 = "04zs1sgfxnlbd9csalxlzciwapz64mn4d284l6qr0yj12v6jjzyz"; }) 14 - (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.win-x64"; version = "6.0.29"; sha256 = "0byixcrwj7ixz60lvg7c6r3f132br4pfrjv0w0fh99b3iwzrf114"; }) 15 - (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.win-x86"; version = "6.0.29"; sha256 = "08s37g8x0m6ck862cy44g1khp3ncynk7z9czbknpa4fw8s24g4mz"; }) 16 - (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.win-arm"; version = "6.0.29"; sha256 = "0lbmyxancwikzhiqhyvlv8vd1868fj0yjchm6kby58b6x7h9fawb"; }) 17 - (fetchNuGet { pname = "Microsoft.AspNetCore.App.Ref"; version = "6.0.29"; sha256 = "1ld7aipybxbhwnybimsnhv09ib9ib824zkj11qk3aq7ncz6pfazr"; }) 18 - (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.linux-musl-arm"; version = "6.0.29"; sha256 = "0yl3i637jhp2si9dls0yd528q9w0cm59w079wyyxgyffyy2g2553"; }) 19 - (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.osx-arm64"; version = "6.0.29"; sha256 = "0jhcjy60rjwbv2a8qcrkj2im3qv4mvg1ar9gza5199dciigsh968"; }) 20 - (fetchNuGet { pname = "Microsoft.NETCore.App.Host.linux-arm"; version = "6.0.29"; sha256 = "0wy5hs9h0214i2b2jj0yc3r8lr92ai6iszy3llvyzlb4jb5yzgzq"; }) 21 - (fetchNuGet { pname = "Microsoft.NETCore.App.Host.linux-arm64"; version = "6.0.29"; sha256 = "1bxmnw7zmjv1wxggzv7qf27jjfb01f2x8440a67lkzxsnrl0cd4r"; }) 22 - (fetchNuGet { pname = "Microsoft.NETCore.App.Host.linux-musl-arm64"; version = "6.0.29"; sha256 = "0q6fwydh0rhm1p8q11zwi7l4qkvw7fh41s4rhfhwx9jn7vxw9adv"; }) 23 - (fetchNuGet { pname = "Microsoft.NETCore.App.Host.linux-musl-x64"; version = "6.0.29"; sha256 = "1whzwlnh0cv184smn0ddhd9ssbrlqlj67a12yw4b0l15xsx51n78"; }) 24 - (fetchNuGet { pname = "Microsoft.NETCore.App.Host.linux-x64"; version = "6.0.29"; sha256 = "1g9qlb4k3i8zq5kn4y8v7lc9mqhy3ikh2bla30nqv86iwaclrwb7"; }) 25 - (fetchNuGet { pname = "Microsoft.NETCore.App.Host.osx-x64"; version = "6.0.29"; sha256 = "03rzclkvl2gc7wakh0xqhnj6zl32b91igrnyhd69pzr3mql5kdll"; }) 26 - (fetchNuGet { pname = "Microsoft.NETCore.App.Host.win-arm64"; version = "6.0.29"; sha256 = "18qk2ahkddzd34zwz4q0gg5cgrcdmg00hlkfxp4h18gyq8i5bc0d"; }) 27 - (fetchNuGet { pname = "Microsoft.NETCore.App.Host.win-x64"; version = "6.0.29"; sha256 = "0kh3lrzpz7y42iqa4vdhw4mg51vf4y2x8l4lg767mzbx0sd4xllv"; }) 28 - (fetchNuGet { pname = "Microsoft.NETCore.App.Host.win-x86"; version = "6.0.29"; sha256 = "15sz26wgpnfrp9gqspwdhj64lhlnjv8id8s6bblxxkkwa6040ls6"; }) 29 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.linux-arm"; version = "6.0.29"; sha256 = "0lnq5pqmsgh1fv0q5cxx1bn3lvxmrd4xvx6vsn2mjahzkvpzjgxr"; }) 30 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.linux-arm64"; version = "6.0.29"; sha256 = "0jzzkdbqikwq96plmwrmjhpv7v6g0l0bz50swbs27vjf45msbj42"; }) 31 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.linux-musl-arm64"; version = "6.0.29"; sha256 = "0ggicsy3zija6v76mv0rddg0ga6spxn4i9skq9fr7s6a9xccbgqb"; }) 32 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.linux-musl-x64"; version = "6.0.29"; sha256 = "17ma2g0j6klpbnxbv402f8hn1rrvq52f3s9wkz8zllh7zbsqin69"; }) 33 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.linux-x64"; version = "6.0.29"; sha256 = "0gv5dnd44xj1yidzd70b01s5a19khbq757llkfykgwf7wl4a89cf"; }) 34 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.osx-x64"; version = "6.0.29"; sha256 = "1bk2n7csgnvqma5yv550037xg4ph4j11gp4m5hn7s4sy23cfc5xp"; }) 35 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.win-arm64"; version = "6.0.29"; sha256 = "1k4jkjqrbgsnn8r220vh82s20b38h5hrks579a48bsv1288i0zhn"; }) 36 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.win-x64"; version = "6.0.29"; sha256 = "0hhypwr4202n8nvpz10ac1q48ryjr7d4xj34r4c79mw49fvh1n61"; }) 37 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.win-x86"; version = "6.0.29"; sha256 = "01d27mw1zsfx5wdw7515zg68wvwwl7ia579l7bkkbbzbmbb7n6r4"; }) 38 - (fetchNuGet { pname = "Microsoft.NETCore.DotNetAppHost"; version = "6.0.29"; sha256 = "16cqxd6kh9dvxrbsjj3ls317ql7cwj036gdqnbg31dpcl9qmib47"; }) 39 - (fetchNuGet { pname = "Microsoft.NETCore.DotNetHost"; version = "6.0.29"; sha256 = "1alfbxqjq7jyyh62lbw2szjfchmc32ywh10x48hcjkscnqvn32fv"; }) 40 - (fetchNuGet { pname = "Microsoft.NETCore.DotNetHostPolicy"; version = "6.0.29"; sha256 = "1q9hbz6qv8gx2v0vpv21i6m0m2rw2jk1956gc0ybj5l5fppqfzqr"; }) 41 - (fetchNuGet { pname = "Microsoft.NETCore.DotNetHostResolver"; version = "6.0.29"; sha256 = "1sf3jvbscph4yrljhpiiyyqgw70qcwcym0jb74ql3aw0cr3gqbh5"; }) 42 - (fetchNuGet { pname = "runtime.linux-arm64.Microsoft.NETCore.DotNetAppHost"; version = "6.0.29"; sha256 = "01dvbid18120g6fgxcb79qfz9628qwm0kr5j88mincvdzklz4k9n"; }) 43 - (fetchNuGet { pname = "runtime.linux-arm64.Microsoft.NETCore.DotNetHost"; version = "6.0.29"; sha256 = "15f5mscfmj6cn771wzxqszxfjqx93lvfa2dmdiyg9vx8nyciara5"; }) 44 - (fetchNuGet { pname = "runtime.linux-arm64.Microsoft.NETCore.DotNetHostPolicy"; version = "6.0.29"; sha256 = "05m50dprl9y1jq40z5wicizwdb669nbp942lmnk282rkvga79wh6"; }) 45 - (fetchNuGet { pname = "runtime.linux-arm64.Microsoft.NETCore.DotNetHostResolver"; version = "6.0.29"; sha256 = "11dnr4r4sj9pzmayavs69f274ba4xvynxh4mj46ynkaiwf423imq"; }) 46 - (fetchNuGet { pname = "runtime.linux-arm.Microsoft.NETCore.DotNetAppHost"; version = "6.0.29"; sha256 = "1f9m1rqfbz6p8h574f9ylw512w6njvdl1a52hcjcjf4y6wjvwm13"; }) 47 - (fetchNuGet { pname = "runtime.linux-arm.Microsoft.NETCore.DotNetHost"; version = "6.0.29"; sha256 = "1sk1fdz3d6gm44qsaqavqc1zdl1kjc1m29sk2rlpw4lml1aa527x"; }) 48 - (fetchNuGet { pname = "runtime.linux-arm.Microsoft.NETCore.DotNetHostPolicy"; version = "6.0.29"; sha256 = "1gly6h5vnmp2h3mj2jqym6nwg3swp8ihsq2s56j1b7mdxjnbhilk"; }) 49 - (fetchNuGet { pname = "runtime.linux-arm.Microsoft.NETCore.DotNetHostResolver"; version = "6.0.29"; sha256 = "1hnbr15han7261jjnx6pkyhi3bklyd3sbg24x1yqxac36f7xcvwx"; }) 50 - (fetchNuGet { pname = "runtime.linux-musl-arm64.Microsoft.NETCore.DotNetAppHost"; version = "6.0.29"; sha256 = "06ip2z9j02ak5nqrbm5vzs6lyv8d1g959xmx2h4b24ddj1zrkid0"; }) 51 - (fetchNuGet { pname = "runtime.linux-musl-arm64.Microsoft.NETCore.DotNetHost"; version = "6.0.29"; sha256 = "0j089aayx9g653agaqbwk9101nxdiy278j1k4yaj20a78bw6cdsm"; }) 52 - (fetchNuGet { pname = "runtime.linux-musl-arm64.Microsoft.NETCore.DotNetHostPolicy"; version = "6.0.29"; sha256 = "163b5p3mwy6v0lp00ardag41gn90vv25jfkrawwhqvzjx9i7gm6x"; }) 53 - (fetchNuGet { pname = "runtime.linux-musl-arm64.Microsoft.NETCore.DotNetHostResolver"; version = "6.0.29"; sha256 = "0j2dwpr1mzm43nvw1lqyqk23gxf0iwx2j6lpffq43dpx5n3bdi0a"; }) 54 - (fetchNuGet { pname = "runtime.linux-musl-x64.Microsoft.NETCore.DotNetAppHost"; version = "6.0.29"; sha256 = "1ax7sjajicibkz4zdvdx65vjpc4xdd6q88zgcqfi22hvfpcdgbni"; }) 55 - (fetchNuGet { pname = "runtime.linux-musl-x64.Microsoft.NETCore.DotNetHost"; version = "6.0.29"; sha256 = "1rxcxafv84lcmskdlhxa8pvm32fvcgn1vnmcrsksb3g1ibvh1bhv"; }) 56 - (fetchNuGet { pname = "runtime.linux-musl-x64.Microsoft.NETCore.DotNetHostPolicy"; version = "6.0.29"; sha256 = "03qxxkh1wk3rswssglnhrff6k8pajbjalzp95xyg9pyd0xaq5i4k"; }) 57 - (fetchNuGet { pname = "runtime.linux-musl-x64.Microsoft.NETCore.DotNetHostResolver"; version = "6.0.29"; sha256 = "0wq6mjg0apqnvv9axdkvka8c0swap8r4n241kvm7xqrlg88dhlvz"; }) 58 - (fetchNuGet { pname = "runtime.linux-x64.Microsoft.NETCore.DotNetAppHost"; version = "6.0.29"; sha256 = "0a63sh3i71nwwgw83194k903yc3j9z1wnlnfbcj60w5i3kwifnnp"; }) 59 - (fetchNuGet { pname = "runtime.linux-x64.Microsoft.NETCore.DotNetHost"; version = "6.0.29"; sha256 = "1by4lbzv90lzl1zrgycrpgrq7b3dkc023npixsihx0sw0vc29s1m"; }) 60 - (fetchNuGet { pname = "runtime.linux-x64.Microsoft.NETCore.DotNetHostPolicy"; version = "6.0.29"; sha256 = "1pvr7bh9hvg55r4d4yjm5zlqmdnpk5jbi76xjkhw7vdwkp9133rh"; }) 61 - (fetchNuGet { pname = "runtime.linux-x64.Microsoft.NETCore.DotNetHostResolver"; version = "6.0.29"; sha256 = "0k7k4rhq5d9d2rwpqppddhdw633509v1dxs9ii2cvk8pz0vcl2ll"; }) 62 - (fetchNuGet { pname = "runtime.osx-x64.Microsoft.NETCore.DotNetAppHost"; version = "6.0.29"; sha256 = "0mvyfmmsn40cmn7n8mavspflrz2rahfzmqy4f8vnhdfb2pmirbkb"; }) 63 - (fetchNuGet { pname = "runtime.osx-x64.Microsoft.NETCore.DotNetHost"; version = "6.0.29"; sha256 = "1hyyhbpvzvx56lbbk43vdlajz1x5mb17155j7k0lbnpp29gr2hn9"; }) 64 - (fetchNuGet { pname = "runtime.osx-x64.Microsoft.NETCore.DotNetHostPolicy"; version = "6.0.29"; sha256 = "0012c5f6qmgvky5bff9gpcwmc9rydhrs9vd0j2hcqggdixcfv5f0"; }) 65 - (fetchNuGet { pname = "runtime.osx-x64.Microsoft.NETCore.DotNetHostResolver"; version = "6.0.29"; sha256 = "1a1hvalw80kaw2prixzzjr6s4l2q2q73vibqh09cn0hp09zbsr1g"; }) 66 - (fetchNuGet { pname = "runtime.win-arm64.Microsoft.NETCore.DotNetAppHost"; version = "6.0.29"; sha256 = "0agminm16ksiplxi3lb7csinzbr7r315wl0a32spyy0qbmzpfv4h"; }) 67 - (fetchNuGet { pname = "runtime.win-arm64.Microsoft.NETCore.DotNetHost"; version = "6.0.29"; sha256 = "19x3w376180dh7l9rn82rv4jgcfl7rbrc1ckr9x6nbkmldgq8bxq"; }) 68 - (fetchNuGet { pname = "runtime.win-arm64.Microsoft.NETCore.DotNetHostPolicy"; version = "6.0.29"; sha256 = "1jxxx3zh1hzkfxk9m1pawlcg5h5x8bb6jwj0vxb0cflj3yh9scjr"; }) 69 - (fetchNuGet { pname = "runtime.win-arm64.Microsoft.NETCore.DotNetHostResolver"; version = "6.0.29"; sha256 = "03zlldqxlc3ykbapmmvpifik2c3wy3w5k5fnrbjl6ak155iblszj"; }) 70 - (fetchNuGet { pname = "runtime.win-x64.Microsoft.NETCore.DotNetAppHost"; version = "6.0.29"; sha256 = "006pk987rmif8kv26l91wchj52r1qad673fdn2vbdmh8qmr4jgp9"; }) 71 - (fetchNuGet { pname = "runtime.win-x64.Microsoft.NETCore.DotNetHost"; version = "6.0.29"; sha256 = "13z4lgmkkfkw86d5x3pz80rv85h36sbixckbwja7fxc6wzx11a3h"; }) 72 - (fetchNuGet { pname = "runtime.win-x64.Microsoft.NETCore.DotNetHostPolicy"; version = "6.0.29"; sha256 = "0sqcrkdsdih5pjb30r9c4g5bdmvjak4i7s9ji1vx83h2hw71d9x9"; }) 73 - (fetchNuGet { pname = "runtime.win-x64.Microsoft.NETCore.DotNetHostResolver"; version = "6.0.29"; sha256 = "1mmkp6a8xhyfipnafj9nbwlnc3blpkgpbvcnq12znlbjg6wgxqz0"; }) 74 - (fetchNuGet { pname = "runtime.win-x86.Microsoft.NETCore.DotNetAppHost"; version = "6.0.29"; sha256 = "1hj6qqfy1vs88j2lksz2bd69ra1nk5vp1rnc9wbrd95qhzq0bg96"; }) 75 - (fetchNuGet { pname = "runtime.win-x86.Microsoft.NETCore.DotNetHost"; version = "6.0.29"; sha256 = "0y25zkmm2gwi6kmqyc7ajsjpwyb240x99ipfslxfihan9y8lsjg9"; }) 76 - (fetchNuGet { pname = "runtime.win-x86.Microsoft.NETCore.DotNetHostPolicy"; version = "6.0.29"; sha256 = "02l0adv6iy71pyf3j6r3vag8945avq30srwlpc1k0jdfwb0rp4ia"; }) 77 - (fetchNuGet { pname = "runtime.win-x86.Microsoft.NETCore.DotNetHostResolver"; version = "6.0.29"; sha256 = "1405a595p5zdsv0czd5fb75f3w6i4w7d4cxns7ar007dc4dnfzhw"; }) 78 - (fetchNuGet { pname = "Microsoft.NETCore.App.Host.linux-musl-arm"; version = "6.0.29"; sha256 = "0hp585dlg26zbqgcla0bz8c26bhspnqwccwimyjg3gs0acymm5aa"; }) 79 - (fetchNuGet { pname = "Microsoft.NETCore.App.Host.osx-arm64"; version = "6.0.29"; sha256 = "1al87br8qcdplm9j5n57mni5zbvw71jvwax4kjb4yfcq5c9qwdvy"; }) 80 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.linux-musl-arm"; version = "6.0.29"; sha256 = "1n1sj94xzm3f6qx20hmw9zvz188iaxm76pd34zcyzs7izbw1jyq2"; }) 81 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.osx-arm64"; version = "6.0.29"; sha256 = "00w4cw7blwkqhcg20q9xybs00mrcymgnmki393smn3bc439b8vpn"; }) 82 - (fetchNuGet { pname = "Microsoft.NETCore.App.Ref"; version = "6.0.29"; sha256 = "0d0xy3zmrlfzc7zk6hpx69mr5b6p28aj944403c7akhzpg1zz2r1"; }) 83 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.Mono.linux-arm"; version = "6.0.29"; sha256 = "0n5zb3hghyqk1yizzznx0azdqg7rc19gvzrw5214rhf731jsm4rw"; }) 84 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.Mono.linux-arm64"; version = "6.0.29"; sha256 = "110wd98zgddiw0znn6b4hrbsixc8shl9hsjd9gch4vxz1ivbsfm6"; }) 85 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.Mono.linux-musl-x64"; version = "6.0.29"; sha256 = "0nrrv68px7xvg7291zsgyw9zzmi3kgcdb24p6cnywmyrrjf1ww0f"; }) 86 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.Mono.linux-x64"; version = "6.0.29"; sha256 = "0yviz7fjchd4jg71gbq52c3jpk9jpkcz042hhfpz9rj7wij7m7n6"; }) 87 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.Mono.osx-arm64"; version = "6.0.29"; sha256 = "0d4sflclyqwx7p9qlb41xfjcpxhjqy0xgah3kr1wb030apr46ina"; }) 88 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.Mono.osx-x64"; version = "6.0.29"; sha256 = "1wl49lg346lhnvn5h2vlb393lasbvbh9hrhvzb1fsi9nnwk6v278"; }) 89 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.Mono.win-x64"; version = "6.0.29"; sha256 = "192n0rbnwb13m619i70yiym38pdlsfkfh68qcq2pm7r4q1lhw5jm"; }) 90 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.Mono.win-x86"; version = "6.0.29"; sha256 = "0r1sp7jjqz2lh92bfnz6xv2jp3q3m4fabq5m1zbw28q6h945q9mp"; }) 91 - (fetchNuGet { pname = "runtime.linux-musl-arm.Microsoft.NETCore.DotNetAppHost"; version = "6.0.29"; sha256 = "1lifcf96r5mqh4n8d7gcrnmql7vyj8q42sbd621yrqk68dg2gyz3"; }) 92 - (fetchNuGet { pname = "runtime.linux-musl-arm.Microsoft.NETCore.DotNetHost"; version = "6.0.29"; sha256 = "07hsmqrx6yk8rjr8270v1agqfqhl9lw8mgxfsyf6g7anrjc8skrz"; }) 93 - (fetchNuGet { pname = "runtime.linux-musl-arm.Microsoft.NETCore.DotNetHostPolicy"; version = "6.0.29"; sha256 = "0iqvqmhncmwl2df6lwlxs3anzpwwy1xhaci4zzq57f67qkiwfh57"; }) 94 - (fetchNuGet { pname = "runtime.linux-musl-arm.Microsoft.NETCore.DotNetHostResolver"; version = "6.0.29"; sha256 = "1ix3672jd5m5n93y6r9gkpvrkc9hpj1jzf0wlpwji25n75mjg2hg"; }) 95 - (fetchNuGet { pname = "runtime.osx-arm64.Microsoft.NETCore.DotNetAppHost"; version = "6.0.29"; sha256 = "1qxr84lqn6pzi1rh3941rgyaiv1shsjrj7pgdzmmd0r06ng49avd"; }) 96 - (fetchNuGet { pname = "runtime.osx-arm64.Microsoft.NETCore.DotNetHost"; version = "6.0.29"; sha256 = "065ih4wls3y3wlcwn61ywjmy08k4abz216kvzg7vhg511qlsi7a5"; }) 97 - (fetchNuGet { pname = "runtime.osx-arm64.Microsoft.NETCore.DotNetHostPolicy"; version = "6.0.29"; sha256 = "0mm7mybfvqymxcgdr9vwbxfdv83dp613gqhlpm4s8v38jy8ndx52"; }) 98 - (fetchNuGet { pname = "runtime.osx-arm64.Microsoft.NETCore.DotNetHostResolver"; version = "6.0.29"; sha256 = "1gr26qlj7v3j3mf5dhizbmdh69y6rs9hnff0yf3pi1p1fc6pljf0"; }) 99 - (fetchNuGet { pname = "Microsoft.NETCore.App.Crossgen2.linux-musl-arm"; version = "6.0.29"; sha256 = "0in1hpn7a2dmmrgdzh101idn9nb8x8al1kp2a7s9vx8sk42nvhnw"; }) 100 - (fetchNuGet { pname = "Microsoft.NETCore.App.Crossgen2.linux-musl-arm64"; version = "6.0.29"; sha256 = "1nzihwz9vyhfhjq2a6ws2kn651mlyq0ki675v9jwkcb0sgabagab"; }) 101 - (fetchNuGet { pname = "Microsoft.NETCore.App.Crossgen2.linux-musl-x64"; version = "6.0.29"; sha256 = "1k7dcy3w7yjpykspcb3n1j8fjba4f7505gv0zs003dzx7379bnis"; }) 102 - (fetchNuGet { pname = "Microsoft.NETCore.App.Crossgen2.linux-arm"; version = "6.0.29"; sha256 = "13s195fgy7yymvc9qw71nr1vlphmvyq4gyr982bv1x0ci2mzybh9"; }) 103 - (fetchNuGet { pname = "Microsoft.NETCore.App.Crossgen2.linux-arm64"; version = "6.0.29"; sha256 = "0vhd537vh7rakxzbgy6fmfr379k5fj8gq4s005fasripv0a8k98n"; }) 104 - (fetchNuGet { pname = "Microsoft.NETCore.App.Crossgen2.linux-x64"; version = "6.0.29"; sha256 = "12l5i81rqm8mvz1hj1hnrdzbdrv9fzxghcdj9mw7xlcynsmazazz"; }) 105 - (fetchNuGet { pname = "Microsoft.NETCore.App.Crossgen2.osx-x64"; version = "6.0.29"; sha256 = "1y3mzszv3qa0pqvjpn5y8jykww0pcpj97576gj6m63mw7rlk8vcn"; }) 106 - (fetchNuGet { pname = "Microsoft.NETCore.App.Crossgen2.osx-arm64"; version = "6.0.29"; sha256 = "0z6lnhq0jmj759z99ph00wxwyvr5dh0mpkqp89mzqi98dpxwlnpb"; }) 107 - (fetchNuGet { pname = "Microsoft.NETCore.App.Host.win-arm"; version = "6.0.29"; sha256 = "1s1j8zivvkpkg088kmr9lfqqxz6zc4753hqhz3grxp850vhv1hzy"; }) 108 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.win-arm"; version = "6.0.29"; sha256 = "0la7fw19zj4aqa8dlp5pg4bvh1m3fsfa1cnzfw3fm1g17bpq210f"; }) 109 - (fetchNuGet { pname = "runtime.win-arm.Microsoft.NETCore.DotNetAppHost"; version = "6.0.29"; sha256 = "1p4jxlqnc8kf18q005nhywj2ca1d3j3kk5234xbsfhr8j2wx211g"; }) 110 - (fetchNuGet { pname = "runtime.win-arm.Microsoft.NETCore.DotNetHost"; version = "6.0.29"; sha256 = "096cldfkih3c3bs8bi7340yiz4ss0dqb3y90n3rshfhln1mik28y"; }) 111 - (fetchNuGet { pname = "runtime.win-arm.Microsoft.NETCore.DotNetHostPolicy"; version = "6.0.29"; sha256 = "1k79s6rbxqhfqsh5yxznnfhhsxvgg1bbfsj5dwrpxwxlhcwg8p9k"; }) 112 - (fetchNuGet { pname = "runtime.win-arm.Microsoft.NETCore.DotNetHostResolver"; version = "6.0.29"; sha256 = "0inzz41s033hwd5splr0jrf5b4bnsqlyydrbxjcqxhk975fjfgxl"; }) 113 - (fetchNuGet { pname = "Microsoft.NETCore.App.Composite"; version = "6.0.29"; sha256 = "1k2k68hrxc3181439nipgv6pwci8x3l92lx26n7wzjqr20g7lknv"; }) 7 + (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.linux-arm"; version = "6.0.30"; sha256 = "00h28rynbg62abjgknxlq79b48qnjjjclib638wpxjaz96wih96n"; }) 8 + (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.linux-arm64"; version = "6.0.30"; sha256 = "1n4v5przbrjhzj01b6qijpdc2jbsxr66ijvd0483qxh4s0b4jppr"; }) 9 + (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.linux-musl-arm64"; version = "6.0.30"; sha256 = "13cyagv2gxzdssy4kch80jalax0d905sqglibnp9ncswv5yv7af5"; }) 10 + (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.linux-musl-x64"; version = "6.0.30"; sha256 = "01n58418vmvz3bxm3b175irfidp42vg71m5b7v0bf5mhifi40ji8"; }) 11 + (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.linux-x64"; version = "6.0.30"; sha256 = "18v0l07q74m5xxaf6y6dkmr6and8ivya0nslffnr4djrxcbiygdr"; }) 12 + (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.osx-x64"; version = "6.0.30"; sha256 = "009srl8vazkjnd93xr6k1m353spbki9gn1yzp4zgazgbrini6rqc"; }) 13 + (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.win-arm64"; version = "6.0.30"; sha256 = "105zskdc8d7papsi5b8pf76335j4slkm77jd6k5ha0mp6n39a1m2"; }) 14 + (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.win-x64"; version = "6.0.30"; sha256 = "1ppl5zc8j6z3yfhq9wkcmjaa0yajjy4d4iiykh8yqsjypxg5pq95"; }) 15 + (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.win-x86"; version = "6.0.30"; sha256 = "07yaxq68gjnc512nwvzj3h6xk3w1bj9gl25k0qpljnxfv1nmba8y"; }) 16 + (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.win-arm"; version = "6.0.30"; sha256 = "07jhykr9q5akxy2vcsp6w8646j78p636cn13qcbybcxapz7s0iji"; }) 17 + (fetchNuGet { pname = "Microsoft.AspNetCore.App.Ref"; version = "6.0.30"; sha256 = "17k3l8xd5bsyk69bm5q4nxbpb4i0izw1kzmzi7j3p8pmm9prgrpy"; }) 18 + (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.linux-musl-arm"; version = "6.0.30"; sha256 = "05ffs63h5f8qhxzrkhq0fwy40q88nf6672xgx5q1zm3pa0a4zpdz"; }) 19 + (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.osx-arm64"; version = "6.0.30"; sha256 = "0p53lyqmr5n2ym202pbgmsd9b9aa6jar7ic04dcq86h2g77r5jqk"; }) 20 + (fetchNuGet { pname = "Microsoft.NETCore.App.Host.linux-arm"; version = "6.0.30"; sha256 = "0nzgcfvzxkkf9qgy18svjgwsfhhpv9zz44kcyv5qqv3hjnn59n77"; }) 21 + (fetchNuGet { pname = "Microsoft.NETCore.App.Host.linux-arm64"; version = "6.0.30"; sha256 = "0l3gjhmnjd5n67w83smqyhmfcwzszafjgcbq8kdwxiwwh2m6nh2i"; }) 22 + (fetchNuGet { pname = "Microsoft.NETCore.App.Host.linux-musl-arm64"; version = "6.0.30"; sha256 = "08xwqfqhazjy1gwj2j060vcn1x429b37db1h20mjcszmr6j55bb8"; }) 23 + (fetchNuGet { pname = "Microsoft.NETCore.App.Host.linux-musl-x64"; version = "6.0.30"; sha256 = "0kgpximwlw0ypjnpdvnrvgi3k72r032c44ik1vamka6ilir5gcsj"; }) 24 + (fetchNuGet { pname = "Microsoft.NETCore.App.Host.linux-x64"; version = "6.0.30"; sha256 = "0ss3108c2h7afypvliyqixv4dll60sq9iwqy90k1p132znpszrmb"; }) 25 + (fetchNuGet { pname = "Microsoft.NETCore.App.Host.osx-x64"; version = "6.0.30"; sha256 = "02x38c68xan8hlr59mindcl4rcx49bbh4bibh6fw1l4rrijb38lw"; }) 26 + (fetchNuGet { pname = "Microsoft.NETCore.App.Host.win-arm64"; version = "6.0.30"; sha256 = "0qmma776whn57fnjqkpacj03vx6brcx6j51mh200v9gx8hm9h1gz"; }) 27 + (fetchNuGet { pname = "Microsoft.NETCore.App.Host.win-x64"; version = "6.0.30"; sha256 = "1000y4ap0k0iaidl8bqdais3dpcnccd7f4mp219qfcsbn7ma1g5m"; }) 28 + (fetchNuGet { pname = "Microsoft.NETCore.App.Host.win-x86"; version = "6.0.30"; sha256 = "0dcmanh6bpkiix9nm516ybfd3jijr5f4m4pj2b0f4lzdhgnrg5bj"; }) 29 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.linux-arm"; version = "6.0.30"; sha256 = "1aj6dljgqh7ivbbzzqisycklc3ffy5hav6rr78pi20kqr60hgv2d"; }) 30 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.linux-arm64"; version = "6.0.30"; sha256 = "0xfhcig3gj3986rxp3dhnd8hvnj4nvyhz1fz7kpx342d3g53wb37"; }) 31 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.linux-musl-arm64"; version = "6.0.30"; sha256 = "11c5cirdzcmv1h88frjpdzknsafmpzxz6k3k5viqs8dj0pkrx9w4"; }) 32 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.linux-musl-x64"; version = "6.0.30"; sha256 = "0yc0kx6nlfq2hj6392m8jq0gkkc8ayp6pndidwpdyrgxr6dcgx5p"; }) 33 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.linux-x64"; version = "6.0.30"; sha256 = "1s81sj8lnb8szqawxh3vc8wi815ln12cyhrl3f7hwcpay57xgswx"; }) 34 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.osx-x64"; version = "6.0.30"; sha256 = "0xybqg2wd240r1nm2vrbn2qbfqfnqsmxn1012zzwjn17wa2si9a1"; }) 35 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.win-arm64"; version = "6.0.30"; sha256 = "1f8jid6hzbgc69i3mrhr75g4yb8mxky1xddzsq6vm5bhzdi9x9dq"; }) 36 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.win-x64"; version = "6.0.30"; sha256 = "1iv7mxzyma90s2w6pgcr9gb4b0yab0qgd43ljbr776r45jfmhfgy"; }) 37 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.win-x86"; version = "6.0.30"; sha256 = "0h63xlks92kmgmzi5vcciw46h9i982shqjsy5w64hxb2m28rrali"; }) 38 + (fetchNuGet { pname = "Microsoft.NETCore.DotNetAppHost"; version = "6.0.30"; sha256 = "1nmcfcrhlvyyxgsiaa91ssp691yl3y4p87azsnmvy3p97xppn89w"; }) 39 + (fetchNuGet { pname = "Microsoft.NETCore.DotNetHost"; version = "6.0.30"; sha256 = "1dl58ci5xl0np15mbya16zaipscmvhm3914l2f0pfv1k530c9j7m"; }) 40 + (fetchNuGet { pname = "Microsoft.NETCore.DotNetHostPolicy"; version = "6.0.30"; sha256 = "1ik2aarvg0r7k5mm47y7z9lq1csx84k5sd55nrkl2bil0x2pwbzq"; }) 41 + (fetchNuGet { pname = "Microsoft.NETCore.DotNetHostResolver"; version = "6.0.30"; sha256 = "1n711qbd40468l74fr5yjl92n38fsvcdxcl5i3vrqxxqw24rk2v6"; }) 42 + (fetchNuGet { pname = "runtime.linux-arm64.Microsoft.NETCore.DotNetAppHost"; version = "6.0.30"; sha256 = "141ik8krp675ra085b7w4kwslwxdfhpbgkwjwix0l3idkbbqx61x"; }) 43 + (fetchNuGet { pname = "runtime.linux-arm64.Microsoft.NETCore.DotNetHost"; version = "6.0.30"; sha256 = "1xj1g4j7khd54lk04wdii1mam6iwa61aijr43bwfrl3cwjlyk0s4"; }) 44 + (fetchNuGet { pname = "runtime.linux-arm64.Microsoft.NETCore.DotNetHostPolicy"; version = "6.0.30"; sha256 = "0h419n0wzpl7g19g4vwf9s3c3n7vpshyqzfb28w7hy9jk7svvhs1"; }) 45 + (fetchNuGet { pname = "runtime.linux-arm64.Microsoft.NETCore.DotNetHostResolver"; version = "6.0.30"; sha256 = "0d9g5yimjmvqgfm5ndyzb7v5xwi0ix0dq6wxinlfcv9jk933bxis"; }) 46 + (fetchNuGet { pname = "runtime.linux-arm.Microsoft.NETCore.DotNetAppHost"; version = "6.0.30"; sha256 = "0v059yadlahda6ifb84rhpdf5lwd27pkgwfyqdgmqbvc55mvxbpj"; }) 47 + (fetchNuGet { pname = "runtime.linux-arm.Microsoft.NETCore.DotNetHost"; version = "6.0.30"; sha256 = "048nxp4xckb367b016r0avzwkfc6acvw1y454466p9ib29kahc9i"; }) 48 + (fetchNuGet { pname = "runtime.linux-arm.Microsoft.NETCore.DotNetHostPolicy"; version = "6.0.30"; sha256 = "0ah5lzn0al0p73mv2ifaqfal38pq7v7cgjsh2byqpylg4fj00lgw"; }) 49 + (fetchNuGet { pname = "runtime.linux-arm.Microsoft.NETCore.DotNetHostResolver"; version = "6.0.30"; sha256 = "1d7vxq3cbqv36mpl1lv9xj6v6gg5x1brr2z0v16zb1sgc20c1py0"; }) 50 + (fetchNuGet { pname = "runtime.linux-musl-arm64.Microsoft.NETCore.DotNetAppHost"; version = "6.0.30"; sha256 = "0im0444rnfdjb088mkgj5nwmlh4qqi7cg29dp7c7490h9b4si6sc"; }) 51 + (fetchNuGet { pname = "runtime.linux-musl-arm64.Microsoft.NETCore.DotNetHost"; version = "6.0.30"; sha256 = "0zl6h8nq6c5jnm2a4sn39wsqy05iv1s8cwwxck1xxhc6xhvm7ssz"; }) 52 + (fetchNuGet { pname = "runtime.linux-musl-arm64.Microsoft.NETCore.DotNetHostPolicy"; version = "6.0.30"; sha256 = "1b8h3clg8fhx2lg1znlidawlr6y230rh7fswz459p3y9a5m2g5rv"; }) 53 + (fetchNuGet { pname = "runtime.linux-musl-arm64.Microsoft.NETCore.DotNetHostResolver"; version = "6.0.30"; sha256 = "00zc5ym89ps8f000j3h7d7fqcsk8bs30hx91yd3q8aqcacwp5qwf"; }) 54 + (fetchNuGet { pname = "runtime.linux-musl-x64.Microsoft.NETCore.DotNetAppHost"; version = "6.0.30"; sha256 = "068y16a9966g5r6syznpi445z753h15dngw9dr5z8dr2rpzvjmdm"; }) 55 + (fetchNuGet { pname = "runtime.linux-musl-x64.Microsoft.NETCore.DotNetHost"; version = "6.0.30"; sha256 = "04i97cy9x3z0cs738li44s7zf73vspjmqiw70vi7bi6lsnf1n393"; }) 56 + (fetchNuGet { pname = "runtime.linux-musl-x64.Microsoft.NETCore.DotNetHostPolicy"; version = "6.0.30"; sha256 = "0ra00mpz0m4wchxxay0mzk0r4dslkkjbkxfwv3agfldyl20hdh8v"; }) 57 + (fetchNuGet { pname = "runtime.linux-musl-x64.Microsoft.NETCore.DotNetHostResolver"; version = "6.0.30"; sha256 = "1dmqagg5ygg6w2lmg5rh165chb06q5lalyz0aggd7d10dqyjqdys"; }) 58 + (fetchNuGet { pname = "runtime.linux-x64.Microsoft.NETCore.DotNetAppHost"; version = "6.0.30"; sha256 = "01naz5yn790qd96pq00pb17s0cgl82ai9l4p0psgcj9hdazhh5d9"; }) 59 + (fetchNuGet { pname = "runtime.linux-x64.Microsoft.NETCore.DotNetHost"; version = "6.0.30"; sha256 = "1pfl0sc6z14imjlxdmacs6yb9mfgf2pb0jqxiwsdxrc9yhvkcy4x"; }) 60 + (fetchNuGet { pname = "runtime.linux-x64.Microsoft.NETCore.DotNetHostPolicy"; version = "6.0.30"; sha256 = "08vdq131yc70hb72dh9ira28c894b0fwg71ap8bkdwv3nlj92xcp"; }) 61 + (fetchNuGet { pname = "runtime.linux-x64.Microsoft.NETCore.DotNetHostResolver"; version = "6.0.30"; sha256 = "1b2nwjw1q8696j63rfr6b9v3czprj3vnydw5sb1c4dy8rmi037g1"; }) 62 + (fetchNuGet { pname = "runtime.osx-x64.Microsoft.NETCore.DotNetAppHost"; version = "6.0.30"; sha256 = "1v4rc0zxiznmg3xzk0f9v780nzrycp7gcj10jpc5f1w7rw9007ch"; }) 63 + (fetchNuGet { pname = "runtime.osx-x64.Microsoft.NETCore.DotNetHost"; version = "6.0.30"; sha256 = "01r6w4j991lzirvb9nznsjq0825j5pa6mfjvacy6izjqbivwcf53"; }) 64 + (fetchNuGet { pname = "runtime.osx-x64.Microsoft.NETCore.DotNetHostPolicy"; version = "6.0.30"; sha256 = "060xdk3fazza196zgg5q3r10p7h9nna90zc0kffdabg6j2msr8rm"; }) 65 + (fetchNuGet { pname = "runtime.osx-x64.Microsoft.NETCore.DotNetHostResolver"; version = "6.0.30"; sha256 = "0z350zy4c4xz42ysac40sacvky7lp0n7lyl1kh393v0bnzqad5zm"; }) 66 + (fetchNuGet { pname = "runtime.win-arm64.Microsoft.NETCore.DotNetAppHost"; version = "6.0.30"; sha256 = "0h7c58nx1l77n1s28ysqbsij9408g2vmyacxryp56k1l30aspnri"; }) 67 + (fetchNuGet { pname = "runtime.win-arm64.Microsoft.NETCore.DotNetHost"; version = "6.0.30"; sha256 = "1nf8p7a8qghpgpyh5hq8f75w78vqy9airb3nkhp600ln0h3rzwsp"; }) 68 + (fetchNuGet { pname = "runtime.win-arm64.Microsoft.NETCore.DotNetHostPolicy"; version = "6.0.30"; sha256 = "0579hnk8xiclfzkfdb64628h0r49l8sac3mnv5yrq8sp3kkf8f4d"; }) 69 + (fetchNuGet { pname = "runtime.win-arm64.Microsoft.NETCore.DotNetHostResolver"; version = "6.0.30"; sha256 = "0flcc2vmy9sj40cc6igmb26zflsabp6vx9gzabhyns1lwnkwbljw"; }) 70 + (fetchNuGet { pname = "runtime.win-x64.Microsoft.NETCore.DotNetAppHost"; version = "6.0.30"; sha256 = "0zcsj0zqr2mf5134v74xwvsikxsr4g44qkh16qxkhdai1fi9z78n"; }) 71 + (fetchNuGet { pname = "runtime.win-x64.Microsoft.NETCore.DotNetHost"; version = "6.0.30"; sha256 = "0zwqi277hfiqj0yinmvakw6dvb4njj35yi618s96h94c4dz5f64y"; }) 72 + (fetchNuGet { pname = "runtime.win-x64.Microsoft.NETCore.DotNetHostPolicy"; version = "6.0.30"; sha256 = "0bifshrxl0g2q3xby4vy4bfgjbhy28r1jcvfr7y2vl1ci0a7l7q6"; }) 73 + (fetchNuGet { pname = "runtime.win-x64.Microsoft.NETCore.DotNetHostResolver"; version = "6.0.30"; sha256 = "17nj6zp7z65p1gbd0rpz0fgiwgh3sikd1b0lvj006gz9njldbkki"; }) 74 + (fetchNuGet { pname = "runtime.win-x86.Microsoft.NETCore.DotNetAppHost"; version = "6.0.30"; sha256 = "0yzrn1261ypm7y8l3klpyswkav8qxhnlxsv083nrw1z83sbs6a5f"; }) 75 + (fetchNuGet { pname = "runtime.win-x86.Microsoft.NETCore.DotNetHost"; version = "6.0.30"; sha256 = "0q5i9nzwjdl733vqx3rp5k9favjz83yrvpwr953wm0jmcddk8gz4"; }) 76 + (fetchNuGet { pname = "runtime.win-x86.Microsoft.NETCore.DotNetHostPolicy"; version = "6.0.30"; sha256 = "1dhd1zczam6s5r0lwdanm3mvvjrwi6l81izb5v2aq4h28g67ciz6"; }) 77 + (fetchNuGet { pname = "runtime.win-x86.Microsoft.NETCore.DotNetHostResolver"; version = "6.0.30"; sha256 = "11lqxmcmlhxgj1d4ki1rng3ivs2fx8ny984vwzlmcyhc2y5rz63w"; }) 78 + (fetchNuGet { pname = "Microsoft.NETCore.App.Host.linux-musl-arm"; version = "6.0.30"; sha256 = "0ljzirp7nx1xmglz9arfggjaxysg0iaqajck045z31s5dr7p70a5"; }) 79 + (fetchNuGet { pname = "Microsoft.NETCore.App.Host.osx-arm64"; version = "6.0.30"; sha256 = "08k5v35mvcs712kb0vcfjd1dsas5rgwrmv8rn87mzjb2p6ajl3n3"; }) 80 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.linux-musl-arm"; version = "6.0.30"; sha256 = "0p9qybbi7m797svki92ahsyxchd3ic6xw5dbd6h7j2zacgwwkdr7"; }) 81 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.osx-arm64"; version = "6.0.30"; sha256 = "0s71k92daakzwish65gmn4nniy6bf2hv34c0sb6m1hv3criqxmp4"; }) 82 + (fetchNuGet { pname = "Microsoft.NETCore.App.Ref"; version = "6.0.30"; sha256 = "1wqqjhhlqz4dmijcx3kg3hnwq0s0jzqsddaksskzhq8avr4ziy18"; }) 83 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.Mono.linux-arm"; version = "6.0.30"; sha256 = "1zgspjf5qsl6nki9flfm5askgs2ryz6n3b5vz0sh0cygjk93mifr"; }) 84 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.Mono.linux-arm64"; version = "6.0.30"; sha256 = "03gi4ckn2926am1m5i4pimxlwzb47s5bvqcarw8gchiw6ids27a8"; }) 85 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.Mono.linux-musl-x64"; version = "6.0.30"; sha256 = "1vp1r5jsphj322dh441fs0723riijdqcai595xf7fgdlhr8kqgqj"; }) 86 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.Mono.linux-x64"; version = "6.0.30"; sha256 = "1snjxdqm7bn9p87m8hbv125qbz2sgdy59cz5icld9qgyvx6c65p2"; }) 87 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.Mono.osx-arm64"; version = "6.0.30"; sha256 = "1pdwyi7p71h8418qcjypl5fzvdj22grxiq9yjpnw1qma7d1251ny"; }) 88 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.Mono.osx-x64"; version = "6.0.30"; sha256 = "125qdpv0j0my2m47cdhqacdx3jnpm0f7xgyi60x539iadg9w5n17"; }) 89 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.Mono.win-x64"; version = "6.0.30"; sha256 = "187nbyjgpj64ap3kql0msynrfrjkfxi7flap67nn3ly844l08h1x"; }) 90 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.Mono.win-x86"; version = "6.0.30"; sha256 = "0j8rqm3rfl3x7azpkp3l651v4hdd3rchfm40vd291pcc90qicqd8"; }) 91 + (fetchNuGet { pname = "runtime.linux-musl-arm.Microsoft.NETCore.DotNetAppHost"; version = "6.0.30"; sha256 = "0c3iglyq21mwwlwjd942z2jxaxgh39lxnqkyna0wf4a895g2v4ia"; }) 92 + (fetchNuGet { pname = "runtime.linux-musl-arm.Microsoft.NETCore.DotNetHost"; version = "6.0.30"; sha256 = "0frimj5r3c2dzk3a0z8h80jlsyvckw57nzm2rj85x8c3ym7cfp7g"; }) 93 + (fetchNuGet { pname = "runtime.linux-musl-arm.Microsoft.NETCore.DotNetHostPolicy"; version = "6.0.30"; sha256 = "1viylidv5j5h6acikm02v3zrbjbqy78f5a9b5rm5hc74q9hajngw"; }) 94 + (fetchNuGet { pname = "runtime.linux-musl-arm.Microsoft.NETCore.DotNetHostResolver"; version = "6.0.30"; sha256 = "1929s1w81h0y51r2qcywbm4zp700l75yswp5ii68k401861b8pmb"; }) 95 + (fetchNuGet { pname = "runtime.osx-arm64.Microsoft.NETCore.DotNetAppHost"; version = "6.0.30"; sha256 = "13kgffl4jhbq0dn7lx3hhd36r0vi0s3s8dhjq85lq3hrm8454p8r"; }) 96 + (fetchNuGet { pname = "runtime.osx-arm64.Microsoft.NETCore.DotNetHost"; version = "6.0.30"; sha256 = "10lny4j9yyla16bwpzvnr15gkf5d4n4la5smk4v8ncfxbj7lgbrm"; }) 97 + (fetchNuGet { pname = "runtime.osx-arm64.Microsoft.NETCore.DotNetHostPolicy"; version = "6.0.30"; sha256 = "0kmxfvb10gfp4870mcrzgvymgzyb3l4yljnj105y8hr80jya2z2l"; }) 98 + (fetchNuGet { pname = "runtime.osx-arm64.Microsoft.NETCore.DotNetHostResolver"; version = "6.0.30"; sha256 = "0passlm8ajlarnvvrczgxp0brgnbk4n8fig9xmangzsz43bys5dc"; }) 99 + (fetchNuGet { pname = "Microsoft.NETCore.App.Crossgen2.linux-musl-arm"; version = "6.0.30"; sha256 = "1cxd3hshcb5m5651324svwqxfsimkz35kr9lx0m9s0h7r7hnrcck"; }) 100 + (fetchNuGet { pname = "Microsoft.NETCore.App.Crossgen2.linux-musl-arm64"; version = "6.0.30"; sha256 = "1adhb5qj1rz68l4dg87d2j1mbl263lvfry200fag6sfydb305kqh"; }) 101 + (fetchNuGet { pname = "Microsoft.NETCore.App.Crossgen2.linux-musl-x64"; version = "6.0.30"; sha256 = "0f8w8fjaigd2pj0gzc0h5qqm3j24mibprirx0iqaj1l7shgpi40n"; }) 102 + (fetchNuGet { pname = "Microsoft.NETCore.App.Crossgen2.linux-arm"; version = "6.0.30"; sha256 = "0iirjhd26am5kczss9z1jv0v9qjafassvqdm19jdlwrbfn3nzqvf"; }) 103 + (fetchNuGet { pname = "Microsoft.NETCore.App.Crossgen2.linux-arm64"; version = "6.0.30"; sha256 = "0pvwpdjf5vnyx3kjq9p67hyzqbfq3yri2alxh2i93xjmdc8rmryv"; }) 104 + (fetchNuGet { pname = "Microsoft.NETCore.App.Crossgen2.linux-x64"; version = "6.0.30"; sha256 = "0bkh3haf5ll5l0iiafv9ihzxqh2jqsqqi5325mkzq192lfkh3nrl"; }) 105 + (fetchNuGet { pname = "Microsoft.NETCore.App.Crossgen2.osx-x64"; version = "6.0.30"; sha256 = "1dfc7zdjb8m2ziy8rxwismfp6wjs32m4piqxw5w65sc2ryaf2gvq"; }) 106 + (fetchNuGet { pname = "Microsoft.NETCore.App.Crossgen2.osx-arm64"; version = "6.0.30"; sha256 = "0f01cs742z821m1jds7p05jc085aryj7mjpdd04pwv1ql8axmyhw"; }) 107 + (fetchNuGet { pname = "Microsoft.NETCore.App.Host.win-arm"; version = "6.0.30"; sha256 = "0ns1zscka2fs0zdizir5malhxhgqryd5id87gjqa6y9k8vc6d0h3"; }) 108 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.win-arm"; version = "6.0.30"; sha256 = "0pd1bwq2nzd705c65ckwxnayjlj7ahj2n5hwfnglmjvhi8dyzr15"; }) 109 + (fetchNuGet { pname = "runtime.win-arm.Microsoft.NETCore.DotNetAppHost"; version = "6.0.30"; sha256 = "06nrnbbaykg2w35bldyzyp9qxs8y7aa1mp4j3lswdjcly06rgvbm"; }) 110 + (fetchNuGet { pname = "runtime.win-arm.Microsoft.NETCore.DotNetHost"; version = "6.0.30"; sha256 = "1h05dhpvycxjs17y3r7y929r07dswv7iq9lmwas1kjxhnzhbs6x2"; }) 111 + (fetchNuGet { pname = "runtime.win-arm.Microsoft.NETCore.DotNetHostPolicy"; version = "6.0.30"; sha256 = "0jj3nxpbyb3vxh2jsa3qwwy46l6yls1z2n93mq2kyr3yi7lnghmg"; }) 112 + (fetchNuGet { pname = "runtime.win-arm.Microsoft.NETCore.DotNetHostResolver"; version = "6.0.30"; sha256 = "0sbi0b0kck61fq99ipw6jrjrj378kzmk30z0czkj5cn3m59v3dgj"; }) 113 + (fetchNuGet { pname = "Microsoft.NETCore.App.Composite"; version = "6.0.30"; sha256 = "166xfyap4mgv5y6qa5bzq1r7rd8n2fy1f3gcy16i1fhlf52db5v8"; }) 114 114 ]; 115 115 in rec { 116 - release_6_0 = "6.0.29"; 116 + release_6_0 = "6.0.30"; 117 117 118 118 aspnetcore_6_0 = buildAspNetCore { 119 - version = "6.0.29"; 119 + version = "6.0.30"; 120 120 srcs = { 121 121 x86_64-linux = { 122 - url = "https://download.visualstudio.microsoft.com/download/pr/70ddd1ed-776d-41d2-b192-f02436ef3ca6/337d6dd35177408acb9889289a7743a7/aspnetcore-runtime-6.0.29-linux-x64.tar.gz"; 123 - sha512 = "6dc21e1a8dd597df9c1135065f7350bbde9cc040c3079ec7850b0e5f254051b883c6c6e0056682d2963ec74dadff8eb32d82c13b35c9088f3d7c055d3d3f0863"; 122 + url = "https://download.visualstudio.microsoft.com/download/pr/03d1bc71-2ad1-41b4-aa2f-9e4ef6d5c6ed/29b655655d626c590cb216e0c30bccb3/aspnetcore-runtime-6.0.30-linux-x64.tar.gz"; 123 + sha512 = "757d017db28b8e34c4b242c082aa51eb85bce8fca16af37a0beabedb271c9bd13e1631868faa131745d7784db48974567f82275da09041ba434dcb7abe821a2d"; 124 124 }; 125 125 aarch64-linux = { 126 - url = "https://download.visualstudio.microsoft.com/download/pr/094fe5d6-0520-4c0a-9edf-b53d269f8b20/8c5e69ed04787815037ae373ffb77466/aspnetcore-runtime-6.0.29-linux-arm64.tar.gz"; 127 - sha512 = "6e4a504f37ba4bf7d0316d2a3077c5088962c8b8445b659fa05844697bd11427afabacb6fee34094aa4313dd6dca70c862c1c68b30731b12b4451bd59067bc8f"; 126 + url = "https://download.visualstudio.microsoft.com/download/pr/a4c8e994-c595-4698-8cfc-cf3ac166bbbf/9e6b514da011de5191d148d95601a7ec/aspnetcore-runtime-6.0.30-linux-arm64.tar.gz"; 127 + sha512 = "de0921903ba55e21195107b126e271457550543fd6a9698ab3c2b1e2b95f7fe2d6fb2f067e08ed10c9e56940c247733dd9a2f9775e7993e033a945899461e130"; 128 128 }; 129 129 x86_64-darwin = { 130 - url = "https://download.visualstudio.microsoft.com/download/pr/7b93130d-337d-46b8-8d61-cd702c4f2ae7/e198b8e68a06f1f1f5f46116f9976641/aspnetcore-runtime-6.0.29-osx-x64.tar.gz"; 131 - sha512 = "f4405bcf40a075a5acbd8f4ced424efb0b2de49a5f81481c708a1942c1e92e3a69ea8a4d59b55c025092a59e2715d260521fda56618f250d1484fe18dc4cadf4"; 130 + url = "https://download.visualstudio.microsoft.com/download/pr/15ab71c2-9230-4afb-87c5-36328af745ed/b859c077ed4d8c00985a2ee87009b6f1/aspnetcore-runtime-6.0.30-osx-x64.tar.gz"; 131 + sha512 = "0a0c4c9255ed29db1c1911fa0fc6c8a9083f777c04a3939b2087d80bba21fbd864e6c92c62aa566a930a2b30024b1fdbfdcf34d034e2734c0a9b3d45f7c63445"; 132 132 }; 133 133 aarch64-darwin = { 134 - url = "https://download.visualstudio.microsoft.com/download/pr/cbaf5637-d4ba-41e8-a16f-a66a063a30e2/205c5fd4005a47753549594370bd385d/aspnetcore-runtime-6.0.29-osx-arm64.tar.gz"; 135 - sha512 = "a9ecc77db6f0fd8e5ff70ac58ae3549b766694d30a93cfd41869ceaa298178fd2c0e86e4e763d8d7a5e2236d42faf2e87d798d2853f8391a73a40f5193f4fa71"; 134 + url = "https://download.visualstudio.microsoft.com/download/pr/0a61c065-2196-4a9f-a34a-9517b3ec9336/538e1624926840a66ef6963f57d44aa0/aspnetcore-runtime-6.0.30-osx-arm64.tar.gz"; 135 + sha512 = "a74d44c399e06c9ce19ec10d4be53444bf18d981fe7ede62a69efc24a5af5898d4ee63542ffbedc3b906cf1ac3f7101ecdb69e45dc0fbb1336bf151940fc2204"; 136 136 }; 137 137 }; 138 138 }; 139 139 140 140 runtime_6_0 = buildNetRuntime { 141 - version = "6.0.29"; 141 + version = "6.0.30"; 142 142 srcs = { 143 143 x86_64-linux = { 144 - url = "https://download.visualstudio.microsoft.com/download/pr/a066873e-e4f6-4538-a225-4170e2950af2/7e3b369dee3fb19cf193823e158f3b6b/dotnet-runtime-6.0.29-linux-x64.tar.gz"; 145 - sha512 = "c9fc66d47e7c5ed77f13d03bd3a6d09f99560bd432aa308392e0604bdf2a378f66f836184dca4a678052989e6e51a5535225de337c32a4a4e17a67abdc554ffa"; 144 + url = "https://download.visualstudio.microsoft.com/download/pr/a80ab89d-9f64-47b9-bba5-907a4cdaf457/c5714a6e605ef86293a5145d8ea72f39/dotnet-runtime-6.0.30-linux-x64.tar.gz"; 145 + sha512 = "b43200ec3a8c74475f396becd21d22c6a78a6713585837707c2a84bbb869c7e551a05c4c1c1cdba8083baebdd09bc356de5d5a833b8bc84b83421d3ecfac71ca"; 146 146 }; 147 147 aarch64-linux = { 148 - url = "https://download.visualstudio.microsoft.com/download/pr/633cbdd7-57e0-4101-9627-9bda4f29dc9d/93ad01d00720363b0c054f5d88d97a62/dotnet-runtime-6.0.29-linux-arm64.tar.gz"; 149 - sha512 = "27c7121a4953b51bf29a15ffac4155cf86609ded15948f91ecdd19970ff7e19276c528d875f547c2877245767adf1be1ca0eaeb45dc8db460070637bd5ee1ec8"; 148 + url = "https://download.visualstudio.microsoft.com/download/pr/27a21bdd-cad5-4f5a-b7a3-86942632a745/3d7aba7c0cfe0c28342a8f83b65e72b9/dotnet-runtime-6.0.30-linux-arm64.tar.gz"; 149 + sha512 = "75fa6de07e5d8e5485af910de522c1d0afed0532008ded1e80ec3f576c9a78c6e5759dd4d1331159263c02121a4d8f1e532f0533c11524c2d782cf861be13c09"; 150 150 }; 151 151 x86_64-darwin = { 152 - url = "https://download.visualstudio.microsoft.com/download/pr/ed218418-03fc-455b-ba08-6743dd753435/87ce2ccb4bd152e7e9435b891349ec9c/dotnet-runtime-6.0.29-osx-x64.tar.gz"; 153 - sha512 = "e04207993febbd8593eb5474016e90910491f4c5b23cfec39498bc6d5ca2c3ce427da4f5f14ff4160766daab1e35dd2d324d0cfd7ffa83c4741a25f9ac811f00"; 152 + url = "https://download.visualstudio.microsoft.com/download/pr/aee516fe-b6d8-40db-b284-1a287f7cd5ce/c217b7cdbcac883886169b82bcc2b7d8/dotnet-runtime-6.0.30-osx-x64.tar.gz"; 153 + sha512 = "8cffba5feca56bf11b38318564c45ae18a58ec48223963ee46105f71bc07661457e562d51ea0e8b626eb69b7635565244a5cd1575b6fbac52b776145c533e784"; 154 154 }; 155 155 aarch64-darwin = { 156 - url = "https://download.visualstudio.microsoft.com/download/pr/ca51758e-d614-4a55-97ce-bf60ec381931/c2e6633c67dcf4359666cdaa88f1eeae/dotnet-runtime-6.0.29-osx-arm64.tar.gz"; 157 - sha512 = "baf9b30ab7fcdb16878a05429a98c20079e8a5e081f910ddabaee70298dd3d976f3c56569af4efa544533534be50920258982cb97d98bc85f31ce44e6ccabf52"; 156 + url = "https://download.visualstudio.microsoft.com/download/pr/e78e6379-e47a-4e24-ac6b-1c3182f1d664/b8f47b2f04b15c78ac24a8bc88000131/dotnet-runtime-6.0.30-osx-arm64.tar.gz"; 157 + sha512 = "b33a38f4e41455cd88e23f6c0fa76797e05af25bcd94d500557fdd5ce10071ac16789ddef98ec9abef113f2aa487fc7d5c22f329b8a7941a79d7768ca176975d"; 158 158 }; 159 159 }; 160 160 }; 161 161 162 162 sdk_6_0_4xx = buildNetSdk { 163 - version = "6.0.421"; 163 + version = "6.0.422"; 164 164 srcs = { 165 165 x86_64-linux = { 166 - url = "https://download.visualstudio.microsoft.com/download/pr/19144d78-6f95-4810-a9f6-3bf86035a244/23f4654fc5352e049b517937f94be839/dotnet-sdk-6.0.421-linux-x64.tar.gz"; 167 - sha512 = "aa2c1fdc06c477acbb8ca938895f22373a96e96bb75028b496ddf3d433a1e347f3f765b414e8e09fbf1da1cc50f575e28572e701693bad2a33f9b92437a7d3fc"; 166 + url = "https://download.visualstudio.microsoft.com/download/pr/316ad9ae-22cb-478b-b51e-47667f1e7027/7a13422c0951e9235b7692c610b83442/dotnet-sdk-6.0.422-linux-x64.tar.gz"; 167 + sha512 = "e0e6ea234a5aef29c2571784c22396115db292fae8f859f4642f80f873807140bb7bbc009be568e8e34288b46b2e3e7732115b5f02bbc8ca0aa723e183bc084a"; 168 168 }; 169 169 aarch64-linux = { 170 - url = "https://download.visualstudio.microsoft.com/download/pr/30303304-04ea-4569-9f10-3919b4b3105c/5b689d8357866cc2637a021d16096256/dotnet-sdk-6.0.421-linux-arm64.tar.gz"; 171 - sha512 = "2713e16d70d9cb5bd6d3d2da385c75c8cfe6ed3187225efe6715d595b1b1b17d0a48fc7044cb514add8918875c5f281196f09686c11c7524fe9397d8bbe1f8aa"; 170 + url = "https://download.visualstudio.microsoft.com/download/pr/9f8f2c2c-e531-4a5d-b7ed-1e7e4b8bbc29/12e87ade15ce29558b40099d6c152b10/dotnet-sdk-6.0.422-linux-arm64.tar.gz"; 171 + sha512 = "c03c3708061f266a3d7fb5bf2240f5bdd00be4d877dc3dc62b95a857f2ad62c80dd4c54f5257737ef7bad3cb458685d7f2bcfe71c3562075ac3aed660df8ae41"; 172 172 }; 173 173 x86_64-darwin = { 174 - url = "https://download.visualstudio.microsoft.com/download/pr/270b615f-5281-4c58-980f-d9f7a08db642/3e874492a9cb0d5b87195c596b46d609/dotnet-sdk-6.0.421-osx-x64.tar.gz"; 175 - sha512 = "93570a4efc929050b36ad53adca2be803c4cd8ebd9f2553b0f3e325af0629f9854ed39ec8ed0bde4302985c74143763b3a7bef89b1bcecbcec99e137777181d6"; 174 + url = "https://download.visualstudio.microsoft.com/download/pr/818b0c97-95cc-4da8-b5af-05f6854c5e89/200ee246643a1d6a0436ad967ae705f1/dotnet-sdk-6.0.422-osx-x64.tar.gz"; 175 + sha512 = "a301982e64a18cf06577463fc3e2e179c06a31597b1b32127b1196dba755bcc3323edb618f6000c9f4f9ed902c671377a459e9ac90da2c761744fc1d57e220cf"; 176 176 }; 177 177 aarch64-darwin = { 178 - url = "https://download.visualstudio.microsoft.com/download/pr/ed341e9a-7848-4036-bf88-00cffa9fe535/52887ced41272bf177a9ef6ac04563a2/dotnet-sdk-6.0.421-osx-arm64.tar.gz"; 179 - sha512 = "83870fbe802cdea4ca014eb5dc0cd899deed952d8cfeb862f74bf68d80bfa81e814a3d90381615bb6e26dc39bfcbc82f975462665bf65294d25249e2ea365332"; 178 + url = "https://download.visualstudio.microsoft.com/download/pr/2f0c0bae-a26c-44c1-bd9e-9fcd42548066/c88dc835e8ac824d992696122c10d959/dotnet-sdk-6.0.422-osx-arm64.tar.gz"; 179 + sha512 = "7bb885b605f51cffcb235a6bb6f0eccef7a211e67480fa6243b0cb8899dfd60c4c0501579c0c1dc7fb267aea5db5a6d35cf9e2a35903772797a66360fa171b3b"; 180 180 }; 181 181 }; 182 182 inherit packages; 183 183 }; 184 184 185 185 sdk_6_0_1xx = buildNetSdk { 186 - version = "6.0.129"; 186 + version = "6.0.130"; 187 187 srcs = { 188 188 x86_64-linux = { 189 - url = "https://download.visualstudio.microsoft.com/download/pr/7bb40f2e-6ef7-43d6-b0cb-b74d974a5675/cf48bfe3825b1d419da055a8d8f16101/dotnet-sdk-6.0.129-linux-x64.tar.gz"; 190 - sha512 = "fb4991e5b0297ea0c65dd84300f0c11bef4589b19012556f67eb10970bd3ee50a58bad59023e1d266a8d9688a71c23458e0d21b8cd9adb75d21c47b59987aabe"; 189 + url = "https://download.visualstudio.microsoft.com/download/pr/3d0d3892-fec9-4764-8638-b579b1b9e222/dd4c14a3c27929671362c89fe3378677/dotnet-sdk-6.0.130-linux-x64.tar.gz"; 190 + sha512 = "dd4e3e5e24c0bc387dc6ed3fa833236d3f444efc0b12a256dcd73f5f4431488b516143d63019c6e9430173adebb07406b52e78a102f9e143a7e3f16361228b32"; 191 191 }; 192 192 aarch64-linux = { 193 - url = "https://download.visualstudio.microsoft.com/download/pr/ceb30bb4-f3b9-4195-b549-76e49ace533b/60fb639b9c621ba00946765d1be575c0/dotnet-sdk-6.0.129-linux-arm64.tar.gz"; 194 - sha512 = "58185fa68b9a7bd373b8c4ad9f2d14d0379e6758007bfbe52a640cb432eec91267ff7df94fc57ec0d0d16b8ab5a0838a623c31d3cf36384b3a77697d3a8cfd86"; 193 + url = "https://download.visualstudio.microsoft.com/download/pr/b7e1a062-bd07-4aab-90c8-0d91994ce0c5/1d399c3f9cc73c767e6927ad4f60c5c5/dotnet-sdk-6.0.130-linux-arm64.tar.gz"; 194 + sha512 = "95767eb4da8e3fb50992ec48df178fba9e2a7beaae26c5fdd8ecd4dae605ec048b83180a2bcb72c836468a99607179f9193ce0e1980bc95484865f559cc91789"; 195 195 }; 196 196 x86_64-darwin = { 197 - url = "https://download.visualstudio.microsoft.com/download/pr/2e1ce563-4b66-4bed-b092-a411755b0101/e6abdcbec6cb93a3f3c74f3b25eb0dac/dotnet-sdk-6.0.129-osx-x64.tar.gz"; 198 - sha512 = "b4b70a211eaabc9b3a34fe197ca4c69e4a167484445fbbc6df326c972047c813a6ef9a89830d0105ffa00bc8754f8b728e102fba35f89fd9caafe139d45b4eef"; 197 + url = "https://download.visualstudio.microsoft.com/download/pr/fa013cb2-8b3c-4986-8863-dd526d13503e/ac0c886e8c9837784ff02db082ac4a53/dotnet-sdk-6.0.130-osx-x64.tar.gz"; 198 + sha512 = "8102f1432343538f45d0d49e518edb7ba0000d1ae7f7306611d2e17a205baa4215281250b45cf11900f45db0622fd190bf7d57f2b63cc8b1b4bd106128564522"; 199 199 }; 200 200 aarch64-darwin = { 201 - url = "https://download.visualstudio.microsoft.com/download/pr/bd5e3be9-a283-4cfe-afd8-b217d2429ad2/0339d0cf86b7b8fa5831d0788175c34a/dotnet-sdk-6.0.129-osx-arm64.tar.gz"; 202 - sha512 = "065a6b54fc5044d335371c6244c633d3a64d6813ebcef9db19fe0dce4f15c381109b537efab8ff1a9850d83721b0783b4f5f58c048cd6e8f05a32d12eebd430a"; 201 + url = "https://download.visualstudio.microsoft.com/download/pr/8c72ae1a-38b3-4a30-81d5-408073f96d64/2e3493ea5498d598193746232d4be684/dotnet-sdk-6.0.130-osx-arm64.tar.gz"; 202 + sha512 = "9d8273f73e842a3a1a71a2ba5c2f0dce74821e1302ef34843817a3f5c49df83d662bf6c7031dba7a8362903a870f759c7976176209781a3c4ade6c66e6824c41"; 203 203 }; 204 204 }; 205 205 inherit packages;
+160 -160
pkgs/development/compilers/dotnet/versions/7.0.nix
··· 4 4 5 5 let 6 6 packages = { fetchNuGet }: [ 7 - (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.linux-arm"; version = "7.0.18"; sha256 = "001f6hj331sy712yq1p1yzdgpxmdz0zk8ikgyb18sxf2xflggrk5"; }) 8 - (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.linux-arm64"; version = "7.0.18"; sha256 = "171ygqrbjza8d83awyrqpm1rhrdxmq3x5qdpc2w907nidf3h1nwz"; }) 9 - (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.linux-musl-arm64"; version = "7.0.18"; sha256 = "1b5zgxzg71jgr2rqgxqgnl9b98zq466g6l15nzkqwa4pj3y2i4s9"; }) 10 - (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.linux-musl-x64"; version = "7.0.18"; sha256 = "0f9dhjgw35i9z96qgq3q7fn0csnd3f17z6db3vw1j126k8zy67yy"; }) 11 - (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.linux-x64"; version = "7.0.18"; sha256 = "0i90lp2pm3x39ypilrvf6v98j3pgj68palw1dimdf04vfi874s7l"; }) 12 - (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.osx-x64"; version = "7.0.18"; sha256 = "1z11qffsbnfdk2a5yk7q8ck12v0vck60nvcd2wrqawv87pxga033"; }) 13 - (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.win-arm64"; version = "7.0.18"; sha256 = "1awf0s6z1grny54s3lbi01978kywx0vdrif0vx6m75n11lps33g1"; }) 14 - (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.win-x64"; version = "7.0.18"; sha256 = "0kq0l498p54314ajsjpsi0rkm17frhsagw60v0ldr7d6y3faw0yf"; }) 15 - (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.win-x86"; version = "7.0.18"; sha256 = "19g4h724s358an75wksgcg2q2pp6qkll4rrrb36b174cwr265ahv"; }) 16 - (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.win-arm"; version = "7.0.18"; sha256 = "08d6fhhppdh2arzj9vp7qplsfr513p4fvzl190ybz5zrzxx3nayx"; }) 17 - (fetchNuGet { pname = "Microsoft.AspNetCore.App.Ref"; version = "7.0.18"; sha256 = "034bccx7g5bn7kjfqsdvr95v7vw2c5cvnifna0v877lb3pbnml6x"; }) 18 - (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.linux-musl-arm"; version = "7.0.18"; sha256 = "1likvj92lgfmbd4ccyff3byv2089wq7xijjcbgq28vp3zha0lr3a"; }) 19 - (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.osx-arm64"; version = "7.0.18"; sha256 = "01axi419jqvnv1zpx0fv5ky7d1cdysnn800f6ix8jhrab9h9vlwq"; }) 20 - (fetchNuGet { pname = "Microsoft.NETCore.App.Host.linux-arm"; version = "7.0.18"; sha256 = "1lzmmirxivs9aldpi30j77mhm15fsnr5pi3r4i1nbarqz3jm6kbd"; }) 21 - (fetchNuGet { pname = "Microsoft.NETCore.App.Host.linux-arm64"; version = "7.0.18"; sha256 = "0bwcny3bc7swh57isij2v5y4qbd08zvi126nwkvyw43piaqn77yy"; }) 22 - (fetchNuGet { pname = "Microsoft.NETCore.App.Host.linux-musl-arm64"; version = "7.0.18"; sha256 = "0php4saswya3ag0zjb95ybb4xj8z8vpbb3bp1gq4xf6kdmkzaz7n"; }) 23 - (fetchNuGet { pname = "Microsoft.NETCore.App.Host.linux-musl-x64"; version = "7.0.18"; sha256 = "0864r2xnczssc4sfrqbvjdqnha0gblrkza4xjk0r0ndiwshyrg3x"; }) 24 - (fetchNuGet { pname = "Microsoft.NETCore.App.Host.linux-x64"; version = "7.0.18"; sha256 = "0a0f8icdzps5cjvgxw0pi26vjilnvii5dqljg1a874y9pazamk4q"; }) 25 - (fetchNuGet { pname = "Microsoft.NETCore.App.Host.osx-x64"; version = "7.0.18"; sha256 = "1h626c86379jsk2fndiqr3zhhrnz46vz7m4s5pp1kz02pss6wjrf"; }) 26 - (fetchNuGet { pname = "Microsoft.NETCore.App.Host.win-arm64"; version = "7.0.18"; sha256 = "1708v99wr4zgflnpjwpsl7dq3jc42mi03z18055p03vmpqrl25f8"; }) 27 - (fetchNuGet { pname = "Microsoft.NETCore.App.Host.win-x64"; version = "7.0.18"; sha256 = "1xfi9h1gkjkssxnn5gdpa2idhrxcf7yfwgmsy30q227lql7z9hxv"; }) 28 - (fetchNuGet { pname = "Microsoft.NETCore.App.Host.win-x86"; version = "7.0.18"; sha256 = "18r8vzsgwqnhppx8jw7x8ycamdpsrgfhph9b7s6cj7kzam8vihqn"; }) 29 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.linux-arm"; version = "7.0.18"; sha256 = "16r1dc61i96df158qk6295lrkpdqd9fy6yqj15027x76xxf234az"; }) 30 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.linux-arm64"; version = "7.0.18"; sha256 = "098c1iaz3pbwha79vlfbl98cn6zfh3ynnlm2307z5mzb7i4lk7lr"; }) 31 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.linux-musl-arm64"; version = "7.0.18"; sha256 = "16aaf3137rpf93k4k24qdbvy8y0lfj9mqv3zym5ndfd3jw1jh1fh"; }) 32 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.linux-musl-x64"; version = "7.0.18"; sha256 = "0fvb9s3z71pwmqag8zk2bl97dq8jjnpw45mh0gya49wvw15p1436"; }) 33 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.linux-x64"; version = "7.0.18"; sha256 = "1108sk0r71g2rz86yppz7fmlf69ij6gyrazyvyk9hkhl90lrfzyr"; }) 34 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.osx-x64"; version = "7.0.18"; sha256 = "0b0cl249p51pa36fcwng31g2cp2f8m1360g0cfizq4wb4zfa6a62"; }) 35 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.win-arm64"; version = "7.0.18"; sha256 = "1xn4v5avi78sww9a5n2ijf96sv7jixablpqr8fin21fsgg9clqs1"; }) 36 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.win-x64"; version = "7.0.18"; sha256 = "03d8zp3f5md61kbawpiac4qrlsn5l4xj2k07kn4s6vkg4r3wz2ia"; }) 37 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.win-x86"; version = "7.0.18"; sha256 = "0hz49hsrk389lmbz8hk057vsqg1m9x8r1p2vh9w1kc3y2ljp9gbn"; }) 38 - (fetchNuGet { pname = "Microsoft.NETCore.DotNetAppHost"; version = "7.0.18"; sha256 = "0j5vjd20f492q6sj9i74cflyqzrxr4wbqwdz8yjlaimw00yyg07z"; }) 39 - (fetchNuGet { pname = "Microsoft.NETCore.DotNetHost"; version = "7.0.18"; sha256 = "1nvlbkhp66zangjpzf5cj0gywkd5kv81hzbfk7igdfbpwmganw7b"; }) 40 - (fetchNuGet { pname = "Microsoft.NETCore.DotNetHostPolicy"; version = "7.0.18"; sha256 = "0ng09aacwi2kxws1i695ri8kssn01wb7cd7i3rf3sx4bcyx4ax18"; }) 41 - (fetchNuGet { pname = "Microsoft.NETCore.DotNetHostResolver"; version = "7.0.18"; sha256 = "0x77z0kqs56jnr9yma21pdlpw2gjyxccjdk0cgybc7fg36rzpz5w"; }) 42 - (fetchNuGet { pname = "runtime.linux-arm64.Microsoft.NETCore.DotNetAppHost"; version = "7.0.18"; sha256 = "1ijq8jhvfsij3q4irb6a0mnlp57q3yw41qp3bsymi6pbvg9pwm7j"; }) 43 - (fetchNuGet { pname = "runtime.linux-arm64.Microsoft.NETCore.DotNetHost"; version = "7.0.18"; sha256 = "12rvs32ggwg4h8j2vgyx0aj8kl1yr17d6d7mw1x26qsaj4y0grzh"; }) 44 - (fetchNuGet { pname = "runtime.linux-arm64.Microsoft.NETCore.DotNetHostPolicy"; version = "7.0.18"; sha256 = "0mlaifk2xjh2w61zp2hqi4nnqlwzvzl2mn3k8p5q3d4zzjna8apy"; }) 45 - (fetchNuGet { pname = "runtime.linux-arm64.Microsoft.NETCore.DotNetHostResolver"; version = "7.0.18"; sha256 = "1ccr55ps2z3vq5bl8mlsfh7ks608fygdrdrw5v7cgf2z7ihihlfh"; }) 46 - (fetchNuGet { pname = "runtime.linux-arm.Microsoft.NETCore.DotNetAppHost"; version = "7.0.18"; sha256 = "02lj8ch0sq8avqd13p9gk8b7xfwm1rc6qg9q6vpwjdmi80f6zs28"; }) 47 - (fetchNuGet { pname = "runtime.linux-arm.Microsoft.NETCore.DotNetHost"; version = "7.0.18"; sha256 = "14ap1ap85w17h1cq5dlkzp9wnmrr02gxaq8a33ri84gaknsigv41"; }) 48 - (fetchNuGet { pname = "runtime.linux-arm.Microsoft.NETCore.DotNetHostPolicy"; version = "7.0.18"; sha256 = "0ipy0s2s54xr9zvy44k13wkk3dd347ks5nz4h27g958ilc9xz3xl"; }) 49 - (fetchNuGet { pname = "runtime.linux-arm.Microsoft.NETCore.DotNetHostResolver"; version = "7.0.18"; sha256 = "0w53iz43wrzyyy4rahvgbpc4xv4yrhxh1bqmcjsycvv5vf0svj2x"; }) 50 - (fetchNuGet { pname = "runtime.linux-musl-arm64.Microsoft.NETCore.DotNetAppHost"; version = "7.0.18"; sha256 = "1x0b90pydgy0i0kbcbfipz4v0pmjd52862rx8d3r68vkfxym7ra1"; }) 51 - (fetchNuGet { pname = "runtime.linux-musl-arm64.Microsoft.NETCore.DotNetHost"; version = "7.0.18"; sha256 = "0glgv2dxyf5k6rl7qd9df4s8vrh8wkx2nwv31hcphb3wsg959kax"; }) 52 - (fetchNuGet { pname = "runtime.linux-musl-arm64.Microsoft.NETCore.DotNetHostPolicy"; version = "7.0.18"; sha256 = "00y32d2c64kkgrri248rp0api9d9xl80ggfhspfc9n08s3bmcknj"; }) 53 - (fetchNuGet { pname = "runtime.linux-musl-arm64.Microsoft.NETCore.DotNetHostResolver"; version = "7.0.18"; sha256 = "0s6g0jw99y1mv008q2mckqx0dkhjcpy49kmvm7kpzb20sw4hqqw5"; }) 54 - (fetchNuGet { pname = "runtime.linux-musl-x64.Microsoft.NETCore.DotNetAppHost"; version = "7.0.18"; sha256 = "190y1n6yv8xqsrmas96ragzvk54kc58mgr7yg0h50i8mq77f96pb"; }) 55 - (fetchNuGet { pname = "runtime.linux-musl-x64.Microsoft.NETCore.DotNetHost"; version = "7.0.18"; sha256 = "1f6dwf0al9ma9m2n63w1b3yrrl5zpqy2knhrcg76njmk2899w1sc"; }) 56 - (fetchNuGet { pname = "runtime.linux-musl-x64.Microsoft.NETCore.DotNetHostPolicy"; version = "7.0.18"; sha256 = "0q3qzh2ni435zygimvp35m3c745fafqa87c8gd6ps1fmc5iv9w1p"; }) 57 - (fetchNuGet { pname = "runtime.linux-musl-x64.Microsoft.NETCore.DotNetHostResolver"; version = "7.0.18"; sha256 = "039sh5f8pq1nf1gj5w1ghrpqd3bci2a3ys2sh33r3skhys4k21y8"; }) 58 - (fetchNuGet { pname = "runtime.linux-x64.Microsoft.NETCore.DotNetAppHost"; version = "7.0.18"; sha256 = "0a2vzgc5pgrv0hn6ijah7s0y2i7aw8nak6mai58mx307kwrawsh7"; }) 59 - (fetchNuGet { pname = "runtime.linux-x64.Microsoft.NETCore.DotNetHost"; version = "7.0.18"; sha256 = "00gq0fgkz198461470gpmixl2b5lgz02yzyz7mz297d2lxixq54y"; }) 60 - (fetchNuGet { pname = "runtime.linux-x64.Microsoft.NETCore.DotNetHostPolicy"; version = "7.0.18"; sha256 = "1k1ri4y8d49sqyayi3lg8gzybnb9bmgcqzm8qisi8cf2yrlypc23"; }) 61 - (fetchNuGet { pname = "runtime.linux-x64.Microsoft.NETCore.DotNetHostResolver"; version = "7.0.18"; sha256 = "1q5zg65jlnp0vv4j4ya3kl70843smzm5ljwx21cx3dlnl92d39v4"; }) 62 - (fetchNuGet { pname = "runtime.osx-x64.Microsoft.NETCore.DotNetAppHost"; version = "7.0.18"; sha256 = "12hvpqgmil06z28ix5x51rbzm99vdxgqr1090c10b9gcy231bbhn"; }) 63 - (fetchNuGet { pname = "runtime.osx-x64.Microsoft.NETCore.DotNetHost"; version = "7.0.18"; sha256 = "0n9hvj7a4f44g38x111ajcjmr3ixq2g2wh3yxr2jjpv45znk0nyz"; }) 64 - (fetchNuGet { pname = "runtime.osx-x64.Microsoft.NETCore.DotNetHostPolicy"; version = "7.0.18"; sha256 = "02fd5il9bihnhmvhybw1sqsb31241kg035vwxgghr17bbyb9yx8r"; }) 65 - (fetchNuGet { pname = "runtime.osx-x64.Microsoft.NETCore.DotNetHostResolver"; version = "7.0.18"; sha256 = "1sad1x4sg06rfh2bjrrwy2gk5ik396p7rggcv3p9v9xfl3kbjkwp"; }) 66 - (fetchNuGet { pname = "runtime.win-arm64.Microsoft.NETCore.DotNetAppHost"; version = "7.0.18"; sha256 = "1mql52lndslpqxb673cv02lif9jxahgm62977r3rdlypljynbymg"; }) 67 - (fetchNuGet { pname = "runtime.win-arm64.Microsoft.NETCore.DotNetHost"; version = "7.0.18"; sha256 = "0gqnw3hvfpvy1lddl98y3jiv69x11ahkcxcnix9sdzlpf4vvshfl"; }) 68 - (fetchNuGet { pname = "runtime.win-arm64.Microsoft.NETCore.DotNetHostPolicy"; version = "7.0.18"; sha256 = "1vwjqnyhskvmxnym65a48yh6w9l004a9xk6dfwdqmdxxlv3d14lc"; }) 69 - (fetchNuGet { pname = "runtime.win-arm64.Microsoft.NETCore.DotNetHostResolver"; version = "7.0.18"; sha256 = "006i3qylks25j3cirlafml07wrhlcb3pmpzknbx1vr4a8q29498d"; }) 70 - (fetchNuGet { pname = "runtime.win-x64.Microsoft.NETCore.DotNetAppHost"; version = "7.0.18"; sha256 = "05jf0dvxa1wqamdapclwrkfdxvll4cah2i81shaf9crhw3wlpmxq"; }) 71 - (fetchNuGet { pname = "runtime.win-x64.Microsoft.NETCore.DotNetHost"; version = "7.0.18"; sha256 = "1vyxww3kwz8dw92v0rd3f1phiif01pymbissm3pb9mrf977dkav9"; }) 72 - (fetchNuGet { pname = "runtime.win-x64.Microsoft.NETCore.DotNetHostPolicy"; version = "7.0.18"; sha256 = "1p2dbqwqflh9qnhq70m3jlycs9agyfy7ird9g83icav1v504vm89"; }) 73 - (fetchNuGet { pname = "runtime.win-x64.Microsoft.NETCore.DotNetHostResolver"; version = "7.0.18"; sha256 = "1y0kka39xahz3a7fjdngd3bcqw6xv7wwypdnq3vq3agcadm1q0rn"; }) 74 - (fetchNuGet { pname = "runtime.win-x86.Microsoft.NETCore.DotNetAppHost"; version = "7.0.18"; sha256 = "1070gji2j2dkb9130c0s3pc5bns4xwkl7y2n4daqz2haqrc1lqr3"; }) 75 - (fetchNuGet { pname = "runtime.win-x86.Microsoft.NETCore.DotNetHost"; version = "7.0.18"; sha256 = "1qi51x84nn6b69gpqqxqngc9bp4y6z0r6sqirdgfg370vqly2qhi"; }) 76 - (fetchNuGet { pname = "runtime.win-x86.Microsoft.NETCore.DotNetHostPolicy"; version = "7.0.18"; sha256 = "1q6kxjzi300jkinp9dhnvwf84pj4kh11n3jv0vqkivlycbja92dh"; }) 77 - (fetchNuGet { pname = "runtime.win-x86.Microsoft.NETCore.DotNetHostResolver"; version = "7.0.18"; sha256 = "0q97bwr9rrq5p6arziz9y31hliplydbkybp8r3ajrl6qh0xlfbd5"; }) 78 - (fetchNuGet { pname = "Microsoft.NETCore.App.Host.linux-musl-arm"; version = "7.0.18"; sha256 = "0hlaxh06z9az86vd8w373hwb40fmz1x43jabl8qdz26cm8hlzngv"; }) 79 - (fetchNuGet { pname = "Microsoft.NETCore.App.Host.osx-arm64"; version = "7.0.18"; sha256 = "13pdmcjd64g89wlgj2aiimi22z3nmy6s4wm890h0j3vfgj8q6yhj"; }) 80 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.linux-musl-arm"; version = "7.0.18"; sha256 = "09zc0k8wv42par873a6gkyknbpgfsam7mmnva3yyxbpm7pxn945y"; }) 81 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.osx-arm64"; version = "7.0.18"; sha256 = "0wj6413ijh62g3pbacirjb26qr38nghps29wcqkp4p56sybx24xf"; }) 82 - (fetchNuGet { pname = "Microsoft.NETCore.App.Ref"; version = "7.0.18"; sha256 = "1vj04hfs9xwm2k3r2xgzrwbbr4mxb4n1ri4xsdds0vr0qbfgrb8p"; }) 83 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.Mono.linux-arm"; version = "7.0.18"; sha256 = "1i5an4bhlcwxqbdza35x6l1wmhlsw90nqg9kk9r4qfffyccnsz6y"; }) 84 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.Mono.linux-arm64"; version = "7.0.18"; sha256 = "13i6kwkrbifsbjqjx5ik032s1plg1db6wwbvw10qrg82y4x9989g"; }) 85 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.Mono.linux-musl-x64"; version = "7.0.18"; sha256 = "0328z9jvp0agf7wwwh8hhz5l1r0xpspx6rszdak6mxjqpgs0nlq3"; }) 86 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.Mono.linux-x64"; version = "7.0.18"; sha256 = "0gdvsig08gfcr5jw9a7prqwdm2lk5qz2cq4n0daw1k4572mg4qp2"; }) 87 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.Mono.osx-arm64"; version = "7.0.18"; sha256 = "18vy1jkylb3842wc1wjki70rk5wvx3wxfgyvqf15mfgiaw5mp851"; }) 88 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.Mono.osx-x64"; version = "7.0.18"; sha256 = "1f98jankwxk9d99pmrdnaflydxcj3wc0wkxc13z6plvl63rprphs"; }) 89 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.Mono.win-x64"; version = "7.0.18"; sha256 = "18sdls7flsdzbdd3jfrmlz0ssvzbfwj8ackx6p40mzr9w4hlnli6"; }) 90 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.Mono.win-x86"; version = "7.0.18"; sha256 = "0j75anj33h6avdjhvdcqbfbaxj7l07n0850f906ral0mvgfd4ndg"; }) 91 - (fetchNuGet { pname = "runtime.linux-musl-arm.Microsoft.NETCore.DotNetAppHost"; version = "7.0.18"; sha256 = "0gqn98lic556yf57cgw2gsfrb31v6l5mn3z7kinnp9h25vhbc8wb"; }) 92 - (fetchNuGet { pname = "runtime.linux-musl-arm.Microsoft.NETCore.DotNetHost"; version = "7.0.18"; sha256 = "18gq0h1x6x41qpk754s0vwx6lxf9bhmr61hix3aizh1b3brxhmjw"; }) 93 - (fetchNuGet { pname = "runtime.linux-musl-arm.Microsoft.NETCore.DotNetHostPolicy"; version = "7.0.18"; sha256 = "0s0pmas9a344kn7srq0pfc8fgwn6p9qkmnhpcnh1yfkpj4k8nd0q"; }) 94 - (fetchNuGet { pname = "runtime.linux-musl-arm.Microsoft.NETCore.DotNetHostResolver"; version = "7.0.18"; sha256 = "0adz0q7y6xqrg9s71vzwnv6cx871m5ya2kfaiqiff32f7296gcq3"; }) 95 - (fetchNuGet { pname = "runtime.osx-arm64.Microsoft.NETCore.DotNetAppHost"; version = "7.0.18"; sha256 = "1ifibwfypiyc9wl538ivlby5l0csisj5visqnfifwwxg4qhhy2vy"; }) 96 - (fetchNuGet { pname = "runtime.osx-arm64.Microsoft.NETCore.DotNetHost"; version = "7.0.18"; sha256 = "0abdf1319zyia7zxqfv32c4fb9rw0qw3qivlbs1ms8qk4c7a5w4j"; }) 97 - (fetchNuGet { pname = "runtime.osx-arm64.Microsoft.NETCore.DotNetHostPolicy"; version = "7.0.18"; sha256 = "1nf81ngbhr40d81hq6c2d21x0cjs7qh269z1ynwdiv3kslb79sf1"; }) 98 - (fetchNuGet { pname = "runtime.osx-arm64.Microsoft.NETCore.DotNetHostResolver"; version = "7.0.18"; sha256 = "1cqv7vvf1v71r5ndwammwy9rvwrbmhmwwpfwpf9635mgnh0707ph"; }) 99 - (fetchNuGet { pname = "Microsoft.NETCore.App.Crossgen2.linux-musl-arm"; version = "7.0.18"; sha256 = "0cdj0g3cyhpfbkpqzbxslhx7pc8a406c1w80y4bxd1dxmwi387p2"; }) 100 - (fetchNuGet { pname = "Microsoft.NETCore.App.Crossgen2.linux-musl-arm64"; version = "7.0.18"; sha256 = "0mhahzk11a5lziij0w5ahfapcf219zkwfihwqaymwlgyzxdzilq1"; }) 101 - (fetchNuGet { pname = "Microsoft.NETCore.App.Crossgen2.linux-musl-x64"; version = "7.0.18"; sha256 = "01dc6m6hwv4zzbpxbib4338j7rhm6kxgz92f84idjnxc9mjrz823"; }) 102 - (fetchNuGet { pname = "Microsoft.NETCore.App.Crossgen2.linux-arm"; version = "7.0.18"; sha256 = "006s6a5xhkvpxm0f25g85xiks7cv5gb6zfqakw4hq4r9sisi5mvd"; }) 103 - (fetchNuGet { pname = "Microsoft.NETCore.App.Crossgen2.linux-arm64"; version = "7.0.18"; sha256 = "1645i1pqd8a700hf7l0bj2hyflyllsrhvw9nc70fid6sin20nm5y"; }) 104 - (fetchNuGet { pname = "Microsoft.NETCore.App.Crossgen2.linux-x64"; version = "7.0.18"; sha256 = "0sabmz4ifqgc22hr1dp5ci7xlhlfxdzl2zvlf53mwkn79818liar"; }) 105 - (fetchNuGet { pname = "Microsoft.NETCore.App.Crossgen2.osx-x64"; version = "7.0.18"; sha256 = "1nda77r6bxa21zph5zymnnk1wym8sla2qrnrqrd0a9sqmq82v3bp"; }) 106 - (fetchNuGet { pname = "Microsoft.NETCore.App.Crossgen2.osx-arm64"; version = "7.0.18"; sha256 = "1imi3c2g4mpc83ppbl4ipq9v73h2pd3497dcpz8mcv1z82ga0pdy"; }) 107 - (fetchNuGet { pname = "Microsoft.NETCore.App.Host.win-arm"; version = "7.0.18"; sha256 = "1iws4awg6ph7xblcckza1xd0wzq05s7fkx86j4acsxqmvi696fp7"; }) 108 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.win-arm"; version = "7.0.18"; sha256 = "1ix4j79k2azkanpnx63ifjrmfh3qx501rzk3bknf7vh2c0ds2p9d"; }) 109 - (fetchNuGet { pname = "runtime.win-arm.Microsoft.NETCore.DotNetAppHost"; version = "7.0.18"; sha256 = "07n3npyw36jddvixnc89yhkj1nj70a1fxh7skq92720z5i76wwbd"; }) 110 - (fetchNuGet { pname = "runtime.win-arm.Microsoft.NETCore.DotNetHost"; version = "7.0.18"; sha256 = "02girjrnralf4pdz4cv0pvvxvkakriqakgw95ci0ywqn5gv379b0"; }) 111 - (fetchNuGet { pname = "runtime.win-arm.Microsoft.NETCore.DotNetHostPolicy"; version = "7.0.18"; sha256 = "1wbals50h7lnnqpgrinvq5hknl6mvfkgjd83i8c54cpimcy20myl"; }) 112 - (fetchNuGet { pname = "runtime.win-arm.Microsoft.NETCore.DotNetHostResolver"; version = "7.0.18"; sha256 = "07n6jq7h5750zznv65jjasis010n4b70416mmnc0rn6vdnz3fsbn"; }) 113 - (fetchNuGet { pname = "Microsoft.NETCore.App.Composite"; version = "7.0.18"; sha256 = "14h8i3539ghggliix8b7gnzw1wx4cgb6qn7qqx7zaij6b34r9plz"; }) 114 - (fetchNuGet { pname = "runtime.linux-arm64.Microsoft.DotNet.ILCompiler"; version = "7.0.18"; sha256 = "1hmnw40zw3m1bwlb0xdnfl1gf66551cyq9vavvj3mnxpximwbc02"; }) 115 - (fetchNuGet { pname = "runtime.linux-musl-arm64.Microsoft.DotNet.ILCompiler"; version = "7.0.18"; sha256 = "0a1ln258drgykx1x8hswbfy991mjh017j5f47avgbkq7gxbwvsjx"; }) 116 - (fetchNuGet { pname = "runtime.linux-musl-x64.Microsoft.DotNet.ILCompiler"; version = "7.0.18"; sha256 = "1j37aizp32bfdjs5p1grjdqzyci37gblgj4vxgr585v1whs5bvnx"; }) 117 - (fetchNuGet { pname = "runtime.linux-x64.Microsoft.DotNet.ILCompiler"; version = "7.0.18"; sha256 = "1j7q7nbw887l7np3sy1snxyvwmlfq4kfhbrdx73ng721mv7bvkdd"; }) 118 - (fetchNuGet { pname = "runtime.osx-x64.Microsoft.DotNet.ILCompiler"; version = "7.0.18"; sha256 = "0518w3ifl093jap27p2xhh923if5r01jg70sbkfh3sgc7vwqjsdd"; }) 119 - (fetchNuGet { pname = "runtime.win-arm64.Microsoft.DotNet.ILCompiler"; version = "7.0.18"; sha256 = "1h2fkbva4ddaswkw3zq4bv7gvkxx811svdczxvjx2vhw2fyw3b45"; }) 120 - (fetchNuGet { pname = "runtime.win-x64.Microsoft.DotNet.ILCompiler"; version = "7.0.18"; sha256 = "07sbkvvx4ixl0yxy91y0avbr7fv2j26p25c9cq42w4jkjzacfjc1"; }) 7 + (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.linux-arm"; version = "7.0.19"; sha256 = "0da47yabymn7q9viymv9g3apmmaibfddnlix67qpxwn9cikbq459"; }) 8 + (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.linux-arm64"; version = "7.0.19"; sha256 = "0i8mhcy09lmjqhzqmwvp0n5qkizdqin3vap206b2ad28yl6963wz"; }) 9 + (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.linux-musl-arm64"; version = "7.0.19"; sha256 = "0gqwm6as0lyjawwvq7cgks0ji7cfld495h7hcl553f1vpy3wsn2q"; }) 10 + (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.linux-musl-x64"; version = "7.0.19"; sha256 = "099yl2cpqmajdlax174z4bxzw2m4ry5abfx8s10q7h6d95fcnmrp"; }) 11 + (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.linux-x64"; version = "7.0.19"; sha256 = "1zypq8jgk9z3kn3mmkdijvc9h65iyy7gaif9p0vhnylmvvm89jzp"; }) 12 + (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.osx-x64"; version = "7.0.19"; sha256 = "1jmg7sxjnsmaa7ag6bgyhndlhvibswcmnrw0n6sr6crw2y0in2a3"; }) 13 + (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.win-arm64"; version = "7.0.19"; sha256 = "0dyk2x5jc3vdpfyl8q6q6wqz8hwzsgvyrjd3956mvs3mrp00brp6"; }) 14 + (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.win-x64"; version = "7.0.19"; sha256 = "1g941bzffbdlqlxpgq356mv6n6g72d2yn0rhv0ix53834369367i"; }) 15 + (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.win-x86"; version = "7.0.19"; sha256 = "0xz2lacyda09kxs2d7hasvh51dw6pa6xs7k0q809ni247v7bnab0"; }) 16 + (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.win-arm"; version = "7.0.19"; sha256 = "1kkkajxxdbcy1kgh80183l8v00fv1l81kx5wmxgypz15lqnpmv2l"; }) 17 + (fetchNuGet { pname = "Microsoft.AspNetCore.App.Ref"; version = "7.0.19"; sha256 = "19pjhnx49srxp1qwknc390gapc44019wy4adz9caxpryw0ch4l1x"; }) 18 + (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.linux-musl-arm"; version = "7.0.19"; sha256 = "184fjnln6bzg55xz1xc3bmgaanlrh7jxn48fccks163gnir0frjc"; }) 19 + (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.osx-arm64"; version = "7.0.19"; sha256 = "1dqilsqwwymy7fq2pnvjggn5mfvizqsisla0c36w53mg6xx7vn78"; }) 20 + (fetchNuGet { pname = "Microsoft.NETCore.App.Host.linux-arm"; version = "7.0.19"; sha256 = "1pld28mqy2gy5rsy688y0n5lhzrqzhv1pszqq4bx2ki2rcqka4y6"; }) 21 + (fetchNuGet { pname = "Microsoft.NETCore.App.Host.linux-arm64"; version = "7.0.19"; sha256 = "1dv4vk07a7kj53sk1nf63h51swzk9yl4j7jdvkc5w2v0z5a186hm"; }) 22 + (fetchNuGet { pname = "Microsoft.NETCore.App.Host.linux-musl-arm64"; version = "7.0.19"; sha256 = "03766ks38fir978qm6s958zzywvqlnfqsj4mq14ifq36dphmkp4a"; }) 23 + (fetchNuGet { pname = "Microsoft.NETCore.App.Host.linux-musl-x64"; version = "7.0.19"; sha256 = "034v4p5w946yvfialqszaywjncqixv9bpc3x8v87wyr95pa3b7bv"; }) 24 + (fetchNuGet { pname = "Microsoft.NETCore.App.Host.linux-x64"; version = "7.0.19"; sha256 = "0jcfmaq4ckcpywwxm1ack9xa001aic8pn85ggglidxgcfdr6mpzd"; }) 25 + (fetchNuGet { pname = "Microsoft.NETCore.App.Host.osx-x64"; version = "7.0.19"; sha256 = "1srx048x6nv88s308bfn2vsg9gyqvzmgn4xlzknm9yr89c5pm96q"; }) 26 + (fetchNuGet { pname = "Microsoft.NETCore.App.Host.win-arm64"; version = "7.0.19"; sha256 = "14l69l4fnvykmyq48i60xaipc7n72l5acjwvbvm2hg5sx848mnsv"; }) 27 + (fetchNuGet { pname = "Microsoft.NETCore.App.Host.win-x64"; version = "7.0.19"; sha256 = "0zs1jpj64wrjwkw3yqs3ryl08m9qlk3ksv74cy21g6bgx3xaq05y"; }) 28 + (fetchNuGet { pname = "Microsoft.NETCore.App.Host.win-x86"; version = "7.0.19"; sha256 = "05x34bg48y4aas3yv88ksd84vjz2jj1y7hjkwddmcpd4ni90ixmh"; }) 29 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.linux-arm"; version = "7.0.19"; sha256 = "1d84xdva4av8mv2msbi759fb13sxig0qzdr6a9pmlq8gb8hf7zma"; }) 30 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.linux-arm64"; version = "7.0.19"; sha256 = "0m30aykrzl48i8589qn8z89hm9p1yl71cdigv1f09fmwb7c6jfm3"; }) 31 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.linux-musl-arm64"; version = "7.0.19"; sha256 = "0akwsg0q1498ribamba3qkabp0rgn941dsrswb29sbpwfyyqmmgg"; }) 32 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.linux-musl-x64"; version = "7.0.19"; sha256 = "06xcc29albls44invg5dfyjf3qzcn991h7sdlbhvc5v0xyk72fhx"; }) 33 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.linux-x64"; version = "7.0.19"; sha256 = "12zgh8pvbdl99zs0rq5ajbl91r976i47hdrrvxl2hbsxl2ws3brs"; }) 34 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.osx-x64"; version = "7.0.19"; sha256 = "1lwnwxscza5m7pk83fwjz5r9kms3ybag2rl07f3gqp3b203iyyxx"; }) 35 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.win-arm64"; version = "7.0.19"; sha256 = "1kgz4594742cd72vh23ra5gr4b9sgxfim2b608z9bmp0slnr08k1"; }) 36 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.win-x64"; version = "7.0.19"; sha256 = "0njfv091dlc7aff6nj0v7g2b583ns14lkmjf93z184sgav37ynvp"; }) 37 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.win-x86"; version = "7.0.19"; sha256 = "0hssqp21mjsacxf53g7jjc6ss3689199rxymlzp1sswjhhz8w9ci"; }) 38 + (fetchNuGet { pname = "Microsoft.NETCore.DotNetAppHost"; version = "7.0.19"; sha256 = "1pja0r3p7n41hm0bjcdvmi4ymsd2jr7m2pcky4107dz8lf2l0axb"; }) 39 + (fetchNuGet { pname = "Microsoft.NETCore.DotNetHost"; version = "7.0.19"; sha256 = "1yfy711lpgngy8qmzywjmc7bv0q9j1dz4c6g23vd7q25nw05jrr4"; }) 40 + (fetchNuGet { pname = "Microsoft.NETCore.DotNetHostPolicy"; version = "7.0.19"; sha256 = "0ab5phjb7vs9rc2cynsn5wgxfdh4lnz97whw9n63dyqmi1zp6y7w"; }) 41 + (fetchNuGet { pname = "Microsoft.NETCore.DotNetHostResolver"; version = "7.0.19"; sha256 = "01v9j3j54m2ff7qdfvm5gk77vggjyfy42fjn8lcgz38gi6z57742"; }) 42 + (fetchNuGet { pname = "runtime.linux-arm64.Microsoft.NETCore.DotNetAppHost"; version = "7.0.19"; sha256 = "059qxvvyyqihxfmg21c3v6ykb0yf6ay88pc9r1dv27say4glr28q"; }) 43 + (fetchNuGet { pname = "runtime.linux-arm64.Microsoft.NETCore.DotNetHost"; version = "7.0.19"; sha256 = "09ra2dm7zqjm000rpz2l6jqsf05f97kkkd754djf337h0kskwfkg"; }) 44 + (fetchNuGet { pname = "runtime.linux-arm64.Microsoft.NETCore.DotNetHostPolicy"; version = "7.0.19"; sha256 = "1dbzmscgp2drqijl1rl8jkyn1bawfyzq0xlndk1knh7lwq1qhrwz"; }) 45 + (fetchNuGet { pname = "runtime.linux-arm64.Microsoft.NETCore.DotNetHostResolver"; version = "7.0.19"; sha256 = "0w2gvwg8mipvvp9q88asvpaxg96v7k52c535sd70b2lxmwgaf5aw"; }) 46 + (fetchNuGet { pname = "runtime.linux-arm.Microsoft.NETCore.DotNetAppHost"; version = "7.0.19"; sha256 = "10xjjhbivxb37yq7a417r3hmp5vvk75800jwlysfa241yq2x3ysk"; }) 47 + (fetchNuGet { pname = "runtime.linux-arm.Microsoft.NETCore.DotNetHost"; version = "7.0.19"; sha256 = "0frf9xf70fh595m6hg9h5wivhvm229dd9w1zij4jwsl532n9s80i"; }) 48 + (fetchNuGet { pname = "runtime.linux-arm.Microsoft.NETCore.DotNetHostPolicy"; version = "7.0.19"; sha256 = "1agbxkypvhcdwf2w3zfnsx7ncfi5nzhnays7b8ciawnjr3jp10gh"; }) 49 + (fetchNuGet { pname = "runtime.linux-arm.Microsoft.NETCore.DotNetHostResolver"; version = "7.0.19"; sha256 = "056v3fyc0bqad3kixcggzvjrvflxhiiivy90s1rd9gbcm79zyg0x"; }) 50 + (fetchNuGet { pname = "runtime.linux-musl-arm64.Microsoft.NETCore.DotNetAppHost"; version = "7.0.19"; sha256 = "1zya7f9gp3rr31kshw3c53wmqz5f8qdr511wf2vyi2854b1gm96v"; }) 51 + (fetchNuGet { pname = "runtime.linux-musl-arm64.Microsoft.NETCore.DotNetHost"; version = "7.0.19"; sha256 = "156zby9bxx1mcfnxjvgbcmlxx5zi5l3dys8kgb1wfy9ipbhcjh16"; }) 52 + (fetchNuGet { pname = "runtime.linux-musl-arm64.Microsoft.NETCore.DotNetHostPolicy"; version = "7.0.19"; sha256 = "03z39bbpq5h9rvs9ixcrhvf18s3hsfap5zsi0j3yrkf8v5zqziil"; }) 53 + (fetchNuGet { pname = "runtime.linux-musl-arm64.Microsoft.NETCore.DotNetHostResolver"; version = "7.0.19"; sha256 = "0agdz3g1v33d8bxm7fk1c0mvlkyh5hvr17f0d5g3yzrzlnrxlc8s"; }) 54 + (fetchNuGet { pname = "runtime.linux-musl-x64.Microsoft.NETCore.DotNetAppHost"; version = "7.0.19"; sha256 = "0nkmj3hl0w5b8ndx0yb86dddq6w5qcknw0xvr40d6rlafsgbfdq2"; }) 55 + (fetchNuGet { pname = "runtime.linux-musl-x64.Microsoft.NETCore.DotNetHost"; version = "7.0.19"; sha256 = "0fkkcm9bd7kv87bwfi434ikh0an2n6g340vr3pdz8f292r9kq4d7"; }) 56 + (fetchNuGet { pname = "runtime.linux-musl-x64.Microsoft.NETCore.DotNetHostPolicy"; version = "7.0.19"; sha256 = "11sa38y72qi8v5pncw8j2ql89q3rl27nvmh1bpq4rbvnspl4pvqs"; }) 57 + (fetchNuGet { pname = "runtime.linux-musl-x64.Microsoft.NETCore.DotNetHostResolver"; version = "7.0.19"; sha256 = "1hrd03lbk63p91fn0rf0fybqwqk2mv57q2g82qns0991cl61fvi8"; }) 58 + (fetchNuGet { pname = "runtime.linux-x64.Microsoft.NETCore.DotNetAppHost"; version = "7.0.19"; sha256 = "0b4kq7c2rcngksq0xf12ijhjx9hch90hwrzw5icffqzhqys40v4f"; }) 59 + (fetchNuGet { pname = "runtime.linux-x64.Microsoft.NETCore.DotNetHost"; version = "7.0.19"; sha256 = "0j1giclx2kn3mjwm8kbw1jsv0vhnd65jk692y1y1xvzz9jbqfs5b"; }) 60 + (fetchNuGet { pname = "runtime.linux-x64.Microsoft.NETCore.DotNetHostPolicy"; version = "7.0.19"; sha256 = "143j9g5k661dqx9lwsgia215lr7rqz04xk2rk8g3vxckbnk7rzx5"; }) 61 + (fetchNuGet { pname = "runtime.linux-x64.Microsoft.NETCore.DotNetHostResolver"; version = "7.0.19"; sha256 = "0lf7i88b9mdb72dgzc9zk478gwws4saij721v2n6z5xx9ggn5hyp"; }) 62 + (fetchNuGet { pname = "runtime.osx-x64.Microsoft.NETCore.DotNetAppHost"; version = "7.0.19"; sha256 = "012h4pb369y2wrb8rmvvklndsgphh6a6gd1gxqzl6bqfpl716njz"; }) 63 + (fetchNuGet { pname = "runtime.osx-x64.Microsoft.NETCore.DotNetHost"; version = "7.0.19"; sha256 = "01d9xrh0wczpdyzm6zqym9w73his56lq455hc8nkz9ga5a2s058h"; }) 64 + (fetchNuGet { pname = "runtime.osx-x64.Microsoft.NETCore.DotNetHostPolicy"; version = "7.0.19"; sha256 = "02wvkzmmnfj55vzanll95hl2pgg1ihfzarcwkhgnrxyx4j6qrh40"; }) 65 + (fetchNuGet { pname = "runtime.osx-x64.Microsoft.NETCore.DotNetHostResolver"; version = "7.0.19"; sha256 = "0kgd9xl4r39pr4kcpfxgc8s13gpjjzamrkiwhnsj5mqyphslgfp5"; }) 66 + (fetchNuGet { pname = "runtime.win-arm64.Microsoft.NETCore.DotNetAppHost"; version = "7.0.19"; sha256 = "066wx7m5vj841xqqbdw4qshsjxzf0g6n7msgxjyqn2aw58w7kk9b"; }) 67 + (fetchNuGet { pname = "runtime.win-arm64.Microsoft.NETCore.DotNetHost"; version = "7.0.19"; sha256 = "08h5fybyn1dfpsr5gqz7xkafavgaacbf6cijq1hiynvjw89cm7ch"; }) 68 + (fetchNuGet { pname = "runtime.win-arm64.Microsoft.NETCore.DotNetHostPolicy"; version = "7.0.19"; sha256 = "1wvp2xlzh4arsnj7fz7p4714af8j19h7b847kzvafg31ns02ws5h"; }) 69 + (fetchNuGet { pname = "runtime.win-arm64.Microsoft.NETCore.DotNetHostResolver"; version = "7.0.19"; sha256 = "17dr9r8j5kqgkbpnj5j4s2hikk0aiv61xvqchr3vp1pjrpzfi231"; }) 70 + (fetchNuGet { pname = "runtime.win-x64.Microsoft.NETCore.DotNetAppHost"; version = "7.0.19"; sha256 = "14q5q312nz1i8q8ffiz4v0rp9fd52n3pv2p4vn71lavcplh3sfq1"; }) 71 + (fetchNuGet { pname = "runtime.win-x64.Microsoft.NETCore.DotNetHost"; version = "7.0.19"; sha256 = "1hfb76mkxkqc88km752irifbxjd745lncvy0a0zxxahq0hacj425"; }) 72 + (fetchNuGet { pname = "runtime.win-x64.Microsoft.NETCore.DotNetHostPolicy"; version = "7.0.19"; sha256 = "143abqzcq2s22gz32lj6z363fw6hll6mgm6kh530qr437rb8fvqh"; }) 73 + (fetchNuGet { pname = "runtime.win-x64.Microsoft.NETCore.DotNetHostResolver"; version = "7.0.19"; sha256 = "01pxl7n3iygdnzj1b08vz87d43ysc5yqzy8yifriy96yf7c9syb2"; }) 74 + (fetchNuGet { pname = "runtime.win-x86.Microsoft.NETCore.DotNetAppHost"; version = "7.0.19"; sha256 = "15gr2dknc4g0dcg6zkml0f87i4hx7hjz7glmknkpy3bsbadlc075"; }) 75 + (fetchNuGet { pname = "runtime.win-x86.Microsoft.NETCore.DotNetHost"; version = "7.0.19"; sha256 = "1mfk457maqrmxi0rwj4fhchbj0yj65zsr072374idf61q9fp01wc"; }) 76 + (fetchNuGet { pname = "runtime.win-x86.Microsoft.NETCore.DotNetHostPolicy"; version = "7.0.19"; sha256 = "0qcsddvh4cjn8fkk8d8ndlxhlx7xs1799kqap192m5diip4ik0j0"; }) 77 + (fetchNuGet { pname = "runtime.win-x86.Microsoft.NETCore.DotNetHostResolver"; version = "7.0.19"; sha256 = "1wkvap3pm7fa02agg9dbnr4xq60rd5hrcjizr4acn8xrljyxbli7"; }) 78 + (fetchNuGet { pname = "Microsoft.NETCore.App.Host.linux-musl-arm"; version = "7.0.19"; sha256 = "0afrmsv8qk0p8b5964fz38m07v0h89j16x5mlll3pm0a1ih3cshz"; }) 79 + (fetchNuGet { pname = "Microsoft.NETCore.App.Host.osx-arm64"; version = "7.0.19"; sha256 = "0xyc0mdd7nnmc9wjzq8nxwrqagmiqxds8qwghr2rgxw55b9slc33"; }) 80 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.linux-musl-arm"; version = "7.0.19"; sha256 = "1ssgnfhgkly0h8dc5h9c8iyb3n75d7dgc4cxgxnslydwv3ygyh32"; }) 81 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.osx-arm64"; version = "7.0.19"; sha256 = "08gs703rz3agmisy3vsdnyv5lyc32qb8kvfljzszbyqlaf5cxhd1"; }) 82 + (fetchNuGet { pname = "Microsoft.NETCore.App.Ref"; version = "7.0.19"; sha256 = "1z9zfzccqn6yh9mcqrkiidjagzmnk4blrralzb8q0b7mnf1b1ww9"; }) 83 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.Mono.linux-arm"; version = "7.0.19"; sha256 = "10i3rr8hig3cnnd1wf9isxgmbj6hn59ndsywbif5yhyflgw3fvqm"; }) 84 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.Mono.linux-arm64"; version = "7.0.19"; sha256 = "1rby657hwrw4a26fljbxq7lanl4rhv7sijxcw746lifxx7mzfj6a"; }) 85 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.Mono.linux-musl-x64"; version = "7.0.19"; sha256 = "0gg1rj848cfiyx9cvvddangww9h37586dr15d7l1c2zmk9nlisd7"; }) 86 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.Mono.linux-x64"; version = "7.0.19"; sha256 = "1gvbnqayjc2nkb42f35d5gxc6ffszwg698z4dy8b75838jjqnwdl"; }) 87 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.Mono.osx-arm64"; version = "7.0.19"; sha256 = "0xm8l6wbyx55p75wgpckmsn9brrymslgsr7rm2q1a8z003m86kx7"; }) 88 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.Mono.osx-x64"; version = "7.0.19"; sha256 = "061lhndg6m4infwhnrb243sz3a8hvwvck6hpl106annxms760mq7"; }) 89 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.Mono.win-x64"; version = "7.0.19"; sha256 = "1cm56g54fa18p9hvbmnkiwn7jf4f6bbcny3zd4vsqm9y348dag1i"; }) 90 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.Mono.win-x86"; version = "7.0.19"; sha256 = "01391xxjmgcfgflc4fvrx74a8nr3y48db5m3r9qnj0m49rh60rxs"; }) 91 + (fetchNuGet { pname = "runtime.linux-musl-arm.Microsoft.NETCore.DotNetAppHost"; version = "7.0.19"; sha256 = "0my6x223z6mpwvw6614xzly6haxamnhn9w4a3q91l3ayq4q9crgg"; }) 92 + (fetchNuGet { pname = "runtime.linux-musl-arm.Microsoft.NETCore.DotNetHost"; version = "7.0.19"; sha256 = "1cklsjdk7rvnc2h9pfyq04asjpair2nsnbb002flwyq4nhh35af5"; }) 93 + (fetchNuGet { pname = "runtime.linux-musl-arm.Microsoft.NETCore.DotNetHostPolicy"; version = "7.0.19"; sha256 = "1awcriq95alz79xzd3g669l1wf23bs362z23xkyxmafiyn0h9jvj"; }) 94 + (fetchNuGet { pname = "runtime.linux-musl-arm.Microsoft.NETCore.DotNetHostResolver"; version = "7.0.19"; sha256 = "1xbwsxaxq55azpj49jal50w8a2awd6aa5q5qbxhwv84rqlv8ixd0"; }) 95 + (fetchNuGet { pname = "runtime.osx-arm64.Microsoft.NETCore.DotNetAppHost"; version = "7.0.19"; sha256 = "1xb37xfkblby3gi0rg0hhmy66pcvsm9q0x6ypi0z9lbl64h7r919"; }) 96 + (fetchNuGet { pname = "runtime.osx-arm64.Microsoft.NETCore.DotNetHost"; version = "7.0.19"; sha256 = "0270v287dq263a4p34qxk8g09af4nr9sxn8m4jd192zfm9cggvw6"; }) 97 + (fetchNuGet { pname = "runtime.osx-arm64.Microsoft.NETCore.DotNetHostPolicy"; version = "7.0.19"; sha256 = "12wkp5y27ih8d5k4xrlbi4jd8wg7si9lw03bp2bvmp7grslqdnfp"; }) 98 + (fetchNuGet { pname = "runtime.osx-arm64.Microsoft.NETCore.DotNetHostResolver"; version = "7.0.19"; sha256 = "1mz2y7s9gxj0jkrf8xyi9q2h5xaqily3vzd9b5bpmx69nbi1adip"; }) 99 + (fetchNuGet { pname = "Microsoft.NETCore.App.Crossgen2.linux-musl-arm"; version = "7.0.19"; sha256 = "0anfp4mdsnkkjj398vnqjs5k07z6niriyqz10ccxjzzmkxaq5kb0"; }) 100 + (fetchNuGet { pname = "Microsoft.NETCore.App.Crossgen2.linux-musl-arm64"; version = "7.0.19"; sha256 = "0wj5p8hi9jqr9qn4gl0v367kv43vdh21p1kxsja49vvq98y6c7h9"; }) 101 + (fetchNuGet { pname = "Microsoft.NETCore.App.Crossgen2.linux-musl-x64"; version = "7.0.19"; sha256 = "0izy5gvkwa5a71aq8q9nsbwmy22sghk9x1b42lw97vn4h5ghwcnr"; }) 102 + (fetchNuGet { pname = "Microsoft.NETCore.App.Crossgen2.linux-arm"; version = "7.0.19"; sha256 = "1dsj2nhd8wa8m3w69cs4i89kd1b5812qbdjx14nagwgdazvvakbf"; }) 103 + (fetchNuGet { pname = "Microsoft.NETCore.App.Crossgen2.linux-arm64"; version = "7.0.19"; sha256 = "1c9rzh8va957xvfb4w07409ncv8zps8692yp5dl7xh643djsgpwv"; }) 104 + (fetchNuGet { pname = "Microsoft.NETCore.App.Crossgen2.linux-x64"; version = "7.0.19"; sha256 = "01slq8bk8mk0a59abf6mcs4m39mqzvhb003w4abvqr9vghq8fzbr"; }) 105 + (fetchNuGet { pname = "Microsoft.NETCore.App.Crossgen2.osx-x64"; version = "7.0.19"; sha256 = "088yv3n9qghnw8fgbrkc90xnb0dlrr13j60wj6qhd8rsk53cvxig"; }) 106 + (fetchNuGet { pname = "Microsoft.NETCore.App.Crossgen2.osx-arm64"; version = "7.0.19"; sha256 = "158pibija2rfnmxsrynypslknlr76h2vgpq4p0n9bfy79pb7krda"; }) 107 + (fetchNuGet { pname = "Microsoft.NETCore.App.Host.win-arm"; version = "7.0.19"; sha256 = "0qldfcpjid7a05b0sk7zznfz6xvpaz74hkyqs6ybs7ac1mkb5d3m"; }) 108 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.win-arm"; version = "7.0.19"; sha256 = "01rbx0phr7apkdkflsmbbzjzfzxl2ls3q6a00bqijabzb9brmfaf"; }) 109 + (fetchNuGet { pname = "runtime.win-arm.Microsoft.NETCore.DotNetAppHost"; version = "7.0.19"; sha256 = "1s1x47nkaxk4mg2k4a81g6c3i2lf6lzzqn5rhs67fsp2p7gam03x"; }) 110 + (fetchNuGet { pname = "runtime.win-arm.Microsoft.NETCore.DotNetHost"; version = "7.0.19"; sha256 = "0m9s3fgmlcy1r5knfgm1qm4s9gskjvnpnscsv88hkczw8m4v8if2"; }) 111 + (fetchNuGet { pname = "runtime.win-arm.Microsoft.NETCore.DotNetHostPolicy"; version = "7.0.19"; sha256 = "02sq95zkgqlksa47n7mgqkrbk44v20fc8k7slsyk3faplg0bzf60"; }) 112 + (fetchNuGet { pname = "runtime.win-arm.Microsoft.NETCore.DotNetHostResolver"; version = "7.0.19"; sha256 = "1pk7afp09ilzlinpbqjnbjnww6i7iykrhg822x8ggrmqm0bmxvyn"; }) 113 + (fetchNuGet { pname = "Microsoft.NETCore.App.Composite"; version = "7.0.19"; sha256 = "0mar4ls20prrj2b8vb2yaqgfz46gqsjll5amyacv92vgnyixhv9n"; }) 114 + (fetchNuGet { pname = "runtime.linux-arm64.Microsoft.DotNet.ILCompiler"; version = "7.0.19"; sha256 = "1934pv8q3jdnsj94lid10wc6xmicmqvg82cv480898hfcvwp25zb"; }) 115 + (fetchNuGet { pname = "runtime.linux-musl-arm64.Microsoft.DotNet.ILCompiler"; version = "7.0.19"; sha256 = "0w0j7pmdm0x49yv4z96d6phmwqfj2sjm3aaa5k856g08b38kviyi"; }) 116 + (fetchNuGet { pname = "runtime.linux-musl-x64.Microsoft.DotNet.ILCompiler"; version = "7.0.19"; sha256 = "116yy1k23jhaibhqr2jjjxd0pbw3n6ps3y8mx6i7s6k2mdglys5y"; }) 117 + (fetchNuGet { pname = "runtime.linux-x64.Microsoft.DotNet.ILCompiler"; version = "7.0.19"; sha256 = "14p7d7gb4bxi7vdzs0jajcblb3zbp8bg2168yl09jmqwyp3qwrrb"; }) 118 + (fetchNuGet { pname = "runtime.osx-x64.Microsoft.DotNet.ILCompiler"; version = "7.0.19"; sha256 = "15k2sn69mph4cfrr90rpa803z1jx9bzjccn5z5q5cc7ywnrm8xcr"; }) 119 + (fetchNuGet { pname = "runtime.win-arm64.Microsoft.DotNet.ILCompiler"; version = "7.0.19"; sha256 = "1gzmw2mp0pb9jj81784xfazxk6i4l9mgffd5k1ljbq4kp8i40wiq"; }) 120 + (fetchNuGet { pname = "runtime.win-x64.Microsoft.DotNet.ILCompiler"; version = "7.0.19"; sha256 = "1lx6qydgvip8i7f3v93yn9ibdyl384hblbsk0hc384jai62hs444"; }) 121 121 ]; 122 122 in rec { 123 - release_7_0 = "7.0.18"; 123 + release_7_0 = "7.0.19"; 124 124 125 125 aspnetcore_7_0 = buildAspNetCore { 126 - version = "7.0.18"; 126 + version = "7.0.19"; 127 127 srcs = { 128 128 x86_64-linux = { 129 - url = "https://download.visualstudio.microsoft.com/download/pr/39baab6f-96c6-42bf-b772-29830158176b/cde064792e7f22506d692f54993fe5a5/aspnetcore-runtime-7.0.18-linux-x64.tar.gz"; 130 - sha512 = "d2c3af93b9b8280c4e519f052f443e0504ccf7a04b3eef60500b2e3a8874a60a3a545ca936f8433887bfa6388106c19283c5a6a2c78ffdc19889bde3edbefbda"; 129 + url = "https://download.visualstudio.microsoft.com/download/pr/d3d6c11a-a7d6-4be4-8b2b-11154b846100/69bd5fbe2621600e84bb191d0b13abdd/aspnetcore-runtime-7.0.19-linux-x64.tar.gz"; 130 + sha512 = "569fcc25f0c32df3b28c4569bbeabb6c20afc8865088f14a405d3847bbfd159cf291d2dc4810140b8f436f06c95ebb09214ac837b5ade6bd8121e9c0204eb217"; 131 131 }; 132 132 aarch64-linux = { 133 - url = "https://download.visualstudio.microsoft.com/download/pr/119db743-de75-4bfd-ac51-f2a2bfd1dd1b/4e96dcef933e3787a34691a86f8972cf/aspnetcore-runtime-7.0.18-linux-arm64.tar.gz"; 134 - sha512 = "62bc42a8d094be8253be90acba02253c27afb1eb6b06976c3adea74f967f522bf7938eaed25c824d6e36a9fb71f7248ba315cc67577a3c7fb73b0d3d7a41ecac"; 133 + url = "https://download.visualstudio.microsoft.com/download/pr/78d9729a-9f05-49a6-81b7-b041452a2828/73214343fb60deddb7faf355ecbbaca3/aspnetcore-runtime-7.0.19-linux-arm64.tar.gz"; 134 + sha512 = "c71e6a756bdac7f68289fb6c67fcb8c347586e421cbf4345fb510686ff5948e25898759dc7ab30904ac07a7d595508e59d66b5b6dc88d30b54c141c82bd590cf"; 135 135 }; 136 136 x86_64-darwin = { 137 - url = "https://download.visualstudio.microsoft.com/download/pr/79433d6a-6ac8-4c1e-851b-a9335319d846/c91648d921bcec7bedebdaf83cfe0487/aspnetcore-runtime-7.0.18-osx-x64.tar.gz"; 138 - sha512 = "50cecd47a75498ffd2862b3a470c0e05848853b163925c0fb27a7912fc39f77aa27b91d4e780d7ef90e6bce22510714132cbdc06cee0db7547c9d79258d29895"; 137 + url = "https://download.visualstudio.microsoft.com/download/pr/e2bed645-39cb-4ea7-ba7c-503741d8d9e6/07bc37ec71cfe01a4187d94275580b3c/aspnetcore-runtime-7.0.19-osx-x64.tar.gz"; 138 + sha512 = "5f16d0cea6b637ad9835dabf23b37f47d8fe92fbd4cfb1ac046fb607beb380255759f14f3e80f9a49c3545afc47000c770394d4dacc5b7444ab0b6d87a5336b5"; 139 139 }; 140 140 aarch64-darwin = { 141 - url = "https://download.visualstudio.microsoft.com/download/pr/be772e15-f6f4-46a4-b0de-2365ccafa69d/fac2f4ae76ba20f7d16e07b60c2b8801/aspnetcore-runtime-7.0.18-osx-arm64.tar.gz"; 142 - sha512 = "3c56c17545d530a35cc13bad410da1caea33bbcc7c3a857b4d68f48a64f02cbba516d83cd0a3fea9a8ab463dac8140a6c079fb63887c176bdb2a44552dc71852"; 141 + url = "https://download.visualstudio.microsoft.com/download/pr/879c8cbe-37bd-4fc9-b8db-857a3fe09144/231cf7ae2bca959750144d08ad08d057/aspnetcore-runtime-7.0.19-osx-arm64.tar.gz"; 142 + sha512 = "10fdc9868efdd8cf25dbe10843ea17075747cc1bee52e495af7e1858ff556dac2802bfcc85fd474527f142672b45e7a1c5b63a927529036923671f6cb9092431"; 143 143 }; 144 144 }; 145 145 }; 146 146 147 147 runtime_7_0 = buildNetRuntime { 148 - version = "7.0.18"; 148 + version = "7.0.19"; 149 149 srcs = { 150 150 x86_64-linux = { 151 - url = "https://download.visualstudio.microsoft.com/download/pr/9f48eeb2-ca25-4828-87d9-1114e751fa6e/df269cfd6b9661bcd776ed979541c0fe/dotnet-runtime-7.0.18-linux-x64.tar.gz"; 152 - sha512 = "9d2aaf11e798d8dbfa74a93cfc53c6bb631cfb041b5dc55c208f980f61808e872dfa9880c7d9d4b42aad934e5350c9e8f327664909054fa0109636158701b4b8"; 151 + url = "https://download.visualstudio.microsoft.com/download/pr/09ab2389-5bab-4d45-9a91-a56ff322e83c/2f8192a98b6887c7f12b0d2dc4a06247/dotnet-runtime-7.0.19-linux-x64.tar.gz"; 152 + sha512 = "4e556c1437a58d2325e3eeb5a5c4b718599dff206af957a80490ef2945b1a2f5114d25b808b4c9ea233cc4eb2e5ce40932bb249e198319e97f3b5cc443612e6f"; 153 153 }; 154 154 aarch64-linux = { 155 - url = "https://download.visualstudio.microsoft.com/download/pr/e7dc89d5-3287-4f82-b1fa-e0a7f12f7736/3206b55ee6d717f4008a46e67048c100/dotnet-runtime-7.0.18-linux-arm64.tar.gz"; 156 - sha512 = "7cf7d3b0b12cec234227529c66f2a2ecab49e63af2c766d7539b6591f709342da4f2b846726630ab6104a19cd94c1eed5ec66e1a773e3477b344941bc1ee5f41"; 155 + url = "https://download.visualstudio.microsoft.com/download/pr/81616b49-6c82-4778-884d-caeca4c195a9/51a0a0bcdd17fdb77be7f1c5db52165e/dotnet-runtime-7.0.19-linux-arm64.tar.gz"; 156 + sha512 = "fde0a0190c77cd361722d2ce449b207b6a26c7f6462dcc9a2debfa1b0e670f7df0b538758ea5eb865f156df17a98722ed7e8f7a2bfceb0a486d1b06a2d436240"; 157 157 }; 158 158 x86_64-darwin = { 159 - url = "https://download.visualstudio.microsoft.com/download/pr/2bbb4960-9fb2-4bd9-a525-80e6260b5979/adecde0cf003ce421b06e76197627533/dotnet-runtime-7.0.18-osx-x64.tar.gz"; 160 - sha512 = "ba790572b8b37a33766dcdfae319c5021568e49be3d9a55c688655b1b4174faf6cf20b3077fefaf57fa2b12261b682a685345db77034412dc883cfa05b8e8ca9"; 159 + url = "https://download.visualstudio.microsoft.com/download/pr/92c2b6d8-783f-4a48-8575-e001296d4a54/c11d13f994d5016fc13d5c9a81e394f0/dotnet-runtime-7.0.19-osx-x64.tar.gz"; 160 + sha512 = "005828f1138cfce1f04741a478595186a1098185747ed0872099d7541d2bed16416f36d1214f6289f6ed1d3543e119733e4bba6dddf42db43150bc7bf2e980df"; 161 161 }; 162 162 aarch64-darwin = { 163 - url = "https://download.visualstudio.microsoft.com/download/pr/38526acb-1b20-4fd6-8a4d-09d72a48c9f8/8db4c13c722425ca9b82fed60d539815/dotnet-runtime-7.0.18-osx-arm64.tar.gz"; 164 - sha512 = "f9a5f09afd9c7cead985cda7db03fa6bd6b684aecedb2b8bfe3bb2569704c233501b1f9888e2e26f273d5ab124b0b9fecf3edf8c7d0b0908f5a499323c67515f"; 163 + url = "https://download.visualstudio.microsoft.com/download/pr/4b8da067-3b82-4636-8e0d-18583857e64b/fba7ceea0e014535a695ceb9259886c6/dotnet-runtime-7.0.19-osx-arm64.tar.gz"; 164 + sha512 = "394f0f068b1dcd8f116c41391baccb46fd1112578281b0d11edd6dc194b767850c8a2bb9e2bc041b1e872872afb130fa10f7c98fbac988dd80c0d788a0f23e7f"; 165 165 }; 166 166 }; 167 167 }; 168 168 169 169 sdk_7_0_4xx = buildNetSdk { 170 - version = "7.0.408"; 170 + version = "7.0.409"; 171 171 srcs = { 172 172 x86_64-linux = { 173 - url = "https://download.visualstudio.microsoft.com/download/pr/a256265b-0ec6-4b63-b943-bc27bcfc98c0/47c8bbd54d7f6dbfe0ca4985c410282e/dotnet-sdk-7.0.408-linux-x64.tar.gz"; 174 - sha512 = "89d39601a27cbbc74a5dbbfc6dda6661220e76b73f7387fec6558222aa144734b44db5788bcb888c7f49d4659c8b0ea60794f93ad1223c86ceafdddf6e6b70e2"; 173 + url = "https://download.visualstudio.microsoft.com/download/pr/03e24745-90c7-4661-8ffe-e5a857b6e6a3/99038e4e48e403a17bcbe509bfe8d6b8/dotnet-sdk-7.0.409-linux-x64.tar.gz"; 174 + sha512 = "0b67d04621d7c2a1856fdb0cf6e081090b4e1df1075d2f881fb33655422f2f59f63f8324559dc207510485f77781cc20c7a407e3c04dc0b53246987164427671"; 175 175 }; 176 176 aarch64-linux = { 177 - url = "https://download.visualstudio.microsoft.com/download/pr/460f951f-0944-442b-8474-555e20394ca8/5fcf6b1845d87d772f919737b3dd5f55/dotnet-sdk-7.0.408-linux-arm64.tar.gz"; 178 - sha512 = "7c5e18f165c2d74345102244a617b475b68c208434512211af154b28896ebe5487caeff96b278e877af384e6e0deb476d38be16d275ad88af1ae177afef561ac"; 177 + url = "https://download.visualstudio.microsoft.com/download/pr/f065c679-7039-4968-9a2f-dda7cda72f5f/702eb11e596f498a1cb23b636e1d83be/dotnet-sdk-7.0.409-linux-arm64.tar.gz"; 178 + sha512 = "ebf98115e3ef9a5388394443b8cec8aa104c2468fbcb6c964661115665645326abb0bce42786a98eef4ebffe42dedd36de8608e15538d191e934dc83fcd8b2f5"; 179 179 }; 180 180 x86_64-darwin = { 181 - url = "https://download.visualstudio.microsoft.com/download/pr/dff43b03-6ca6-413b-a48e-82f593c12d40/5760ef99163056c6850f0fe140e01958/dotnet-sdk-7.0.408-osx-x64.tar.gz"; 182 - sha512 = "b183b1a84b345f8e41701f0f1cdcc68d0bcf286d3aad53bf04d860bc6260bde87a6797f6c55ef807609680c10b6efea6bcdf6732d3fa097ffaa99b505bbea7a9"; 181 + url = "https://download.visualstudio.microsoft.com/download/pr/feee7b85-ddb2-4ff5-8927-5656ea1e0a6f/ecdfb330298d11e0d49c3b595ddea452/dotnet-sdk-7.0.409-osx-x64.tar.gz"; 182 + sha512 = "70efa550d6d78e17db0368e8500ddfd9a6343707e009247d00062613e8052463d3d83779af619128233e78a29f5b5a5f71f0eaba740c3c3f74be0c76145c892b"; 183 183 }; 184 184 aarch64-darwin = { 185 - url = "https://download.visualstudio.microsoft.com/download/pr/749ab69c-0726-4503-9e92-035f13753374/68cbf2a5d6c8e1184f5d8d8ca3bc49a6/dotnet-sdk-7.0.408-osx-arm64.tar.gz"; 186 - sha512 = "ce1b9f7bc67c80b8774b7a8071438027f322c35c330be2667bf15a80a8826a32d9f8a7d2762ba7f3c7417b31f3ac288f336956f6e701d282e80f02c68b805177"; 185 + url = "https://download.visualstudio.microsoft.com/download/pr/0025e3a3-0221-493e-90cf-a5baaedc3cfa/716e07c6342d6625dd9a04f632ca8d50/dotnet-sdk-7.0.409-osx-arm64.tar.gz"; 186 + sha512 = "bf234cc2c6e90abb891cbefc3eed35e63fae07d312f01193d8890dce03edbaa3fe5a095cc695bb03ef35fcfd1c2e45e7b9d54c3b483761d7b1653a019c55b53f"; 187 187 }; 188 188 }; 189 189 inherit packages; 190 190 }; 191 191 192 192 sdk_7_0_3xx = buildNetSdk { 193 - version = "7.0.315"; 193 + version = "7.0.316"; 194 194 srcs = { 195 195 x86_64-linux = { 196 - url = "https://download.visualstudio.microsoft.com/download/pr/e4cc9a2f-7fa1-4ac4-b839-3838d8762ee5/caef8745bcdaf1c089ade6cdb89eee5c/dotnet-sdk-7.0.315-linux-x64.tar.gz"; 197 - sha512 = "ffbaca47ee2a3b601abd1e8ccc99981e55d5f904072d5dc76e0c817940bf1ac1b71f5e652f649112bcee7328bcf0408d203b2f7c91d58a6aaa58c8ff553e49f7"; 196 + url = "https://download.visualstudio.microsoft.com/download/pr/28d800b7-e6c4-42a2-a27b-ff9de8979025/ef5dd5c9329e1789ab1dfd3a82e88677/dotnet-sdk-7.0.316-linux-x64.tar.gz"; 197 + sha512 = "1489f33f3314b93ac7b9411e4c884fb630622336bee6765b7f193aecda8798cfa201ae0b32d82ec401d5839601d79d6a854832502b08f6eea860fc47fc1da6f2"; 198 198 }; 199 199 aarch64-linux = { 200 - url = "https://download.visualstudio.microsoft.com/download/pr/12286d30-5894-4ad5-8dfe-8bd03e9fa0ee/58973de54201a7f1963cb524ba421613/dotnet-sdk-7.0.315-linux-arm64.tar.gz"; 201 - sha512 = "a480e012760980121af4eda39dbd0640e824de13f10e916a95e77b7fb591a3c516d40da45fe56dc07cfcbdf24074f4579145d00d45c84ef299ca9ee779c43903"; 200 + url = "https://download.visualstudio.microsoft.com/download/pr/09e91afb-d0a7-4468-9aba-70484bd8cfe2/8ef2416d952b14ec9e00380025960b36/dotnet-sdk-7.0.316-linux-arm64.tar.gz"; 201 + sha512 = "c6c7d57f6ddcb26fae6cef846745bb151296d0f359526161a0e700d9b54ccaef6a24acf2485f2abae1b7305608bfe9204ab89842a712f2913caa092efb756833"; 202 202 }; 203 203 x86_64-darwin = { 204 - url = "https://download.visualstudio.microsoft.com/download/pr/32b714c0-96fd-4179-b2a5-34cd29061e5b/3db1ea8db28f706a8af10dd57d1cb590/dotnet-sdk-7.0.315-osx-x64.tar.gz"; 205 - sha512 = "7a7d3c32f71a89bf0d9e809b068252c2496109ae226acaef163f7221e4a8231a2faa2e81ba0a95e7aeef7780691cb59b993e999d45076a280da518941b9fd2ed"; 204 + url = "https://download.visualstudio.microsoft.com/download/pr/9a092178-2aa4-4c06-b73d-144327a4992d/4709a913d89feda462d9cccd508b4a5f/dotnet-sdk-7.0.316-osx-x64.tar.gz"; 205 + sha512 = "52a96edba93029283d555c13abd1c1b016870bcdbf10db4caaea6f4b18c46aff3b49355f8bf7b8b2548287c1bc31dbe38c6b7a27e40c1129c2eb010c697c002c"; 206 206 }; 207 207 aarch64-darwin = { 208 - url = "https://download.visualstudio.microsoft.com/download/pr/1586c0ec-bae9-450c-83fa-987499e2c9c7/8e2855e078b035404b5fea4f658af1d7/dotnet-sdk-7.0.315-osx-arm64.tar.gz"; 209 - sha512 = "f146ca3f530a96fbd14fe550cded99d36b35dfef4536f2a9174985c933db42c9a6d44708cab83c93a701f6482e0cf868e7aee92385cec201b9d0b5d5f348d642"; 208 + url = "https://download.visualstudio.microsoft.com/download/pr/8e2764ac-debb-4e46-a6f2-637f7c7d8e70/d3da856e4a7d4b45581ff405aee923fb/dotnet-sdk-7.0.316-osx-arm64.tar.gz"; 209 + sha512 = "7f59874fb1638f6f09a5538483ed1b39e482a90bc11555b07cac8fc8ea941dbd9419f57fec252810bb324b89d8647b6bf32d1bd4e6b720c568929d82297d260a"; 210 210 }; 211 211 }; 212 212 inherit packages; 213 213 }; 214 214 215 215 sdk_7_0_1xx = buildNetSdk { 216 - version = "7.0.118"; 216 + version = "7.0.119"; 217 217 srcs = { 218 218 x86_64-linux = { 219 - url = "https://download.visualstudio.microsoft.com/download/pr/4e25d320-2883-4b20-aee7-035d586e1426/fdbbb8209dd2ba57a87351c55ef80e0c/dotnet-sdk-7.0.118-linux-x64.tar.gz"; 220 - sha512 = "4f34257abcc013683c0747f5510cddf26013f5ea4cd068efd7591b0a6e809038395d57842f163489884046bcc54ac7ffb406fff91701c9e371920efe6396b710"; 219 + url = "https://download.visualstudio.microsoft.com/download/pr/03102e44-64d0-414c-9cfa-e212d0160ce8/aad0796ede4708933a4cd75bebd878dc/dotnet-sdk-7.0.119-linux-x64.tar.gz"; 220 + sha512 = "6be08bbbb9d961879b63943413b70e0ceff413e68af59c5c5f01120b02c605e83145a5a9f3417563f9b39159cc5ee149219e99e48ebc92ca2b25c2c0554dd5d6"; 221 221 }; 222 222 aarch64-linux = { 223 - url = "https://download.visualstudio.microsoft.com/download/pr/eec4a58d-3546-4c40-bd82-b6533115b5ea/face73d99a1f01f655dfc3f9cfee2bf5/dotnet-sdk-7.0.118-linux-arm64.tar.gz"; 224 - sha512 = "8e5358e3824ec141ee8406e0a67b8d1bf6965a4f9e7487bdee4ff02344078e95bffe4c46c0f1ae975b1caf7164387d35763f1b81abd2e66593b77cc0470cc957"; 223 + url = "https://download.visualstudio.microsoft.com/download/pr/c0dd267e-4f6a-4a36-9f7d-19813033cb60/69a960be31caa92da70e68c9529ceeab/dotnet-sdk-7.0.119-linux-arm64.tar.gz"; 224 + sha512 = "187b1422f0ce4eb59c3f894cacb074abe285ad0346ce6cd95a240506167932f08c90ef2529492a8fe6a9abf8bd7cf3dd4c7258cc5972ee4fa630d75f03b42ccd"; 225 225 }; 226 226 x86_64-darwin = { 227 - url = "https://download.visualstudio.microsoft.com/download/pr/7ba2b1de-4494-4865-bd90-3931dd6ec41e/4897e62ba478d5f3b5c48ab0c98370b7/dotnet-sdk-7.0.118-osx-x64.tar.gz"; 228 - sha512 = "48081b4b53f7dd79aa9e11e362ab53d50b7efdb48f18fa8f0828c5e179c79b36b192b9b514e9effb04688838bf87a4d4b3763539fac34dd2f2570e1b8882d7b9"; 227 + url = "https://download.visualstudio.microsoft.com/download/pr/aea7635c-c965-4ee1-9f2d-496873e2c308/e9a800bff17679887458ec75e988fe82/dotnet-sdk-7.0.119-osx-x64.tar.gz"; 228 + sha512 = "dd70345a9093abfd0a839394e425c7b9907afc5884828127ee503ead5395338c1f1b013a481eabff6f1ea1e9e57ce76ef0875d5feb1540f3b05539e9afd129ff"; 229 229 }; 230 230 aarch64-darwin = { 231 - url = "https://download.visualstudio.microsoft.com/download/pr/b3541939-7484-4cc4-b8c3-abc2bea28799/610db5c984192e3710151de48f918d1c/dotnet-sdk-7.0.118-osx-arm64.tar.gz"; 232 - sha512 = "25b2fd5a26b870f5b0f407acb3b0cdabe9287d2f7b7c3db81f85e34cecb7a3211a72ee54d0e0adafbbee151387e1bfe51e3681b6a0a347509bddd14b589ba117"; 231 + url = "https://download.visualstudio.microsoft.com/download/pr/06970037-ff94-42b5-a640-16cc25e0ca30/628233310199d362e7af0fb25825f8ad/dotnet-sdk-7.0.119-osx-arm64.tar.gz"; 232 + sha512 = "c411bae746be15f270513412a38e8fde5a72795f876f26b7e5452eaecd3b4fb0e979f9391e0f5f652c692a4516741f2165d77afd5ef264bb24b8bda9cc1e4bf4"; 233 233 }; 234 234 }; 235 235 inherit packages;
+168 -145
pkgs/development/compilers/dotnet/versions/8.0.nix
··· 4 4 5 5 let 6 6 packages = { fetchNuGet }: [ 7 - (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.linux-arm"; version = "8.0.4"; sha256 = "0d0sgy8rczy78l0inaymcldmw1h742407c7q5y37hbnrw7p8ix7c"; }) 8 - (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.linux-arm64"; version = "8.0.4"; sha256 = "0acxp6p5ln9sym8w65lz32ywpxvzpm78j09xd6bcjcz8n9224az8"; }) 9 - (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.linux-musl-arm64"; version = "8.0.4"; sha256 = "1plwp944v4a6hj12cg2g378bdl0dwr2jwv22hs7bd2gq56226mjs"; }) 10 - (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.linux-musl-x64"; version = "8.0.4"; sha256 = "1mhbxrj2d2xqp7lkl7129alhppjfma1a5z9jdp0pcik2dw6qd4xn"; }) 11 - (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.linux-x64"; version = "8.0.4"; sha256 = "0g2sjwgkgni797p6ay51brvc9snbnrbsmv88002lnvqnz9zgbifr"; }) 12 - (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.osx-x64"; version = "8.0.4"; sha256 = "07iw2h06awcvlicw0cdvvsrllln72jv3wihvpzp89jyfnjibv4xv"; }) 13 - (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.win-arm64"; version = "8.0.4"; sha256 = "108rwwmv331w8maspamfq3hpv1azajnfwxcj9mr4r7xn1137z5y9"; }) 14 - (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.win-x64"; version = "8.0.4"; sha256 = "0fhiimqaqr9nf1d6snbni1g38472pzzb21pjsjkcvb9l4z51hbbl"; }) 15 - (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.win-x86"; version = "8.0.4"; sha256 = "13s2ycyph5p2nddz6crny7zvkaz5f1xylcc8qg24nbwwmrl9539m"; }) 16 - (fetchNuGet { pname = "Microsoft.AspNetCore.App.Ref"; version = "8.0.4"; sha256 = "1s30dsd5ifv4yfdcjb9nm9gsm1wv3jkhy6b7a5xnk9pblpkizv1g"; }) 17 - (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.linux-musl-arm"; version = "8.0.4"; sha256 = "02d9xv1mzr88lvc7vpn7xpnm2jhbb87bl7jkmaj34fr1r52xg045"; }) 18 - (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.osx-arm64"; version = "8.0.4"; sha256 = "040pfyazmii6vyp5jp45c9sw1vqxlrlbhaj6in7vscwd0s67cyi3"; }) 19 - (fetchNuGet { pname = "Microsoft.NETCore.App.Host.linux-arm"; version = "8.0.4"; sha256 = "0pd4v31dfk4z5bbdb29477d2k9jxsg0zslba19vzk7azv1p6zcxs"; }) 20 - (fetchNuGet { pname = "Microsoft.NETCore.App.Host.linux-arm64"; version = "8.0.4"; sha256 = "0qbm26aqlyj12wiiy7hpinxammv1a9dzryq3wkm3ij65vfx8r62s"; }) 21 - (fetchNuGet { pname = "Microsoft.NETCore.App.Host.linux-musl-arm64"; version = "8.0.4"; sha256 = "0gix41xc788xs8mcdssf4xrpp697h0n159a9j9sdg274cxj8vjhx"; }) 22 - (fetchNuGet { pname = "Microsoft.NETCore.App.Host.linux-musl-x64"; version = "8.0.4"; sha256 = "0wf4bmkw90lmwcp9158j4ywsqvik6hryj53zmm1hbaxpfxkjb1bz"; }) 23 - (fetchNuGet { pname = "Microsoft.NETCore.App.Host.linux-x64"; version = "8.0.4"; sha256 = "0dji6ypar30bqzba9hvsbqf4wsk2zmp2blzg3czfnfbs3034wl2a"; }) 24 - (fetchNuGet { pname = "Microsoft.NETCore.App.Host.osx-x64"; version = "8.0.4"; sha256 = "11rd1hbisjzqyrfz4raj0sl9ip4yznbm7in36j6z41awba2gai9q"; }) 25 - (fetchNuGet { pname = "Microsoft.NETCore.App.Host.win-arm64"; version = "8.0.4"; sha256 = "06k1wbyhphmlqrdfzwhg8pr6nd2mbm47jidzy38mqf4n4qqqb64j"; }) 26 - (fetchNuGet { pname = "Microsoft.NETCore.App.Host.win-x64"; version = "8.0.4"; sha256 = "1wvyjsr6yd8ajv8726x7h3fp5kdk6cmgfzyrh0h0vpkn9padac5z"; }) 27 - (fetchNuGet { pname = "Microsoft.NETCore.App.Host.win-x86"; version = "8.0.4"; sha256 = "00hp5n92a383rkn54n041r8092y3r7hs50bn3zazn5ngcfh2a02z"; }) 28 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.linux-arm"; version = "8.0.4"; sha256 = "0fz5hmnfl21a7izs02p3hm6k15f6icnnxhb06wv8fb7fncv2qnjl"; }) 29 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.linux-arm64"; version = "8.0.4"; sha256 = "00ql8vy9mpf3k3s1j0gd0ykb9zn98qpzibrf1sm4hyg1xmvarj8y"; }) 30 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.linux-musl-arm64"; version = "8.0.4"; sha256 = "00s7an056z82k14aq809264nhxwr3kmj34rwzch8v3kyl4pm955d"; }) 31 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.linux-musl-x64"; version = "8.0.4"; sha256 = "14y5nljc6fcbxz48f2m01kyfc9vqxpqwflh9927s77zfr9w2lid5"; }) 32 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.linux-x64"; version = "8.0.4"; sha256 = "0pi459crkny9bwjl2z4znj9kgnkwl00bnc54jq9asi8zvssvcbfm"; }) 33 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.osx-x64"; version = "8.0.4"; sha256 = "01apjs90laa069qxns2c5mh0fahrhx1771d0iqifbhwbgvcahz9j"; }) 34 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.win-arm64"; version = "8.0.4"; sha256 = "0f291zqarfa1c1gn4ih05gspr2mdv55rvzr2kdjql5vjk3qkjmh2"; }) 35 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.win-x64"; version = "8.0.4"; sha256 = "128ghs7lkibpiw3i1kszigffcmwwdj3raak1dqli375qmgpafifk"; }) 36 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.win-x86"; version = "8.0.4"; sha256 = "1fgm2q8hj43n6573pbcnj565kx5qshkkh9mfji49pswsva6g475v"; }) 37 - (fetchNuGet { pname = "Microsoft.NETCore.DotNetAppHost"; version = "8.0.4"; sha256 = "1k9n0yjp1jsskacl14avbkjnp1a42dn30vhmvnmlp7bi0hirm451"; }) 38 - (fetchNuGet { pname = "Microsoft.NETCore.DotNetHost"; version = "8.0.4"; sha256 = "1iqrvg36b2as1maik7b7ls1kwszl30njpp4pjkdljhswlh75c9lz"; }) 39 - (fetchNuGet { pname = "Microsoft.NETCore.DotNetHostPolicy"; version = "8.0.4"; sha256 = "1is3dr4m30shxbgqd2g916z192cx2gqvx8iijf05b976qyy0hnvd"; }) 40 - (fetchNuGet { pname = "Microsoft.NETCore.DotNetHostResolver"; version = "8.0.4"; sha256 = "0056k3y221g13l62fb1cdghijhvml8aynn7lax40ark5rxplam3m"; }) 41 - (fetchNuGet { pname = "runtime.linux-arm64.Microsoft.NETCore.DotNetAppHost"; version = "8.0.4"; sha256 = "1qy3zbvfjqa0gw80jxqd9va58zsf1gp5b6phibsi5da3mw6ybc8k"; }) 42 - (fetchNuGet { pname = "runtime.linux-arm64.Microsoft.NETCore.DotNetHost"; version = "8.0.4"; sha256 = "0qpva0m8wn8g7l33ws166s4wr84cl8wd6q3zyp78pc7k309bdfjp"; }) 43 - (fetchNuGet { pname = "runtime.linux-arm64.Microsoft.NETCore.DotNetHostPolicy"; version = "8.0.4"; sha256 = "02fqkrq74c2rra33spcym05vl378xc8iyzamfpm6gjmkq4vfsca6"; }) 44 - (fetchNuGet { pname = "runtime.linux-arm64.Microsoft.NETCore.DotNetHostResolver"; version = "8.0.4"; sha256 = "1k7f79x7yd066b0hhnbq1l183c4v5yw7lysbydfwng14z5x6x7h7"; }) 45 - (fetchNuGet { pname = "runtime.linux-arm.Microsoft.NETCore.DotNetAppHost"; version = "8.0.4"; sha256 = "1sv4yzx5bagrzqjb3wnb9wqw75ihblsdgdvhd3n7dfhckrssxlnx"; }) 46 - (fetchNuGet { pname = "runtime.linux-arm.Microsoft.NETCore.DotNetHost"; version = "8.0.4"; sha256 = "0brwpdv25lrh6vvq466k25vlhrvgiw7mv61jilm4ngdiyx3261br"; }) 47 - (fetchNuGet { pname = "runtime.linux-arm.Microsoft.NETCore.DotNetHostPolicy"; version = "8.0.4"; sha256 = "0c9qjlzwr2y3h98xwmf3ql5kh4x8pp4k16brfx82n8ml8js4g5x5"; }) 48 - (fetchNuGet { pname = "runtime.linux-arm.Microsoft.NETCore.DotNetHostResolver"; version = "8.0.4"; sha256 = "1qy2n7n35wvc5nbik1s5pfirhbp332zbgzs1b3xlnhwdk6nmpcnj"; }) 49 - (fetchNuGet { pname = "runtime.linux-musl-arm64.Microsoft.NETCore.DotNetAppHost"; version = "8.0.4"; sha256 = "0lgd5nxlz8na182n90y935hmcpry813nakg93ixk2cm5k3i0hy37"; }) 50 - (fetchNuGet { pname = "runtime.linux-musl-arm64.Microsoft.NETCore.DotNetHost"; version = "8.0.4"; sha256 = "1ig0h7b0rasqrg8hv7j7wqh2n6rxs8wzqllbspk88dyjf64mpvif"; }) 51 - (fetchNuGet { pname = "runtime.linux-musl-arm64.Microsoft.NETCore.DotNetHostPolicy"; version = "8.0.4"; sha256 = "0lm7a3k7ll1m13clkicnw9smnw29m493w6syvwaada67lxndvdqh"; }) 52 - (fetchNuGet { pname = "runtime.linux-musl-arm64.Microsoft.NETCore.DotNetHostResolver"; version = "8.0.4"; sha256 = "1v8yf67dk51paqqvjmljf7x2cc127aykl2ylgqimvs7pn6xajrqb"; }) 53 - (fetchNuGet { pname = "runtime.linux-musl-x64.Microsoft.NETCore.DotNetAppHost"; version = "8.0.4"; sha256 = "1i1xifc3nrfl5y7xv7iahfw3y9k2w8p8d6qd3p4pkv8rm1i1qqdb"; }) 54 - (fetchNuGet { pname = "runtime.linux-musl-x64.Microsoft.NETCore.DotNetHost"; version = "8.0.4"; sha256 = "0irkqhm47wqj1g32m7pbfyi1igs6js8c7m5xkkfm11a8d3ryy87g"; }) 55 - (fetchNuGet { pname = "runtime.linux-musl-x64.Microsoft.NETCore.DotNetHostPolicy"; version = "8.0.4"; sha256 = "0zhw9dxss2zql0qrr4jkj0kr9691b02aav01z2cqn0zbfxc5m5ig"; }) 56 - (fetchNuGet { pname = "runtime.linux-musl-x64.Microsoft.NETCore.DotNetHostResolver"; version = "8.0.4"; sha256 = "1h5kzx741pgzl5p0lsfzmqi1qa3c4yad1p11l54k2dxcbg08nzgv"; }) 57 - (fetchNuGet { pname = "runtime.linux-x64.Microsoft.NETCore.DotNetAppHost"; version = "8.0.4"; sha256 = "06l874c98i3dac7zyv5y416k6lm477733i4pf6205lamw95hgci9"; }) 58 - (fetchNuGet { pname = "runtime.linux-x64.Microsoft.NETCore.DotNetHost"; version = "8.0.4"; sha256 = "1ciiai9i9cac2fppd5x7whxblgg9jj0n7p5ff83dmylnb04gg0vp"; }) 59 - (fetchNuGet { pname = "runtime.linux-x64.Microsoft.NETCore.DotNetHostPolicy"; version = "8.0.4"; sha256 = "168nnns2ppjij3bmbfvnfdpwijf689m6ryrhcbbnram1hxzr2ki5"; }) 60 - (fetchNuGet { pname = "runtime.linux-x64.Microsoft.NETCore.DotNetHostResolver"; version = "8.0.4"; sha256 = "1syw6863rb8p2g6a9r54hflz0dj750fkzm9dv18vib064r7x1lgc"; }) 61 - (fetchNuGet { pname = "runtime.osx-x64.Microsoft.NETCore.DotNetAppHost"; version = "8.0.4"; sha256 = "07y30dx317kwj089z5laxlw9dwllv27rbh8yhym2ljqajjknaxrs"; }) 62 - (fetchNuGet { pname = "runtime.osx-x64.Microsoft.NETCore.DotNetHost"; version = "8.0.4"; sha256 = "060z3c7iqqjy4p9chm7b18z8j6439dwb71cahpwxb1y0xm6y4hmr"; }) 63 - (fetchNuGet { pname = "runtime.osx-x64.Microsoft.NETCore.DotNetHostPolicy"; version = "8.0.4"; sha256 = "0pf30jg23iymn5vvg1vsn6aibdqv26i11cl0zypfmq1bgh3cjh3f"; }) 64 - (fetchNuGet { pname = "runtime.osx-x64.Microsoft.NETCore.DotNetHostResolver"; version = "8.0.4"; sha256 = "0kmbglad3xp643b82qy6gsydib77i3rmlq23vvvm8i8pg6whzflc"; }) 65 - (fetchNuGet { pname = "runtime.win-arm64.Microsoft.NETCore.DotNetAppHost"; version = "8.0.4"; sha256 = "0x7pvxvl0vfc9lk6kb70v9rj0i5mc5xk9w1cp382npr1lc6l51m6"; }) 66 - (fetchNuGet { pname = "runtime.win-arm64.Microsoft.NETCore.DotNetHost"; version = "8.0.4"; sha256 = "0725n81lawhjlhqs7rhj00fx3ymz10xy4bpj5pmvwx78qrfja8bj"; }) 67 - (fetchNuGet { pname = "runtime.win-arm64.Microsoft.NETCore.DotNetHostPolicy"; version = "8.0.4"; sha256 = "18kr4l7vbndvbq2k332axywk0jagci8892r0wxdxyqa9n0pa311c"; }) 68 - (fetchNuGet { pname = "runtime.win-arm64.Microsoft.NETCore.DotNetHostResolver"; version = "8.0.4"; sha256 = "03ng08sx2nvpkvk3nfcp5f4zh85h7lpq0d272d75n0axhffqmwd6"; }) 69 - (fetchNuGet { pname = "runtime.win-x64.Microsoft.NETCore.DotNetAppHost"; version = "8.0.4"; sha256 = "0riwadg1qhqdr50js8jx6diaq4g302xwz1an9ngxd22p8xyy1dj7"; }) 70 - (fetchNuGet { pname = "runtime.win-x64.Microsoft.NETCore.DotNetHost"; version = "8.0.4"; sha256 = "08j2dbg06vg09xz6r6jsqm4k6749z4bbpaaligx7zhrqihszvm41"; }) 71 - (fetchNuGet { pname = "runtime.win-x64.Microsoft.NETCore.DotNetHostPolicy"; version = "8.0.4"; sha256 = "02nkdqf0hi3f6720d0mqv27mr98wxycryy74grrbgabjjylawazg"; }) 72 - (fetchNuGet { pname = "runtime.win-x64.Microsoft.NETCore.DotNetHostResolver"; version = "8.0.4"; sha256 = "08y3vckrv8njar2v02igsqm4lbcf31fk8f2ld8c74s219nmd2c64"; }) 73 - (fetchNuGet { pname = "runtime.win-x86.Microsoft.NETCore.DotNetAppHost"; version = "8.0.4"; sha256 = "12vlqrllhgbg6n43yv8vav0bmj0xy0cvw4p1rg7knc63x83jf2rr"; }) 74 - (fetchNuGet { pname = "runtime.win-x86.Microsoft.NETCore.DotNetHost"; version = "8.0.4"; sha256 = "1d1yxlyk2yjh5i4aidzc155j11qyjfly2vyhvsdxkh0arh41n96x"; }) 75 - (fetchNuGet { pname = "runtime.win-x86.Microsoft.NETCore.DotNetHostPolicy"; version = "8.0.4"; sha256 = "0pwq5vzm34wascaj77h2bhc6rrzbygx2vavr8qn2adz6pia1zvf0"; }) 76 - (fetchNuGet { pname = "runtime.win-x86.Microsoft.NETCore.DotNetHostResolver"; version = "8.0.4"; sha256 = "00qr1ydbyvjxi57k0ig9kv1ngn84n0b48hznvwa8n86iqqk886q7"; }) 77 - (fetchNuGet { pname = "Microsoft.NETCore.App.Host.linux-musl-arm"; version = "8.0.4"; sha256 = "07mn92340nv63ld5r3ch8hc71p8kjk5zb7bh6n3n43qxmakr3ysc"; }) 78 - (fetchNuGet { pname = "Microsoft.NETCore.App.Host.osx-arm64"; version = "8.0.4"; sha256 = "1lgvwyypl2l64qz23p1qdxzap73v3118pjkh0wh8g5qw54nfd3ck"; }) 79 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.linux-musl-arm"; version = "8.0.4"; sha256 = "1hdyb154xmapm4bw1bxs433k2sigjkb663cnxzhsgxwwxf8jd0z7"; }) 80 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.osx-arm64"; version = "8.0.4"; sha256 = "08z2bhm5zva61ddb3psmlrwpi9snr37s96xyf6iqc4gl8pki65h8"; }) 81 - (fetchNuGet { pname = "Microsoft.NETCore.App.Ref"; version = "8.0.4"; sha256 = "0xi99c6gqhwxgz2yivihs9rxjnfl9h1nwgq4w5v15bjln1blmq9x"; }) 82 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.Mono.linux-arm"; version = "8.0.4"; sha256 = "0a02aa93wx92rzy3lmyxpm9qns6g35wfzdf8zks4sm1f7l2jlxhp"; }) 83 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.Mono.linux-arm64"; version = "8.0.4"; sha256 = "0m6sqgr37m0228jkkp89dyr6s2iidnrs9xaffhpaq7yhk578y61v"; }) 84 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.Mono.linux-musl-x64"; version = "8.0.4"; sha256 = "1ws5zchg550sn6rfadrjfc9aqs62qz10pyqw7ddrgygffvb1sfji"; }) 85 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.Mono.linux-x64"; version = "8.0.4"; sha256 = "1xd1zdb5d2cb4ivw3mj9gf3r02i52hmx7jiswbk2dx8q2k79hv6i"; }) 86 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.Mono.osx-arm64"; version = "8.0.4"; sha256 = "05gp1385441wwmjf7j08z4gkirzws06rxvwr7k1hj144ix0nyy9l"; }) 87 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.Mono.osx-x64"; version = "8.0.4"; sha256 = "1l9yahli9dan9szins7sckmjpwnpm3w9ic5qvwzdzzljn8pp16kl"; }) 88 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.Mono.win-x64"; version = "8.0.4"; sha256 = "05j3n1a5r5gh75mvw5pcj8my3l77kh7hdparl2cv030kk7cc401s"; }) 89 - (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.Mono.win-x86"; version = "8.0.4"; sha256 = "05rl747ahxqyvkcdmbcnn5rjr6pg6bc65h0vwc56vwrfd9nif6vq"; }) 90 - (fetchNuGet { pname = "runtime.linux-musl-arm.Microsoft.NETCore.DotNetAppHost"; version = "8.0.4"; sha256 = "1i7q1fjf07hpnd9hi9z0bavp9kqkk3z5ny8id8yfcansgf4j9bj7"; }) 91 - (fetchNuGet { pname = "runtime.linux-musl-arm.Microsoft.NETCore.DotNetHost"; version = "8.0.4"; sha256 = "01vknc74yy1b36yip1gdcjcr7wij0p9kmglj1lidh6mr676mmi87"; }) 92 - (fetchNuGet { pname = "runtime.linux-musl-arm.Microsoft.NETCore.DotNetHostPolicy"; version = "8.0.4"; sha256 = "1qms7i24h9rrzljfmw1vrj3ivfagr0lhr3xaack7vcq7n5mqdcf2"; }) 93 - (fetchNuGet { pname = "runtime.linux-musl-arm.Microsoft.NETCore.DotNetHostResolver"; version = "8.0.4"; sha256 = "1qjzkqm0ra6yhazygw8ypzqcaq6ryvcw19b0msfnw3bkaiip0l7k"; }) 94 - (fetchNuGet { pname = "runtime.osx-arm64.Microsoft.NETCore.DotNetAppHost"; version = "8.0.4"; sha256 = "0m37df28wji42cg3696acbrcq6k67y76rsvlr0gfx5qzgy1nfy8s"; }) 95 - (fetchNuGet { pname = "runtime.osx-arm64.Microsoft.NETCore.DotNetHost"; version = "8.0.4"; sha256 = "0g7qb58r0jd17xbfvhbpd2pwvnmzmpq8jvd5m08xdq9krrx0cvcc"; }) 96 - (fetchNuGet { pname = "runtime.osx-arm64.Microsoft.NETCore.DotNetHostPolicy"; version = "8.0.4"; sha256 = "1b4ihr11yj3zjy7s9zhhailryrlkwrlnpa18z603gic157cbzz2j"; }) 97 - (fetchNuGet { pname = "runtime.osx-arm64.Microsoft.NETCore.DotNetHostResolver"; version = "8.0.4"; sha256 = "1fr33r7cgiww338xad3n2f5xhjrq31chx4nj5kqwdh6gszx3ifj9"; }) 98 - (fetchNuGet { pname = "Microsoft.NETCore.App.Crossgen2.linux-musl-arm"; version = "8.0.4"; sha256 = "16148vl576zmc336q98a975zzqxz0xjwqkwh87ibxrlyz3w78qw2"; }) 99 - (fetchNuGet { pname = "Microsoft.NETCore.App.Crossgen2.linux-musl-arm64"; version = "8.0.4"; sha256 = "13gwa8ifir2frmsk88swg778lrjf2l0ij0x7pdlihhywy7gly9wi"; }) 100 - (fetchNuGet { pname = "Microsoft.NETCore.App.Crossgen2.linux-musl-x64"; version = "8.0.4"; sha256 = "1b1ml4mppgfl85lz8s34dk2b3s5j8vdql8k2233zhbcs26d401na"; }) 101 - (fetchNuGet { pname = "Microsoft.NETCore.App.Crossgen2.linux-arm"; version = "8.0.4"; sha256 = "1d3yfjqnar7g1fzr6005n43q5frkihkgmpwy91m40jjzbivlid6c"; }) 102 - (fetchNuGet { pname = "Microsoft.NETCore.App.Crossgen2.linux-arm64"; version = "8.0.4"; sha256 = "0qz21s5v01fls5y1n1zjbc0fylk5lynf5yw9fmgabh2s8gi05wxz"; }) 103 - (fetchNuGet { pname = "Microsoft.NETCore.App.Crossgen2.linux-x64"; version = "8.0.4"; sha256 = "0bbw2v83aask0w18ir0i6q3xhmhxa5rahbcd5a1c6cy3hmj3mkx9"; }) 104 - (fetchNuGet { pname = "Microsoft.NETCore.App.Crossgen2.osx-x64"; version = "8.0.4"; sha256 = "1kb1y62mgzdyh11qcvb8mk7i2lmxbil7nwnyv2nys2fwqqkp0zdm"; }) 105 - (fetchNuGet { pname = "Microsoft.NETCore.App.Crossgen2.osx-arm64"; version = "8.0.4"; sha256 = "15yhasq3q0dhw1ssldgxwjdnf8q7az55bly4nmg198ngkw6aiikg"; }) 106 - (fetchNuGet { pname = "runtime.linux-arm64.Microsoft.DotNet.ILCompiler"; version = "8.0.4"; sha256 = "18z2lz3rbas3p0k9jahmdas72p5klfwzhqpky044wyp4knwh62dl"; }) 107 - (fetchNuGet { pname = "runtime.linux-musl-arm64.Microsoft.DotNet.ILCompiler"; version = "8.0.4"; sha256 = "1ia6kl7v2gmrm52417n4b3h61zvnc7pvyfwa0ighyb16p67zw8rm"; }) 108 - (fetchNuGet { pname = "runtime.linux-musl-x64.Microsoft.DotNet.ILCompiler"; version = "8.0.4"; sha256 = "012phpsracmrpgrv74ajyx0sva2rzbklz7a5pmi2m656j2mqnx1n"; }) 109 - (fetchNuGet { pname = "runtime.linux-x64.Microsoft.DotNet.ILCompiler"; version = "8.0.4"; sha256 = "0pkdlqjpv15x0d87z85w7n40n804nzzdzjbjbhr9arijhl8ykd24"; }) 110 - (fetchNuGet { pname = "runtime.osx-x64.Microsoft.DotNet.ILCompiler"; version = "8.0.4"; sha256 = "1bgwban9h8paav98v8m7bpfsqq85k52vhar4w50wv6kag81dradc"; }) 111 - (fetchNuGet { pname = "runtime.win-arm64.Microsoft.DotNet.ILCompiler"; version = "8.0.4"; sha256 = "1anp4wazxx42r9hzqbyqdsg01pg344wgp36ksd03dvhkdn51dnyy"; }) 112 - (fetchNuGet { pname = "runtime.win-x64.Microsoft.DotNet.ILCompiler"; version = "8.0.4"; sha256 = "1ppa0jcfwl0g7w71i90wjdfg72gm52pjp9izr5qig0sxfg266jsg"; }) 113 - (fetchNuGet { pname = "Microsoft.NET.ILLink.Tasks"; version = "8.0.4"; sha256 = "055jpbwd3309lplrczs14yfvfhznr4k6cc7b50rdnlrhjvxmhgf3"; }) 7 + (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.linux-arm"; version = "8.0.5"; sha256 = "0zfpmawx2pc1mjdjkadch2ycqfsvjxz6zr4r5lb2s9w8ywafyqcf"; }) 8 + (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.linux-arm64"; version = "8.0.5"; sha256 = "0vn6kq3svv9kbgwdfa3lswc4pwsqxplg7kc3srd1a07k4jkz9qn5"; }) 9 + (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.linux-musl-arm64"; version = "8.0.5"; sha256 = "0cvzrnqizdccrajfznjgwj6qra8kbqqln5z6x2l9gqklawk4ncdl"; }) 10 + (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.linux-musl-x64"; version = "8.0.5"; sha256 = "0phhkwilyhh764m8pf403d3qv072ld0z7jg6x9sywqlb4q6za443"; }) 11 + (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.linux-x64"; version = "8.0.5"; sha256 = "1m9gp68z0wyv0xxr4aqc1c2v6v8grml3jxkiqabddn46d6gsisqh"; }) 12 + (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.osx-x64"; version = "8.0.5"; sha256 = "0mdcrzpj17g8xkk5j3flk5xkgp2dx44gamyfn9x5lf9siyi4812p"; }) 13 + (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.win-arm64"; version = "8.0.5"; sha256 = "1r2hcmi5l05n1s84gdpiqys0bc4lik1fmp8085dlqz5pc5kg0ibh"; }) 14 + (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.win-x64"; version = "8.0.5"; sha256 = "1118p6981b74zzm3p1nr2kwd5db35y21z3xif940xahh52zc887n"; }) 15 + (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.win-x86"; version = "8.0.5"; sha256 = "1bd0spskxlc4kwqd260ycxxvysxq19hrz6z0chlbc8kxfwf3kf9z"; }) 16 + (fetchNuGet { pname = "Microsoft.AspNetCore.App.Ref"; version = "8.0.5"; sha256 = "0s62x5cv1bw6g4jmmg7vyfpj4nha3bpsanhwpbk1vwgkridwxfgi"; }) 17 + (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.linux-musl-arm"; version = "8.0.5"; sha256 = "0b50abmhp8l8qjiwqxd1i1zw1kfddpr25nxl061kxb319zp5qslb"; }) 18 + (fetchNuGet { pname = "Microsoft.AspNetCore.App.Runtime.osx-arm64"; version = "8.0.5"; sha256 = "1m29wm2i6666cl6jlv5r5y75v98qidqjsc74sl2xazxsd105p7iw"; }) 19 + (fetchNuGet { pname = "Microsoft.NETCore.App.Host.linux-arm"; version = "8.0.5"; sha256 = "1f37i0f227lns4x2zxw670f7lj8lkxhpn805dk07xd2a70w3h54p"; }) 20 + (fetchNuGet { pname = "Microsoft.NETCore.App.Host.linux-arm64"; version = "8.0.5"; sha256 = "1b4js7g35nq5kx50cjbncrpychrhxqysic46x082g50kvkn877zy"; }) 21 + (fetchNuGet { pname = "Microsoft.NETCore.App.Host.linux-musl-arm64"; version = "8.0.5"; sha256 = "18ln96i7md0b3p00gyaka8jr9hly47gkbyqsmyzvvp4b98z5lda9"; }) 22 + (fetchNuGet { pname = "Microsoft.NETCore.App.Host.linux-musl-x64"; version = "8.0.5"; sha256 = "14mipnqvw6h7pw58sqjjc7013znz9wgcdklfcj6nbpr3cvb297xm"; }) 23 + (fetchNuGet { pname = "Microsoft.NETCore.App.Host.linux-x64"; version = "8.0.5"; sha256 = "1004mzihgamdrv66nd9bv44kk0qxbmzbqgjlrq54k8fxwy1602ps"; }) 24 + (fetchNuGet { pname = "Microsoft.NETCore.App.Host.osx-x64"; version = "8.0.5"; sha256 = "1wv6sqhf77x5iac6h64sr1ip8qyz9w79wlvs82h5wxn84hjrb97h"; }) 25 + (fetchNuGet { pname = "Microsoft.NETCore.App.Host.win-arm64"; version = "8.0.5"; sha256 = "0vz07rfkl7jday1qgjrgvqf47pgzqajx75fz9v3z55n94wdrsrk3"; }) 26 + (fetchNuGet { pname = "Microsoft.NETCore.App.Host.win-x64"; version = "8.0.5"; sha256 = "0176paxswr5phr8x29xir3sd4rxygp4w107anpwx14a2fbm01wmc"; }) 27 + (fetchNuGet { pname = "Microsoft.NETCore.App.Host.win-x86"; version = "8.0.5"; sha256 = "1rl8f4bgx6hmh4q7lgr4nvx6fb044rg96ja128m22v925wx3wq9q"; }) 28 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.linux-arm"; version = "8.0.5"; sha256 = "0j09zajb36z3gyv6f7gw9d80kvcjc8z9qw52x4cs5bynakx97563"; }) 29 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.linux-arm64"; version = "8.0.5"; sha256 = "00m2f6fi9nagcv9s0f9nd0wkcq9qs6dmwchdp0khfsl3xj1hv99g"; }) 30 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.linux-musl-arm64"; version = "8.0.5"; sha256 = "0jn3rpk6xcndrlkjvr0s8wlk4vgakvc18js0psmlrswrq9crq4ix"; }) 31 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.linux-musl-x64"; version = "8.0.5"; sha256 = "0l1shrv0rshx527dy90wq1w5x3rvx3kzqj1mslx4ysjzf8841q6r"; }) 32 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.linux-x64"; version = "8.0.5"; sha256 = "15vadqfi0w7sdq0rh35rb9ph4h4qbal2i5m5ifabbfwjp7348z9c"; }) 33 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.osx-x64"; version = "8.0.5"; sha256 = "0f5ya9gb16wi6jff586g67icwshsca22afx4k6vnssr2p38xvh7v"; }) 34 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.win-arm64"; version = "8.0.5"; sha256 = "09wjap5ykxsyyxfplhjn7jpxbx8qnks6cbc0200nfx3xqi5hyj6c"; }) 35 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.win-x64"; version = "8.0.5"; sha256 = "03nin18sqjc79b4dwwfzd620vr0ph1jnj462sfaszhyrcxs41vz1"; }) 36 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.win-x86"; version = "8.0.5"; sha256 = "0f9pw81cc2z6jir7nfr0nn211857ac9ix0dq7rpib0ld0bzf9naz"; }) 37 + (fetchNuGet { pname = "Microsoft.NETCore.DotNetAppHost"; version = "8.0.5"; sha256 = "0b8bdyckb4l2z4byxlw84pz4nfahp8kfx5valbll8sj0f9357apn"; }) 38 + (fetchNuGet { pname = "Microsoft.NETCore.DotNetHost"; version = "8.0.5"; sha256 = "0wv2c8cf1fi7pm42by9dhyrld48cl5mssm70aq7fwa2hgnvy5kaz"; }) 39 + (fetchNuGet { pname = "Microsoft.NETCore.DotNetHostPolicy"; version = "8.0.5"; sha256 = "1yg53pnw2an4vmw9aqmhdnrk54ir16i3q95lv44p3vfdx8az582b"; }) 40 + (fetchNuGet { pname = "Microsoft.NETCore.DotNetHostResolver"; version = "8.0.5"; sha256 = "0zjh0ang18sxayr3imidda99bbcna3iwml77f77fyw7cq5xm57xd"; }) 41 + (fetchNuGet { pname = "runtime.linux-arm64.Microsoft.NETCore.DotNetAppHost"; version = "8.0.5"; sha256 = "0bvnc073s7g9pap6cl0v18xp7shpmck6mfmcwryjzpj98za8fiz3"; }) 42 + (fetchNuGet { pname = "runtime.linux-arm64.Microsoft.NETCore.DotNetHost"; version = "8.0.5"; sha256 = "1lnxgpd66psjciafhgwm37lzd8a5n980m77bbmaclcmx1jf5knv6"; }) 43 + (fetchNuGet { pname = "runtime.linux-arm64.Microsoft.NETCore.DotNetHostPolicy"; version = "8.0.5"; sha256 = "1r753a0bhlz9iiw1k47drjmwckwjzzixzgggji8glp3a22p2d8bp"; }) 44 + (fetchNuGet { pname = "runtime.linux-arm64.Microsoft.NETCore.DotNetHostResolver"; version = "8.0.5"; sha256 = "08wcywhnjl2pw5w2ybswnwwzgmyanxm4bma80rbz86xchlqakk5z"; }) 45 + (fetchNuGet { pname = "runtime.linux-arm.Microsoft.NETCore.DotNetAppHost"; version = "8.0.5"; sha256 = "12r3is7ddra45yvkwqcrm63lhpya5l9g912xw4rqbnfz4pbmr8dz"; }) 46 + (fetchNuGet { pname = "runtime.linux-arm.Microsoft.NETCore.DotNetHost"; version = "8.0.5"; sha256 = "1m3vglk8q3bycg6k5x3v29ylrb62kih56hn63dfzb7f20qb8xv8z"; }) 47 + (fetchNuGet { pname = "runtime.linux-arm.Microsoft.NETCore.DotNetHostPolicy"; version = "8.0.5"; sha256 = "1pxw3wxak4x2pm2mqsz9fipzx98d3blma8y0cz03nqqcmxfq2lnr"; }) 48 + (fetchNuGet { pname = "runtime.linux-arm.Microsoft.NETCore.DotNetHostResolver"; version = "8.0.5"; sha256 = "1m60wsv54czd55qw770mcnv8m7lnn5s99dya38is7szvgjgq0zx1"; }) 49 + (fetchNuGet { pname = "runtime.linux-musl-arm64.Microsoft.NETCore.DotNetAppHost"; version = "8.0.5"; sha256 = "1xdpipcybj54phsm1xn8ycfrwd6xaa8d67jxdakfiyzdwgbdqnam"; }) 50 + (fetchNuGet { pname = "runtime.linux-musl-arm64.Microsoft.NETCore.DotNetHost"; version = "8.0.5"; sha256 = "17xj4qrmmb6yxd3w0xi5x9la1ywrzczbmyx975p0z97yx5js719d"; }) 51 + (fetchNuGet { pname = "runtime.linux-musl-arm64.Microsoft.NETCore.DotNetHostPolicy"; version = "8.0.5"; sha256 = "01wq0zf646c87yz1zgf1vzvwd5kxjv8dfd0vvqq2w6af8670vxwa"; }) 52 + (fetchNuGet { pname = "runtime.linux-musl-arm64.Microsoft.NETCore.DotNetHostResolver"; version = "8.0.5"; sha256 = "1s85bhrhyq7sjks0frj4mkh8g1pd0j0bifd0wj3qnlagrbxmq33b"; }) 53 + (fetchNuGet { pname = "runtime.linux-musl-x64.Microsoft.NETCore.DotNetAppHost"; version = "8.0.5"; sha256 = "1qcnnshmqj6i6xf34pfi6ampvgcissclfs547yxjzgjizxgkkhy4"; }) 54 + (fetchNuGet { pname = "runtime.linux-musl-x64.Microsoft.NETCore.DotNetHost"; version = "8.0.5"; sha256 = "1ar9jssv4njgk6gy3nh81d0p81as8ff5vmgzranshyr6djrmshna"; }) 55 + (fetchNuGet { pname = "runtime.linux-musl-x64.Microsoft.NETCore.DotNetHostPolicy"; version = "8.0.5"; sha256 = "0d0yl060my0f9z3qbkzbks9jhw3zsms5issfa94rnkpgw9is40fh"; }) 56 + (fetchNuGet { pname = "runtime.linux-musl-x64.Microsoft.NETCore.DotNetHostResolver"; version = "8.0.5"; sha256 = "11v1bk0wsdx87rdk32cx63118bqmrvl054ai6h231yqw75q680sv"; }) 57 + (fetchNuGet { pname = "runtime.linux-x64.Microsoft.NETCore.DotNetAppHost"; version = "8.0.5"; sha256 = "0j4g9n88vdss1qzslr11pf49jxdv6pkbchdmsnis4nypp4nc4vk9"; }) 58 + (fetchNuGet { pname = "runtime.linux-x64.Microsoft.NETCore.DotNetHost"; version = "8.0.5"; sha256 = "1gmgj6h9nhzdcmn4mq2vfv8a69ncwcaix0vyyk8rrzzcrypvizpy"; }) 59 + (fetchNuGet { pname = "runtime.linux-x64.Microsoft.NETCore.DotNetHostPolicy"; version = "8.0.5"; sha256 = "04ihcgls7w20g8v3s47fyxc6cxx554mcmmfynkwp0206l6mfka78"; }) 60 + (fetchNuGet { pname = "runtime.linux-x64.Microsoft.NETCore.DotNetHostResolver"; version = "8.0.5"; sha256 = "1lr79q6bpmggmm1kpgr195662r47mnl4infva84w51daw6hkdkq2"; }) 61 + (fetchNuGet { pname = "runtime.osx-x64.Microsoft.NETCore.DotNetAppHost"; version = "8.0.5"; sha256 = "0rz6d960kxc4c1nc31w46l76lkpzmrh74qf0l4qy1cmsdylkbsby"; }) 62 + (fetchNuGet { pname = "runtime.osx-x64.Microsoft.NETCore.DotNetHost"; version = "8.0.5"; sha256 = "1cczas7zmdc8wal2n9axgz5kb5ccmh4i94k94jfma3p0c7s69msy"; }) 63 + (fetchNuGet { pname = "runtime.osx-x64.Microsoft.NETCore.DotNetHostPolicy"; version = "8.0.5"; sha256 = "1p9hi32ibv12dyiwgysj60as2g53an0dqidgxl93pazmmg1v25fd"; }) 64 + (fetchNuGet { pname = "runtime.osx-x64.Microsoft.NETCore.DotNetHostResolver"; version = "8.0.5"; sha256 = "1l4cbxlw33grx3pyf08079c8f2cmwnvdxkqpnw0072sb50s8yqk3"; }) 65 + (fetchNuGet { pname = "runtime.win-arm64.Microsoft.NETCore.DotNetAppHost"; version = "8.0.5"; sha256 = "1bzw2w73glg96mnf9cjjdk1bwz4z5rf8pgn1rmnpb3ldlawhz4g1"; }) 66 + (fetchNuGet { pname = "runtime.win-arm64.Microsoft.NETCore.DotNetHost"; version = "8.0.5"; sha256 = "02jz8kvs30d9vnxnv20dc3w8q9vhzff6n6r1qcyym3zfalmc4maz"; }) 67 + (fetchNuGet { pname = "runtime.win-arm64.Microsoft.NETCore.DotNetHostPolicy"; version = "8.0.5"; sha256 = "1hwfn3yy9iprikfvc0wz99fvb000w5nya2hmkix2fx3nydxd1gl3"; }) 68 + (fetchNuGet { pname = "runtime.win-arm64.Microsoft.NETCore.DotNetHostResolver"; version = "8.0.5"; sha256 = "18havx9c3m2py0zzccxh1jmj8wb2hq28vqixib0kcicgvdl3rwis"; }) 69 + (fetchNuGet { pname = "runtime.win-x64.Microsoft.NETCore.DotNetAppHost"; version = "8.0.5"; sha256 = "1lvp94im006cgi17mj26c9yhhzz6js0lxmdpqas9vh7qxlikj7nx"; }) 70 + (fetchNuGet { pname = "runtime.win-x64.Microsoft.NETCore.DotNetHost"; version = "8.0.5"; sha256 = "12bc6r867izzb6s092wwj1cfmi09qmyy7q6l1d8r48jq3p14v0np"; }) 71 + (fetchNuGet { pname = "runtime.win-x64.Microsoft.NETCore.DotNetHostPolicy"; version = "8.0.5"; sha256 = "1x6xwq8n9y0n2sj5rfh4pqzhkz62qxaa2g6y4s089f4bcg721l3d"; }) 72 + (fetchNuGet { pname = "runtime.win-x64.Microsoft.NETCore.DotNetHostResolver"; version = "8.0.5"; sha256 = "06a37cr1pg1nmzw07nbxsvfs3q8wn5p4xiglzg1b4fdpcwr0xpl6"; }) 73 + (fetchNuGet { pname = "runtime.win-x86.Microsoft.NETCore.DotNetAppHost"; version = "8.0.5"; sha256 = "1wlrapi8928jd9yfck7kfjdzgrzkylw8d7k4faaxrkbxpzn687br"; }) 74 + (fetchNuGet { pname = "runtime.win-x86.Microsoft.NETCore.DotNetHost"; version = "8.0.5"; sha256 = "1q4wbircp3dcbhgc7vdxm2m81ywpw3ls44jv6i3j7hkvh83v7kms"; }) 75 + (fetchNuGet { pname = "runtime.win-x86.Microsoft.NETCore.DotNetHostPolicy"; version = "8.0.5"; sha256 = "1rrrfig168zv5hznv19b1pb8k5r6j9smfxg4jn4vcr8qmy0vnfi1"; }) 76 + (fetchNuGet { pname = "runtime.win-x86.Microsoft.NETCore.DotNetHostResolver"; version = "8.0.5"; sha256 = "118558hm53ix8fr7lib2h4vgp6vmf1gmaxph75220c3v966wbbz6"; }) 77 + (fetchNuGet { pname = "Microsoft.NETCore.App.Host.linux-musl-arm"; version = "8.0.5"; sha256 = "1sjyap9avwq1p5gk2iw11zmqlh3bh1ch02phvmqp0s9pawwa6mvs"; }) 78 + (fetchNuGet { pname = "Microsoft.NETCore.App.Host.osx-arm64"; version = "8.0.5"; sha256 = "1s2n57qjggyznf23gf9gk7dzsr8nr8ypsv3gyacn8fvy42fvq9v2"; }) 79 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.linux-musl-arm"; version = "8.0.5"; sha256 = "04g6vriblgzhaf960pfjbxhql9xdqkwx778pklim0kck4prn39f6"; }) 80 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.osx-arm64"; version = "8.0.5"; sha256 = "18fxpdzlb9kqq754hs67aabklq7k13b1gxyjmbi7mldcn7yjw0wg"; }) 81 + (fetchNuGet { pname = "Microsoft.NETCore.App.Ref"; version = "8.0.5"; sha256 = "0mjwyl4ywakvzqgiy5gm0rld8fwxw7gp81qa1cn8ns2yn7ll2zhl"; }) 82 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.Mono.linux-arm"; version = "8.0.5"; sha256 = "0805yfy47fz5348ydi54546g43qr7fp4wpb2xzry5nfh0sn0693s"; }) 83 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.Mono.linux-arm64"; version = "8.0.5"; sha256 = "0rwjw6ahinci3bajky0m421cg7a0h6rjdnx389cd3wan3ij5l8bk"; }) 84 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.Mono.linux-musl-x64"; version = "8.0.5"; sha256 = "08j0xrfp7b2vj9hxrjf8zdp0agj2jvwyr5xii9wbkhnq4cwikjgn"; }) 85 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.Mono.linux-x64"; version = "8.0.5"; sha256 = "0vag2bgllay20fmyvvjbckjircry690sr2fykf010kzb4zmywiaz"; }) 86 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.Mono.osx-arm64"; version = "8.0.5"; sha256 = "1pf1m7miy6r430z5fbja0p38ixr4pj9jbh7mzqj6fqm4vqxbfiqg"; }) 87 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.Mono.osx-x64"; version = "8.0.5"; sha256 = "186q4jy948hy128271rhsjy1z8isc45snvss37pnz5r0wq68vy3b"; }) 88 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.Mono.win-x64"; version = "8.0.5"; sha256 = "0njzarmfay3jhqmjr1qmhgsldsff0rhb5lnl6zp0c337i85yd7xh"; }) 89 + (fetchNuGet { pname = "Microsoft.NETCore.App.Runtime.Mono.win-x86"; version = "8.0.5"; sha256 = "0fwpmdw5d89mkmzfq16659mlswjp9fnd0cqdyfy5frgb3mi3g10a"; }) 90 + (fetchNuGet { pname = "runtime.linux-musl-arm.Microsoft.NETCore.DotNetAppHost"; version = "8.0.5"; sha256 = "0j68y9gp3ci4982imhdri513in9sldicx8xn6kvg3czqanc34n9j"; }) 91 + (fetchNuGet { pname = "runtime.linux-musl-arm.Microsoft.NETCore.DotNetHost"; version = "8.0.5"; sha256 = "1frixdwdpxjzkzlwrfkxrx6qnf4vpb7flhl7r1z2wi8m2x8xyami"; }) 92 + (fetchNuGet { pname = "runtime.linux-musl-arm.Microsoft.NETCore.DotNetHostPolicy"; version = "8.0.5"; sha256 = "1wmf8b422s3l6rld07zr5qyg43wp6cd3xnz80j45zmny6sl1ksd9"; }) 93 + (fetchNuGet { pname = "runtime.linux-musl-arm.Microsoft.NETCore.DotNetHostResolver"; version = "8.0.5"; sha256 = "1yp69lwz1yj89258sq0pznr037ihng9444d06893vajyn86x2ys3"; }) 94 + (fetchNuGet { pname = "runtime.osx-arm64.Microsoft.NETCore.DotNetAppHost"; version = "8.0.5"; sha256 = "1r1bzbisjxqkl310yfqjrsivjg55l61rlw60xm77nr4iww4av6l9"; }) 95 + (fetchNuGet { pname = "runtime.osx-arm64.Microsoft.NETCore.DotNetHost"; version = "8.0.5"; sha256 = "0gc6kmqvqmgzf22fgsimfybdj7yp889nc50jnlskm20hp6mia4wi"; }) 96 + (fetchNuGet { pname = "runtime.osx-arm64.Microsoft.NETCore.DotNetHostPolicy"; version = "8.0.5"; sha256 = "0ymnh483ds18699mvcg0k2j1an8xrknsb4zb3nxj97246wgdh9hp"; }) 97 + (fetchNuGet { pname = "runtime.osx-arm64.Microsoft.NETCore.DotNetHostResolver"; version = "8.0.5"; sha256 = "1r3cn282p3qv4fzsq5cwd5lkjjrv5dfqp54ffgh6yi9j9s2h0j99"; }) 98 + (fetchNuGet { pname = "Microsoft.NETCore.App.Crossgen2.linux-musl-arm"; version = "8.0.5"; sha256 = "1xkzzn8vg4h4nf63nbzvd5pk19y5cg3k0ljzkblva4knppaxx6k5"; }) 99 + (fetchNuGet { pname = "Microsoft.NETCore.App.Crossgen2.linux-musl-arm64"; version = "8.0.5"; sha256 = "00dbmjlcfckpgbl4f44p8vfr5aqabx21jllsqkqcy1qnp8a504h0"; }) 100 + (fetchNuGet { pname = "Microsoft.NETCore.App.Crossgen2.linux-musl-x64"; version = "8.0.5"; sha256 = "1syiaqw9dmqm5n5fvwhaycip1d7mj14dcivjwbhyf5nyd67zy8bp"; }) 101 + (fetchNuGet { pname = "Microsoft.NETCore.App.Crossgen2.linux-arm"; version = "8.0.5"; sha256 = "0jpf2axjfv8nwd4yiib25agfx2y1mmksxz8laf6akac33gf6swgh"; }) 102 + (fetchNuGet { pname = "Microsoft.NETCore.App.Crossgen2.linux-arm64"; version = "8.0.5"; sha256 = "02mpnyyklhwyysjz8rhk42cnl5v1gb64la8zm95nldrsgv1viw70"; }) 103 + (fetchNuGet { pname = "Microsoft.NETCore.App.Crossgen2.linux-x64"; version = "8.0.5"; sha256 = "1ky9whq5k3a1x0amailp1kd5926lx3kpir2ji68wj80w7c4kpr72"; }) 104 + (fetchNuGet { pname = "Microsoft.NETCore.App.Crossgen2.osx-x64"; version = "8.0.5"; sha256 = "1jaw4mgzsf7jjkqlzkxjbpj3jszpg86fgjjvkc2vyk91p15dsgll"; }) 105 + (fetchNuGet { pname = "Microsoft.NETCore.App.Crossgen2.osx-arm64"; version = "8.0.5"; sha256 = "1jw06my5ds295lap3q35pg4hqcqmrx2bjqjaxgxhm6vyaif756nx"; }) 106 + (fetchNuGet { pname = "runtime.linux-arm64.Microsoft.DotNet.ILCompiler"; version = "8.0.5"; sha256 = "1iq19frhagk99a9wjgb10059mh0k5wp28inwy7diivj4lpi7wr24"; }) 107 + (fetchNuGet { pname = "runtime.linux-musl-arm64.Microsoft.DotNet.ILCompiler"; version = "8.0.5"; sha256 = "1qrmwr0vvl49slnjf5r63lyyl7zlli98lbn0g44n6ra8drbhdyp6"; }) 108 + (fetchNuGet { pname = "runtime.linux-musl-x64.Microsoft.DotNet.ILCompiler"; version = "8.0.5"; sha256 = "17i0cgs6w8vlr7fnypj4c6188rpc3sgkr80ly453nb2qrmkyhzh4"; }) 109 + (fetchNuGet { pname = "runtime.linux-x64.Microsoft.DotNet.ILCompiler"; version = "8.0.5"; sha256 = "1x80i4rbkdanana8hhbhkw47410bpryinry2axxwaw6yyk5gyr3g"; }) 110 + (fetchNuGet { pname = "runtime.osx-x64.Microsoft.DotNet.ILCompiler"; version = "8.0.5"; sha256 = "1psh3vxfp37xx6bdhgj7l7d9r6p0kkxwfi98i89l1s407nj6cwvc"; }) 111 + (fetchNuGet { pname = "runtime.win-arm64.Microsoft.DotNet.ILCompiler"; version = "8.0.5"; sha256 = "0msnc3iqrlslipar5zbjhz7v4f27lc7rkyy1fv18rqv787a87bbx"; }) 112 + (fetchNuGet { pname = "runtime.win-x64.Microsoft.DotNet.ILCompiler"; version = "8.0.5"; sha256 = "1q6vx9d2z57idkickjfxf9jf90x9x7jmxz7lrhyxcrprnf7sscgw"; }) 113 + (fetchNuGet { pname = "Microsoft.NET.ILLink.Tasks"; version = "8.0.5"; sha256 = "06siqqihzhmxbkryrw3x3xvmv5fr6gw5qdyb6y8z3l9bzd5qdf7r"; }) 114 114 ]; 115 115 in rec { 116 - release_8_0 = "8.0.4"; 116 + release_8_0 = "8.0.5"; 117 117 118 118 aspnetcore_8_0 = buildAspNetCore { 119 - version = "8.0.4"; 119 + version = "8.0.5"; 120 120 srcs = { 121 121 x86_64-linux = { 122 - url = "https://download.visualstudio.microsoft.com/download/pr/0b0bc7f4-c6e5-4cec-a7ed-45c2fac0da4b/ae2090564274152b5a4be9f1e66c5d30/aspnetcore-runtime-8.0.4-linux-x64.tar.gz"; 123 - sha512 = "8ab281977116bf59a672afe5463bce4433378cc8a67d332c564a012939b7dbdd8756df82a115a5ab93f8186c22700a6dc0272b99a0f484db837da96820c78e79"; 122 + url = "https://download.visualstudio.microsoft.com/download/pr/ccccfeb7-0af4-4713-b4f1-cf49b5c8bd6c/5b04c0188dfcf78b70da78ae3bd7f3ab/aspnetcore-runtime-8.0.5-linux-x64.tar.gz"; 123 + sha512 = "ffe6a534ed7dffe031e7d687b153f09a743792fad6ddcdf70fcbdbe4564462d5db71a8c9eb52036b817192386ef6a8fc574d995e0cdf572226302e797a6581c4"; 124 124 }; 125 125 aarch64-linux = { 126 - url = "https://download.visualstudio.microsoft.com/download/pr/80ec12e5-b26f-466c-a20c-f96772ea709d/606e7203912400b44cb35d6fcecf60bf/aspnetcore-runtime-8.0.4-linux-arm64.tar.gz"; 127 - sha512 = "0b0b3dffe678211afcaeca5d7e381f2218f156421c79dd06e083b1abd92ceb2b5c04c8a159b7d67b866393b8169de826ede70240226e0164451b329b7d46b570"; 126 + url = "https://download.visualstudio.microsoft.com/download/pr/208a57a8-fcc0-4801-a337-79095304d2af/d1ffa79af24735af4bd748229778c1a9/aspnetcore-runtime-8.0.5-linux-arm64.tar.gz"; 127 + sha512 = "54ad859a3307a4ccce6aa794df20dab3fc38cb4a8fc9f1c2cb41636d6d19fed1e82f88a0099bdc9f30e08c919ae5653da828ae54b0299291dafcc755575f02db"; 128 128 }; 129 129 x86_64-darwin = { 130 - url = "https://download.visualstudio.microsoft.com/download/pr/8edd447c-bd4a-4677-ba33-8bdac6088dc8/a17a23a5d47642eb050288dea0322350/aspnetcore-runtime-8.0.4-osx-x64.tar.gz"; 131 - sha512 = "544257738cd7265a6c3c99e83f331c20c631ee8064e47bd925e37191627223e2f39f19a025360de1f95915bde1a26eede757bea4ffbd115309d186d81d7d6b61"; 130 + url = "https://download.visualstudio.microsoft.com/download/pr/77cd03cb-5575-48c9-8714-6498ee88694b/8bfba2913a4db23e3dffdff779fb7866/aspnetcore-runtime-8.0.5-osx-x64.tar.gz"; 131 + sha512 = "d214a8b6a60547acb1a7f879e7a82348585b699f714b73b168918ebc60ee580ca5ff973f64e7738063f79dd04f0807bef0d73e90ce42c3b4464b87b768ccd789"; 132 132 }; 133 133 aarch64-darwin = { 134 - url = "https://download.visualstudio.microsoft.com/download/pr/172cfd62-a126-4375-9a48-84cfbcf1b718/959ce27a010020f0e5d393578574bca9/aspnetcore-runtime-8.0.4-osx-arm64.tar.gz"; 135 - sha512 = "15e8a7535e0b4d2deeccec32e6373cc2d79fe1156c2490ec263790723c5f660c03a61978826d825a427ebbad02cd0eef12a14e11cb8fcd9744c5ce2ef7176011"; 134 + url = "https://download.visualstudio.microsoft.com/download/pr/c264657c-7a93-4ba5-b6e0-91bf41341e1e/90fb45ed7d2f92c374899b1c7a5254b2/aspnetcore-runtime-8.0.5-osx-arm64.tar.gz"; 135 + sha512 = "b1a47d2ae3b528f5c32b57e3a03b46d12a14126b9768f9dd5dd979d49dc6543c6aafe55684eae3890ffe6b867aa664805b920ae1514f67cc841b882d5da7c091"; 136 136 }; 137 137 }; 138 138 }; 139 139 140 140 runtime_8_0 = buildNetRuntime { 141 - version = "8.0.4"; 141 + version = "8.0.5"; 142 142 srcs = { 143 143 x86_64-linux = { 144 - url = "https://download.visualstudio.microsoft.com/download/pr/a3ca3d31-f45b-4e53-ab4d-0f2f221cbc5b/47382078b4b72a66387d0fd6ed9ff963/dotnet-runtime-8.0.4-linux-x64.tar.gz"; 145 - sha512 = "5c23889d3e6effa85d46c0e1969ce876c686723ae47bddf2cf9c0b1d99affde3f60c04063c2467027aa4163e9a981ef601250a7e8d14ddc6b365c89b24029c80"; 144 + url = "https://download.visualstudio.microsoft.com/download/pr/baeb5da3-4b77-465b-8816-b29f0bc3e1a9/b04b17a2aae79e5f5635a3ceffbd4645/dotnet-runtime-8.0.5-linux-x64.tar.gz"; 145 + sha512 = "3efff49feb2e11cb5ec08dcee4e1e8ad92a4d2516b721a98b55ef2ada231cad0c91fd20b71ab5e340047fc837bd02d143449dd32f4f95288f6f659fa6c790eaa"; 146 146 }; 147 147 aarch64-linux = { 148 - url = "https://download.visualstudio.microsoft.com/download/pr/761b252b-a0d9-41cd-b1ec-2dc33159c11c/b8285cf82db4ef340a191bfba9a9a73e/dotnet-runtime-8.0.4-linux-arm64.tar.gz"; 149 - sha512 = "d11ce8867dc91d9e9b333753cc7b9677204898485d044dfbbfabe5c5eee43091580a11c3029fca4138cfa9576f84e23fc11bcffa44fcaf5c3d8e617a3cd18802"; 148 + url = "https://download.visualstudio.microsoft.com/download/pr/00ca4d7a-e529-4384-8ad4-acb8237d540f/a7df4c26e3c0e1dcf8e17d2abb79aad5/dotnet-runtime-8.0.5-linux-arm64.tar.gz"; 149 + sha512 = "cd6c0ac051c3a8b6f3452a5a93600e664e30b9ba14c33948fbbfc21482fe55a8b16268035dd0725c85189d18c83860ea7a7bc96c87d6a4ee6a6083130c5586c3"; 150 150 }; 151 151 x86_64-darwin = { 152 - url = "https://download.visualstudio.microsoft.com/download/pr/c999e42b-38c9-4d9a-9816-9a0ebece8afe/8e4471db5aa0756d812af23817b14259/dotnet-runtime-8.0.4-osx-x64.tar.gz"; 153 - sha512 = "bb303991154582e1aee0b4850bec2ed92b5c4253bed08d76da0c9687c90c46c9ddddd7ffb9050fb7a4d8db6be6e8cd552156589679a3a169341a167952d76407"; 152 + url = "https://download.visualstudio.microsoft.com/download/pr/0dabe69f-fa99-4b53-96d1-9f9791bb0b6b/f72acbfd3b0e60528d9494b43bcf21ca/dotnet-runtime-8.0.5-osx-x64.tar.gz"; 153 + sha512 = "29a8be6dd738d634cc33857dc1f1f6cc2c263177d78eb1c4585c96b5bf568f8f2689f1a30eec728ccb96a2d005049936abbfd44daca1962caf4f6d53325ba42f"; 154 154 }; 155 155 aarch64-darwin = { 156 - url = "https://download.visualstudio.microsoft.com/download/pr/d2cd56cc-5a78-460d-a45d-3893b020949d/8cf9653a23c91ac2b10c70f58edae60e/dotnet-runtime-8.0.4-osx-arm64.tar.gz"; 157 - sha512 = "7aa4ea587348984ca959945a9e52bade7cb9cbcb8c5a32dbcdf0836d2da4148ca68fcf9815b0b274964b5164c9266b1891afc9406c1c7337642f09300efd7649"; 156 + url = "https://download.visualstudio.microsoft.com/download/pr/fac90ccb-5864-4d4a-a116-67387aaee61e/df82eea80efffad3c9ec8b0522847e68/dotnet-runtime-8.0.5-osx-arm64.tar.gz"; 157 + sha512 = "5401135b8871d85ca6f774958e6a644ef2bf85a88d2358f15c3bdc928b21a700be428efede677d83640085461d000e55a28bfbacdc9f01af0334a6e8b257efbd"; 158 158 }; 159 159 }; 160 160 }; 161 161 162 + sdk_8_0_3xx = buildNetSdk { 163 + version = "8.0.300"; 164 + srcs = { 165 + x86_64-linux = { 166 + url = "https://download.visualstudio.microsoft.com/download/pr/4a252cd9-d7b7-41bf-a7f0-b2b10b45c068/1aff08f401d0e3980ac29ccba44efb29/dotnet-sdk-8.0.300-linux-x64.tar.gz"; 167 + sha512 = "6ba966801ad3869275469b0f7ee7af0b88b659d018a37b241962335bd95ef6e55cb6741ab77d96a93c68174d30d0c270b48b3cda21b493270b0d6038ee3fe79e"; 168 + }; 169 + aarch64-linux = { 170 + url = "https://download.visualstudio.microsoft.com/download/pr/54e5bb2e-bdd6-496d-8aba-4ed14658ee91/34fd7327eadad7611bded51dcda44c35/dotnet-sdk-8.0.300-linux-arm64.tar.gz"; 171 + sha512 = "b38d34afe6d92f63a0e5b6fc37c88fbb5a1c73fba7d8df41d25432b64b2fbc31017198a02209b3d4343d384bc352834b9ee68306307a3f0fe486591dd2f70efd"; 172 + }; 173 + x86_64-darwin = { 174 + url = "https://download.visualstudio.microsoft.com/download/pr/e05a3055-c987-4127-a315-51d6b982fd67/fbda30d8e461b2c5098f3c405378b559/dotnet-sdk-8.0.300-osx-x64.tar.gz"; 175 + sha512 = "12ed6044dad31c65d6894d7e1cf861a6c330c23761fed90ca2fe0c7d2700433fb8b8541c35bb235b044762f5fd33496cd6e92dbd70deeeb7b9e59423d9d49f5e"; 176 + }; 177 + aarch64-darwin = { 178 + url = "https://download.visualstudio.microsoft.com/download/pr/4d7af168-9a20-40a3-8744-b2f1c10c0227/3d6d8d16545d6c05125c51ef8142296f/dotnet-sdk-8.0.300-osx-arm64.tar.gz"; 179 + sha512 = "98a9b56b2795bf6faa848062ed34d917b187eda220db50c8e73de1bfa37244dd68d8c3cbc598b5fc5be4620a2b92724f95d7c13299f8b873fdefe880890a1bbb"; 180 + }; 181 + }; 182 + inherit packages; 183 + }; 184 + 162 185 sdk_8_0_2xx = buildNetSdk { 163 - version = "8.0.204"; 186 + version = "8.0.205"; 164 187 srcs = { 165 188 x86_64-linux = { 166 - url = "https://download.visualstudio.microsoft.com/download/pr/0a1b3cbd-b4af-4d0d-9ed7-0054f0e200b4/4bcc533c66379caaa91770236667aacb/dotnet-sdk-8.0.204-linux-x64.tar.gz"; 167 - sha512 = "b45d3e3bc039d50764bfbe393b26cc929d93b22d69da74af6d35d4038ebcbc2f8410b047cdd0425c954d245e2594755c9f293c09f1ded3c97d33aebfaf878b5f"; 189 + url = "https://download.visualstudio.microsoft.com/download/pr/7cdbcd68-c4e8-4212-b4a2-f30ae2ffdb19/48a359550fd7eab1f03ea18eb2689eb3/dotnet-sdk-8.0.205-linux-x64.tar.gz"; 190 + sha512 = "2ec774350ca3192e1c68c9c8ee62d0c089f9bd03fe1aaebb118fbe7625f2e0960f5dbd800ea3f974cc7ac7fba32830f41faec9ee1bae736497ba05d9c7addb59"; 168 191 }; 169 192 aarch64-linux = { 170 - url = "https://download.visualstudio.microsoft.com/download/pr/1e449990-2934-47ee-97fb-b78f0e587c98/1c92c33593932f7a86efa5aff18960ed/dotnet-sdk-8.0.204-linux-arm64.tar.gz"; 171 - sha512 = "7000b559efe502e9a799e9fccb6bccc2e39eb21331d6cb2be54f389e357436b84f5ccbcc73245df647749ee32d27f7fb8b7737d449312f0db7dd3409f8e12443"; 193 + url = "https://download.visualstudio.microsoft.com/download/pr/96b5cb76-37e3-4514-a8c5-bb4834e275d3/b541205fa6efc3bd223b3201dcb7735c/dotnet-sdk-8.0.205-linux-arm64.tar.gz"; 194 + sha512 = "092ce55cc45ab5109c9d991382e7ed7f40bc0281e94766738dbf179d618f03dbf8ba38e43c418a3d5cac0377afc5e5b82a969e36832e386b851f3679a2e988e3"; 172 195 }; 173 196 x86_64-darwin = { 174 - url = "https://download.visualstudio.microsoft.com/download/pr/9548c95b-8495-4b69-b6f0-1fdebdbbf9ff/30827786409718c5a9604711661da3b5/dotnet-sdk-8.0.204-osx-x64.tar.gz"; 175 - sha512 = "a49c3dc8f364dcf2f88353b80267062b557ef4afff333fa4494e84d01234d38c57619aaf7a3e2cacfb16d066ab1523b6e5953cf864e5e8f411dd38855408bb5d"; 197 + url = "https://download.visualstudio.microsoft.com/download/pr/0dcb3b2f-6bbe-4dc0-a42a-283826d8b9ce/16767a67d602bd267122a26f4c4c2935/dotnet-sdk-8.0.205-osx-x64.tar.gz"; 198 + sha512 = "15f410ae81027f4537a03a00114873fe9bacf799d5ddc24663fefc3b1d977d237269fef48c80334bcaf7230495f304bb123f310692f880fea8cb8e0072abb4a3"; 176 199 }; 177 200 aarch64-darwin = { 178 - url = "https://download.visualstudio.microsoft.com/download/pr/8746698c-596d-406e-b672-49a53d77eea7/74c28673e54213d058eec2c9151714cc/dotnet-sdk-8.0.204-osx-arm64.tar.gz"; 179 - sha512 = "db06baa1d076549e393a9a402c03e81834e15641d2b5fdbd5beb7c4a55b5ed979f5e58ac6baa2048bc55a3a7b3aabe0e3c518310c66a17ecd107b7bf0aaaf2b0"; 201 + url = "https://download.visualstudio.microsoft.com/download/pr/c8126855-4f38-4d01-8e22-b7f93452a9d7/725dda9ebd1ae3486febf496217ba0b9/dotnet-sdk-8.0.205-osx-arm64.tar.gz"; 202 + sha512 = "2792e9b0cd4fd69373022c5e4c17bd128dd8e31db773f51b39c8696f37e72af8c4b67d0c017ee068587c0f664efa8bbd9a0bc4472b072a7897d2ff4ef8fafa58"; 180 203 }; 181 204 }; 182 205 inherit packages; 183 206 }; 184 207 185 208 sdk_8_0_1xx = buildNetSdk { 186 - version = "8.0.104"; 209 + version = "8.0.105"; 187 210 srcs = { 188 211 x86_64-linux = { 189 - url = "https://download.visualstudio.microsoft.com/download/pr/fd4a16ac-5322-4308-b6b0-afa1821e63f6/0abd2e63358335f2235d22fd84b32a60/dotnet-sdk-8.0.104-linux-x64.tar.gz"; 190 - sha512 = "cb7b5e509c16a7e27ccfc03b3a217460b9eac151ca973f262f82d4b4a494f7bdff3229e9aee91df1c110582ee8dd3d310dad39528c3bd292c5d9b7746ba3b6fd"; 212 + url = "https://download.visualstudio.microsoft.com/download/pr/e898e5ae-041a-4e64-95c7-751479f40df5/9e36a84d3e1283e1932d7f82f6980cd8/dotnet-sdk-8.0.105-linux-x64.tar.gz"; 213 + sha512 = "60ff271ee7851ff9ab851f9dc3e3d0abc87ac9b982959abfc8f0a3b58301fb6a0ff7b9f07f8df18668e1e8182c688d0d661bb9cb1771a2d40a0015d02009fce8"; 191 214 }; 192 215 aarch64-linux = { 193 - url = "https://download.visualstudio.microsoft.com/download/pr/92652bc8-b312-4f77-ad95-cbbcbc9330ed/549869e13f1bf66b0b089b4e976e96ea/dotnet-sdk-8.0.104-linux-arm64.tar.gz"; 194 - sha512 = "71f5fb65c88bfd14ebc13c5eec04d08b4f7461d1b9f3f5f08c31351a377e08cd002072a4487bfc2496ac7b4d5ba83c97eb979a5732de394c1a02a4528877002f"; 216 + url = "https://download.visualstudio.microsoft.com/download/pr/ffadc6b9-6f16-4671-866d-4c150f2888d1/256d5909ff60dae42cbd251347cc14df/dotnet-sdk-8.0.105-linux-arm64.tar.gz"; 217 + sha512 = "8f04afa385676d2ec879ad22734a4c869d931ba4bc7507d0aa5889561d0230e382598057bdf75792048b28bd9a1c8eb187e80691f603309a46d6c50d71373381"; 195 218 }; 196 219 x86_64-darwin = { 197 - url = "https://download.visualstudio.microsoft.com/download/pr/5f790cbf-88b3-4619-b083-178e1eb6c16f/ab21721125a05ec751b22d689e19a353/dotnet-sdk-8.0.104-osx-x64.tar.gz"; 198 - sha512 = "b451731c7fe151316df57d1e6a23129732ebc0dc3dd53479421b881652bd042d5fb9890c2c8e229fc578b3b05542a8e08986955154e590d8c1e274c5821a5666"; 220 + url = "https://download.visualstudio.microsoft.com/download/pr/54b48c6e-1a50-4dd5-9592-8ae5dfbe9d2f/913341d866eaf3149a6158cabf9ce2ad/dotnet-sdk-8.0.105-osx-x64.tar.gz"; 221 + sha512 = "052fd0783bd0901876a29b57a0f15e9f9cf859373bf4f3867a8f3e00b4edac5f3814b066be81c76d6bc74a20bd696e4ec65db48dc19703bbb4ee56d60aedd96d"; 199 222 }; 200 223 aarch64-darwin = { 201 - url = "https://download.visualstudio.microsoft.com/download/pr/73d8ccae-9bcf-42e4-9a57-b6a4480eea2b/52e136f08e967c6ea9617be542921286/dotnet-sdk-8.0.104-osx-arm64.tar.gz"; 202 - sha512 = "376fda994997e3ebbf15cafbc910ff25a71debd2d31d088cf7947f813ff013568f3f47514ec53d2c02a3e3f8432a5ca9344dab3ee07cc0df650761a3dbc6be68"; 224 + url = "https://download.visualstudio.microsoft.com/download/pr/8d741dd4-ab83-4bd8-8667-998cc1c6d345/c7ac6cf87561262db36b18e505150e89/dotnet-sdk-8.0.105-osx-arm64.tar.gz"; 225 + sha512 = "f910adb274065fef581728e7d043bc3f0c105a939f659865753c11a0dd0b550bdc4c0bc01e2ce6f710efcdebb3966ef138986113f595af4d6a9be8b15008abc6"; 203 226 }; 204 227 }; 205 228 inherit packages; 206 229 }; 207 230 208 - sdk_8_0 = sdk_8_0_2xx; 231 + sdk_8_0 = sdk_8_0_3xx; 209 232 }
+2 -2
pkgs/development/compilers/odin/default.nix
··· 12 12 inherit (llvmPackages) stdenv; 13 13 in stdenv.mkDerivation rec { 14 14 pname = "odin"; 15 - version = "dev-2024-04a"; 15 + version = "dev-2024-05"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "odin-lang"; 19 19 repo = "Odin"; 20 20 rev = version; 21 - hash = "sha256-jFENpWUosNNTctYiHdKqDg7ENAoEtigz87pTfYJDj5Q="; 21 + hash = "sha256-JGTC+Gi5mkHQHvd5CmEzrhi1muzWf1rUN4f5FT5K5vc="; 22 22 }; 23 23 24 24 nativeBuildInputs = [
+2 -2
pkgs/development/libraries/gnu-efi/default.nix
··· 3 3 4 4 stdenv.mkDerivation rec { 5 5 pname = "gnu-efi"; 6 - version = "3.0.18"; 6 + version = "3.0.15"; 7 7 8 8 src = fetchurl { 9 9 url = "mirror://sourceforge/gnu-efi/${pname}-${version}.tar.bz2"; 10 - hash = "sha256-fyEslu5mVH7u+1MSZ7ZB5Uc9fYUp8L2Mze/TPPdBP1w="; 10 + hash = "sha256-kxole5xcG6Zf9Rnxg3PEOKJoJfLbeGaxY+ltGxaPIOo="; 11 11 }; 12 12 13 13 buildInputs = [ pciutils ];
+2 -2
pkgs/development/libraries/imgui/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "imgui"; 5 - version = "1.90.5"; 5 + version = "1.90.6"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "ocornut"; 9 9 repo = "imgui"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-iTs8bcCAR8lvN1tcKmwyB3CcFmqR1QpqdGqdER920rM="; 11 + sha256 = "sha256-FSob6FPfg0tF0n72twA5/moLvEaB251BPkIDJUXhYbg="; 12 12 }; 13 13 14 14 dontBuild = true;
+2 -2
pkgs/development/libraries/libjwt/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "libjwt"; 5 - version = "1.17.0"; 5 + version = "1.17.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "benmcollins"; 9 9 repo = "libjwt"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-ZMmXn/vKARz9Erg3XS2YICSq5u38NZFMDAafXXzE1Ss="; 11 + sha256 = "sha256-yMnk4gfUa5c6Inppz9I1h6it41nuJ4By3eDO0YrdB2Y="; 12 12 }; 13 13 14 14 buildInputs = [ jansson openssl ];
+2 -2
pkgs/development/libraries/ngtcp2/default.nix
··· 8 8 9 9 stdenv.mkDerivation rec { 10 10 pname = "ngtcp2"; 11 - version = "1.4.0"; 11 + version = "1.5.0"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "ngtcp2"; 15 15 repo = pname; 16 16 rev = "v${version}"; 17 - hash = "sha256-te/kFt7/09QpmkHZ7dJxyKvvxP+mHtIQIgESkJATR38="; 17 + hash = "sha256-Ez97uFzXvI7cE2TIk4/RCAwbAf+vXG1PlPaSvdSrcnE="; 18 18 fetchSubmodules = true; 19 19 }; 20 20
+2 -2
pkgs/development/ocaml-modules/arp/default.nix
··· 22 22 23 23 buildDunePackage rec { 24 24 pname = "arp"; 25 - version = "3.1.0"; 25 + version = "3.1.1"; 26 26 27 27 src = fetchurl { 28 28 url = "https://github.com/mirage/${pname}/releases/download/v${version}/${pname}-${version}.tbz"; 29 - hash = "sha256-g/aEhpufQcyS/vCtKk0Z1sYaYNRmQFaZ9rTp9F4nq54="; 29 + hash = "sha256-6jPFiene6jAPtivCugtVfP3+6k9A5gBoWzpoxoaPBvE="; 30 30 }; 31 31 32 32 minimalOCamlVersion = "4.08";
+2 -1
pkgs/development/ocaml-modules/ocamlformat/generic.nix
··· 1 - { lib, fetchurl, version ? "0.26.1", astring, base, camlp-streams, cmdliner_1_0 1 + { lib, fetchurl, version ? "0.26.2", astring, base, camlp-streams, cmdliner_1_0 2 2 , cmdliner_1_1, csexp, dune-build-info, either, fix, fpath, menhirLib, menhirSdk 3 3 , ocaml-version, ocp-indent, odoc-parser, result, stdio, uuseg, uutf, ... }: 4 4 ··· 24 24 "0.25.1" = "sha256-3I8qMwyjkws2yssmI7s2Dti99uSorNKT29niJBpv0z0="; 25 25 "0.26.0" = "sha256-AxSUq3cM7xCo9qocvrVmDkbDqmwM1FexEP7IWadeh30="; 26 26 "0.26.1" = "sha256-2gBuQn8VuexhL7gI1EZZm9m3w+4lq+s9VVdHpw10xtc="; 27 + "0.26.2" = "sha256-Lk9Za/eqNnqET+g7oPawvxSyplF53cCCNj/peT0DdcU="; 27 28 }."${version}"; 28 29 }; 29 30
+2 -1
pkgs/development/ocaml-modules/ocamlformat/ocamlformat.nix
··· 12 12 let inherit (callPackage ./generic.nix args) src version library_deps; 13 13 in 14 14 15 - lib.throwIf (lib.versionAtLeast ocaml.version "5.0" && !lib.versionAtLeast version "0.23") 15 + lib.throwIf (lib.versionAtLeast ocaml.version "5.0" && !lib.versionAtLeast version "0.23" 16 + || lib.versionAtLeast ocaml.version "5.2" && !lib.versionAtLeast version "0.26.2") 16 17 "ocamlformat ${version} is not available for OCaml ${ocaml.version}" 17 18 18 19 buildDunePackage {
+28 -14
pkgs/development/python-modules/aioairq/default.nix
··· 1 - { lib 2 - , aiohttp 3 - , buildPythonPackage 4 - , fetchFromGitHub 5 - , pycryptodome 6 - , pythonOlder 1 + { 2 + lib, 3 + aiohttp, 4 + buildPythonPackage, 5 + fetchFromGitHub, 6 + pycryptodome, 7 + pytest-asyncio, 8 + pytestCheckHook, 9 + pythonOlder, 10 + setuptools, 7 11 }: 8 12 9 13 buildPythonPackage rec { 10 14 pname = "aioairq"; 11 - version = "0.3.2"; 12 - format = "setuptools"; 15 + version = "0.4.2"; 16 + pyproject = true; 13 17 14 18 disabled = pythonOlder "3.9"; 15 19 16 20 src = fetchFromGitHub { 17 21 owner = "CorantGmbH"; 18 - repo = pname; 22 + repo = "aioairq"; 19 23 rev = "refs/tags/v${version}"; 20 - hash = "sha256-Sau0Ih+9WRChbztl8yjXVWy4/QxyllQKOPslbZroBeQ="; 24 + hash = "sha256-ppjhGBAoA5iV+ZfUKkUCNJRYN82JtclRe36pbe85i5w="; 21 25 }; 22 26 23 - propagatedBuildInputs = [ 27 + build-system = [ setuptools ]; 28 + 29 + dependencies = [ 24 30 aiohttp 25 31 pycryptodome 26 32 ]; 27 33 28 34 # Module has no tests 29 - doCheck = false; 35 + #doCheck = false; 36 + 37 + nativeCheckInputs = [ 38 + pytest-asyncio 39 + pytestCheckHook 40 + ]; 30 41 31 - pythonImportsCheck = [ 32 - "aioairq" 42 + pythonImportsCheck = [ "aioairq" ]; 43 + 44 + disabledTestPaths = [ 45 + # Tests require network access 46 + "tests/test_core_on_device.py" 33 47 ]; 34 48 35 49 meta = with lib; {
+10 -7
pkgs/development/python-modules/aiobiketrax/default.nix
··· 14 14 15 15 buildPythonPackage rec { 16 16 pname = "aiobiketrax"; 17 - version = "1.1.2"; 18 - format = "pyproject"; 17 + version = "1.3.0"; 18 + pyproject = true; 19 19 20 20 disabled = pythonOlder "3.9"; 21 21 22 22 src = fetchFromGitHub { 23 23 owner = "basilfx"; 24 - repo = pname; 24 + repo = "aiobiketrax"; 25 25 rev = "refs/tags/v${version}"; 26 - hash = "sha256-71gPdA1snPJCR0Pmcaki55Ukf5xtUjuZ+xX8VvspKC4="; 26 + hash = "sha256-6hSSPanagYKZxoyU8mp/1bWRcpJJkhNw3Rh82ogKGr4="; 27 27 }; 28 28 29 29 postPatch = '' 30 30 # https://github.com/basilfx/aiobiketrax/pull/63 31 31 substituteInPlace aiobiketrax/api.py \ 32 - --replace "auth0.v3" "auth0" 32 + --replace-fail "auth0.v3" "auth0" 33 33 ''; 34 34 35 35 pythonRelaxDeps = [ 36 36 "auth0-python" 37 37 ]; 38 38 39 - nativeBuildInputs = [ 39 + build-system = [ 40 40 poetry-core 41 + ]; 42 + 43 + nativeBuildInputs = [ 41 44 pythonRelaxDepsHook 42 45 ]; 43 46 44 - propagatedBuildInputs = [ 47 + dependencies = [ 45 48 aiohttp 46 49 auth0-python 47 50 python-dateutil
+46 -61
pkgs/development/python-modules/aiocoap/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , fetchFromGitHub 4 - , pythonAtLeast 5 - , pythonOlder 6 - 7 - # build-system 8 - , setuptools 9 - 10 - # optionals 11 - , cbor2 12 - , cbor-diag 13 - , cryptography 14 - , filelock 15 - , ge25519 16 - , dtlssocket 17 - , websockets 18 - , termcolor 19 - , pygments 20 - 21 - # tests 22 - , pytestCheckHook 1 + { 2 + lib, 3 + buildPythonPackage, 4 + cbor-diag, 5 + cbor2, 6 + cryptography, 7 + dtlssocket, 8 + fetchFromGitHub, 9 + filelock, 10 + ge25519, 11 + pygments, 12 + pytestCheckHook, 13 + pythonAtLeast, 14 + pythonOlder, 15 + setuptools, 16 + termcolor, 17 + websockets, 23 18 }: 24 19 25 20 buildPythonPackage rec { 26 21 pname = "aiocoap"; 27 - version = "0.4.7"; 22 + version = "0.4.8"; 28 23 pyproject = true; 29 24 30 25 disabled = pythonOlder "3.7"; 31 26 32 27 src = fetchFromGitHub { 33 28 owner = "chrysn"; 34 - repo = pname; 29 + repo = "aiocoap"; 35 30 rev = "refs/tags/${version}"; 36 - hash = "sha256-4iwoPfmIwk+PlWUp60aqA5qZgzyj34pnZHf9uH5UhnY="; 31 + hash = "sha256-jBRxorHr5/CgAR6WVXBUycZpJ6n1DYVFQk6kqVv8D1Q="; 37 32 }; 38 33 39 - nativeBuildInputs = [ 40 - setuptools 41 - ]; 34 + build-system = [ setuptools ]; 42 35 43 36 passthru.optional-dependencies = { 44 37 oscore = [ ··· 47 40 filelock 48 41 ge25519 49 42 ]; 50 - tinydtls = [ 51 - dtlssocket 52 - ]; 53 - ws = [ 54 - websockets 55 - ]; 43 + tinydtls = [ dtlssocket ]; 44 + ws = [ websockets ]; 56 45 prettyprint = [ 57 46 termcolor 58 47 cbor2 ··· 61 50 ]; 62 51 }; 63 52 64 - nativeCheckInputs = [ 65 - pytestCheckHook 66 - ]; 67 - 68 - pytestFlagsArray = lib.optionals (pythonAtLeast "3.12") [ 69 - # https://github.com/chrysn/aiocoap/issues/339 70 - "--deselect=tests/test_server.py::TestServerTCP::test_big_resource" 71 - "--deselect=tests/test_server.py::TestServerTCP::test_empty_accept" 72 - "--deselect=tests/test_server.py::TestServerTCP::test_error_resources" 73 - "--deselect=tests/test_server.py::TestServerTCP::test_fast_resource" 74 - "--deselect=tests/test_server.py::TestServerTCP::test_js_accept" 75 - "--deselect=tests/test_server.py::TestServerTCP::test_manualbig_resource" 76 - "--deselect=tests/test_server.py::TestServerTCP::test_nonexisting_resource" 77 - "--deselect=tests/test_server.py::TestServerTCP::test_replacing_resource" 78 - "--deselect=tests/test_server.py::TestServerTCP::test_root_resource" 79 - "--deselect=tests/test_server.py::TestServerTCP::test_slow_resource" 80 - "--deselect=tests/test_server.py::TestServerTCP::test_slowbig_resource" 81 - "--deselect=tests/test_server.py::TestServerTCP::test_spurious_resource" 82 - "--deselect=tests/test_server.py::TestServerTCP::test_unacceptable_accept" 83 - ]; 53 + nativeCheckInputs = [ pytestCheckHook ]; 84 54 85 55 disabledTestPaths = [ 86 56 # Don't test the plugins ··· 89 59 "tests/test_oscore_plugtest.py" 90 60 ]; 91 61 92 - disabledTests = [ 93 - # Communication is not properly mocked 94 - "test_uri_parser" 95 - ]; 62 + disabledTests = 63 + [ 64 + # Communication is not properly mocked 65 + "test_uri_parser" 66 + ] 67 + ++ lib.optionals (pythonAtLeast "3.12") [ 68 + # https://github.com/chrysn/aiocoap/issues/339 69 + "TestServerTCP::test_big_resource" 70 + "TestServerTCP::test_empty_accept" 71 + "TestServerTCP::test_error_resources" 72 + "TestServerTCP::test_fast_resource" 73 + "TestServerTCP::test_js_accept" 74 + "TestServerTCP::test_manualbig_resource" 75 + "TestServerTCP::test_nonexisting_resource" 76 + "TestServerTCP::test_replacing_resource" 77 + "TestServerTCP::test_root_resource" 78 + "TestServerTCP::test_slow_resource" 79 + "TestServerTCP::test_slowbig_resource" 80 + "TestServerTCP::test_spurious_resource" 81 + "TestServerTCP::test_unacceptable_accept" 82 + ]; 96 83 97 - pythonImportsCheck = [ 98 - "aiocoap" 99 - ]; 84 + pythonImportsCheck = [ "aiocoap" ]; 100 85 101 86 meta = with lib; { 102 87 description = "Python CoAP library";
+2 -2
pkgs/development/python-modules/aioconsole/default.nix
··· 17 17 # wrapped to be able to find aioconsole and any other packages. 18 18 buildPythonPackage rec { 19 19 pname = "aioconsole"; 20 - version = "0.7.0"; 20 + version = "0.7.1"; 21 21 pyproject = true; 22 22 23 23 disabled = pythonOlder "3.8"; ··· 26 26 owner = "vxgmichel"; 27 27 repo = "aioconsole"; 28 28 rev = "refs/tags/v${version}"; 29 - hash = "sha256-SKJLc1Tauwpmh2xtFFyHqKRaaQAK99SpbbGLFmAbKcQ="; 29 + hash = "sha256-c8zeKebS04bZS9pMIKAauaLPvRrWaGoDKbnF906tFzQ="; 30 30 }; 31 31 32 32 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/aws-lambda-builders/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "aws-lambda-builders"; 16 - version = "1.48.0"; 16 + version = "1.49.0"; 17 17 pyproject = true; 18 18 19 19 disabled = pythonOlder "3.8"; ··· 22 22 owner = "awslabs"; 23 23 repo = "aws-lambda-builders"; 24 24 rev = "refs/tags/v${version}"; 25 - hash = "sha256-g1f0OL41lvs8OLyLcBk6XJk9wZO/oWluUj5sUcXlUIE="; 25 + hash = "sha256-14qG3AuIlQI6n2XouPfUx7LNZqR0gSnI4OlkiYS62jA="; 26 26 }; 27 27 28 28 postPatch = ''
+2 -2
pkgs/development/python-modules/azure-cosmos/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "azure-cosmos"; 13 - version = "4.6.0"; 13 + version = "4.7.0"; 14 14 pyproject = true; 15 15 16 16 disabled = pythonOlder "3.8"; 17 17 18 18 src = fetchPypi { 19 19 inherit pname version; 20 - hash = "sha256-2uxqwgHGRzsJK2Ku5x44G+62w6jcNhJJgytwSMTwYeI="; 20 + hash = "sha256-ctcUAzE0ZWMCouiVfEuTWQZzvSiLDKYMsSPjSK6ZokE="; 21 21 }; 22 22 23 23 build-system = [ setuptools ];
+78
pkgs/development/python-modules/beanhub-cli/default.nix
··· 1 + { lib 2 + , fetchFromGitHub 3 + , buildPythonPackage 4 + , pythonOlder 5 + , pytestCheckHook 6 + , beancount-black 7 + , beancount-parser 8 + , beanhub-forms 9 + , beanhub-import 10 + , click 11 + , fastapi 12 + , httpx 13 + , jinja2 14 + , poetry-core 15 + , pydantic 16 + , pydantic-core 17 + , pydantic-settings 18 + , pytz 19 + , pyyaml 20 + , rich 21 + , starlette-wtf 22 + , uvicorn 23 + }: 24 + 25 + buildPythonPackage rec { 26 + pname = "beanhub-cli"; 27 + version = "1.1.3"; 28 + pyproject = true; 29 + 30 + disabled = pythonOlder "3.10"; 31 + 32 + src = fetchFromGitHub { 33 + owner = "LaunchPlatform"; 34 + repo = "beanhub-cli"; 35 + rev = "refs/tags/${version}"; 36 + hash = "sha256-vYBbaUVJAs+aIp6aQpJb62DEDxe/sQTzgOkjPq6ADoc="; 37 + }; 38 + 39 + build-system = [ 40 + poetry-core 41 + ]; 42 + 43 + dependencies = [ 44 + beancount-black 45 + beancount-parser 46 + beanhub-forms 47 + beanhub-import 48 + click 49 + fastapi 50 + jinja2 51 + pydantic 52 + pydantic-core 53 + pydantic-settings 54 + pytz 55 + pyyaml 56 + rich 57 + starlette-wtf 58 + uvicorn 59 + ]; 60 + 61 + nativeCheckInputs = [ 62 + pytestCheckHook 63 + httpx 64 + ]; 65 + 66 + pythonImportsCheck = [ 67 + "beanhub_cli" 68 + ]; 69 + 70 + meta = { 71 + description = "Command line tools for BeanHub or Beancount users"; 72 + mainProgram = "bh"; 73 + homepage = "https://github.com/LaunchPlatform/beanhub-cli/"; 74 + changelog = "https://github.com/LaunchPlatform/beanhub-cli/releases/tag/${version}"; 75 + license = with lib.licenses; [ mit ]; 76 + maintainers = with lib.maintainers; [ fangpen ]; 77 + }; 78 + }
+47
pkgs/development/python-modules/beanhub-extract/default.nix
··· 1 + { lib 2 + , fetchFromGitHub 3 + , buildPythonPackage 4 + , pythonOlder 5 + , pytestCheckHook 6 + , poetry-core 7 + , pytz 8 + }: 9 + 10 + buildPythonPackage rec { 11 + pname = "beanhub-extract"; 12 + version = "0.0.7"; 13 + pyproject = true; 14 + 15 + disabled = pythonOlder "3.9"; 16 + 17 + src = fetchFromGitHub { 18 + owner = "LaunchPlatform"; 19 + repo = "beanhub-extract"; 20 + rev = "refs/tags/${version}"; 21 + hash = "sha256-Wt8ZCyCaERNXEd0/Q89QWUW/wGFSHAP2RZLhnv5xkgY="; 22 + }; 23 + 24 + build-system = [ 25 + poetry-core 26 + ]; 27 + 28 + dependencies = [ 29 + pytz 30 + ]; 31 + 32 + nativeCheckInputs = [ 33 + pytestCheckHook 34 + ]; 35 + 36 + pythonImportsCheck = [ 37 + "beanhub_extract" 38 + ]; 39 + 40 + meta = { 41 + description = "The simple library for extracting all kind of bank account transaction export files, mostly for beanhub-import to ingest and generate transactions"; 42 + homepage = "https://github.com/LaunchPlatform/beanhub-extract/"; 43 + changelog = "https://github.com/LaunchPlatform/beanhub-extract/releases/tag/${version}"; 44 + license = with lib.licenses; [ mit ]; 45 + maintainers = with lib.maintainers; [ fangpen ]; 46 + }; 47 + }
+55
pkgs/development/python-modules/beanhub-forms/default.nix
··· 1 + { lib 2 + , fetchFromGitHub 3 + , buildPythonPackage 4 + , pythonOlder 5 + , pytestCheckHook 6 + , jinja2 7 + , multidict 8 + , poetry-core 9 + , pydantic 10 + , pyyaml 11 + , wtforms 12 + }: 13 + 14 + buildPythonPackage rec { 15 + pname = "beanhub-forms"; 16 + version = "0.1.3"; 17 + pyproject = true; 18 + 19 + disabled = pythonOlder "3.9"; 20 + 21 + src = fetchFromGitHub { 22 + owner = "LaunchPlatform"; 23 + repo = "beanhub-forms"; 24 + rev = "refs/tags/${version}"; 25 + hash = "sha256-313c+ENmTe1LyfEiMXNB9AUoGx3Yv/1D0T3HnAbd+Zw="; 26 + }; 27 + 28 + build-system = [ 29 + poetry-core 30 + ]; 31 + 32 + dependencies = [ 33 + jinja2 34 + pydantic 35 + pyyaml 36 + wtforms 37 + ]; 38 + 39 + nativeCheckInputs = [ 40 + multidict 41 + pytestCheckHook 42 + ]; 43 + 44 + pythonImportsCheck = [ 45 + "beanhub_forms" 46 + ]; 47 + 48 + meta = { 49 + description = "Library for generating and processing BeanHub's custom forms"; 50 + homepage = "https://github.com/LaunchPlatform/beanhub-forms/"; 51 + changelog = "https://github.com/LaunchPlatform/beanhub-forms/releases/tag/${version}"; 52 + license = with lib.licenses; [ mit ]; 53 + maintainers = with lib.maintainers; [ fangpen ]; 54 + }; 55 + }
+59
pkgs/development/python-modules/beanhub-import/default.nix
··· 1 + { lib 2 + , fetchFromGitHub 3 + , buildPythonPackage 4 + , pythonOlder 5 + , pytestCheckHook 6 + , beancount-black 7 + , beancount-parser 8 + , beanhub-extract 9 + , jinja2 10 + , poetry-core 11 + , pydantic 12 + , pytz 13 + , pyyaml 14 + }: 15 + 16 + buildPythonPackage rec { 17 + pname = "beanhub-import"; 18 + version = "0.1.5"; 19 + pyproject = true; 20 + 21 + disabled = pythonOlder "3.9"; 22 + 23 + src = fetchFromGitHub { 24 + owner = "LaunchPlatform"; 25 + repo = "beanhub-import"; 26 + rev = "refs/tags/${version}"; 27 + hash = "sha256-BH+d7cKC83b7T2Z1Xlwpsv3KACo1vDn6v65tElhir/c="; 28 + }; 29 + 30 + build-system = [ 31 + poetry-core 32 + ]; 33 + 34 + dependencies = [ 35 + beancount-black 36 + beancount-parser 37 + beanhub-extract 38 + jinja2 39 + pydantic 40 + pytz 41 + pyyaml 42 + ]; 43 + 44 + nativeCheckInputs = [ 45 + pytestCheckHook 46 + ]; 47 + 48 + pythonImportsCheck = [ 49 + "beanhub_import" 50 + ]; 51 + 52 + meta = { 53 + description = "Declarative idempotent rule-based Beancount transaction import engine in Python"; 54 + homepage = "https://github.com/LaunchPlatform/beanhub-import/"; 55 + changelog = "https://github.com/LaunchPlatform/beanhub-import/releases/tag/${version}"; 56 + license = with lib.licenses; [ mit ]; 57 + maintainers = with lib.maintainers; [ fangpen ]; 58 + }; 59 + }
+2 -2
pkgs/development/python-modules/boto3-stubs/default.nix
··· 366 366 367 367 buildPythonPackage rec { 368 368 pname = "boto3-stubs"; 369 - version = "1.34.105"; 369 + version = "1.34.106"; 370 370 pyproject = true; 371 371 372 372 disabled = pythonOlder "3.7"; ··· 374 374 src = fetchPypi { 375 375 pname = "boto3_stubs"; 376 376 inherit version; 377 - hash = "sha256-auwBMUR4haJNuCJ5YJoIEwxdCw9zjfxwpZ/z9FPASmg="; 377 + hash = "sha256-1IQhTwKkT27syAEO82MwPclTfxPoElur9HYGaYrGjCA="; 378 378 }; 379 379 380 380 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/cnvkit/default.nix
··· 22 22 23 23 buildPythonPackage rec { 24 24 pname = "cnvkit"; 25 - version = "0.9.10"; 25 + version = "0.9.11"; 26 26 format = "setuptools"; 27 27 28 28 disabled = pythonOlder "3.7"; ··· 31 31 owner = "etal"; 32 32 repo = "cnvkit"; 33 33 rev = "refs/tags/v${version}"; 34 - hash = "sha256-mCQXo3abwC06x/g51UBshqUk3dpqEVNUvx+cJ/EdYGQ="; 34 + hash = "sha256-tlR1LsR+M1nkzk3CgrkkNcSGP3juv25GXddWDDWJ5ao="; 35 35 }; 36 36 37 37 postPatch = ''
+4 -2
pkgs/development/python-modules/comicon/default.nix
··· 8 8 , lxml 9 9 , pillow 10 10 , pypdf 11 + , python-slugify 11 12 }: 12 13 13 14 buildPythonPackage rec { 14 15 pname = "comicon"; 15 - version = "1.0.1"; 16 + version = "1.1.0"; 16 17 pyproject = true; 17 18 disabled = pythonOlder "3.10"; 18 19 ··· 20 21 owner = "potatoeggy"; 21 22 repo = "comicon"; 22 23 rev = "v${version}"; 23 - hash = "sha256-e9YEr8IwttMlj6FOxk+/kw79qiF1N8/e2qusfw3WH00="; 24 + hash = "sha256-VP4n2pWXHge2gJ67O2nErJ30gI0vaAMn0VOpX8sLkfs="; 24 25 }; 25 26 26 27 nativeBuildInputs = [ ··· 37 38 lxml 38 39 pillow 39 40 pypdf 41 + python-slugify 40 42 ]; 41 43 42 44 pythonImportsCheck = [ "comicon" ];
+3 -3
pkgs/development/python-modules/curl-cffi/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "curl-cffi"; 12 - version = "0.6.3"; 12 + version = "0.6.4"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "yifeikong"; 16 16 repo = "curl_cffi"; 17 - rev = "v${version}"; 18 - hash = "sha256-VeBh5wp/VEMDGR2YK06w34hBv9qHIyA+EiZHrhEhAGw="; 17 + rev = "refs/tags/v${version}"; 18 + hash = "sha256-bNBpZAIdfub2osByo827RBw/gouCmNt8uVN0y1KdcUk="; 19 19 }; 20 20 21 21 patches = [
+28 -21
pkgs/development/python-modules/cvelib/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , click 4 - , fetchFromGitHub 5 - , jsonschema 6 - , pytestCheckHook 7 - , pythonOlder 8 - , requests 9 - , testers 10 - , cve 1 + { 2 + lib, 3 + buildPythonPackage, 4 + click, 5 + cve, 6 + fetchFromGitHub, 7 + jsonschema, 8 + pytestCheckHook, 9 + pythonOlder, 10 + requests, 11 + setuptools, 12 + testers, 11 13 }: 12 14 13 15 buildPythonPackage rec { 14 16 pname = "cvelib"; 15 - version = "1.3.0"; 16 - format = "setuptools"; 17 + version = "1.4.0"; 18 + pyproject = true; 17 19 18 20 disabled = pythonOlder "3.7"; 19 21 20 22 src = fetchFromGitHub { 21 23 owner = "RedHatProductSecurity"; 22 24 repo = "cvelib"; 23 - rev = "tags/${version}"; 24 - hash = "sha256-PCZUAKgE80PD//4qK8ap55IN9vtx9WdpRZUAC3UdaWM="; 25 + rev = "refs/tags/${version}"; 26 + hash = "sha256-nj5bkep8jYJE1qh2zNxivjKOpHj93UZ8bU+qNs2On8s="; 25 27 }; 26 28 27 - propagatedBuildInputs = [ 29 + postPatch = '' 30 + # collective.checkdocs is unmaintained for over 10 years 31 + substituteInPlace pyproject.toml \ 32 + --replace-fail '"collective.checkdocs",' "" 33 + ''; 34 + 35 + build-system = [ setuptools ]; 36 + 37 + dependencies = [ 28 38 click 29 39 jsonschema 30 40 requests 31 41 ]; 32 42 33 - nativeCheckInputs = [ 34 - pytestCheckHook 35 - ]; 43 + nativeCheckInputs = [ pytestCheckHook ]; 36 44 37 - pythonImportsCheck = [ 38 - "cvelib" 39 - ]; 45 + pythonImportsCheck = [ "cvelib" ]; 40 46 41 47 passthru.tests.version = testers.testVersion { package = cve; }; 42 48 43 49 meta = with lib; { 44 50 description = "Library and a command line interface for the CVE Services API"; 45 51 homepage = "https://github.com/RedHatProductSecurity/cvelib"; 52 + changelog = "https://github.com/RedHatProductSecurity/cvelib/blob/${version}/CHANGELOG.md"; 46 53 license = licenses.mit; 47 54 maintainers = with maintainers; [ raboof ]; 48 55 mainProgram = "cve";
+2 -2
pkgs/development/python-modules/dash/default.nix
··· 36 36 37 37 buildPythonPackage rec { 38 38 pname = "dash"; 39 - version = "2.16.1"; 39 + version = "2.17.0"; 40 40 pyproject = true; 41 41 42 42 disabled = pythonOlder "3.8"; ··· 45 45 owner = "plotly"; 46 46 repo = "dash"; 47 47 rev = "refs/tags/v${version}"; 48 - hash = "sha256-IPyGQXrC2FTTSIC4IFGwKTceyzPYAe4jwDoO5C9YeF0="; 48 + hash = "sha256-45nSQ3N7VcPsXthmMj3gMWFPi/i9z0peI1Wc6fUT7So="; 49 49 }; 50 50 51 51 nativeBuildInputs = [
+14 -15
pkgs/development/python-modules/dataclasses-json/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , fetchFromGitHub 4 - , hypothesis 5 - , marshmallow 6 - , poetry-core 7 - , poetry-dynamic-versioning 8 - , pytestCheckHook 9 - , pythonOlder 10 - , typing-inspect 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchFromGitHub, 5 + hypothesis, 6 + marshmallow, 7 + poetry-core, 8 + poetry-dynamic-versioning, 9 + pytestCheckHook, 10 + pythonOlder, 11 + typing-inspect, 11 12 }: 12 13 13 14 buildPythonPackage rec { 14 15 pname = "dataclasses-json"; 15 - version = "0.6.5"; 16 + version = "0.6.6"; 16 17 pyproject = true; 17 18 18 19 disabled = pythonOlder "3.7"; ··· 21 22 owner = "lidatong"; 22 23 repo = "dataclasses-json"; 23 24 rev = "refs/tags/v${version}"; 24 - hash = "sha256-YkGxUQgnUB7WfpsZz74b3j/TIqJi2ihsk9Ib05S7uPM="; 25 + hash = "sha256-JpZwRln7QC0SO/+8xFxc6xrC+ZBFSHVQ9NJscAO+Lf8="; 25 26 }; 26 27 27 28 postPatch = '' ··· 51 52 "tests/test_annotations.py" 52 53 ]; 53 54 54 - pythonImportsCheck = [ 55 - "dataclasses_json" 56 - ]; 55 + pythonImportsCheck = [ "dataclasses_json" ]; 57 56 58 57 meta = with lib; { 59 58 description = "Simple API for encoding and decoding dataclasses to and from JSON";
+2 -2
pkgs/development/python-modules/dataprep-ml/default.nix
··· 27 27 in 28 28 buildPythonPackage rec { 29 29 pname = "dataprep-ml"; 30 - version = "0.0.23"; 30 + version = "24.5.1.2"; 31 31 pyproject = true; 32 32 33 33 disabled = pythonOlder "3.8"; ··· 36 36 src = fetchPypi { 37 37 pname = "dataprep_ml"; 38 38 inherit version; 39 - hash = "sha256-NYlKLdV2xZPODXpHvaFB8cRFTdCndl3UOd6bCfNbsZo="; 39 + hash = "sha256-pZhHlNcQJLBww7ur2Z6Yb2IdbRsBtjzQAzfa4UzGKt4="; 40 40 }; 41 41 42 42 pythonRelaxDeps = [
+2 -2
pkgs/development/python-modules/dbt-bigquery/default.nix
··· 15 15 16 16 buildPythonPackage rec { 17 17 pname = "dbt-bigquery"; 18 - version = "1.7.7"; 18 + version = "1.7.8"; 19 19 pyproject = true; 20 20 21 21 disabled = pythonOlder "3.7"; ··· 24 24 owner = "dbt-labs"; 25 25 repo = "dbt-bigquery"; 26 26 rev = "refs/tags/v${version}"; 27 - hash = "sha256-+UF49ReSxKQ8ouutOv1b9JcU/6CNk7Yw8f1/tlRvwnU="; 27 + hash = "sha256-Uc842hkrCYDR92ACDtNW+Iqq5l54CSp40D1tOL7wt8o="; 28 28 }; 29 29 30 30 pythonRelaxDeps = [
+2 -1
pkgs/development/python-modules/django-allauth/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 4 , pythonOlder 5 + , python 5 6 6 7 # build-system 7 8 , setuptools ··· 56 57 requests-oauthlib 57 58 ] ++ pyjwt.optional-dependencies.crypto; 58 59 59 - preBuild = "python -m django compilemessages"; 60 + preBuild = "${python.interpreter} -m django compilemessages"; 60 61 61 62 passthru.optional-dependencies = { 62 63 saml = [
+2 -2
pkgs/development/python-modules/dramatiq/default.nix
··· 15 15 16 16 buildPythonPackage rec { 17 17 pname = "dramatiq"; 18 - version = "1.16.0"; 18 + version = "1.17.0"; 19 19 format = "setuptools"; 20 20 21 21 disabled = pythonOlder "3.7"; ··· 24 24 owner = "Bogdanp"; 25 25 repo = "dramatiq"; 26 26 rev = "refs/tags/v${version}"; 27 - hash = "sha256-gC1vWnG3zDuFT61i2VgDrP/qIwmGN5GkGv6EVxqUf4U="; 27 + hash = "sha256-xKHTBo2AirxDXe/CLSqo++3AgxP4pVkGTNdgS5CCZ3c="; 28 28 }; 29 29 30 30 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/dtlssocket/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "dtlssocket"; 11 - version = "0.1.16"; 11 + version = "0.1.18"; 12 12 13 13 format = "pyproject"; 14 14 15 15 src = fetchPypi { 16 16 pname = "DTLSSocket"; 17 17 inherit version; 18 - hash = "sha256-MLEIrkX84cAz4+9sLd1+dBgGKuN0Io46f6lpslQ2ajk="; 18 + hash = "sha256-TnS2LYe6CeAlezc83bGpRqOpQbPJMQHzJn6PnXon4FI="; 19 19 }; 20 20 21 21 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/dvclive/default.nix
··· 32 32 33 33 buildPythonPackage rec { 34 34 pname = "dvclive"; 35 - version = "3.45.0"; 35 + version = "3.46.0"; 36 36 pyproject = true; 37 37 38 38 disabled = pythonOlder "3.9"; ··· 41 41 owner = "iterative"; 42 42 repo = "dvclive"; 43 43 rev = "refs/tags/${version}"; 44 - hash = "sha256-76PjBPr3m1y5osW024dkhuvuXl2FiZ5oxlJ1Ucq8msI="; 44 + hash = "sha256-yIViKlkCdoG2vSZdScL38fZd9musLRKzBd9wSR6lJdk="; 45 45 }; 46 46 47 47 build-system = [
+2 -2
pkgs/development/python-modules/fakeredis/default.nix
··· 18 18 19 19 buildPythonPackage rec { 20 20 pname = "fakeredis"; 21 - version = "2.23.0"; 21 + version = "2.23.1"; 22 22 pyproject = true; 23 23 24 24 disabled = pythonOlder "3.7"; ··· 27 27 owner = "dsoftwareinc"; 28 28 repo = "fakeredis-py"; 29 29 rev = "refs/tags/v${version}"; 30 - hash = "sha256-qiqJO8uZ3vy9TpTHmExlUoQ78avPVqlKn0jgvDsKdP0="; 30 + hash = "sha256-IMYxzlvPgwJNpb976jYXNW+6veQlUxQph43ZClyC4Eg="; 31 31 }; 32 32 33 33 build-system = [ poetry-core ];
+2 -2
pkgs/development/python-modules/gcal-sync/default.nix
··· 14 14 15 15 buildPythonPackage rec { 16 16 pname = "gcal-sync"; 17 - version = "6.0.4"; 17 + version = "6.1.0"; 18 18 pyproject = true; 19 19 20 20 disabled = pythonOlder "3.10"; ··· 23 23 owner = "allenporter"; 24 24 repo = "gcal_sync"; 25 25 rev = "refs/tags/${version}"; 26 - hash = "sha256-ufoe9+4zhlixcSGMAhuhJx2Y2vrN036N8UvyP3xuTRQ="; 26 + hash = "sha256-mZn/3oROIUSv6cCxXs3rBJtlmKsqNflTW2pcER8GisE="; 27 27 }; 28 28 29 29 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/globus-sdk/default.nix
··· 14 14 15 15 buildPythonPackage rec { 16 16 pname = "globus-sdk"; 17 - version = "3.39.0"; 17 + version = "3.41.0"; 18 18 pyproject = true; 19 19 20 20 disabled = pythonOlder "3.7"; ··· 23 23 owner = "globus"; 24 24 repo = "globus-sdk-python"; 25 25 rev = "refs/tags/${version}"; 26 - hash = "sha256-DjGwwpXzYRq5/hiUs/l8kD/yA58vbhvrKirKDlWoAmY="; 26 + hash = "sha256-FQO1D960mg0G/zYMo4J5MtJbPID4oE8UWNpTPKWtsic="; 27 27 }; 28 28 29 29 build-system = [
+21 -10
pkgs/development/python-modules/gmpy/default.nix
··· 1 - { buildPythonPackage, fetchurl, isPyPy, gmp, pythonAtLeast } : 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchFromGitHub, 5 + isPyPy, 6 + pythonAtLeast, 7 + setuptools, 8 + gmp, 9 + }: 2 10 3 - let 11 + buildPythonPackage rec { 4 12 pname = "gmpy"; 5 13 version = "1.17"; 6 - format = "setuptools"; 7 - in 8 - 9 - buildPythonPackage { 10 - inherit pname version; 14 + pyproject = true; 11 15 12 16 # Python 3.11 has finally made changes to its C API for which gmpy 1.17, 13 17 # published in 2013, would require patching. It seems unlikely that any 14 18 # patches will be forthcoming. 15 19 disabled = isPyPy || pythonAtLeast "3.11"; 16 20 17 - src = fetchurl { 18 - url = "mirror://pypi/g/gmpy/${pname}-${version}.zip"; 19 - sha256 = "1a79118a5332b40aba6aa24b051ead3a31b9b3b9642288934da754515da8fa14"; 21 + src = fetchFromGitHub { 22 + owner = "aleaxit"; 23 + repo = "gmpy"; 24 + rev = "refs/tags/gmpy_${lib.replaceStrings [ "." ] [ "_" ] version}"; 25 + hash = "sha256-kMidOjhKJlDRu2qaiq9c+XcwD1tNAoPhRTvvGcOJe8I="; 20 26 }; 27 + 28 + build-system = [ setuptools ]; 21 29 22 30 buildInputs = [ gmp ]; 23 31 32 + pythonImportsCheck = [ "gmpy" ]; 33 + 24 34 meta = { 25 35 description = "GMP or MPIR interface to Python 2.4+ and 3.x"; 26 36 homepage = "https://github.com/aleaxit/gmpy/"; 37 + license = lib.licenses.lgpl21Plus; 27 38 }; 28 39 }
+56 -25
pkgs/development/python-modules/gmpy2/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , fetchFromGitHub 4 - , isPyPy 5 - , gmp 6 - , mpfr 7 - , libmpc 8 - 9 - # Reverse dependency 10 - , sage 1 + { 2 + lib, 3 + stdenv, 4 + buildPythonPackage, 5 + fetchFromGitHub, 6 + isPyPy, 7 + pythonOlder, 8 + setuptools, 9 + gmp, 10 + mpfr, 11 + libmpc, 12 + pytestCheckHook, 13 + hypothesis, 14 + cython, 15 + mpmath, 16 + # Reverse dependency 17 + sage, 11 18 }: 12 19 13 - let 20 + buildPythonPackage rec { 14 21 pname = "gmpy2"; 15 - version = "2.1.2"; 16 - format = "setuptools"; 17 - in 18 - 19 - buildPythonPackage { 20 - inherit pname version; 22 + version = "2.2.0a2"; 23 + pyproject = true; 21 24 22 - disabled = isPyPy; 25 + disabled = isPyPy || pythonOlder "3.7"; 23 26 24 27 src = fetchFromGitHub { 25 28 owner = "aleaxit"; 26 29 repo = "gmpy"; 27 - rev = "gmpy2-${version}"; 28 - hash = "sha256-ARCttNzRA+Ji2j2NYaSCDXgvoEg01T9BnYadyqON2o0="; 30 + rev = "refs/tags/gmpy2-${version}"; 31 + hash = "sha256-luLEDEY1cezhzZo4fXmM/MUg2YyAaz7n0HwSpbNayP8="; 29 32 }; 30 33 31 - buildInputs = [ gmp mpfr libmpc ]; 34 + build-system = [ setuptools ]; 35 + 36 + buildInputs = [ 37 + gmp 38 + mpfr 39 + libmpc 40 + ]; 41 + 42 + # make relative imports in tests work properly 43 + preCheck = '' 44 + rm gmpy2 -r 45 + ''; 46 + 47 + nativeCheckInputs = [ 48 + pytestCheckHook 49 + hypothesis 50 + cython 51 + mpmath 52 + ]; 53 + 54 + disabledTests = lib.optionals (stdenv.isLinux && stdenv.isAarch64) [ 55 + # issue with some overflow logic 56 + "test_mpz_to_bytes" 57 + "test_mpz_from_bytes" 58 + ]; 32 59 33 60 pythonImportsCheck = [ "gmpy2" ]; 34 61 35 - passthru.tests = { inherit sage; }; 62 + passthru.tests = { 63 + inherit sage; 64 + }; 36 65 37 - meta = with lib; { 38 - description = "GMP/MPIR, MPFR, and MPC interface to Python 2.6+ and 3.x"; 66 + meta = { 67 + changelog = "https://github.com/aleaxit/gmpy/blob/${src.rev}/docs/history.rst"; 68 + description = "Interface to GMP, MPFR, and MPC for Python 3.7+"; 39 69 homepage = "https://github.com/aleaxit/gmpy/"; 40 - license = licenses.gpl3Plus; 70 + license = lib.licenses.lgpl3Plus; 71 + maintainers = with lib.maintainers; [ tomasajt ]; 41 72 }; 42 73 }
+27 -32
pkgs/development/python-modules/gotailwind/default.nix
··· 1 - { lib 2 - , aiohttp 3 - , aresponses 4 - , awesomeversion 5 - , backoff 6 - , buildPythonPackage 7 - , fetchFromGitHub 8 - , mashumaro 9 - , orjson 10 - , poetry-core 11 - , pytest-asyncio 12 - , pytestCheckHook 13 - , pythonOlder 14 - , syrupy 15 - , typer 16 - , yarl 17 - , zeroconf 1 + { 2 + lib, 3 + aiohttp, 4 + aresponses, 5 + awesomeversion, 6 + backoff, 7 + buildPythonPackage, 8 + fetchFromGitHub, 9 + mashumaro, 10 + orjson, 11 + poetry-core, 12 + pytest-asyncio, 13 + pytestCheckHook, 14 + pythonOlder, 15 + syrupy, 16 + typer, 17 + yarl, 18 + zeroconf, 18 19 }: 19 20 20 21 buildPythonPackage rec { 21 22 pname = "gotailwind"; 22 - version = "0.2.2"; 23 + version = "0.2.3"; 23 24 pyproject = true; 24 25 25 26 disabled = pythonOlder "3.11"; ··· 28 29 owner = "frenck"; 29 30 repo = "python-gotailwind"; 30 31 rev = "refs/tags/v${version}"; 31 - hash = "sha256-JtMBud3iON4xLc9dQdXniv51EBqs7zkat8cYm3q0uEE="; 32 + hash = "sha256-FRFcFn5aRg+H9M6ZwEfLO1Dwcybvs0ODQv2ruCG+4v0="; 32 33 }; 33 34 34 35 postPatch = '' 35 36 # Upstream doesn't set a version for the pyproject.toml 36 37 substituteInPlace pyproject.toml \ 37 - --replace "0.0.0" "${version}" \ 38 - --replace "--cov" "" 38 + --replace-fail "0.0.0" "${version}" \ 39 + --replace-fail "--cov" "" 39 40 ''; 40 41 41 - nativeBuildInputs = [ 42 - poetry-core 43 - ]; 42 + build-system = [ poetry-core ]; 44 43 45 - propagatedBuildInputs = [ 44 + dependencies = [ 46 45 aiohttp 47 46 awesomeversion 48 47 backoff ··· 53 52 ]; 54 53 55 54 passthru.optional-dependencies = { 56 - cli = [ 57 - typer 58 - ]; 55 + cli = [ typer ]; 59 56 }; 60 57 61 58 nativeCheckInputs = [ ··· 65 62 syrupy 66 63 ]; 67 64 68 - pythonImportsCheck = [ 69 - "gotailwind" 70 - ]; 65 + pythonImportsCheck = [ "gotailwind" ]; 71 66 72 67 meta = with lib; { 73 68 description = "Modul to communicate with Tailwind garage door openers"; 74 - mainProgram = "tailwind"; 75 69 homepage = "https://github.com/frenck/python-gotailwind"; 76 70 changelog = "https://github.com/frenck/python-gotailwind/releases/tag/v$version"; 77 71 license = licenses.mit; 78 72 maintainers = with maintainers; [ fab ]; 73 + mainProgram = "tailwind"; 79 74 }; 80 75 }
+2 -2
pkgs/development/python-modules/hiyapyco/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "hiyapyco"; 11 - version = "0.5.5"; 11 + version = "0.5.6"; 12 12 pyproject = true; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "zerwes"; 16 16 repo = pname; 17 17 rev = "refs/tags/release-${version}"; 18 - hash = "sha256-LuENNwVB/1GyPLsfMRwHjz87c7+3/7U82m1MnHfRHdU="; 18 + hash = "sha256-WBSOjOX4naa0XDTnO593EAvtz5EjVPWCbiZaPXdx0e4="; 19 19 }; 20 20 21 21 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/imgtool/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "imgtool"; 15 - version = "2.0.0"; 15 + version = "2.1.0"; 16 16 pyproject = true; 17 17 18 18 disabled = pythonOlder "3.6"; 19 19 20 20 src = fetchPypi { 21 21 inherit pname version; 22 - hash = "sha256-elQSVeae7B8Sqjjc4fHU/iDYISZ3xoqbbsY0ypGgZhI="; 22 + hash = "sha256-T3+831PETqqmImUEUQzLUvfvAMmXUDz5STSzMMlge2A="; 23 23 }; 24 24 25 25 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/justext/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "justext"; 10 - version = "3.0.0"; 10 + version = "3.0.1"; 11 11 format = "setuptools"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "miso-belica"; 15 15 repo = "jusText"; 16 16 rev = "refs/tags/v${version}"; 17 - hash = "sha256-WNxDoM5666tEHS9pMl5dOoig4S7dSYaCLZq71tehWqw="; 17 + hash = "sha256-9i7hzCK/ijh8xw9l2ZbVhVj5IBf0WD/49/R1tSWgqrQ="; 18 18 }; 19 19 20 20 propagatedBuildInputs = [
+13 -16
pkgs/development/python-modules/langchain-text-splitters/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , fetchPypi 4 - , poetry-core 5 - , langchain-core 6 - , lxml 7 - , pythonOlder 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchPypi, 5 + poetry-core, 6 + langchain-core, 7 + lxml, 8 + pythonOlder, 8 9 }: 9 10 10 11 buildPythonPackage rec { 11 12 pname = "langchain-text-splitters"; 12 - version = "0.0.1"; 13 + version = "0.0.2"; 13 14 pyproject = true; 14 15 15 16 disabled = pythonOlder "3.9"; ··· 17 18 src = fetchPypi { 18 19 pname = "langchain_text_splitters"; 19 20 inherit version; 20 - hash = "sha256-rEWfqYeZ9RF61UJakzCyGWEyHjC8GaKi+fdh3a3WKqE="; 21 + hash = "sha256-rIkn3AugjrpwL2lhye19986tjeGan3EBqyteo0IBs8E="; 21 22 }; 22 23 23 - nativeBuildInputs = [ 24 - poetry-core 25 - ]; 24 + build-system = [ poetry-core ]; 26 25 27 - propagatedBuildInputs = [ 26 + dependencies = [ 28 27 langchain-core 29 28 lxml 30 29 ]; ··· 32 31 # PyPI source does not have tests 33 32 doCheck = false; 34 33 35 - pythonImportsCheck = [ 36 - "langchain_text_splitters" 37 - ]; 34 + pythonImportsCheck = [ "langchain_text_splitters" ]; 38 35 39 36 meta = with lib; { 40 37 description = "Build context-aware reasoning applications";
+2 -2
pkgs/development/python-modules/langsmith/default.nix
··· 22 22 23 23 buildPythonPackage rec { 24 24 pname = "langsmith"; 25 - version = "0.1.57"; 25 + version = "0.1.59"; 26 26 pyproject = true; 27 27 28 28 disabled = pythonOlder "3.8"; ··· 31 31 owner = "langchain-ai"; 32 32 repo = "langsmith-sdk"; 33 33 rev = "refs/tags/v${version}"; 34 - hash = "sha256-L725AfkmBEe44LkJ0y6PdDvbnbCf31LXL3YdnOshnqE="; 34 + hash = "sha256-k9WsJUiJPCahwUHzsOblBCm58z2dHQZGk3U6GMm7SpQ="; 35 35 }; 36 36 37 37 sourceRoot = "${src.name}/python";
+12 -5
pkgs/development/python-modules/libgravatar/default.nix
··· 1 1 { 2 2 lib, 3 - python3Packages, 3 + buildPythonPackage, 4 4 fetchFromGitHub, 5 + setuptools, 6 + pytestCheckHook, 7 + pythonOlder, 5 8 }: 6 9 7 - python3Packages.buildPythonApplication rec { 10 + buildPythonPackage rec { 8 11 pname = "libgravatar"; 9 12 version = "1.0.4"; 13 + pyproject = true; 14 + 15 + disabled = pythonOlder "3.8"; 10 16 11 17 src = fetchFromGitHub { 12 18 owner = "pabluk"; ··· 15 21 hash = "sha256-rJv/jfdT+JldxR0kKtXQLOI5wXQYSQRWJnqwExwWjTA="; 16 22 }; 17 23 18 - nativeBuildInputs = with python3Packages; [ setuptools ]; 24 + build-system = [ setuptools ]; 19 25 20 - nativeCheckInputs = with python3Packages; [ pytestCheckHook ]; 26 + nativeCheckInputs = [ pytestCheckHook ]; 21 27 22 28 pythonImportsCheck = [ "libgravatar" ]; 23 29 24 30 meta = with lib; { 31 + description = "A library that provides a Python 3 interface for the Gravatar API"; 25 32 homepage = "https://github.com/pabluk/libgravatar"; 26 - description = "A library that provides a Python 3 interface for the Gravatar API"; 33 + changelog = "https://github.com/pabluk/libgravatar/releases/tag/${version}"; 27 34 license = licenses.gpl3Plus; 28 35 maintainers = with maintainers; [ gador ]; 29 36 };
+2 -2
pkgs/development/python-modules/limnoria/default.nix
··· 15 15 16 16 buildPythonPackage rec { 17 17 pname = "limnoria"; 18 - version = "2023.11.18"; 18 + version = "2024.4.26"; 19 19 format = "setuptools"; 20 20 21 21 disabled = pythonOlder "3.6"; 22 22 23 23 src = fetchPypi { 24 24 inherit pname version; 25 - hash = "sha256-Ftm5OGTt1emQsYso3hAUA9yMNBkIK5jybdFaRKJJk0o="; 25 + hash = "sha256-H8GAJvmkYJy8PJsXn4Yl9qY3zb9aFBa7sr4DN0bKYfQ="; 26 26 }; 27 27 28 28 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/line-profiler/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "line-profiler"; 16 - version = "4.1.2"; 16 + version = "4.1.3"; 17 17 format = "setuptools"; 18 18 19 19 disabled = pythonOlder "3.6" || isPyPy; ··· 21 21 src = fetchPypi { 22 22 pname = "line_profiler"; 23 23 inherit version; 24 - hash = "sha256-qlZXiw/1p1b+GAs/2nvWfCe71Hiz0BJGEtjPAOSiHfI="; 24 + hash = "sha256-5fESPDZywyGLoGPCO9ZKURWeRGSf7WeAuZPHgfte0xg="; 25 25 }; 26 26 27 27 nativeBuildInputs = [
+12 -17
pkgs/development/python-modules/llama-parse/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , fetchPypi 4 - , llama-index-core 5 - , poetry-core 6 - , pythonOlder 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchPypi, 5 + llama-index-core, 6 + poetry-core, 7 + pythonOlder, 7 8 }: 8 9 9 10 buildPythonPackage rec { 10 11 pname = "llama-parse"; 11 - version = "0.4.2"; 12 + version = "0.4.3"; 12 13 pyproject = true; 13 14 14 15 disabled = pythonOlder "3.8"; ··· 16 17 src = fetchPypi { 17 18 pname = "llama_parse"; 18 19 inherit version; 19 - hash = "sha256-+gTAlzCxAhVfZQXenPkZmMhtM0WB8PEll8XrR8pduFk="; 20 + hash = "sha256-AYNhR7UjiHOySn3UHFq5QrAbCbktdVcPMM8oYcCEoOs="; 20 21 }; 21 22 22 - build-system = [ 23 - poetry-core 24 - ]; 23 + build-system = [ poetry-core ]; 25 24 26 - dependencies = [ 27 - llama-index-core 28 - ]; 25 + dependencies = [ llama-index-core ]; 29 26 30 - pythonImportsCheck = [ 31 - "llama_parse" 32 - ]; 27 + pythonImportsCheck = [ "llama_parse" ]; 33 28 34 29 meta = with lib; { 35 30 description = "Parse files into RAG-Optimized formats";
+2 -2
pkgs/development/python-modules/llm/default.nix
··· 12 12 let 13 13 llm = buildPythonPackage rec { 14 14 pname = "llm"; 15 - version = "0.13.1"; 15 + version = "0.14"; 16 16 pyproject = true; 17 17 18 18 disabled = pythonOlder "3.8"; ··· 21 21 owner = "simonw"; 22 22 repo = "llm"; 23 23 rev = "refs/tags/${version}"; 24 - hash = "sha256-Nq6pduzl8IK+nA3pctst/W4ux7+P6mBFTEHMF+vtBQw="; 24 + hash = "sha256-CgGVFUsntVkF0zORAtYQQMAeGtIwBbj9hE0Ei1OCGq4="; 25 25 }; 26 26 27 27 patches = [
+2 -2
pkgs/development/python-modules/lmfit/default.nix
··· 15 15 16 16 buildPythonPackage rec { 17 17 pname = "lmfit"; 18 - version = "1.3.0"; 18 + version = "1.3.1"; 19 19 20 20 pyproject = true; 21 21 22 22 src = fetchPypi { 23 23 inherit pname version; 24 - hash = "sha256-foI668BSN8qA0z0mDO27peJhkMzsn69ZXmgUOQneDJM="; 24 + hash = "sha256-vDhiRK29EO8aKixPnRez3vkFVSwKZK74VPCtRswwnMU="; 25 25 }; 26 26 27 27 postPatch = ''
+20 -15
pkgs/development/python-modules/localzone/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , fetchFromGitHub 4 - , dnspython 5 - , sphinx 6 - , pytest 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchFromGitHub, 5 + dnspython, 6 + pytestCheckHook, 7 + setuptools, 8 + pythonOlder, 7 9 }: 8 10 9 11 buildPythonPackage rec { 10 12 pname = "localzone"; 11 13 version = "0.9.8"; 12 - format = "setuptools"; 14 + pyproject = true; 15 + 16 + disabled = pythonOlder "3.7"; 13 17 14 18 src = fetchFromGitHub { 15 19 owner = "ags-slc"; 16 - repo = pname; 17 - rev = "v${version}"; 18 - sha256 = "1cbiv21yryjqy46av9hbjccks95sxznrx8nypd3yzihf1vkjiq5a"; 20 + repo = "localzone"; 21 + rev = "refs/tags/v${version}"; 22 + hash = "sha256-quAo5w4Oxu9Hu96inu3vuiQ9GZMLpq0M8Vj67IPYcbE="; 19 23 }; 20 24 21 - propagatedBuildInputs = [ dnspython sphinx ]; 25 + build-system = [ setuptools ]; 26 + 27 + dependencies = [ dnspython ]; 22 28 23 - nativeCheckInputs = [ pytest ]; 29 + nativeCheckInputs = [ pytestCheckHook ]; 24 30 25 - checkPhase = '' 26 - pytest 27 - ''; 31 + pythonImportsCheck = [ "localzone" ]; 28 32 29 33 meta = with lib; { 30 34 description = "A simple DNS library for managing zone files"; 31 35 homepage = "https://localzone.iomaestro.com"; 36 + changelog = "https://github.com/ags-slc/localzone/blob/v${version}/CHANGELOG.rst"; 32 37 license = licenses.bsd3; 33 38 maintainers = with maintainers; [ flyfloh ]; 34 39 };
+7 -3
pkgs/development/python-modules/maestral/default.nix
··· 31 31 buildPythonPackage rec { 32 32 pname = "maestral"; 33 33 version = "1.9.3"; 34 - format = "pyproject"; 34 + pyproject = true; 35 35 36 36 disabled = pythonOlder "3.8"; 37 37 ··· 42 42 hash = "sha256-h7RDaCVICi3wl6/b1s01cINhFirDOpOXoxTPZIBH3jE="; 43 43 }; 44 44 45 - propagatedBuildInputs = [ 45 + build-system = [ 46 + setuptools 47 + ]; 48 + 49 + dependencies = [ 46 50 click 47 51 desktop-notifier 48 52 dbus-python ··· 67 71 68 72 makeWrapperArgs = [ 69 73 # Add the installed directories to the python path so the daemon can find them 70 - "--prefix PYTHONPATH : ${makePythonPath propagatedBuildInputs}" 74 + "--prefix PYTHONPATH : ${makePythonPath dependencies}" 71 75 "--prefix PYTHONPATH : $out/${python.sitePackages}" 72 76 ]; 73 77
+2 -2
pkgs/development/python-modules/mandown/default.nix
··· 19 19 20 20 buildPythonPackage rec { 21 21 pname = "mandown"; 22 - version = "1.8.0"; 22 + version = "1.8.2"; 23 23 pyproject = true; 24 24 25 25 src = fetchFromGitHub { 26 26 owner = "potatoeggy"; 27 27 repo = "mandown"; 28 28 rev = "refs/tags/v${version}"; 29 - hash = "sha256-vzvidtfBwbIV6cIUjQQIezN12VfxsBOKODoSChz2VDA="; 29 + hash = "sha256-DSbxWff5pY7tjB9aXY8/rQJzCQyDN2+OrmP10uEeXWM="; 30 30 }; 31 31 32 32 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/mkdocstrings-python/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "mkdocstrings-python"; 15 - version = "1.10.0"; 15 + version = "1.10.2"; 16 16 pyproject = true; 17 17 18 18 disabled = pythonOlder "3.8"; ··· 21 21 owner = "mkdocstrings"; 22 22 repo = "python"; 23 23 rev = "refs/tags/${version}"; 24 - hash = "sha256-sKRheGIR//kmiznHKsVGd35oSvGHgoocsbYCzDRv2Zs="; 24 + hash = "sha256-Dz74q7bsa8bInxn4RpP9MFXFDEL2yWifDe64K8AOl8k="; 25 25 }; 26 26 27 27 build-system = [ pdm-backend ];
+2 -2
pkgs/development/python-modules/nbdev/default.nix
··· 15 15 16 16 buildPythonPackage rec { 17 17 pname = "nbdev"; 18 - version = "2.3.20"; 18 + version = "2.3.21"; 19 19 pyproject = true; 20 20 21 21 disabled = pythonOlder "3.7"; 22 22 23 23 src = fetchPypi { 24 24 inherit pname version; 25 - hash = "sha256-tBrWdG8njNQzQ3kc0ATeu3ToP34gdmOBKj2jcB0X8+8="; 25 + hash = "sha256-H3KHnVOdy+Hdpka+dxp/qPj1HZSXIbXJshnZuXVo9DQ="; 26 26 }; 27 27 28 28 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/nethsm/default.nix
··· 12 12 13 13 let 14 14 pname = "nethsm"; 15 - version = "1.0.0"; 15 + version = "1.1.0"; 16 16 in 17 17 18 18 buildPythonPackage { ··· 21 21 22 22 src = fetchPypi { 23 23 inherit pname version; 24 - hash = "sha256-sENuSdA4pYt8v2w2RvDkcQLYCP9V0vZOdWOlkNBi3/o="; 24 + hash = "sha256-CQhheHQ0BlfznKjoOSRvbDtnlTvv/SLtl0GWd7LUSt8="; 25 25 }; 26 26 27 27 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/niaaml/default.nix
··· 14 14 15 15 buildPythonPackage rec { 16 16 pname = "niaaml"; 17 - version = "1.2.0"; 17 + version = "2.0.0"; 18 18 pyproject = true; 19 19 20 20 disabled = pythonOlder "3.9"; ··· 23 23 owner = "lukapecnik"; 24 24 repo = "NiaAML"; 25 25 rev = "refs/tags/${version}"; 26 - hash = "sha256-jGbsxYlRJ81g74LqSKpquciPsLP+KSoNBTJPEaD/CHM="; 26 + hash = "sha256-d6UlpMrT0GBZlcD1BCZxInXTdyFMBVltxnSyUFbSy0g="; 27 27 }; 28 28 29 29 pythonRelaxDeps = [
+2 -2
pkgs/development/python-modules/nocaselist/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "nocaselist"; 11 - version = "2.0.0"; 11 + version = "2.0.2"; 12 12 format = "setuptools"; 13 13 14 14 disabled = pythonOlder "3.7"; 15 15 16 16 src = fetchPypi { 17 17 inherit pname version; 18 - hash = "sha256-RWqgAMZ3fF0hsCnFLlMvlDKNT7TxWtKk3T3WLbMLOJI="; 18 + hash = "sha256-MnCLcAoaUxM+a7XMUzMsl3Wwx8lZpflyV5MXH9L0yKU="; 19 19 }; 20 20 21 21 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/paste/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "paste"; 13 - version = "3.10.0"; 13 + version = "3.10.1"; 14 14 format = "setuptools"; 15 15 16 16 disabled = pythonOlder "3.7"; ··· 19 19 owner = "cdent"; 20 20 repo = "paste"; 21 21 rev = "refs/tags/${version}"; 22 - hash = "sha256-gl0+mw0D0iGVmOc5jQP7b3EL1ZmT1lAr9ffx+XegdU0="; 22 + hash = "sha256-NY/h6hbpluEu1XAv3o4mqoG+l0LXfM1dw7+G0Rm1E4o="; 23 23 }; 24 24 25 25 postPatch = ''
+26 -29
pkgs/development/python-modules/peewee/default.nix
··· 1 - { lib 2 - , apsw 3 - , buildPythonPackage 4 - , cython 5 - , fetchFromGitHub 6 - , flask 7 - , python 8 - , sqlite 9 - , withMysql ? false 10 - , mysql-connector 11 - , withPostgres ? false 12 - , psycopg2 13 - , pythonOlder 1 + { 2 + lib, 3 + apsw, 4 + buildPythonPackage, 5 + cython, 6 + fetchFromGitHub, 7 + flask, 8 + python, 9 + sqlite, 10 + withMysql ? false, 11 + mysql-connector, 12 + withPostgres ? false, 13 + psycopg2, 14 + pythonOlder, 15 + setuptools, 14 16 }: 15 17 16 18 buildPythonPackage rec { 17 19 pname = "peewee"; 18 - version = "3.17.3"; 19 - format = "setuptools"; 20 + version = "3.17.5"; 21 + pyproject = true; 20 22 21 23 disabled = pythonOlder "3.7"; 22 24 23 25 src = fetchFromGitHub { 24 26 owner = "coleifer"; 25 - repo = pname; 27 + repo = "peewee"; 26 28 rev = "refs/tags/${version}"; 27 - hash = "sha256-F0bv9J2etrVF8wMU3caQ1ZA6TmQQOPTZWFjGsKOEPwo="; 29 + hash = "sha256-2SrqWPyeDBKOweLu7bEcDIAqCCtnKv0VBdzfpaA22ow="; 28 30 }; 31 + 32 + build-system = [ setuptools ]; 29 33 30 34 buildInputs = [ 31 35 sqlite ··· 34 38 35 39 propagatedBuildInputs = [ 36 40 apsw 37 - ] ++ lib.optionals withPostgres [ 38 - psycopg2 39 - ] ++ lib.optionals withMysql [ 40 - mysql-connector 41 - ]; 41 + ] ++ lib.optionals withPostgres [ psycopg2 ] ++ lib.optionals withMysql [ mysql-connector ]; 42 42 43 - nativeCheckInputs = [ 44 - flask 45 - ]; 43 + nativeCheckInputs = [ flask ]; 46 44 47 45 doCheck = withPostgres; 48 46 ··· 51 49 ${python.interpreter} runtests.py 52 50 ''; 53 51 54 - pythonImportsCheck = [ 55 - "peewee" 56 - ]; 52 + pythonImportsCheck = [ "peewee" ]; 57 53 58 54 meta = with lib; { 59 55 description = "Python ORM with support for various database implementation"; 60 - mainProgram = "pwiz.py"; 61 56 homepage = "http://peewee-orm.com"; 57 + changelog = "https://github.com/coleifer/peewee/blob/${version}/CHANGELOG.md"; 62 58 license = licenses.mit; 63 59 maintainers = with maintainers; [ ]; 60 + mainProgram = "pwiz.py"; 64 61 }; 65 62 }
+21 -13
pkgs/development/python-modules/pgspecial/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , fetchPypi 4 - , pytestCheckHook 5 - , psycopg 6 - , click 7 - , configobj 8 - , sqlparse 1 + { 2 + lib, 3 + buildPythonPackage, 4 + click, 5 + configobj, 6 + fetchPypi, 7 + psycopg, 8 + pytestCheckHook, 9 + pythonOlder, 10 + setuptools, 11 + sqlparse, 9 12 }: 10 13 11 14 buildPythonPackage rec { 12 15 pname = "pgspecial"; 13 - version = "2.1.1"; 14 - format = "setuptools"; 16 + version = "2.1.2"; 17 + pyproject = true; 18 + 19 + disabled = pythonOlder "3.7"; 15 20 16 21 src = fetchPypi { 17 22 inherit pname version; 18 - hash = "sha256-o4I5zZYfrDPObaNcRm11istvlCkBWY19905bgv5vVjY="; 23 + hash = "sha256-8EGeGzt4+zpy/jtUb2eIpxIJFTLVmf51k7X27lWoj4c="; 19 24 }; 20 25 21 - propagatedBuildInputs = [ 26 + build-system = [ setuptools ]; 27 + 28 + dependencies = [ 22 29 click 23 30 sqlparse 24 31 psycopg ··· 30 37 ]; 31 38 32 39 disabledTests = [ 33 - # requires a postgresql server 40 + # Test requires a Postgresql server 34 41 "test_slash_dp_pattern_schema" 35 42 ]; 36 43 37 44 meta = with lib; { 38 45 description = "Meta-commands handler for Postgres Database"; 39 46 homepage = "https://github.com/dbcli/pgspecial"; 47 + changelog = "https://github.com/dbcli/pgspecial/releases/tag/v${version}"; 40 48 license = licenses.bsd3; 41 49 maintainers = with maintainers; [ ]; 42 50 };
+33 -16
pkgs/development/python-modules/phe/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, isPyPy, isPy3k, click, gmpy2, numpy } : 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchFromGitHub, 5 + isPyPy, 6 + isPy3k, 7 + setuptools, 8 + click, 9 + gmpy2, 10 + pytestCheckHook, 11 + numpy, 12 + }: 2 13 3 - let 14 + buildPythonPackage rec { 4 15 pname = "phe"; 5 16 version = "1.5.0"; 6 - format = "setuptools"; 7 - in 17 + pyproject = true; 8 18 9 - buildPythonPackage { 10 - inherit pname version; 19 + # https://github.com/data61/python-paillier/issues/51 20 + disabled = isPyPy || !isPy3k; 11 21 12 - # https://github.com/n1analytics/python-paillier/issues/51 13 - disabled = isPyPy || ! isPy3k; 14 - 15 - src = fetchPypi { 16 - inherit pname version; 17 - hash = "sha256-mS+3CR0kJ/DZczlG+PNQrN1NHQEgV/Kq02S6eflwM5w="; 22 + src = fetchFromGitHub { 23 + owner = "data61"; 24 + repo = "python-paillier"; 25 + rev = "refs/tags/${version}"; 26 + hash = "sha256-fsZ8x/K+8V4zyVgkci6XNAm89zQFWEbmRVp4jazFfVY="; 18 27 }; 19 28 20 - buildInputs = [ click gmpy2 numpy ]; 29 + build-system = [ setuptools ]; 21 30 22 - # 29/233 tests fail 23 - doCheck = false; 31 + dependencies = [ 32 + click 33 + gmpy2 # optional, but major speed improvement 34 + ]; 35 + 36 + nativeCheckInputs = [ 37 + pytestCheckHook 38 + numpy 39 + ]; 24 40 25 41 meta = with lib; { 26 42 description = "A library for Partially Homomorphic Encryption in Python"; 27 43 mainProgram = "pheutil"; 28 - homepage = "https://github.com/n1analytics/python-paillier"; 44 + homepage = "https://github.com/data61/python-paillier"; 29 45 license = licenses.gpl3; 46 + maintainers = with maintainers; [ tomasajt ]; 30 47 }; 31 48 }
+2 -2
pkgs/development/python-modules/phonopy/default.nix
··· 14 14 15 15 buildPythonPackage rec { 16 16 pname = "phonopy"; 17 - version = "2.22.1"; 17 + version = "2.23.1"; 18 18 pyproject = true; 19 19 20 20 disabled = pythonOlder "3.7"; 21 21 22 22 src = fetchPypi { 23 23 inherit pname version; 24 - hash = "sha256-nux6/1z1xBr+4+fWrR/oOc+zVOI9j60p/SHHAPZ+hWI="; 24 + hash = "sha256-xJohROJNAPdEITtM/VncAYL8ASkfgThKy8XXnqiS3hU="; 25 25 }; 26 26 27 27 nativeBuildInputs = [
+22 -27
pkgs/development/python-modules/pinecone-client/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , dnspython 4 - , fetchPypi 5 - , loguru 6 - , numpy 7 - , poetry-core 8 - , python-dateutil 9 - , pythonOlder 10 - , pythonRelaxDepsHook 11 - , pyyaml 12 - , requests 13 - , setuptools 14 - , tqdm 15 - , typing-extensions 16 - , urllib3 1 + { 2 + lib, 3 + buildPythonPackage, 4 + dnspython, 5 + fetchPypi, 6 + loguru, 7 + numpy, 8 + poetry-core, 9 + python-dateutil, 10 + pythonOlder, 11 + pythonRelaxDepsHook, 12 + pyyaml, 13 + requests, 14 + setuptools, 15 + tqdm, 16 + typing-extensions, 17 + urllib3, 17 18 }: 18 19 19 20 buildPythonPackage rec { 20 21 pname = "pinecone-client"; 21 - version = "4.0.0"; 22 + version = "4.1.0"; 22 23 pyproject = true; 23 24 24 25 disabled = pythonOlder "3.8"; ··· 26 27 src = fetchPypi { 27 28 pname = "pinecone_client"; 28 29 inherit version; 29 - hash = "sha256-1E2yEuZKo0PRTvybCOnkXZi6e2gfYymLhwM1QuoBfyM="; 30 + hash = "sha256-QgYqYo56lB0Lwku4r7Am861NJkzwbWpiej3lgyFK494="; 30 31 }; 31 32 32 - pythonRelaxDeps = [ 33 - "urllib3" 34 - ]; 33 + pythonRelaxDeps = [ "urllib3" ]; 35 34 36 - nativeBuildInputs = [ 37 - pythonRelaxDepsHook 38 - ]; 35 + nativeBuildInputs = [ pythonRelaxDepsHook ]; 39 36 40 37 build-system = [ 41 38 setuptools ··· 57 54 # Tests require network access 58 55 doCheck = false; 59 56 60 - pythonImportsCheck = [ 61 - "pinecone" 62 - ]; 57 + pythonImportsCheck = [ "pinecone" ]; 63 58 64 59 meta = with lib; { 65 60 description = "The Pinecone python client";
+32
pkgs/development/python-modules/pipetools/default.nix
··· 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchFromGitHub, 5 + pytestCheckHook, 6 + setuptools, 7 + }: 8 + 9 + buildPythonPackage rec { 10 + pname = "pipetools"; 11 + version = "1.1.0"; 12 + 13 + # Used github as the src since the pypi package does not include the tests 14 + src = fetchFromGitHub { 15 + owner = "0101"; 16 + repo = pname; 17 + rev = "6cba9fadab07a16fd85eed16d5cffc609f84c62b"; 18 + hash = "sha256-BoZFePQCQfz1dkct5p/WQLuXoNX3eLcnKf3Mf0fG6u8="; 19 + }; 20 + 21 + nativeCheckInputs = [ pytestCheckHook ]; 22 + 23 + propagatedBuildInputs = [ setuptools ]; 24 + 25 + pythonImportsCheck = [ "pipetools" ]; 26 + 27 + meta = { 28 + description = "A library that enables function composition similar to using Unix pipes"; 29 + homepage = "https://0101.github.io/pipetools/"; 30 + license = lib.licenses.mit; 31 + }; 32 + }
+2 -2
pkgs/development/python-modules/plugwise/default.nix
··· 22 22 23 23 buildPythonPackage rec { 24 24 pname = "plugwise"; 25 - version = "0.37.3"; 25 + version = "0.37.5"; 26 26 pyproject = true; 27 27 28 28 disabled = pythonOlder "3.11"; ··· 31 31 owner = "plugwise"; 32 32 repo = "python-plugwise"; 33 33 rev = "refs/tags/v${version}"; 34 - hash = "sha256-aQz0p+DNi1XVoFwdFjc3RjpHqA2kGf4pU1QS6m271gU="; 34 + hash = "sha256-37GnuF8Z2UC02TqP6f14qxct5QCWi+8k7KUDhd7EYRQ="; 35 35 }; 36 36 37 37 postPatch = ''
+2 -2
pkgs/development/python-modules/publicsuffixlist/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "publicsuffixlist"; 14 - version = "0.10.0.20240512"; 14 + version = "0.10.0.20240515"; 15 15 pyproject = true; 16 16 17 17 disabled = pythonOlder "3.7"; 18 18 19 19 src = fetchPypi { 20 20 inherit pname version; 21 - hash = "sha256-776icZQcsDEZv0EOeLmLlKmK1tidWi/FQ2SZ/N4Cbqo="; 21 + hash = "sha256-0BlbqefYDjYRIWv5UgjTRInD12l1wGp+nnwJBE5vbXs="; 22 22 }; 23 23 24 24 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/pyTelegramBotAPI/default.nix
··· 20 20 21 21 buildPythonPackage rec { 22 22 pname = "pytelegrambotapi"; 23 - version = "4.17.0"; 23 + version = "4.18.0"; 24 24 pyproject = true; 25 25 26 26 disabled = pythonOlder "3.7"; ··· 29 29 owner = "eternnoir"; 30 30 repo = "pyTelegramBotAPI"; 31 31 rev = "refs/tags/${version}"; 32 - hash = "sha256-Asw6wpZs0FgsUYLVQ4u4qQgIFdvShcsN3XvgHn48cbI="; 32 + hash = "sha256-MlKLLLoEbB+ju+ewYDSEUCLVpCt+MsRKzTDVDuxDr8I="; 33 33 }; 34 34 35 35 build-system = [ hatchling ];
+2 -2
pkgs/development/python-modules/pydeck/default.nix
··· 16 16 17 17 buildPythonPackage rec { 18 18 pname = "pydeck"; 19 - version = "0.9.0"; 19 + version = "0.9.1"; 20 20 format = "pyproject"; 21 21 22 22 disabled = pythonOlder "3.7"; 23 23 24 24 src = fetchPypi { 25 25 inherit pname version; 26 - hash = "sha256-/Yt19hyg1HEtMrTgc0QPHLdPLgwWoLV+V6AOZcVjzFQ="; 26 + hash = "sha256-90R1rmN5UdY/LuWDJnV/jU+c2fKkV89ClQcVAD4stgU="; 27 27 }; 28 28 29 29 # upstream has an invalid pyproject.toml
+2 -2
pkgs/development/python-modules/pygount/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "pygount"; 14 - version = "1.6.1"; 14 + version = "1.8.0"; 15 15 pyproject = true; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "roskakori"; 19 19 repo = "pygount"; 20 20 rev = "refs/tags/v${version}"; 21 - hash = "sha256-j+mXIyF/54MCm0yv7Z+ymy/EeZz7iS/a+/5I9lo1+Zo="; 21 + hash = "sha256-PFqcSnJoGL4bXFy3hu3Iurbb8QK1NqCDs8aJmMxP4Hc="; 22 22 }; 23 23 24 24 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/pymatgen/default.nix
··· 32 32 33 33 buildPythonPackage rec { 34 34 pname = "pymatgen"; 35 - version = "2024.4.13"; 35 + version = "2024.5.1"; 36 36 pyproject = true; 37 37 38 38 disabled = pythonOlder "3.8"; ··· 41 41 owner = "materialsproject"; 42 42 repo = "pymatgen"; 43 43 rev = "refs/tags/v${version}"; 44 - hash = "sha256-vjasWQgwjtoM/6Y1HwK1otMFejRWEj+YBxaIYDDSeeo="; 44 + hash = "sha256-ZMOZ4eFtIaIcBPGT6bgAV+47LEGWAAnF/ml68j0fXws="; 45 45 }; 46 46 47 47 build-system = [ setuptools ];
+5 -5
pkgs/development/python-modules/pypng/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 - , fetchFromGitHub 3 + , fetchFromGitLab 4 4 , pytestCheckHook 5 5 , setuptools 6 6 }: 7 7 8 8 buildPythonPackage rec { 9 9 pname = "pypng"; 10 - version = "0.0.21"; 11 - format = "pyproject"; 10 + version = "0.20220715.0"; 11 + pyproject = true; 12 12 13 - src = fetchFromGitHub { 13 + src = fetchFromGitLab { 14 14 owner = "drj11"; 15 15 repo = "pypng"; 16 16 rev = "refs/tags/${pname}-${version}"; 17 - hash = "sha256-JU1GCSTm2s6Kczn6aRcF5DizPJVpizNtnAMJxTBi9vo="; 17 + hash = "sha256-tTnsGCAmHexDWm/T5xpHpcBaQcBEqMfTFaoOAeC+pDs="; 18 18 }; 19 19 20 20 nativeBuildInputs = [
+28 -31
pkgs/development/python-modules/pyrainbird/default.nix
··· 1 - { lib 2 - , aiohttp-retry 3 - , buildPythonPackage 4 - , fetchFromGitHub 5 - , freezegun 6 - , ical 7 - , parameterized 8 - , pycryptodome 9 - , pydantic 10 - , pytest-aiohttp 11 - , pytest-asyncio 12 - , pytest-golden 13 - , pytest-mock 14 - , pytestCheckHook 15 - , python-dateutil 16 - , pythonOlder 17 - , pyyaml 18 - , requests 19 - , requests-mock 20 - , responses 21 - , setuptools 1 + { 2 + lib, 3 + aiohttp-retry, 4 + buildPythonPackage, 5 + fetchFromGitHub, 6 + freezegun, 7 + ical, 8 + mashumaro, 9 + parameterized, 10 + pycryptodome, 11 + pytest-aiohttp, 12 + pytest-asyncio, 13 + pytest-golden, 14 + pytest-mock, 15 + pytestCheckHook, 16 + python-dateutil, 17 + pythonOlder, 18 + pyyaml, 19 + requests, 20 + requests-mock, 21 + responses, 22 + setuptools, 22 23 }: 23 24 24 25 buildPythonPackage rec { 25 26 pname = "pyrainbird"; 26 - version = "4.0.2"; 27 + version = "6.0.1"; 27 28 pyproject = true; 28 29 29 30 disabled = pythonOlder "3.10"; ··· 32 33 owner = "allenporter"; 33 34 repo = "pyrainbird"; 34 35 rev = "refs/tags/${version}"; 35 - hash = "sha256-4AoxLZv0u8wCG3ihw0JqsqsO5zG5UyP4ebSX99ve8sg="; 36 + hash = "sha256-kRPRyEt31SJpNRXcTshGByKAfPzEj+CDNpEQp4Klgks="; 36 37 }; 37 38 38 39 postPatch = '' ··· 40 41 --replace-fail "--cov=pyrainbird --cov-report=term-missing" "" 41 42 ''; 42 43 43 - nativeBuildInputs = [ 44 - setuptools 45 - ]; 44 + build-system = [ setuptools ]; 46 45 47 - propagatedBuildInputs = [ 46 + dependencies = [ 48 47 aiohttp-retry 49 48 ical 49 + mashumaro 50 50 pycryptodome 51 - pydantic 52 51 python-dateutil 53 52 pyyaml 54 53 requests ··· 68 67 responses 69 68 ]; 70 69 71 - pythonImportsCheck = [ 72 - "pyrainbird" 73 - ]; 70 + pythonImportsCheck = [ "pyrainbird" ]; 74 71 75 72 meta = with lib; { 76 73 description = "Module to interact with Rainbird controllers";
+2 -2
pkgs/development/python-modules/pyrisco/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "pyrisco"; 12 - version = "0.6.1"; 12 + version = "0.6.2"; 13 13 pyproject = true; 14 14 15 15 disabled = pythonOlder "3.7"; ··· 18 18 owner = "OnFreund"; 19 19 repo = "pyrisco"; 20 20 rev = "refs/tags/v${version}"; 21 - hash = "sha256-NviB3C+YApOo3WGQ1L8Qwyh8C9l8sCgaSA+xn2wYhjg="; 21 + hash = "sha256-sksM84BvBVfegYtRo1NNRbDvqNCr/V4K2Ol9X2Il8D0="; 22 22 }; 23 23 24 24 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/pytado/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "pytado"; 12 - version = "0.17.5"; 12 + version = "0.17.6"; 13 13 pyproject = true; 14 14 15 15 disabled = pythonOlder "3.7"; ··· 18 18 owner = "wmalgadey"; 19 19 repo = "PyTado"; 20 20 rev = "refs/tags/${version}"; 21 - hash = "sha256-FjdqZc4Zt2sLYJpnD/MAzr8Y9lGHteHB5psQqheS84I="; 21 + hash = "sha256-KcYxUKQuO7TLS4YPg2mrBjP+DMnvZeJokGzwmeM/CvE="; 22 22 }; 23 23 24 24 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/python-ironicclient/default.nix
··· 20 20 21 21 buildPythonPackage rec { 22 22 pname = "python-ironicclient"; 23 - version = "5.5.0"; 23 + version = "5.6.0"; 24 24 format = "setuptools"; 25 25 26 26 src = fetchPypi { 27 27 inherit pname version; 28 - hash = "sha256-JlO487QSPsBJZqPYRhsQYFA7noIN2q/stH4eZXAFLnY="; 28 + hash = "sha256-zWlfy+Pfu0l7vBQnLOIP9vaXzx+i35k4oQqPUtLg3cE="; 29 29 }; 30 30 31 31 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/pytorch-lightning/default.nix
··· 20 20 21 21 buildPythonPackage rec { 22 22 pname = "pytorch-lightning"; 23 - version = "2.2.3"; 23 + version = "2.2.4"; 24 24 format = "pyproject"; 25 25 26 26 src = fetchFromGitHub { 27 27 owner = "Lightning-AI"; 28 28 repo = "pytorch-lightning"; 29 29 rev = "refs/tags/${version}"; 30 - hash = "sha256-5dz4NQZC0tKIYA9omRZAsSlvH5hpyCSmV0yvoRICcqg="; 30 + hash = "sha256-IkoSID7nEPbKrhEMlo/UaMcF80HYldvndFA54DoHT+M="; 31 31 }; 32 32 33 33 preConfigure = ''
+2 -2
pkgs/development/python-modules/pywbem/default.nix
··· 24 24 25 25 buildPythonPackage rec { 26 26 pname = "pywbem"; 27 - version = "1.7.1"; 27 + version = "1.7.2"; 28 28 format = "setuptools"; 29 29 30 30 disabled = pythonOlder "3.7"; 31 31 32 32 src = fetchPypi { 33 33 inherit pname version; 34 - hash = "sha256-6jx5H4FtM93JToXQwq9ihiPfMw7nX4KwFFQzHkAgnP4="; 34 + hash = "sha256-3Dt4WEABf1/LY4HFZoJZjOu/yEUYUXaPheIxioTga2g="; 35 35 }; 36 36 37 37 propagatedBuildInputs = [
+2
pkgs/development/python-modules/qcs-api-client/default.nix
··· 8 8 iso8601, 9 9 poetry-core, 10 10 pydantic, 11 + pydantic-settings, 11 12 pyjwt, 12 13 pytest-asyncio, 13 14 pytestCheckHook, ··· 60 61 httpx 61 62 iso8601 62 63 pydantic 64 + pydantic-settings 63 65 pyjwt 64 66 python-dateutil 65 67 retrying
+9
pkgs/development/python-modules/qcs-sdk-python/default.nix
··· 1 1 { 2 2 lib, 3 + stdenv, 3 4 buildPythonPackage, 4 5 fetchFromGitHub, 5 6 pytest-asyncio, ··· 7 8 pythonOlder, 8 9 quil, 9 10 rustPlatform, 11 + darwin, 12 + libiconv, 10 13 syrupy, 11 14 }: 12 15 ··· 39 42 ]; 40 43 41 44 dependencies = [ quil ]; 45 + 46 + buildInputs = lib.optionals stdenv.isDarwin [ 47 + darwin.apple_sdk.frameworks.Security 48 + darwin.apple_sdk.frameworks.SystemConfiguration 49 + libiconv 50 + ]; 42 51 43 52 nativeCheckInputs = [ 44 53 pytest-asyncio
+2 -2
pkgs/development/python-modules/queuelib/default.nix
··· 6 6 7 7 buildPythonPackage rec { 8 8 pname = "queuelib"; 9 - version = "1.6.2"; 9 + version = "1.7.0"; 10 10 format = "setuptools"; 11 11 12 12 src = fetchPypi { 13 13 inherit pname version; 14 - sha256 = "4b207267f2642a8699a1f806045c56eb7ad1a85a10c0e249884580d139c2fcd2"; 14 + sha256 = "sha256-KFUWIJbPAjBRCJCzVDeeocD/GdEF0xR9NJ0kM7siKwg="; 15 15 }; 16 16 17 17 buildInputs = [ pytest ];
+4
pkgs/development/python-modules/quil/default.nix
··· 1 1 { 2 2 lib, 3 + stdenv, 3 4 buildPythonPackage, 4 5 pythonOlder, 5 6 fetchFromGitHub, ··· 7 8 numpy, 8 9 pytestCheckHook, 9 10 syrupy, 11 + libiconv 10 12 }: 11 13 12 14 buildPythonPackage rec { ··· 39 41 rustPlatform.cargoSetupHook 40 42 rustPlatform.maturinBuildHook 41 43 ]; 44 + 45 + buildInputs = lib.optionals stdenv.isDarwin [ libiconv ]; 42 46 43 47 dependencies = [ numpy ]; 44 48
+2 -2
pkgs/development/python-modules/resend/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "resend"; 14 - version = "1.0.1"; 14 + version = "1.0.2"; 15 15 pyproject = true; 16 16 17 17 disabled = pythonOlder "3.7"; ··· 20 20 owner = "resend"; 21 21 repo = "resend-python"; 22 22 rev = "refs/tags/v${version}"; 23 - hash = "sha256-TuumT77SGVIi/zaWd7FJwTZFiwZcyb1RioMcG7QXxgE="; 23 + hash = "sha256-lBeVHG3MuHtEEXPgH116yNs9pBX3kEj5Oyws2deui/o="; 24 24 }; 25 25 26 26 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/roadlib/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "roadlib"; 14 - version = "0.24.0"; 14 + version = "0.24.1"; 15 15 pyproject = true; 16 16 17 17 disabled = pythonOlder "3.7"; 18 18 19 19 src = fetchPypi { 20 20 inherit pname version; 21 - hash = "sha256-+5vR2iTFu50PJIsj4sW6McH1sg3yyEIwk15W8Jk0GKA="; 21 + hash = "sha256-tQbJWHXxvjGhqGBI9nn8EL7rJcVyH095FfNSsxkrImQ="; 22 22 }; 23 23 24 24 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/rotary-embedding-torch/default.nix
··· 14 14 15 15 buildPythonPackage rec { 16 16 pname = "rotary-embedding-torch"; 17 - version = "0.5.3"; 17 + version = "0.6.1"; 18 18 pyproject = true; 19 19 20 20 src = fetchFromGitHub { 21 21 owner = "lucidrains"; 22 22 repo = "rotary-embedding-torch"; 23 23 rev = "refs/tags/${version}"; 24 - hash = "sha256-CCz/va5oydgU1JRDHKooRezbDbeGZHtD8Zy6fWJ2uRg="; 24 + hash = "sha256-/gVBQ9lUzVN/eEtm6qPajw0TZs87JOC7d02qnQ8sdVk="; 25 25 }; 26 26 27 27 nativeBuildInputs = [
+11 -14
pkgs/development/python-modules/stdlibs/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , fetchFromGitHub 4 - , flit-core 5 - , pythonOlder 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchFromGitHub, 5 + flit-core, 6 + pythonOlder, 6 7 }: 7 8 8 9 buildPythonPackage rec { 9 10 pname = "stdlibs"; 10 - version = "2024.1.28"; 11 - format = "pyproject"; 11 + version = "2024.5.15"; 12 + pyproject = true; 12 13 13 14 disabled = pythonOlder "3.8"; 14 15 ··· 16 17 owner = "omnilib"; 17 18 repo = "stdlibs"; 18 19 rev = "refs/tags/v${version}"; 19 - hash = "sha256-xf46ih7viVUKNIT1tLs5MQPNjNtQlQ2N9BJIGPt4Srk="; 20 + hash = "sha256-DthHvL5x3HVwACLnxeyuoC0hb8OokabODircEY9eEhE="; 20 21 }; 21 22 22 - nativeBuildInputs = [ 23 - flit-core 24 - ]; 23 + build-system = [ flit-core ]; 25 24 26 25 # Module has no tests 27 26 doCheck = false; 28 27 29 - pythonImportsCheck = [ 30 - "stdlibs" 31 - ]; 28 + pythonImportsCheck = [ "stdlibs" ]; 32 29 33 30 meta = with lib; { 34 31 description = "Overview of the Python stdlib";
+2 -2
pkgs/development/python-modules/stripe/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "stripe"; 12 - version = "9.5.0"; 12 + version = "9.6.0"; 13 13 pyproject = true; 14 14 15 15 disabled = pythonOlder "3.8"; 16 16 17 17 src = fetchPypi { 18 18 inherit pname version; 19 - hash = "sha256-zTg2lkGuYUDhzp7c1UAK7NsaELpwTmU6Lyp1UMuPJ34="; 19 + hash = "sha256-kwXYSc6nFdxZxeOdAYkUdbguEO252V7h2BiUV+XeeS8="; 20 20 }; 21 21 22 22 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/tencentcloud-sdk-python/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "tencentcloud-sdk-python"; 13 - version = "3.0.1146"; 13 + version = "3.0.1148"; 14 14 pyproject = true; 15 15 16 16 disabled = pythonOlder "3.9"; ··· 19 19 owner = "TencentCloud"; 20 20 repo = "tencentcloud-sdk-python"; 21 21 rev = "refs/tags/${version}"; 22 - hash = "sha256-4U+nI5DODPLgQXzzgZKVTZdKPVneUQVomsdpoQHRqdE="; 22 + hash = "sha256-dGLc/oPwQlzNKuw/xszgld0KQf/l7roG3H7jIlJspp0="; 23 23 }; 24 24 25 25 build-system = [ setuptools ];
+7 -7
pkgs/development/python-modules/timm/default.nix
··· 15 15 16 16 buildPythonPackage rec { 17 17 pname = "timm"; 18 - version = "0.9.16"; 18 + version = "1.0.3"; 19 19 pyproject = true; 20 20 21 21 disabled = pythonOlder "3.7"; ··· 24 24 owner = "huggingface"; 25 25 repo = "pytorch-image-models"; 26 26 rev = "refs/tags/v${version}"; 27 - hash = "sha256-IWEDKuI2565Z07q1MxTpzKS+CROPR6SyaD5fKcQ5eXk="; 27 + hash = "sha256-h2J1v2zXUMGRKBBqq+RnxrXKOzlD5RRrVoODWSuj9Ms="; 28 28 }; 29 29 30 - nativeBuildInputs = [ 30 + build-system = [ 31 31 pdm-backend 32 32 ]; 33 33 34 - propagatedBuildInputs = [ 34 + dependencies = [ 35 35 huggingface-hub 36 36 pyyaml 37 37 safetensors ··· 64 64 "timm.data" 65 65 ]; 66 66 67 - meta = with lib; { 67 + meta = { 68 68 description = "PyTorch image models, scripts, and pretrained weights"; 69 69 homepage = "https://huggingface.co/docs/timm/index"; 70 70 changelog = "https://github.com/huggingface/pytorch-image-models/blob/v${version}/README.md#whats-new"; 71 - license = licenses.asl20; 72 - maintainers = with maintainers; [ bcdarwin ]; 71 + license = lib.licenses.asl20; 72 + maintainers = with lib.maintainers; [ bcdarwin ]; 73 73 }; 74 74 }
+2 -2
pkgs/development/python-modules/torchmetrics/default.nix
··· 21 21 22 22 let 23 23 pname = "torchmetrics"; 24 - version = "1.4.0"; 24 + version = "1.4.0.post0"; 25 25 in 26 26 buildPythonPackage { 27 27 inherit pname version; ··· 33 33 owner = "Lightning-AI"; 34 34 repo = "torchmetrics"; 35 35 rev = "refs/tags/v${version}"; 36 - hash = "sha256-5ANEpUdd5eyzBhhAEHrvHNHMOQuXhkkKuL1t3dJLhdE="; 36 + hash = "sha256-tQqlLfdk8rSJqwR3rC7kqnM+pLFYZSPHfI7RmIi2Iq4="; 37 37 }; 38 38 39 39 dependencies = [
+2 -2
pkgs/development/python-modules/trytond/default.nix
··· 25 25 26 26 buildPythonPackage rec { 27 27 pname = "trytond"; 28 - version = "7.0.10"; 28 + version = "7.2.1"; 29 29 format = "setuptools"; 30 30 31 31 disabled = pythonOlder "3.7"; 32 32 33 33 src = fetchPypi { 34 34 inherit pname version; 35 - hash = "sha256-N/O27qQBD18lncW0hCfJkUlmCuej8HtV2x/MnRUDGcc="; 35 + hash = "sha256-gIWWzm7emSwgKoO5geNIXUqKNsDiq6fle5OHb+KvhLE="; 36 36 }; 37 37 38 38 propagatedBuildInputs = [
+21 -10
pkgs/development/python-modules/tubes/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, python 2 - , characteristic, six, twisted 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchFromGitHub, 5 + python, 6 + characteristic, 7 + six, 8 + twisted, 3 9 }: 4 10 5 11 buildPythonPackage rec { 6 12 pname = "tubes"; 7 - version = "0.2.1"; 13 + version = "0.2.1-unstable-2023-11-06"; 8 14 format = "setuptools"; 9 15 10 - src = fetchPypi { 11 - pname = "Tubes"; 12 - inherit version; 13 - hash = "sha256-WbkZfy+m9/xrwygd5VeXrccpu3XJxhO09tbEFZnw14s="; 16 + src = fetchFromGitHub { 17 + owner = "twisted"; 18 + repo = "tubes"; 19 + rev = "b74680b8e7bcfe64362865356bb9461b77bbd5c0"; 20 + hash = "sha256-E8brnt8CtTEEP1KQTsTsgnl54H4zRGp+1IuoI/Qf5NA="; 14 21 }; 15 22 16 - propagatedBuildInputs = [ characteristic six twisted ]; 23 + propagatedBuildInputs = [ 24 + characteristic 25 + six 26 + twisted 27 + ]; 17 28 18 29 checkPhase = '' 19 30 ${python.interpreter} -m twisted.trial -j $NIX_BUILD_CORES tubes ··· 23 34 24 35 meta = with lib; { 25 36 description = "a data-processing and flow-control engine for event-driven programs"; 26 - homepage = "https://github.com/twisted/tubes"; 27 - license = licenses.mit; 37 + homepage = "https://github.com/twisted/tubes"; 38 + license = licenses.mit; 28 39 maintainers = with maintainers; [ exarkun ]; 29 40 }; 30 41 }
+12 -9
pkgs/development/python-modules/types-ujson/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , fetchPypi 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchPypi, 5 + setuptools, 4 6 }: 5 7 6 8 buildPythonPackage rec { 7 9 pname = "types-ujson"; 8 - version = "5.9.0.0"; 9 - format = "setuptools"; 10 + version = "5.10.0.20240515"; 11 + pyproject = true; 10 12 11 13 src = fetchPypi { 12 14 inherit pname version; 13 - hash = "sha256-fnBCRU3HzX8xsJxCDXyvNrk9ML30uNuTeRvQVhcT0Bc="; 15 + hash = "sha256-zq5xJ/Da/kr13Q7PmO4T6ddZUe+WO1xam36pLg1x8Nc="; 14 16 }; 15 17 18 + build-system = [ setuptools ]; 19 + 20 + # Module has no tests 16 21 doCheck = false; 17 22 18 - pythonImportsCheck = [ 19 - "ujson-stubs" 20 - ]; 23 + pythonImportsCheck = [ "ujson-stubs" ]; 21 24 22 25 meta = with lib; { 23 26 description = "Typing stubs for ujson";
+2 -2
pkgs/development/python-modules/unstructured/default.nix
··· 56 56 , grpcio 57 57 }: 58 58 let 59 - version = "0.13.4"; 59 + version = "0.13.7"; 60 60 optional-dependencies = { 61 61 huggingflace = [ 62 62 langdetect ··· 90 90 owner = "Unstructured-IO"; 91 91 repo = "unstructured"; 92 92 rev = "refs/tags/${version}"; 93 - hash = "sha256-HAZVnyjbeHF6knipTxmmy/BI1wvoJ8c65PiMAIqgJ+0="; 93 + hash = "sha256-Ekfa454mL7isMX79bd/YXPPHnetSzo1Mlg/XJakYyDM="; 94 94 }; 95 95 96 96 propagatedBuildInputs = [
+34
pkgs/development/python-modules/waybackpy/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , click 5 + , urllib3 6 + , requests 7 + , pytest 8 + }: 9 + buildPythonPackage rec { 10 + pname = "waybackpy"; 11 + version = "3.0.6"; 12 + 13 + src = fetchPypi { 14 + inherit pname version; 15 + hash = "sha256-SXo3F1arp2ROt62g69TtsVy4xTvBNMyXO/AjoSyv+D8="; 16 + }; 17 + 18 + dependencies = [ 19 + click 20 + urllib3 21 + requests 22 + ]; 23 + 24 + nativeBuildInputs = [ pytest ]; 25 + 26 + pythonImportsCheck = [ "waybackpy" ]; 27 + 28 + meta = with lib; { 29 + homepage = "https://akamhy.github.io/waybackpy/"; 30 + description = "Wayback Machine API interface & a command-line tool"; 31 + license = licenses.mit; 32 + maintainers = with maintainers; [ chpatrick ]; 33 + }; 34 + }
+2 -2
pkgs/development/python-modules/wcmatch/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "wcmatch"; 11 - version = "8.5.1"; 11 + version = "8.5.2"; 12 12 format = "pyproject"; 13 13 14 14 src = fetchPypi { 15 15 inherit pname version; 16 - hash = "sha256-wAiMf2Qmz2vyflMOK3tzQDGQX35JBHX9g8fFAIq1gbM="; 16 + hash = "sha256-pwIiuG3qgvs4Ldh7cyeMEHVsE4vW+PcU4hgxKIh7nrI="; 17 17 }; 18 18 19 19 nativeBuildInputs = [
+1
pkgs/development/python-modules/yapf/default.nix
··· 66 66 takes away some of the drudgery of maintaining your code. 67 67 ''; 68 68 license = lib.licenses.asl20; 69 + mainProgram = "yapf"; 69 70 maintainers = with lib.maintainers; [ AndersonTorres siddharthist ]; 70 71 }; 71 72 }
+3 -3
pkgs/development/tools/analysis/cargo-tarpaulin/default.nix
··· 10 10 11 11 rustPlatform.buildRustPackage rec { 12 12 pname = "cargo-tarpaulin"; 13 - version = "0.29.2"; 13 + version = "0.30.0"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "xd009642"; 17 17 repo = "tarpaulin"; 18 18 rev = version; 19 - hash = "sha256-3OLMTiMX5dsW691MX432YUuVqKOtrmS6Tpk96QVEyo8="; 19 + hash = "sha256-RtkW2FDey049URmr0WGNYcz5sTZXIQ7dZL/OlIaKX20="; 20 20 }; 21 21 22 - cargoHash = "sha256-+xCA0LVEHhBGOgMx+/ABZL1I7NSJEWf21p9gmQJNBJo="; 22 + cargoHash = "sha256-HBpEMjc2FQvFqvvcCtxHJBj2waFau77t+m+1ZfomguA="; 23 23 24 24 nativeBuildInputs = [ 25 25 pkg-config
+2 -2
pkgs/development/tools/analysis/checkov/default.nix
··· 6 6 7 7 python3.pkgs.buildPythonApplication rec { 8 8 pname = "checkov"; 9 - version = "3.2.91"; 9 + version = "3.2.92"; 10 10 pyproject = true; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "bridgecrewio"; 14 14 repo = "checkov"; 15 15 rev = "refs/tags/${version}"; 16 - hash = "sha256-lw89E7xD1tSAxgf1bwuPojOikOqIBfisePAtTGHXr4c="; 16 + hash = "sha256-v1StSo9j0Psr3om3qbcE+Ha9Wz7t6EfGzbyAe34M2qY="; 17 17 }; 18 18 19 19 patches = [ ./flake8-compat-5.x.patch ];
+3 -3
pkgs/development/tools/analysis/tflint/default.nix
··· 10 10 11 11 buildGoModule rec { 12 12 pname = "tflint"; 13 - version = "0.51.0"; 13 + version = "0.51.1"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "terraform-linters"; 17 17 repo = pname; 18 18 rev = "v${version}"; 19 - hash = "sha256-WtX+PKYyiZvjxCz2xAl+A19KjuK9DouVWYzE/U1WeSA="; 19 + hash = "sha256-f2U/DK2yaJI0t125k0N4SHjNvSUYPtqTjR91EJnimGQ="; 20 20 }; 21 21 22 - vendorHash = "sha256-RyQ193bl8BiuJDJnyhmJ1wurE6RXH+TIGaOh9z1X/jA="; 22 + vendorHash = "sha256-xx/WF/yR++oB+7az9i/JkhYuOZsPoCBgYITqBR1Gv5c="; 23 23 24 24 doCheck = false; 25 25
+2 -2
pkgs/development/tools/database/sqlcl/default.nix
··· 2 2 3 3 stdenv.mkDerivation (finalAttrs: { 4 4 pname = "sqlcl"; 5 - version = "23.4.0.023.2321"; 5 + version = "24.1.0.087.0929"; 6 6 7 7 src = fetchurl { 8 8 url = "https://download.oracle.com/otn_software/java/sqldeveloper/sqlcl-${finalAttrs.version}.zip"; 9 - hash = "sha256-8K2yuLYMJI9fFeDcHpWHYmIxZGC06/heYBEW1z2tGc4="; 9 + hash = "sha256-DHp3Wrwro1oaBEw1O7cyRGJKbhD2z86MeY2Xq2vzo1Q="; 10 10 }; 11 11 12 12 nativeBuildInputs = [ makeWrapper unzip ];
+2 -2
pkgs/development/tools/devbox/default.nix
··· 5 5 }: 6 6 buildGoModule rec { 7 7 pname = "devbox"; 8 - version = "0.10.6"; 8 + version = "0.10.7"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "jetpack-io"; 12 12 repo = pname; 13 13 rev = version; 14 - hash = "sha256-E2kJiWuHY+rHyAR6p/NVbONys8RonpxvDHUTrx6ZSkk="; 14 + hash = "sha256-iaPdFDoYmukv1T+HSaGRrbvjvkioX5PlCc9t2VHGJ30="; 15 15 }; 16 16 17 17 ldflags = [
+3 -3
pkgs/development/tools/firebase-tools/default.nix
··· 8 8 9 9 buildNpmPackage rec { 10 10 pname = "firebase-tools"; 11 - version = "13.7.5"; 11 + version = "13.9.0"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "firebase"; 15 15 repo = "firebase-tools"; 16 16 rev = "v${version}"; 17 - hash = "sha256-OPpLqXCxEkKOUB0U2gpvGipvRUcF3fM9yopdwkDMqXk="; 17 + hash = "sha256-a/rtEDodVL0QCqxEhklDwiTSMFI1hKPrkbtsJH0Au64="; 18 18 }; 19 19 20 - npmDepsHash = "sha256-dmySbwBdOJJ65gj1cBlDIS2o2Tnie6tx8cOyt0FoFyw="; 20 + npmDepsHash = "sha256-z7h+Jh3KuMkxn5gUDHYlU1+UyABHdLh2IFJiu6wFkhU="; 21 21 22 22 postPatch = '' 23 23 ln -s npm-shrinkwrap.json package-lock.json
+2 -2
pkgs/development/tools/fsautocomplete/default.nix
··· 20 20 --replace TargetFrameworks TargetFramework \ 21 21 ''; 22 22 23 - dotnet-sdk = with dotnetCorePackages; combinePackages [ sdk_6_0 sdk_7_0 sdk_8_0 ]; 24 - dotnet-runtime = dotnetCorePackages.sdk_8_0; 23 + dotnet-sdk = with dotnetCorePackages; combinePackages [ sdk_6_0 sdk_7_0 sdk_8_0_2xx ]; 24 + dotnet-runtime = dotnetCorePackages.sdk_8_0_2xx; 25 25 26 26 projectFile = "src/FsAutoComplete/FsAutoComplete.fsproj"; 27 27 executables = [ "fsautocomplete" ];
+2 -2
pkgs/development/tools/go-task/default.nix
··· 8 8 9 9 buildGoModule rec { 10 10 pname = "go-task"; 11 - version = "3.37.0"; 11 + version = "3.37.2"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = pname; 15 15 repo = "task"; 16 16 rev = "refs/tags/v${version}"; 17 - hash = "sha256-h3/quMJ4vdTaR+pY7NRpbNp0o3Wp+3K7kFNACp5Q1Ls="; 17 + hash = "sha256-yVQR7D3zpReBlYyuZNMBVs3lgWBR54doMUjRMhfgUJw="; 18 18 }; 19 19 20 20 vendorHash = "sha256-iugFWBIKt/Rm5ccQnIFR75P1AVZbbFhWN97dvr8DoBs=";
+2 -2
pkgs/development/tools/goda/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "goda"; 5 - version = "0.5.7"; 5 + version = "0.5.8"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "loov"; 9 9 repo = "goda"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-kilFb/2wXdzn/gXy9mBg0PZH8rd+MFIom4AGAZLgnBo="; 11 + hash = "sha256-WmOe3MfFWUnFSuwntHUjN+NeeT7TdxfBOgciviYZC0Y="; 12 12 }; 13 13 14 14 vendorHash = "sha256-FYjlOYB0L4l6gF8hYtJroV1qMQD0ZmKWXBarjyConRs=";
+3 -3
pkgs/development/tools/grpc-gateway/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "grpc-gateway"; 5 - version = "2.19.1"; 5 + version = "2.20.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "grpc-ecosystem"; 9 9 repo = "grpc-gateway"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-CdGQpQfOSimeio8v1lZ7xzE/oAS2qFyu+uN+H9i7vpo="; 11 + sha256 = "sha256-CnnJRgEGarwIaE2LkphN3gogzIhwQ5hAaUZFpLR/HxU="; 12 12 }; 13 13 14 - vendorHash = "sha256-no7kZGpf/VOuceC3J+izGFQp5aMS3b+Rn+x4BFZ2zgs="; 14 + vendorHash = "sha256-aNOWu+TXbXn3jZ29BwU+x+vWMtL76NZoPElFuUwcHiI="; 15 15 16 16 ldflags = [ 17 17 "-X=main.version=${version}"
+2 -2
pkgs/development/tools/headache/default.nix
··· 6 6 7 7 buildDunePackage rec { 8 8 pname = "headache"; 9 - version = "1.07"; 9 + version = "1.08"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "frama-c"; 13 13 repo = pname; 14 14 rev = "v${version}"; 15 - sha256 = "sha256-RL80ggcJSJFu2UTECUNP6KufRhR8ZnG7sQeYzhrw37g="; 15 + sha256 = "sha256-UXQIIsCyJZN4qos7Si7LLm9vQueOduUmLeYHuyT2GZo="; 16 16 }; 17 17 18 18 propagatedBuildInputs = [
+2 -2
pkgs/development/tools/language-servers/lua-language-server/default.nix
··· 2 2 3 3 stdenv.mkDerivation (finalAttrs: { 4 4 pname = "lua-language-server"; 5 - version = "3.9.0"; 5 + version = "3.9.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "luals"; 9 9 repo = "lua-language-server"; 10 10 rev = finalAttrs.version; 11 - hash = "sha256-RINpfVg7TTRjAVFBOXXA7e/BnAvXNe32H0fchS3LMo0="; 11 + hash = "sha256-M4eTrs5Ue2+b40TPdW4LZEACGYCE/J9dQodEk9d+gpY="; 12 12 fetchSubmodules = true; 13 13 }; 14 14
+3 -3
pkgs/development/tools/misc/src-cli/default.nix
··· 10 10 11 11 buildGoModule rec { 12 12 pname = "src-cli"; 13 - version = "5.3.0"; 13 + version = "5.4.0"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "sourcegraph"; 17 17 repo = "src-cli"; 18 18 rev = version; 19 - hash = "sha256-eN+MByapusaznL3BR1WOWJ3tMtxJ4yrxrcNCHOgoL0k="; 19 + hash = "sha256-EFt/CnQcwtcm8Yr8e03+cSP5hgWwamtA2dILjD/QcMM="; 20 20 }; 21 21 22 - vendorHash = "sha256-+7/bY0qrRRZ0GNkIcuqOi4MA8wE75/HllRI6e/IQgy4="; 22 + vendorHash = "sha256-QR/Gcyx+QYK9cmCfotYOTcmcPOC+2ZA2+OQOUmNNmQE="; 23 23 24 24 subPackages = [ 25 25 "cmd/src"
+2 -2
pkgs/development/tools/misc/strace/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "strace"; 5 - version = "6.8"; 5 + version = "6.9"; 6 6 7 7 src = fetchurl { 8 8 url = "https://strace.io/files/${version}/${pname}-${version}.tar.xz"; 9 - sha256 = "sha256-umlQqWgkzfk6WE+gTwpzOJbSprxfCtn/5QXZtB6XAUk="; 9 + sha256 = "sha256-2hiemQqC48o6WkYxAS9+z9SJ2rRZhU2C2Mr2qGXBNWo="; 10 10 }; 11 11 12 12 depsBuildBuild = [ buildPackages.stdenv.cc ];
+21 -3
pkgs/development/tools/misc/sysbench/default.nix
··· 5 5 , pkg-config 6 6 , libmysqlclient 7 7 , libaio 8 - , libck 9 8 , luajit 10 9 # For testing: 11 10 , testers ··· 17 16 version = "1.0.20"; 18 17 19 18 nativeBuildInputs = [ autoreconfHook pkg-config ]; 20 - buildInputs = [ libmysqlclient luajit libck ] ++ lib.optionals stdenv.isLinux [ libaio ]; 19 + buildInputs = [ libmysqlclient luajit ] ++ lib.optionals stdenv.isLinux [ libaio ]; 21 20 depsBuildBuild = [ pkg-config ]; 22 21 23 22 src = fetchFromGitHub { ··· 33 32 # The bundled version does not build on aarch64-darwin: 34 33 # https://github.com/akopytov/sysbench/issues/416 35 34 "--with-system-luajit" 36 - "--with-system-ck" 37 35 "--with-mysql-includes=${lib.getDev libmysqlclient}/include/mysql" 38 36 "--with-mysql-libs=${libmysqlclient}/lib/mysql" 39 37 ]; 38 + 39 + # We cannot use the regular nixpkgs ck here, since it has very 40 + # different performance characteristics than the vendored one. 41 + # On the downside the vendored libck version require more fixes for cross-compilation. 42 + # Sysbench related on statically linked vendored libck. 43 + postPatch = '' 44 + substituteInPlace \ 45 + third_party/concurrency_kit/ck/configure \ 46 + --replace-fail \ 47 + 'COMPILER=`./.1 2> /dev/null`' \ 48 + "COMPILER=${if stdenv.cc.isGNU then "gcc" else if stdenv.cc.isClang then "clang" else throw "Unsupported compiler"}" \ 49 + --replace-fail \ 50 + 'PLATFORM=`uname -m 2> /dev/null`' \ 51 + "PLATFORM=${stdenv.hostPlatform.parsed.cpu.name}" 52 + substituteInPlace \ 53 + third_party/concurrency_kit/ck/src/Makefile.in \ 54 + --replace-fail \ 55 + "ar rcs" \ 56 + "${stdenv.cc.targetPrefix}ar rcs" 57 + ''; 40 58 41 59 passthru.tests = { 42 60 versionTest = testers.testVersion {
+20 -20
pkgs/development/tools/mysql-shell/innovation.nix
··· 34 34 let 35 35 pythonDeps = with python3.pkgs; [ certifi paramiko pyyaml ]; 36 36 37 - mysqlShellVersion = "8.3.0"; 38 - mysqlServerVersion = "8.3.0"; 37 + mysqlShellVersion = "8.4.0"; 38 + mysqlServerVersion = "8.4.0"; 39 39 in 40 40 stdenv.mkDerivation (finalAttrs: { 41 41 pname = "mysql-shell-innovation"; ··· 43 43 44 44 srcs = [ 45 45 (fetchurl { 46 - url = "https://cdn.mysql.com//Downloads/MySQL-${lib.versions.majorMinor mysqlServerVersion}/mysql-${mysqlServerVersion}.tar.gz"; 47 - hash = "sha256-HyFJWgt6grJKRT1S4hU6gUs8pwTsz5mXZtVFvOUvOG4="; 46 + url = "https://dev.mysql.com/get/Downloads/MySQL-${lib.versions.majorMinor mysqlServerVersion}/mysql-${mysqlServerVersion}.tar.gz"; 47 + hash = "sha256-R6VDP83WOduDa5nhtUWcK4E8va0j/ytd1K0n95K6kY4="; 48 48 }) 49 49 (fetchurl { 50 - url = "https://cdn.mysql.com//Downloads/MySQL-Shell/mysql-shell-${finalAttrs.version}-src.tar.gz"; 51 - hash = "sha256-O0j/gvS9fR/xp9plytjj249H7LY/+eyst1IsFpy318U="; 50 + url = "https://dev.mysql.com/get/Downloads/MySQL-Shell/mysql-shell-${finalAttrs.version}-src.tar.gz"; 51 + hash = "sha256-QT30FNogn7JR/dQ3V86QaAZaMREMKvTocRTUaNLGVlg="; 52 52 }) 53 53 ]; 54 54 ··· 59 59 ''; 60 60 61 61 postPatch = '' 62 - substituteInPlace ../mysql/cmake/libutils.cmake --replace /usr/bin/libtool libtool 63 - substituteInPlace ../mysql/cmake/os/Darwin.cmake --replace /usr/bin/libtool libtool 62 + substituteInPlace ../mysql/cmake/libutils.cmake --replace-quiet /usr/bin/libtool libtool 63 + substituteInPlace ../mysql/cmake/os/Darwin.cmake --replace-quiet /usr/bin/libtool libtool 64 64 65 - substituteInPlace cmake/libutils.cmake --replace /usr/bin/libtool libtool 65 + substituteInPlace cmake/libutils.cmake --replace-quiet /usr/bin/libtool libtool 66 66 ''; 67 67 68 68 nativeBuildInputs = [ pkg-config cmake git bison makeWrapper ] ··· 100 100 -DFORCE_UNSUPPORTED_COMPILER=1 -S ../mysql -B ../mysql/build 101 101 102 102 cmake --build ../mysql/build --parallel ''${NIX_BUILD_CORES:-1} --target mysqlclient mysqlxclient 103 - ''; 104 103 105 - cmakeFlags = [ 106 - "-DMYSQL_SOURCE_DIR=../mysql" 107 - "-DMYSQL_BUILD_DIR=../mysql/build" 108 - "-DMYSQL_CONFIG_EXECUTABLE=../../mysql/build/scripts/mysql_config" 109 - "-DWITH_ZSTD=system" 110 - "-DWITH_LZ4=system" 111 - "-DWITH_ZLIB=system" 112 - "-DWITH_PROTOBUF=${protobuf}" 113 - "-DHAVE_PYTHON=1" 114 - ]; 104 + cmakeFlagsArray+=( 105 + "-DMYSQL_SOURCE_DIR=''${NIX_BUILD_TOP}/mysql" 106 + "-DMYSQL_BUILD_DIR=''${NIX_BUILD_TOP}/mysql/build" 107 + "-DMYSQL_CONFIG_EXECUTABLE=''${NIX_BUILD_TOP}/mysql/build/scripts/mysql_config" 108 + "-DWITH_ZSTD=system" 109 + "-DWITH_LZ4=system" 110 + "-DWITH_ZLIB=system" 111 + "-DWITH_PROTOBUF=system" 112 + "-DHAVE_PYTHON=1" 113 + ) 114 + ''; 115 115 116 116 postFixup = '' 117 117 wrapProgram $out/bin/mysqlsh --set PYTHONPATH "${lib.makeSearchPath python3.sitePackages pythonDeps}"
+2 -2
pkgs/development/tools/operator-sdk/default.nix
··· 7 7 8 8 buildGoModule rec { 9 9 pname = "operator-sdk"; 10 - version = "1.34.1"; 10 + version = "1.34.2"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "operator-framework"; 14 14 repo = pname; 15 15 rev = "refs/tags/v${version}"; 16 - hash = "sha256-3S7jR76b9MZpqn4Hj9yhjfravBk1PiESJEbG5XR4tnI="; 16 + hash = "sha256-vVa1ljPRSHSo7bVqPkRt/jbuSlzLmnVaLnyreskwOrM="; 17 17 }; 18 18 19 19 vendorHash = "sha256-YspUrnSS6d8Ta8dmUjx9A5D/V5Bqm08DQJrRBaIGyQg=";
+3 -3
pkgs/development/tools/reindeer/default.nix
··· 11 11 12 12 rustPlatform.buildRustPackage rec { 13 13 pname = "reindeer"; 14 - version = "2024.05.06.00"; 14 + version = "2024.05.13.00"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "facebookincubator"; 18 18 repo = "reindeer"; 19 19 rev = "refs/tags/v${version}"; 20 - hash = "sha256-p+nnwUzbaAMRDGqFfFJdhsNlz32Ss6oDhBLOcb/pAtI="; 20 + hash = "sha256-yXHBcb4/IsT39x4J5baJ8JdgG+riJACr8DKpDdi6ARw="; 21 21 }; 22 22 23 - cargoHash = "sha256-/fvmOB0huXUK08IXsLbcF7bIJ4mDywKDjG774wS1qbY="; 23 + cargoHash = "sha256-PYIeXKAuYhb6OARuefYZwP9OgPMvcoKnEnbVUztBqDY="; 24 24 25 25 nativeBuildInputs = [ pkg-config ]; 26 26 buildInputs =
+3 -3
pkgs/development/tools/rust/cargo-ndk/default.nix
··· 8 8 9 9 rustPlatform.buildRustPackage rec { 10 10 pname = "cargo-ndk"; 11 - version = "3.4.0"; 11 + version = "3.5.5"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "bbqsrc"; 15 15 repo = pname; 16 16 rev = "v${version}"; 17 - sha256 = "sha256-PdRiiGRYdbnViK34PnYoLFteipoK2arw79IVOQnJKNE="; 17 + sha256 = "sha256-2nL+NE4ntZbm2DdPZEoJLDeMAxaPXgrSSIvwAThlLlA="; 18 18 }; 19 19 20 - cargoHash = "sha256-6rQwyogm62xx9JmDWfRtCpF1Rqjtt5SDYUdtZBfryuw="; 20 + cargoHash = "sha256-Fa1pkHdjngJx7FwfvSQ76D61NPYC88jXqYnjWx6K2f8="; 21 21 22 22 buildInputs = lib.optionals stdenv.isDarwin [ 23 23 CoreGraphics
+2 -2
pkgs/development/tools/skaffold/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "skaffold"; 5 - version = "2.11.0"; 5 + version = "2.12.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "GoogleContainerTools"; 9 9 repo = "skaffold"; 10 10 rev = "v${version}"; 11 - hash = "sha256-xaRVgvYK6xWSy75K7AOkSw4ZjXn3xR0NqbBBbbK5MVU="; 11 + hash = "sha256-q57n5Jo682u/YK+5bgYqMufjPuPOPsBgJzxSl1fdqxA="; 12 12 }; 13 13 14 14 vendorHash = null;
+2 -2
pkgs/development/tools/skopeo/default.nix
··· 18 18 19 19 buildGoModule rec { 20 20 pname = "skopeo"; 21 - version = "1.15.0"; 21 + version = "1.15.1"; 22 22 23 23 src = fetchFromGitHub { 24 24 rev = "v${version}"; 25 25 owner = "containers"; 26 26 repo = "skopeo"; 27 - hash = "sha256-GMZjmKM2bFv57b2u7VjiA2OF6gD7vtoQ3ofS2rQfNrk="; 27 + hash = "sha256-Zv36vSPfXcpBmxyEA8b3Xoo9HhSWtxnWPP/SubIcHDo="; 28 28 }; 29 29 30 30 outputs = [ "out" "man" ];
+3 -3
pkgs/development/tools/supabase-cli/default.nix
··· 9 9 10 10 buildGoModule rec { 11 11 pname = "supabase-cli"; 12 - version = "1.166.2"; 12 + version = "1.167.4"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "supabase"; 16 16 repo = "cli"; 17 17 rev = "v${version}"; 18 - hash = "sha256-QytOsrFSRHyYX9nq3pttKwjH7XbRHrzoLO3pJnd0U5Q="; 18 + hash = "sha256-QRg7SskWXlNj/ob436aA2DzwSE7Zvp7BO64rNFpgmiM="; 19 19 }; 20 20 21 - vendorHash = "sha256-6dDI3zFZgjDbbvaAEmjzurJ1obFoxMfakmrOewR4qdo="; 21 + vendorHash = "sha256-X/iYUQDvzd5/BuHEVb40hapYcDVvIlMPwqQUNO6bFNE="; 22 22 23 23 ldflags = [ 24 24 "-s"
+2 -2
pkgs/development/web/nodejs/v22.nix
··· 8 8 in 9 9 buildNodejs { 10 10 inherit enableNpm; 11 - version = "22.0.0"; 12 - sha256 = "sha256-IuKPv/MfaQc7gCTLQnReUQX4QEHzR1smC5fVoUEDnRo="; 11 + version = "22.2.0"; 12 + sha256 = "sha256-iJkIqIKNFISRDX5lm2qlet6NUo/w45Dpp372WadihHQ="; 13 13 patches = [ 14 14 ./disable-darwin-v8-system-instrumentation-node19.patch 15 15 ./bypass-darwin-xcrun-node16.patch
+6 -3
pkgs/games/chiaki4deck/default.nix
··· 1 1 { lib 2 2 , fetchFromGitHub 3 - , fetchpatch 4 3 , stdenv 5 4 , cmake 6 5 , pkg-config ··· 19 18 , libevdev 20 19 , udev 21 20 , hidapi 21 + , json_c 22 22 , fftw 23 + , miniupnpc 23 24 , speexdsp 24 25 , libplacebo 25 26 , vulkan-loader ··· 33 34 34 35 stdenv.mkDerivation rec { 35 36 pname = "chiaki4deck"; 36 - version = "1.6.6"; 37 + version = "1.7.0"; 37 38 38 39 src = fetchFromGitHub { 39 40 owner = "streetpea"; 40 41 repo = pname; 41 42 rev = "v${version}"; 42 - hash = "sha256-hai7fIyeNcAURfeQtAIqOLb9j8erPNoy3zHK4rgLjc0="; 43 + hash = "sha256-gJafzBryuGDU8ke3JTKkQdSEND+btSZ93Ei7ZRsqchg="; 43 44 fetchSubmodules = true; 44 45 }; 45 46 ··· 66 67 protobuf 67 68 SDL2 68 69 hidapi 70 + json_c 69 71 fftw 72 + miniupnpc 70 73 libevdev 71 74 udev 72 75 speexdsp
-13
pkgs/games/colobot/default.nix
··· 18 18 hash = "sha256-3iea2+5xCT0//NAjMHrynZKSoiOSgLTNMUQkRhXuXg8="; 19 19 }; 20 20 21 - patches = [ 22 - # https://github.com/colobot/colobot/pull/1559 23 - # gcc13 fixes. remove on next update 24 - (fetchpatch { 25 - name = "gcc13-fixes.patch"; 26 - url = "https://github.com/colobot/colobot/commit/d47e26586325ec11425cef5c95fc206dc103dbe2.patch"; 27 - hash = "sha256-2DmLkyoyiZSW0yeZDSSWFjCEJos25jPHZQi1yuJGFko="; 28 - excludes = [ 29 - "src/object/task/taskgoto.h" 30 - ]; 31 - }) 32 - ]; 33 - 34 21 nativeBuildInputs = [ cmake xmlstarlet doxygen python3 ]; 35 22 buildInputs = [ boost SDL2 SDL2_image SDL2_ttf libpng glew gettext libsndfile libvorbis libogg physfs openal ]; 36 23
+2 -2
pkgs/games/openttd/jgrpp.nix
··· 2 2 3 3 openttd.overrideAttrs (oldAttrs: rec { 4 4 pname = "openttd-jgrpp"; 5 - version = "0.58.3"; 5 + version = "0.59.0"; 6 6 7 7 src = fetchFromGitHub rec { 8 8 owner = "JGRennison"; 9 9 repo = "OpenTTD-patches"; 10 10 rev = "jgrpp-${version}"; 11 - hash = "sha256-NRCdZ7iSeofVjH/kjpnw4zlxXc4ojhF1xfMpAfZuu98="; 11 + hash = "sha256-90swZyzEdCpWsZb0aZnwRrzGkJT6gef1kMB/q+EXE3M="; 12 12 }; 13 13 14 14 buildInputs = oldAttrs.buildInputs ++ [ zstd ];
+2 -2
pkgs/games/shattered-pixel-dungeon/default.nix
··· 5 5 6 6 callPackage ./generic.nix rec { 7 7 pname = "shattered-pixel-dungeon"; 8 - version = "2.3.2"; 8 + version = "2.4.0"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "00-Evan"; 12 12 repo = "shattered-pixel-dungeon"; 13 13 rev = "v${version}"; 14 - hash = "sha256-CZOi3kLwYdA4U9LjgK4ukPTLFUodyubSQg9JaJpUB9s="; 14 + hash = "sha256-WTmzSuEoXLhr14vm2eQAmhmbTX/v7uKioQ1DcLnvAUw="; 15 15 }; 16 16 17 17 depsHash = "sha256-vihoR0bPh7590sRxeYJ1uuynNRxtRBuiFUrdmsRNUJc=";
-1
pkgs/games/worldofgoo/default.nix
··· 35 35 36 36 nativeBuildInputs = [ unzip ]; 37 37 sourceRoot = pname; 38 - phases = [ "unpackPhase installPhase" ]; 39 38 40 39 libPath = lib.makeLibraryPath [ stdenv.cc.cc.lib stdenv.cc.libc SDL2 SDL2_mixer 41 40 libogg libvorbis ];
+3 -3
pkgs/misc/tmux-plugins/default.nix
··· 92 92 93 93 catppuccin = mkTmuxPlugin { 94 94 pluginName = "catppuccin"; 95 - version = "unstable-2023-08-21"; 95 + version = "unstable-2024-05-15"; 96 96 src = fetchFromGitHub { 97 97 owner = "catppuccin"; 98 98 repo = "tmux"; 99 - rev = "7a284c98e5df4cc84a1a45ad633916f0b2b916b2"; 100 - hash = "sha256-jxcxW0gEfXaSt8VM3UIs0dKNKaHb8JSEQBBV3SVjW/A="; 99 + rev = "697087f593dae0163e01becf483b192894e69e33"; 100 + hash = "sha256-EHinWa6Zbpumu+ciwcMo6JIIvYFfWWEKH1lwfyZUNTo="; 101 101 }; 102 102 postInstall = '' 103 103 sed -i -e 's|''${PLUGIN_DIR}/catppuccin-selected-theme.tmuxtheme|''${TMUX_TMPDIR}/catppuccin-selected-theme.tmuxtheme|g' $target/catppuccin.tmux
+2 -2
pkgs/os-specific/darwin/raycast/default.nix
··· 10 10 11 11 stdenvNoCC.mkDerivation (finalAttrs: { 12 12 pname = "raycast"; 13 - version = "1.73.0"; 13 + version = "1.74.0"; 14 14 15 15 src = fetchurl { 16 16 name = "Raycast.dmg"; 17 17 url = "https://releases.raycast.com/releases/${finalAttrs.version}/download?build=universal"; 18 - hash = "sha256-TiHFuU54+IDBrdIMSI397ysm8uOb2/oRhSyoy+5yzTw="; 18 + hash = "sha256-aPpxPjEhy1uLekHMLyI18mlSozffMA+HB1OdqpULVnw="; 19 19 }; 20 20 21 21 dontPatch = true;
+14 -1
pkgs/os-specific/linux/cryptodev/default.nix
··· 1 - { fetchFromGitHub, lib, stdenv, kernel ? false }: 1 + { 2 + lib, 3 + stdenv, 4 + fetchFromGitHub, 5 + fetchpatch, 6 + kernel ? false, 7 + }: 2 8 3 9 stdenv.mkDerivation rec { 4 10 pname = "cryptodev-linux-1.13"; ··· 10 16 rev = pname; 11 17 hash = "sha256-EzTPoKYa+XWOAa/Dk7ru02JmlymHeXVX7RMmEoJ1OT0="; 12 18 }; 19 + 20 + patches = [ 21 + (fetchpatch { 22 + url = "https://github.com/cryptodev-linux/cryptodev-linux/compare/cryptodev-linux-1.13...5e7121e45ff283d30097da381fd7e97c4bb61364.patch"; 23 + hash = "sha256-GLWpiInBrUcVhpvEjTmD5KLCrrFZnlJGnmLU0QYz+4A="; 24 + }) 25 + ]; 13 26 14 27 nativeBuildInputs = kernel.moduleBuildDependencies; 15 28 hardeningDisable = [ "pic" ];
+9 -2
pkgs/os-specific/linux/firmware/fwupd-efi/default.nix
··· 1 1 { lib 2 2 , stdenv 3 3 , fetchurl 4 - , fetchFromGitHub 5 - , substituteAll 4 + , fetchpatch 6 5 , pkg-config 7 6 , meson 8 7 , ninja ··· 19 18 url = "https://github.com/fwupd/fwupd-efi/releases/download/${version}/fwupd-efi-${version}.tar.xz"; 20 19 hash = "sha256-r9CAWirQgafK/y71vABM46AUe1OAFejsqWY0FxaxJg4="; 21 20 }; 21 + 22 + patches = [ 23 + (fetchpatch { 24 + url = "https://github.com/fwupd/fwupd-efi/commit/26c6ec5c1e7765fb5dc6a4df511ab21ee6c6e67a.patch"; 25 + revert = true; 26 + hash = "sha256-vTdYExd7OlrrZ/LhlEO1zcvpKzeT5OeOeosD8/LUkMg="; 27 + }) 28 + ]; 22 29 23 30 nativeBuildInputs = [ 24 31 meson
+2 -2
pkgs/os-specific/linux/libzbc/default.nix
··· 10 10 11 11 stdenv.mkDerivation rec { 12 12 pname = "libzbc"; 13 - version = "5.13.0"; 13 + version = "5.14.0"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "westerndigitalcorporation"; 17 17 repo = "libzbc"; 18 18 rev = "v${version}"; 19 - sha256 = "6xkA96bgQ2Ik1vEwkw7hwjMbjMSlopzv5ziTh60Mjx0="; 19 + sha256 = "sha256-+MBk2ZUr3Vt6pZFb4gTXMOzKBlf1EXMF8y/c1iDrIZM="; 20 20 }; 21 21 22 22 nativeBuildInputs = [
+2
pkgs/pkgs-lib/formats.nix
··· 43 43 44 44 hocon = (import ./formats/hocon/default.nix { inherit lib pkgs; }).format; 45 45 46 + php = (import ./formats/php/default.nix { inherit lib pkgs; }).format; 47 + 46 48 json = {}: { 47 49 48 50 type = with lib.types; let
+69
pkgs/pkgs-lib/formats/php/default.nix
··· 1 + {pkgs, lib}: { 2 + # Format for defining configuration of some PHP services, that use "include 'config.php';" approach. 3 + format = {finalVariable ? null}: let 4 + toPHP = value: { 5 + "null" = "null"; 6 + "bool" = if value then "true" else "false"; 7 + "int" = toString value; 8 + "float" = toString value; 9 + "string" = string value; 10 + "set" = attrs value; 11 + "list" = list value; 12 + } 13 + .${builtins.typeOf value} or 14 + (abort "should never happen: unknown value type ${builtins.typeOf value}"); 15 + 16 + # https://www.php.net/manual/en/language.types.string.php#language.types.string.syntax.single 17 + escapeSingleQuotedString = lib.escape [ "'" "\\" ]; 18 + string = value: "'${escapeSingleQuotedString value}'"; 19 + 20 + listContent = values: lib.concatStringsSep ", " (map toPHP values); 21 + list = values: "[" + (listContent values) + "]"; 22 + 23 + attrsContent = values: lib.pipe values [ 24 + (lib.mapAttrsToList (k: v: "${toPHP k} => ${toPHP v}")) 25 + (lib.concatStringsSep ", ") 26 + ]; 27 + attrs = set: 28 + if set ? _phpType then specialType set 29 + else 30 + "[" + attrsContent set + "]"; 31 + 32 + mixedArray = {list, set}: if list == [] then attrs set else "[${listContent list}, ${attrsContent set}]"; 33 + 34 + specialType = {value, _phpType}: { 35 + "mixed_array" = mixedArray value; 36 + "raw" = value; 37 + }.${_phpType}; 38 + 39 + type = with lib.types; 40 + nullOr (oneOf [ 41 + bool 42 + int 43 + float 44 + str 45 + (attrsOf type) 46 + (listOf type) 47 + ]) 48 + // { 49 + description = "PHP value"; 50 + }; 51 + in { 52 + 53 + inherit type; 54 + 55 + lib = { 56 + mkMixedArray = list: set: {_phpType = "mixed_array"; value = { inherit list set;}; }; 57 + mkRaw = raw: {_phpType = "raw"; value = raw;}; 58 + }; 59 + 60 + generate = name: value: pkgs.writeTextFile { 61 + inherit name; 62 + text = let 63 + # strict_types enabled here to easily debug problems when calling functions of incorrect type using `mkRaw`. 64 + phpHeader = "<?php\ndeclare(strict_types=1);\n"; 65 + in if finalVariable == null then phpHeader + "return ${toPHP value};\n" else phpHeader + "\$${finalVariable} = ${toPHP value};\n"; 66 + }; 67 + 68 + }; 69 + }
+44
pkgs/pkgs-lib/tests/formats.nix
··· 425 425 \u0627\u0644\u062c\u0628\u0631 = \u0623\u0643\u062b\u0631 \u0645\u0646 \u0645\u062c\u0631\u062f \u0623\u0631\u0642\u0627\u0645 426 426 ''; 427 427 }; 428 + 429 + phpAtoms = shouldPass rec { 430 + format = formats.php { finalVariable = "config"; }; 431 + input = { 432 + null = null; 433 + false = false; 434 + true = true; 435 + int = 10; 436 + float = 3.141; 437 + str = "foo"; 438 + str_special = "foo\ntesthello'''"; 439 + attrs.foo = null; 440 + list = [ null null ]; 441 + mixed = format.lib.mkMixedArray [ 10 3.141 ] { 442 + str = "foo"; 443 + attrs.foo = null; 444 + }; 445 + raw = format.lib.mkRaw "random_function()"; 446 + }; 447 + expected = '' 448 + <?php 449 + declare(strict_types=1); 450 + $config = ['attrs' => ['foo' => null], 'false' => false, 'float' => 3.141000, 'int' => 10, 'list' => [null, null], 'mixed' => [10, 3.141000, 'attrs' => ['foo' => null], 'str' => 'foo'], 'null' => null, 'raw' => random_function(), 'str' => 'foo', 'str_special' => 'foo 451 + testhello\'\'\'${"'"}, 'true' => true]; 452 + ''; 453 + }; 454 + 455 + phpReturn = shouldPass { 456 + format = formats.php { }; 457 + input = { 458 + int = 10; 459 + float = 3.141; 460 + str = "foo"; 461 + str_special = "foo\ntesthello'''"; 462 + attrs.foo = null; 463 + }; 464 + expected = '' 465 + <?php 466 + declare(strict_types=1); 467 + return ['attrs' => ['foo' => null], 'float' => 3.141000, 'int' => 10, 'str' => 'foo', 'str_special' => 'foo 468 + testhello\'\'\'${"'"}]; 469 + ''; 470 + }; 471 + 428 472 }
+2 -2
pkgs/servers/dns/bind/default.nix
··· 24 24 25 25 stdenv.mkDerivation rec { 26 26 pname = "bind"; 27 - version = "9.18.26"; 27 + version = "9.18.27"; 28 28 29 29 src = fetchurl { 30 30 url = "https://downloads.isc.org/isc/bind9/${version}/${pname}-${version}.tar.xz"; 31 - hash = "sha256-df/uUnMelgTISbZY3ynpJ/HE8B1aceo+vL62NwLLZlE="; 31 + hash = "sha256-6j89jPovaueMhyJ1HQCPVLwXo67Svj9zmet79fTNqPE="; 32 32 }; 33 33 34 34 outputs = [ "out" "lib" "dev" "man" "dnsutils" "host" ];
+2 -2
pkgs/servers/go-libp2p-daemon/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "go-libp2p-daemon"; 5 - version = "0.6.0"; 5 + version = "0.6.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "libp2p"; 9 9 repo = "go-libp2p-daemon"; 10 10 rev = "v${version}"; 11 - hash = "sha256-1hhYyyGrXt/C6EoivON9WazmV/jJX8xwjCLPto28T6M="; 11 + hash = "sha256-XXg1qIACAHgK1/PltwuoNVYrsntfzo71g1dlq9V/FS4="; 12 12 }; 13 13 14 14 vendorHash = "sha256-Kdxo0QsS7o9BjSG6qFrlCnqyZXhX6NkT/aUznGrm3xo=";
+2 -2
pkgs/servers/monitoring/do-agent/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "do-agent"; 5 - version = "3.16.8"; 5 + version = "3.16.9"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "digitalocean"; 9 9 repo = "do-agent"; 10 10 rev = version; 11 - sha256 = "sha256-uMPR1vFu3NMvRyL7PCfjQTGEfUtRiyItOqt4HJ2L+Wo="; 11 + sha256 = "sha256-9ZSDBjO28spFymoXBwrJQg7Y17qUfzShcIsmUJBIxyY="; 12 12 }; 13 13 14 14 ldflags = [
+3 -3
pkgs/servers/monitoring/grafana-agent/default.nix
··· 15 15 16 16 buildGoModule rec { 17 17 pname = "grafana-agent"; 18 - version = "0.40.4"; 18 + version = "0.40.5"; 19 19 20 20 src = fetchFromGitHub { 21 21 owner = "grafana"; 22 22 repo = "agent"; 23 23 rev = "v${version}"; 24 - hash = "sha256-TWA+anmiKFgK6nb8ipoqRF+HdPMf2JDSU2DeA8fpDlQ="; 24 + hash = "sha256-Ctv/s9lgZQ9uCXx+xwJlNVe1ycQnQHtziVNafdYVBig="; 25 25 }; 26 26 27 - vendorHash = "sha256-xsFD5eAHIWcwayTm5BUAnOHX4AvZXOSJuxvBwCTToeE="; 27 + vendorHash = "sha256-pI2hk91wqMVaZ5/6uegoQOh94p4zb7Tvn2CtOMRhZME="; 28 28 proxyVendor = true; # darwin/linux hash mismatch 29 29 30 30 frontendYarnOfflineCache = fetchYarnDeps {
+2 -2
pkgs/servers/mqtt/flashmq/default.nix pkgs/by-name/fl/flashmq/package.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "flashmq"; 5 - version = "1.9.1"; 5 + version = "1.13.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "halfgaar"; 9 9 repo = "FlashMQ"; 10 10 rev = "v${version}"; 11 - hash = "sha256-LxmD/NfD4OJR77erwRnHoe6VRiytqzMlWvRtgY8RD94="; 11 + hash = "sha256-MoBLV39auDz5oicpX6CVvrHMifGpUozocq4E3J+8xWA="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ cmake installShellFiles ];
+8 -4
pkgs/servers/nominatim/default.nix
··· 1 1 { stdenv, lib, fetchFromGitHub, fetchurl 2 - , clang-tools, cmake, bzip2, zlib, expat, boost, git, pandoc 2 + , clang-tools, cmake, bzip2, zlib, expat, boost, git, pandoc, nlohmann_json 3 3 # Nominatim needs to be built with the same postgres version it will target 4 4 , postgresql 5 - , python3, php 5 + , python3, php, lua 6 6 }: 7 7 8 8 let ··· 14 14 in 15 15 stdenv.mkDerivation rec { 16 16 pname = "nominatim"; 17 - version = "4.0.1"; 17 + version = "4.4.0"; 18 18 19 19 src = fetchFromGitHub { 20 20 owner = "osm-search"; 21 21 repo = "Nominatim"; 22 22 rev = "v${version}"; 23 23 fetchSubmodules = true; 24 - sha256 = "sha256-sKI/KBKveb5kAWJ7y1xw+ZF1thynr402rJhVjkIdFMo="; 24 + sha256 = "sha256-GPMDbvTPl9SLpZi5gyRAPQ84NSTIRoSfGJeqWs1e9Oo="; 25 25 }; 26 26 27 27 nativeBuildInputs = [ ··· 30 30 git 31 31 pandoc 32 32 php 33 + lua 33 34 ]; 34 35 35 36 buildInputs = [ ··· 37 38 zlib 38 39 expat 39 40 boost 41 + nlohmann_json 40 42 (python3.withPackages (ps: with ps; [ 41 43 pyyaml 42 44 python-dotenv 43 45 psycopg2 46 + sqlalchemy 47 + asyncpg 44 48 psutil 45 49 jinja2 46 50 pyicu
+2 -2
pkgs/servers/nosql/aerospike/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "aerospike-server"; 5 - version = "7.0.0.9"; 5 + version = "7.1.0.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "aerospike"; 9 9 repo = "aerospike-server"; 10 10 rev = version; 11 - hash = "sha256-3ZVSaq76oG8NEe2SNyVGg+iDZ9RXyjFEIsgoemmuaPQ="; 11 + hash = "sha256-QifZDjmveokTkEIkMF1ozcR5x4mW/JWuSzD+rtU4B1c="; 12 12 fetchSubmodules = true; 13 13 }; 14 14
+5 -5
pkgs/servers/prowlarr/default.nix
··· 21 21 }.${stdenv.hostPlatform.system} or unsupported; 22 22 23 23 hash = { 24 - aarch64-darwin = "sha256-Mf+l5VfPSsT/LRfQnzzc7jjkfkeF/L8jwxJJ8JAYflY="; 25 - aarch64-linux = "sha256-/ioLYcws1TYMjuAFIj8yjcvTGzsvPhNwApQ84RWKZxc="; 26 - x86_64-darwin = "sha256-CioWiSC7AlVEpQA1eoQE0YhCuX2kWz00mY/UsqZ9T40="; 27 - x86_64-linux = "sha256-QhpJ/JunCbkuF2z1uNBojmv/wsISOrozTc0VgR+PuqQ="; 24 + aarch64-darwin = "sha256-aa9mkFRdvAi/A6OQnxDOiQ5yDXBbPbQxet8+XqHxrtE="; 25 + aarch64-linux = "sha256-neTIMWdx1UX9REZkLZtXpmyPb+NrbkMnXNrTn9bsECE="; 26 + x86_64-darwin = "sha256-JM0VhAbA72ZmZGZ8ke2MtB4Fi5//hr+Etk5UiMpq1LA="; 27 + x86_64-linux = "sha256-bYIavvea6Nwbn22CFiWXpzPGAI13oJYAIZr2FdLkyb8="; 28 28 }.${stdenv.hostPlatform.system} or unsupported; 29 29 30 30 in stdenv.mkDerivation rec { 31 31 inherit pname; 32 - version = "1.16.2.4435"; 32 + version = "1.17.2.4511"; 33 33 34 34 src = fetchurl { 35 35 url = "https://github.com/Prowlarr/Prowlarr/releases/download/v${version}/Prowlarr.master.${version}.${os}-core-${arch}.tar.gz";
+5 -5
pkgs/servers/radarr/default.nix
··· 10 10 }."${stdenv.hostPlatform.system}" or (throw "Unsupported system: ${stdenv.hostPlatform.system}"); 11 11 12 12 hash = { 13 - x64-linux_hash = "sha256-eFJ31tZPxzK1Vx2EOZ1AMrzCUL7pXJIb5J1joL/ZIgs="; 14 - arm64-linux_hash = "sha256-BtxHBHc2dYYdqZxwga7K49aGfSq5a8Z1TLjMPH4ldlw="; 15 - x64-osx_hash = "sha256-GQ8wHU4wWu6fpjiLI9yQyMvhP1DS5FE+YQu2uLFdto4="; 16 - arm64-osx_hash = "sha256-AnZ+mGeafJsRb6Koj0+oaER8d6vuDQ0x+Wc1eflzupo="; 13 + x64-linux_hash = "sha256-rKe1xQR3lkPXQBUWmKdHUu/AQ99U1kCINeXV2z/ZG5o="; 14 + arm64-linux_hash = "sha256-O/6brSo25E4BxvxAUQvwQa9kMY/Ga3YxgS+fuaL6/n0="; 15 + x64-osx_hash = "sha256-oVBs0evwPl3Dd6GZlzUWqopB0Zq4mOCUwmLOjs44d6Q="; 16 + arm64-osx_hash = "sha256-iUBy9ob2zOdKVhGbwsJx1ZrT9tD4D1BPLqjB46tCW08="; 17 17 }."${arch}-${os}_hash"; 18 18 19 19 in stdenv.mkDerivation rec { 20 20 pname = "radarr"; 21 - version = "5.4.6.8723"; 21 + version = "5.6.0.8846"; 22 22 23 23 src = fetchurl { 24 24 url = "https://github.com/Radarr/Radarr/releases/download/v${version}/Radarr.master.${version}.${os}-core-${arch}.tar.gz";
+3 -3
pkgs/servers/redpanda/default.nix
··· 7 7 , stdenv 8 8 }: 9 9 let 10 - version = "23.3.15"; 10 + version = "24.1.2"; 11 11 src = fetchFromGitHub { 12 12 owner = "redpanda-data"; 13 13 repo = "redpanda"; 14 14 rev = "v${version}"; 15 - sha256 = "sha256-hd6pxuKQspdN19dytxWmhO2OzFYobBLYkoB7i9r6Izc="; 15 + sha256 = "sha256-RkJymtTTIPTPzpoUyWmCKpfQBqGFoR7ZeEWCKKzkn54="; 16 16 }; 17 17 server = callPackage ./server.nix { inherit src version; }; 18 18 in ··· 21 21 inherit doCheck src version; 22 22 modRoot = "./src/go/rpk"; 23 23 runVend = false; 24 - vendorHash = "sha256-Gm4zimkI77mKO5/Q4ylE4SOJayOetu2QU4bftQy5UjE="; 24 + vendorHash = "sha256-mpzWKJwE5ghySiiOdJO81w8Jvk1k34lb3Gvj+p5U1FU="; 25 25 26 26 ldflags = [ 27 27 ''-X "github.com/redpanda-data/redpanda/src/go/rpk/pkg/cli/cmd/version.version=${version}"''
+3 -3
pkgs/servers/sftpgo/default.nix
··· 7 7 8 8 buildGoModule rec { 9 9 pname = "sftpgo"; 10 - version = "2.5.6"; 10 + version = "2.6.0"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "drakkan"; 14 14 repo = "sftpgo"; 15 15 rev = "refs/tags/v${version}"; 16 - hash = "sha256-ea4DbPwi2tcRgmbNsZKKUOVkp6vjRbr679yAP7znNUc="; 16 + hash = "sha256-HsSBW30qSU3SRyexk2tRjY1FQcBsa70fK3UuT+Gdtm0="; 17 17 }; 18 18 19 - vendorHash = "sha256-8TBDaDBLy+82BwsaLncDknVIrauF0eop9e2ZhwcLmIs="; 19 + vendorHash = "sha256-BMwEDsXzk8ExygKreWmtkNvhlg3+YU9KcY1pp+9XffI="; 20 20 21 21 ldflags = [ 22 22 "-s"
+2 -2
pkgs/servers/sql/percona-server/8.0.x.nix pkgs/servers/sql/percona-server/lts.nix
··· 6 6 }: 7 7 8 8 stdenv.mkDerivation (finalAttrs: { 9 - pname = "percona-server"; 9 + pname = "percona-server_lts"; 10 10 version = "8.0.36-28"; 11 11 12 12 src = fetchurl { ··· 80 80 connector-c = finalAttrs.finalPackage; 81 81 server = finalAttrs.finalPackage; 82 82 mysqlVersion = lib.versions.majorMinor finalAttrs.version; 83 - tests = nixosTests.mysql.percona-server_8_0; 83 + tests = nixosTests.mysql.percona-server_lts; 84 84 }; 85 85 86 86 meta = with lib; {
+15
pkgs/servers/sql/percona-server/default.nix
··· 1 + pkgs: { 2 + percona-server_lts = pkgs.callPackage ./lts.nix { 3 + inherit (pkgs.darwin) cctools developer_cmds DarwinTools; 4 + inherit (pkgs.darwin.apple_sdk.frameworks) CoreServices; 5 + boost = pkgs.boost177; # Configure checks for specific version. 6 + icu = pkgs.icu69; 7 + protobuf = pkgs.protobuf_21; 8 + }; 9 + percona-server_innovation = pkgs.callPackage ./innovation.nix { 10 + inherit (pkgs.darwin) cctools developer_cmds DarwinTools; 11 + inherit (pkgs.darwin.apple_sdk.frameworks) CoreServices; 12 + # newer versions cause linking failures against `libabsl_spinlock_wait` 13 + protobuf = pkgs.protobuf_21; 14 + }; 15 + }
+112
pkgs/servers/sql/percona-server/innovation.nix
··· 1 + { lib, stdenv, fetchurl, bison, cmake, pkg-config 2 + , boost, icu, libedit, libevent, lz4, ncurses, openssl, perl, protobuf, re2, readline, zlib, zstd, libfido2 3 + , numactl, cctools, CoreServices, developer_cmds, libtirpc, rpcsvc-proto, curl, DarwinTools, nixosTests 4 + , systemd 5 + # Percona-specific deps 6 + , coreutils, cyrus_sasl, gnumake, openldap 7 + # optional: different malloc implementations 8 + , withJemalloc ? false, withTcmalloc ? false, jemalloc, gperftools 9 + }: 10 + 11 + assert !(withJemalloc && withTcmalloc); 12 + 13 + 14 + stdenv.mkDerivation (finalAttrs: { 15 + pname = "percona-server_innovation"; 16 + version = "8.3.0-1"; 17 + 18 + src = fetchurl { 19 + url = "https://downloads.percona.com/downloads/percona-distribution-mysql-ps/percona-distribution-mysql-ps-${builtins.head (lib.strings.split "-" finalAttrs.version)}/source/tarball/percona-server-${finalAttrs.version}.tar.gz"; 20 + hash = "sha256-GeuifzqCkStmb4qYa8147XBHvMogYwfsn0FyHdO4WEg"; 21 + }; 22 + 23 + nativeBuildInputs = [ bison cmake pkg-config ] 24 + ++ lib.optionals (!stdenv.isDarwin) [ rpcsvc-proto ]; 25 + 26 + patches = [ 27 + ./no-force-outline-atomics.patch # Do not force compilers to turn on -moutline-atomics switch 28 + ]; 29 + 30 + ## NOTE: MySQL upstream frequently twiddles the invocations of libtool. When updating, you might proactively grep for libtool references. 31 + postPatch = '' 32 + substituteInPlace cmake/libutils.cmake --replace /usr/bin/libtool libtool 33 + substituteInPlace cmake/os/Darwin.cmake --replace /usr/bin/libtool libtool 34 + # The rocksdb setup script is called with `env -i` and cannot find anything in PATH. 35 + patchShebangs storage/rocksdb/get_rocksdb_files.sh 36 + substituteInPlace storage/rocksdb/get_rocksdb_files.sh --replace mktemp ${coreutils}/bin/mktemp 37 + substituteInPlace storage/rocksdb/get_rocksdb_files.sh --replace "rm $MKFILE" "${coreutils}/bin/rm $MKFILE" 38 + substituteInPlace storage/rocksdb/get_rocksdb_files.sh --replace "make --" "${gnumake}/bin/make --" 39 + ''; 40 + 41 + buildInputs = [ 42 + boost (curl.override { inherit openssl; }) icu libedit libevent lz4 ncurses openssl protobuf re2 readline zlib 43 + zstd libfido2 openldap perl cyrus_sasl 44 + ] ++ lib.optionals stdenv.isLinux [ 45 + numactl libtirpc systemd 46 + ] ++ lib.optionals stdenv.isDarwin [ 47 + cctools CoreServices developer_cmds DarwinTools 48 + ] 49 + ++ lib.optional (stdenv.isLinux && withJemalloc) jemalloc 50 + ++ lib.optional (stdenv.isLinux && withTcmalloc) gperftools; 51 + 52 + outputs = [ "out" "static" ]; 53 + 54 + cmakeFlags = [ 55 + # Percona-specific flags. 56 + "-DPORTABLE=1" 57 + "-DWITH_LDAP=system" 58 + "-DROCKSDB_DISABLE_AVX2=1" 59 + "-DROCKSDB_DISABLE_MARCH_NATIVE=1" 60 + 61 + # Flags taken from mysql package. 62 + "-DFORCE_UNSUPPORTED_COMPILER=1" # To configure on Darwin. 63 + "-DWITH_ROUTER=OFF" # It may be packaged separately. 64 + "-DWITH_SYSTEM_LIBS=ON" 65 + "-DWITH_UNIT_TESTS=OFF" 66 + "-DMYSQL_UNIX_ADDR=/run/mysqld/mysqld.sock" 67 + "-DMYSQL_DATADIR=/var/lib/mysql" 68 + "-DINSTALL_INFODIR=share/mysql/docs" 69 + "-DINSTALL_MANDIR=share/man" 70 + "-DINSTALL_PLUGINDIR=lib/mysql/plugin" 71 + "-DINSTALL_INCLUDEDIR=include/mysql" 72 + "-DINSTALL_DOCREADMEDIR=share/mysql" 73 + "-DINSTALL_SUPPORTFILESDIR=share/mysql" 74 + "-DINSTALL_MYSQLSHAREDIR=share/mysql" 75 + "-DINSTALL_MYSQLTESTDIR=" 76 + "-DINSTALL_DOCDIR=share/mysql/docs" 77 + "-DINSTALL_SHAREDIR=share/mysql" 78 + 79 + 80 + ] ++ lib.optionals stdenv.isLinux [ 81 + "-DWITH_SYSTEMD=1" 82 + "-DWITH_SYSTEMD_DEBUG=1" 83 + ] 84 + ++ lib.optional (stdenv.isLinux && withJemalloc) "-DWITH_JEMALLOC=1" 85 + ++ lib.optional (stdenv.isLinux && withTcmalloc) "-DWITH_TCMALLOC=1"; 86 + 87 + postInstall = '' 88 + moveToOutput "lib/*.a" $static 89 + so=${stdenv.hostPlatform.extensions.sharedLibrary} 90 + ln -s libmysqlclient$so $out/lib/libmysqlclient_r$so 91 + ''; 92 + 93 + passthru = { 94 + client = finalAttrs.finalPackage; 95 + connector-c = finalAttrs.finalPackage; 96 + server = finalAttrs.finalPackage; 97 + mysqlVersion = lib.versions.majorMinor finalAttrs.version; 98 + tests = nixosTests.mysql.percona-server_innovation; 99 + }; 100 + 101 + 102 + meta = with lib; { 103 + homepage = "https://www.percona.com/software/mysql-database/percona-server"; 104 + description = '' 105 + A free, fully compatible, enhanced, open source drop-in replacement for 106 + MySQL® that provides superior performance, scalability and instrumentation. 107 + ''; 108 + license = licenses.gpl2; 109 + maintainers = teams.flyingcircus.members; 110 + platforms = platforms.unix; 111 + }; 112 + })
+5 -2
pkgs/servers/sql/postgresql/ext/pg_libversion.nix
··· 1 1 { lib 2 2 , stdenv 3 3 , fetchFromGitHub 4 + , gitUpdater 4 5 , pkg-config 5 6 , postgresql 6 7 , libversion ··· 8 9 9 10 stdenv.mkDerivation (finalAttrs: { 10 11 pname = "pg_libversion"; 11 - version = "2.0.0"; 12 + version = "2.0.1"; 12 13 13 14 src = fetchFromGitHub { 14 15 owner = "repology"; 15 16 repo = "postgresql-libversion"; 16 17 rev = finalAttrs.version; 17 - hash = "sha256-60HX/Y+6QIzqmDnjNpgO4GCbDhNfeek9myMWoYLdrAA="; 18 + hash = "sha256-3nqXaBwPRUSo6wUY5YMjJ/nFFKmhgP1zFKapD+RqSDw="; 18 19 }; 19 20 20 21 nativeBuildInputs = [ ··· 35 36 36 37 runHook postInstall 37 38 ''; 39 + 40 + passthru.updateScript = gitUpdater { }; 38 41 39 42 meta = with lib; { 40 43 description = "PostgreSQL extension with support for version string comparison";
+2 -2
pkgs/servers/tailscale/default.nix
··· 12 12 }: 13 13 14 14 let 15 - version = "1.66.1"; 15 + version = "1.66.3"; 16 16 in 17 17 buildGoModule { 18 18 pname = "tailscale"; ··· 22 22 owner = "tailscale"; 23 23 repo = "tailscale"; 24 24 rev = "v${version}"; 25 - hash = "sha256-1Yt8W/UanAghaElGiD+z7BKeV/Ge+OElA+B9yBnu3vw="; 25 + hash = "sha256-dFyXOoN4YZfN3G1XfHK1/8M1ROwW9Q9eCl/NjTdfD4Q="; 26 26 }; 27 27 vendorHash = "sha256-Hd77xy8stw0Y6sfk3/ItqRIbM/349M/4uf0iNy1xJGw="; 28 28
+2 -2
pkgs/servers/tracing/tempo/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "tempo"; 5 - version = "2.4.1"; 5 + version = "2.4.2"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "grafana"; 9 9 repo = "tempo"; 10 10 rev = "v${version}"; 11 11 fetchSubmodules = true; 12 - hash = "sha256-OTgk4mejMSdnUV4VLiRMWPBzHrRo+wKMoCsD4O+XxLA="; 12 + hash = "sha256-n7jv9Ki3cLlPDzm9IT0XLTT8t1nlifI0+SRAV6XDJlA="; 13 13 }; 14 14 15 15 vendorHash = null;
+11 -1
pkgs/tools/admin/fits-cloudctl/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "fits-cloudctl"; 8 - version = "0.12.19"; 8 + version = "0.12.19"; # also update these 3 vars: 9 + gitversion = "tags/v0.12.19-0-g0a0d89a"; # git describe --long --all 10 + gitsha = "0a0d89a8"; # git rev-parse --short=8 HEAD 11 + gittime = "2024-05-15T17:34:46+02:00"; # date --iso-8601=seconds 9 12 10 13 src = fetchFromGitHub { 11 14 owner = "fi-ts"; ··· 15 18 }; 16 19 17 20 vendorHash = "sha256-mK10DxDUrEkCdumq6MM6h7B8C8P1hGE466ko3yj1kto="; 21 + 22 + ldflags = [ 23 + "-X github.com/metal-stack/v.Version=${version}" 24 + "-X github.com/metal-stack/v.Revision=${gitversion}" 25 + "-X github.com/metal-stack/v.GitSHA1=${gitsha}" 26 + "-X github.com/metal-stack/v.BuildDate=${gittime}" 27 + ]; 18 28 19 29 meta = with lib; { 20 30 description = "Command-line client for FI-TS Finance Cloud Native services";
+2 -2
pkgs/tools/admin/gimme-aws-creds/default.nix
··· 25 25 in 26 26 python.pkgs.buildPythonApplication rec { 27 27 pname = "gimme-aws-creds"; 28 - version = "2.8.1.1"; # N.B: if you change this, check if overrides are still up-to-date 28 + version = "2.8.2"; # N.B: if you change this, check if overrides are still up-to-date 29 29 format = "setuptools"; 30 30 31 31 src = fetchFromGitHub { 32 32 owner = "Nike-Inc"; 33 33 repo = "gimme-aws-creds"; 34 34 rev = "v${version}"; 35 - hash = "sha256-vnTMFZgv2tW7b4Ga6B9TZcE/xTwPUUGZ3WP943FPpEc="; 35 + hash = "sha256-fsFYcfbLeYV6tpOGgNrFmYjcUAmdsx5zwUbvcctwFVs="; 36 36 }; 37 37 38 38 nativeBuildInputs = with python.pkgs; [
+1 -1
pkgs/tools/audio/pulsemixer/default.nix
··· 22 22 23 23 postFixup = '' 24 24 substituteInPlace "$out/bin/pulsemixer" \ 25 - --replace "libpulse.so.0" "$libpulseaudio/lib/libpulse.so.0" 25 + --replace-fail "libpulse.so.0" "$libpulseaudio/lib/libpulse${stdenv.hostPlatform.extensions.sharedLibrary}" 26 26 ''; 27 27 28 28 meta = with lib; {
+11 -2
pkgs/tools/backup/borgmatic/default.nix
··· 3 3 , borgbackup 4 4 , coreutils 5 5 , python3Packages 6 + , fetchpatch 6 7 , fetchPypi 7 8 , systemd 8 9 , enableSystemd ? lib.meta.availableOn stdenv.hostPlatform systemd ··· 13 14 14 15 python3Packages.buildPythonApplication rec { 15 16 pname = "borgmatic"; 16 - version = "1.8.10"; 17 + version = "1.8.11"; 17 18 18 19 src = fetchPypi { 19 20 inherit pname version; 20 - sha256 = "sha256-hR2q49gCD9BZsk+jQ90EfKkkq7mX9qAO+gRsvdnuDec="; 21 + sha256 = "sha256-Sgj15etVx8nnk0AZv+GzWscSqfqdC7+1wBE6gF/0aL0="; 21 22 }; 23 + 24 + patches = [ 25 + (fetchpatch { 26 + name = "prevent-network-access-in-tests.patch"; 27 + url = "https://projects.torsion.org/borgmatic-collective/borgmatic/pulls/869.patch"; 28 + hash = "sha256-jOo3LjgvJtyTaRKZX1wfnKNdw975hVekBkKfK4mJFAc="; 29 + }) 30 + ]; 22 31 23 32 nativeCheckInputs = with python3Packages; [ flexmock pytestCheckHook pytest-cov ] ++ passthru.optional-dependencies.apprise; 24 33
pkgs/tools/backup/percona-xtrabackup/8_0.nix pkgs/tools/backup/percona-xtrabackup/lts.nix
+6
pkgs/tools/backup/percona-xtrabackup/default.nix
··· 1 + pkgs: { 2 + percona-xtrabackup_lts = pkgs.callPackage ./lts.nix { 3 + boost = pkgs.boost177; 4 + }; 5 + percona-xtrabackup_innovation = pkgs.callPackage ./innovation.nix { }; 6 + }
+5 -3
pkgs/tools/backup/percona-xtrabackup/generic.nix
··· 5 5 , version, hash, fetchSubmodules ? false, extraPatches ? [], extraPostInstall ? "", ... 6 6 }: 7 7 8 - stdenv.mkDerivation rec { 8 + stdenv.mkDerivation (finalAttrs: { 9 9 pname = "percona-xtrabackup"; 10 10 inherit version; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "percona"; 14 14 repo = "percona-xtrabackup"; 15 - rev = "${pname}-${version}"; 15 + rev = "${finalAttrs.pname}-${finalAttrs.version}"; 16 16 inherit hash fetchSubmodules; 17 17 }; 18 18 ··· 47 47 rm -r "$out"/lib/plugin/debug 48 48 '' + extraPostInstall; 49 49 50 + passthru.mysqlVersion = lib.versions.majorMinor finalAttrs.version; 51 + 50 52 meta = with lib; { 51 53 description = "Non-blocking backup tool for MySQL"; 52 54 homepage = "http://www.percona.com/software/percona-xtrabackup"; ··· 54 56 platforms = platforms.linux; 55 57 maintainers = teams.flyingcircus.members ++ [ maintainers.izorkin ]; 56 58 }; 57 - } 59 + })
+15
pkgs/tools/backup/percona-xtrabackup/innovation.nix
··· 1 + { callPackage, ... } @ args: 2 + 3 + callPackage ./generic.nix (args // { 4 + version = "8.3.0-1"; 5 + hash = "sha256-qZM2AFhpwrN0BR+DdozYn7s2I+c1tWpD5QvppTEfGEY="; 6 + 7 + # includes https://github.com/Percona-Lab/libkmip.git 8 + fetchSubmodules = true; 9 + 10 + extraPatches = [ 11 + ]; 12 + 13 + extraPostInstall = '' 14 + ''; 15 + })
pkgs/tools/inputmethods/fusuma/Gemfile pkgs/by-name/fu/fusuma/Gemfile
+7 -5
pkgs/tools/inputmethods/fusuma/Gemfile.lock pkgs/by-name/fu/fusuma/Gemfile.lock
··· 1 1 GEM 2 2 remote: https://rubygems.org/ 3 3 specs: 4 - fusuma (3.3.1) 5 - fusuma-plugin-appmatcher (0.6.1) 4 + fusuma (3.5.0) 5 + fusuma-plugin-appmatcher (0.7.1) 6 6 fusuma (>= 3.0) 7 7 rexml 8 8 ruby-dbus 9 - fusuma-plugin-keypress (0.9.0) 9 + fusuma-plugin-keypress (0.11.0) 10 10 fusuma (>= 3.1) 11 11 fusuma-plugin-sendkey (0.10.1) 12 12 fusuma (>= 3.1) ··· 14 14 fusuma-plugin-wmctrl (1.3.1) 15 15 fusuma (>= 3.1) 16 16 revdev (0.2.1) 17 - rexml (3.2.6) 17 + rexml (3.2.8) 18 + strscan (>= 3.0.9) 18 19 ruby-dbus (0.23.1) 19 20 rexml 21 + strscan (3.1.0) 20 22 21 23 PLATFORMS 22 24 ruby ··· 29 31 fusuma-plugin-wmctrl 30 32 31 33 BUNDLED WITH 32 - 2.4.22 34 + 2.5.9
pkgs/tools/inputmethods/fusuma/default.nix pkgs/by-name/fu/fusuma/package.nix
+19 -8
pkgs/tools/inputmethods/fusuma/gemset.nix pkgs/by-name/fu/fusuma/gemset.nix
··· 4 4 platforms = []; 5 5 source = { 6 6 remotes = ["https://rubygems.org"]; 7 - sha256 = "13pbvmkjriq6myynv4gfismiqa9y7bfbvvrfcv25670l4zyiakhm"; 7 + sha256 = "0vxlfda4mgff9kindrmr47xvn6b591hzvzzsx2y88zq20sn340vy"; 8 8 type = "gem"; 9 9 }; 10 - version = "3.3.1"; 10 + version = "3.5.0"; 11 11 }; 12 12 fusuma-plugin-appmatcher = { 13 13 dependencies = ["fusuma" "rexml" "ruby-dbus"]; ··· 15 15 platforms = []; 16 16 source = { 17 17 remotes = ["https://rubygems.org"]; 18 - sha256 = "1qkir4a657znq0fnx91lik7bw5kyq54jwhiy2zrlplln78xs5yai"; 18 + sha256 = "1cj3d1yz3jdxmapgk8wv5ra57nyb278x2fjxdllc0gqdfih6pxhq"; 19 19 type = "gem"; 20 20 }; 21 - version = "0.6.1"; 21 + version = "0.7.1"; 22 22 }; 23 23 fusuma-plugin-keypress = { 24 24 dependencies = ["fusuma"]; ··· 26 26 platforms = []; 27 27 source = { 28 28 remotes = ["https://rubygems.org"]; 29 - sha256 = "0as95haqa943i740xs7czcaibb8lvy4gn6kr8nbldq20nly64bih"; 29 + sha256 = "16csdj695y9b8bvl65cby57fsyfr30pb9qq6h0wyqrxily6cn6il"; 30 30 type = "gem"; 31 31 }; 32 - version = "0.9.0"; 32 + version = "0.11.0"; 33 33 }; 34 34 fusuma-plugin-sendkey = { 35 35 dependencies = ["fusuma" "revdev"]; ··· 64 64 version = "0.2.1"; 65 65 }; 66 66 rexml = { 67 + dependencies = ["strscan"]; 67 68 groups = ["default"]; 68 69 platforms = []; 69 70 source = { 70 71 remotes = ["https://rubygems.org"]; 71 - sha256 = "05i8518ay14kjbma550mv0jm8a6di8yp5phzrd8rj44z9qnrlrp0"; 72 + sha256 = "0d8ivcirrrxpkpjc1c835wknc9s2fl54xpw08s177yfrh5ish209"; 72 73 type = "gem"; 73 74 }; 74 - version = "3.2.6"; 75 + version = "3.2.8"; 75 76 }; 76 77 ruby-dbus = { 77 78 dependencies = ["rexml"]; ··· 83 84 type = "gem"; 84 85 }; 85 86 version = "0.23.1"; 87 + }; 88 + strscan = { 89 + groups = ["default"]; 90 + platforms = []; 91 + source = { 92 + remotes = ["https://rubygems.org"]; 93 + sha256 = "0mamrl7pxacbc79ny5hzmakc9grbjysm3yy6119ppgsg44fsif01"; 94 + type = "gem"; 95 + }; 96 + version = "3.1.0"; 86 97 }; 87 98 }
+3 -1
pkgs/tools/misc/dtool/default.nix
··· 16 16 hash = "sha256-m4H+ANwEbK6vGW3oIVZqnqvMiAKxNJf2TLIGh/G6AU4="; 17 17 }; 18 18 19 - cargoHash = "sha256-r8r3f4yKMQgjtB3j4qE7cqQL18nIqAGPO5RsFErqh2c="; 19 + cargoHash = "sha256-o5Xvc0tnoUgfp5k7EqVuEH9Zyo3C+A+mVqPhMtZCYKw="; 20 20 21 21 buildInputs = lib.optionals stdenv.isDarwin [ 22 22 darwin.apple_sdk.frameworks.Security 23 23 ]; 24 + # FIXME: remove patch when upstream version of rustc-serialize is updated 25 + cargoPatches = [ ./rustc-serialize-fix.patch ]; 24 26 25 27 checkType = "debug"; 26 28
+16
pkgs/tools/misc/dtool/rustc-serialize-fix.patch
··· 1 + diff --git a/Cargo.lock b/Cargo.lock 2 + index b1cc23695b30..ffdeb1c90618 100644 3 + --- a/Cargo.lock 4 + +++ b/Cargo.lock 5 + @@ -996,9 +996,9 @@ dependencies = [ 6 + 7 + [[package]] 8 + name = "rustc-serialize" 9 + -version = "0.3.24" 10 + +version = "0.3.25" 11 + source = "registry+https://github.com/rust-lang/crates.io-index" 12 + -checksum = "dcf128d1287d2ea9d80910b5f1120d0b8eede3fbf1abe91c40d39ea7d51e6fda" 13 + +checksum = "fe834bc780604f4674073badbad26d7219cadfb4a2275802db12cbae17498401" 14 + 15 + [[package]] 16 + name = "rustix"
+3 -3
pkgs/tools/misc/grizzly/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "grizzly"; 8 - version = "0.4.1"; 8 + version = "0.4.2"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "grafana"; 12 12 repo = pname; 13 13 rev = "v${version}"; 14 - hash = "sha256-IM7NrykF2Fiudijo5q0I/FewvS/rs3lzSpvzc6dl5Ds="; 14 + hash = "sha256-UOUBck1GrG3ijUpE3jPaFcC/KtlObaR38u3St8NToTk="; 15 15 }; 16 16 17 - vendorHash = "sha256-GrzMfOwNEjVQd1uCijcsfdIDO6UPzuHEDnJExupB9Jg="; 17 + vendorHash = "sha256-lioFmaFzqaxN1wnYJaoHA54to1xGZjaLGaqAFIfTaTs="; 18 18 19 19 subPackages = [ "cmd/grr" ]; 20 20
+15 -16
pkgs/tools/misc/lektor/default.nix
··· 23 23 in 24 24 python.pkgs.buildPythonApplication rec { 25 25 pname = "lektor"; 26 - version = "3.4.0b8"; 26 + version = "3.4.0b12"; 27 27 format = "pyproject"; 28 28 29 29 src = fetchFromGitHub { 30 30 owner = "lektor"; 31 31 repo = pname; 32 32 rev = "refs/tags/v${version}"; 33 - hash = "sha256-FtmRW4AS11zAX2jvGY8XTsPrN3mhHkIWoFY7sXmqG/U="; 33 + # fix for case-insensitive filesystems 34 + postFetch = '' 35 + rm -f $out/tests/demo-project/content/icc-profile-test/{LICENSE,license}.txt 36 + ''; 37 + hash = "sha256-y0/fYuiIB/O5tsYKjzOPnCafOIZCn4Z5OITPMcnHd/M="; 34 38 }; 35 39 36 40 npmDeps = fetchNpmDeps { 37 - src = "${src}/frontend"; 38 - hash = "sha256-Z7LP9rrVSzKoLITUarsnRbrhIw7W7TZSZUgV/OT+m0M="; 41 + src = "${src}/${npmRoot}"; 42 + hash = "sha256-LXe5/u4nAGig8RSu6r8Qsr3p3Od8eoMxukW8Z4HkJ44="; 39 43 }; 40 44 41 45 npmRoot = "frontend"; ··· 50 54 propagatedBuildInputs = with python.pkgs; [ 51 55 babel 52 56 click 53 - exifread 54 - filetype 55 57 flask 56 58 inifile 57 59 jinja2 ··· 71 73 pytest-click 72 74 pytest-mock 73 75 pytestCheckHook 74 - pythonRelaxDepsHook 75 - ]; 76 - 77 - pythonRelaxDeps = [ 78 - "werkzeug" 79 76 ]; 80 77 81 78 postInstall = '' ··· 90 87 # Tests require network access 91 88 "test_path_installed_plugin_is_none" 92 89 "test_VirtualEnv_run_pip_install" 93 - # expects FHS paths 94 - "test_VirtualEnv_executable" 95 90 ]; 96 91 97 - meta = with lib; { 92 + postCheck = '' 93 + make test-js 94 + ''; 95 + 96 + meta = { 98 97 description = "A static content management system"; 99 98 homepage = "https://www.getlektor.com/"; 100 99 changelog = "https://github.com/lektor/lektor/blob/v${version}/CHANGES.md"; 101 - license = licenses.bsd0; 100 + license = lib.licenses.bsd3; 102 101 mainProgram = "lektor"; 103 - maintainers = with maintainers; [ ]; 102 + maintainers = [ ]; 104 103 }; 105 104 }
+2 -2
pkgs/tools/misc/pspg/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "pspg"; 5 - version = "5.8.5"; 5 + version = "5.8.6"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "okbob"; 9 9 repo = pname; 10 10 rev = version; 11 - sha256 = "sha256-Lri675TEIVWp8iEQI1oeSd9xNCVtzlUcK2AEJHmWNjs="; 11 + sha256 = "sha256-UgJHsniDbfAcohnrYYUUJ4OhL2Fr65kGu26dsw9vYyM="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ pkg-config installShellFiles ];
+3 -3
pkgs/tools/misc/starship/default.nix
··· 13 13 14 14 rustPlatform.buildRustPackage rec { 15 15 pname = "starship"; 16 - version = "1.18.2"; 16 + version = "1.19.0"; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "starship"; 20 20 repo = "starship"; 21 21 rev = "v${version}"; 22 - hash = "sha256-84FyKhSP2EZZkQJRhNPTYs2BYppylk50GiIck8pN3l4="; 22 + hash = "sha256-3IO9hHuhzJsCHU/6BA5ylEKQI2ik6ZiRul/iO/vzii4="; 23 23 }; 24 24 25 25 nativeBuildInputs = [ installShellFiles cmake ]; ··· 44 44 cp docs/public/presets/toml/*.toml $presetdir 45 45 ''; 46 46 47 - cargoHash = "sha256-Fu8KfWHCQUPSiT1aMSS0Il/S02YXdEqKMA2nsliUu8E="; 47 + cargoHash = "sha256-zX04gX40dFYsK+R6gafHNtDevzrWiGufMwrGfhqYVG0="; 48 48 49 49 nativeCheckInputs = [ git ]; 50 50
+2 -2
pkgs/tools/misc/tbls/default.nix
··· 9 9 10 10 buildGoModule rec { 11 11 pname = "tbls"; 12 - version = "1.74.3"; 12 + version = "1.75.0"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "k1LoW"; 16 16 repo = "tbls"; 17 17 rev = "v${version}"; 18 - hash = "sha256-tS/sdX74Fr6arZh7/JiNFz1grjPMVZfg8C1VvqxsbYM="; 18 + hash = "sha256-8bfDahJw+ZUSNqMiKDqqyX2jVPd6Wg3JsD/ATAW/oF4="; 19 19 }; 20 20 21 21 vendorHash = "sha256-NafHcWP9xJX2hy8i1TKtBi54cXDKgoxbgwLQjYRBcjU=";
+12 -5
pkgs/tools/misc/wakatime/default.nix pkgs/by-name/wa/wakatime/package.nix
··· 1 - { lib, buildGoModule, fetchFromGitHub, testers, wakatime }: 1 + { 2 + lib, 3 + buildGo122Module, 4 + fetchFromGitHub, 5 + testers, 6 + wakatime, 7 + }: 2 8 3 - buildGoModule rec { 9 + buildGo122Module rec { 4 10 pname = "wakatime"; 5 - version = "1.73.0"; 11 + version = "1.90.0"; 6 12 7 13 src = fetchFromGitHub { 8 14 owner = "wakatime"; 9 15 repo = "wakatime-cli"; 10 16 rev = "v${version}"; 11 - hash = "sha256-EUZgYRsQRqtp0yiqNYex+ILSZwGEdO4BhciEgUVdui4="; 17 + hash = "sha256-A2YrDrXmMR4BJUOYuo3h3Pa5HqyYSoDr/qdH54INU3w="; 12 18 }; 13 19 14 - vendorHash = "sha256-SlYYrlRDBvhNm2BxemK9HzzsqM/RGH/sDQXpoGEY8rw="; 20 + vendorHash = "sha256-pejrUFcv9c4ZAE3Cuw7uytc1T2pr7SOZNJ/Wr8K+fas="; 15 21 16 22 ldflags = [ 17 23 "-s" ··· 28 34 "TestSendHeartbeats_ExtraHeartbeats" 29 35 "TestSendHeartbeats_IsUnsavedEntity" 30 36 "TestSendHeartbeats_NonExistingExtraHeartbeatsEntity" 37 + "TestFileExperts_Err(Auth|Api|BadRequest)" 31 38 32 39 # Flaky tests 33 40 "TestLoadParams_ApiKey_FromVault_Err_Darwin"
+2 -2
pkgs/tools/networking/bgpq4/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "bgpq4"; 5 - version = "1.13"; 5 + version = "1.15"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "bgp"; 9 9 repo = pname; 10 10 rev = version; 11 - sha256 = "sha256-Kw1Y9g2ItclDYYoZC2FTdBTec7zoM/N3Vk4zM8EVBR0="; 11 + sha256 = "sha256-3mfFj9KoQbDe0gH7Le03N1Yds/bTEmY+OiXNaOtHkpY="; 12 12 }; 13 13 14 14 nativeBuildInputs = [
+9 -6
pkgs/tools/networking/goflow2/default.nix pkgs/by-name/go/goflow2/package.nix
··· 3 3 buildGoModule, 4 4 fetchFromGitHub, 5 5 }: 6 - buildGoModule rec { 7 - pname = "goflow2"; 6 + let 8 7 version = "2.1.3"; 8 + in 9 + buildGoModule { 10 + pname = "goflow2"; 11 + inherit version; 9 12 10 13 src = fetchFromGitHub { 11 14 owner = "netsampler"; 12 - repo = pname; 15 + repo = "goflow2"; 13 16 rev = "v${version}"; 14 17 hash = "sha256-wtvBkk+Y4koGDGN+N/w4FsdejgpCIio0g2QV35Pr/fo="; 15 18 }; ··· 22 25 23 26 vendorHash = "sha256-qcWeIg278V2bgFGpWwUT5JCblxfBv0/gWV1oXul/nCQ="; 24 27 25 - meta = with lib; { 28 + meta = { 26 29 description = "High performance sFlow/IPFIX/NetFlow Collector"; 27 30 homepage = "https://github.com/netsampler/goflow2"; 28 - license = licenses.bsd3; 29 - maintainers = with maintainers; [ isabelroses ]; 31 + license = lib.licenses.bsd3; 32 + maintainers = with lib.maintainers; [ isabelroses ]; 30 33 }; 31 34 }
+2 -2
pkgs/tools/networking/netbird/default.nix
··· 31 31 in 32 32 buildGoModule rec { 33 33 pname = "netbird"; 34 - version = "0.27.5"; 34 + version = "0.27.7"; 35 35 36 36 src = fetchFromGitHub { 37 37 owner = "netbirdio"; 38 38 repo = pname; 39 39 rev = "v${version}"; 40 - hash = "sha256-DWtTCx+vzOE4yE9jAUxB1oF1UubIXK4f7wptJY89az0="; 40 + hash = "sha256-byUmgttd0v47G1Powww/YtXOw7TT6Fe2uoOuBOp2l78="; 41 41 }; 42 42 43 43 vendorHash = "sha256-LPq6ovulE+xdoRaQpwA0mNqw3kFxMs/am1ucO8UmDtU=";
+2 -2
pkgs/tools/networking/networkmanager/l2tp/default.nix
··· 22 22 stdenv.mkDerivation rec { 23 23 name = "${pname}${lib.optionalString withGnome "-gnome"}-${version}"; 24 24 pname = "NetworkManager-l2tp"; 25 - version = "1.20.14"; 25 + version = "1.20.16"; 26 26 27 27 src = fetchFromGitHub { 28 28 owner = "nm-l2tp"; 29 29 repo = "network-manager-l2tp"; 30 30 rev = version; 31 - hash = "sha256-PTDr2M88ZC3Y92zsz/GiSxavd8MdfC9lwxep0+Wjgjk="; 31 + hash = "sha256-78TOx3UnAF02UfZ7cWhPKv9bhJCq5UmAMrwd5xUnVrg="; 32 32 }; 33 33 34 34 patches = [
+2 -2
pkgs/tools/networking/nzbget/default.nix
··· 19 19 20 20 stdenv.mkDerivation (finalAttrs: { 21 21 pname = "nzbget"; 22 - version = "24.0"; 22 + version = "24.1"; 23 23 24 24 src = fetchFromGitHub { 25 25 owner = "nzbgetcom"; 26 26 repo = "nzbget"; 27 27 rev = "v${finalAttrs.version}"; 28 - hash = "sha256-vEtbf4y3Jc69FrEzGE34Xt/4oDmZlWTbwispvoypRI0="; 28 + hash = "sha256-HovfnTsgu07/lp/spI+iA8H7lOj0Qyrri2MOJKyMKHQ="; 29 29 }; 30 30 31 31 nativeBuildInputs = [ autoreconfHook pkg-config ];
+2 -2
pkgs/tools/networking/speedtest-go/default.nix
··· 5 5 }: 6 6 buildGoModule rec { 7 7 pname = "speedtest-go"; 8 - version = "1.7.5"; 8 + version = "1.7.7"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "showwin"; 12 12 repo = pname; 13 13 rev = "refs/tags/v${version}"; 14 - hash = "sha256-8YN7k7sP0S3MIArUfwDYMQvcCKNTxauQjevyOoisAuc="; 14 + hash = "sha256-8LMbaa3D1ODjySx69U0CGWphG8CQswWlQsqW6mXPy6o="; 15 15 }; 16 16 17 17 vendorHash = "sha256-wQqAX7YuxxTiMWmV9LRoXunGMMzs12UyHbf4VvbQF1E=";
+2 -2
pkgs/tools/networking/swagger-codegen3/default.nix
··· 1 1 { lib, stdenv, fetchurl, jre, makeWrapper, testers, swagger-codegen3 }: 2 2 3 3 stdenv.mkDerivation rec { 4 - version = "3.0.55"; 4 + version = "3.0.56"; 5 5 pname = "swagger-codegen"; 6 6 7 7 jarfilename = "${pname}-cli-${version}.jar"; ··· 12 12 13 13 src = fetchurl { 14 14 url = "mirror://maven/io/swagger/codegen/v3/${pname}-cli/${version}/${jarfilename}"; 15 - sha256 = "sha256-xiPeWblDr6P405o4ik0gWG2GfBPC/eGtEyF6XCRFHGg="; 15 + sha256 = "sha256-i2XC7fFfsO2OIE4NsO/WiqSHiYCXJZr6naxxAw/jkt0="; 16 16 }; 17 17 18 18 dontUnpack = true;
+2 -2
pkgs/tools/networking/trurl/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "trurl"; 5 - version = "0.12"; 5 + version = "0.13"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "curl"; 9 9 repo = pname; 10 10 rev = "${pname}-${version}"; 11 - hash = "sha256-r+z+7aE/frr1qWaBXyyO2L+aNa8CnhRqLg/jwwamIPg="; 11 + hash = "sha256-TkYZk4SoGAc0dxtxil4FjEhA53M+/dRmhc2kJfxWze8="; 12 12 }; 13 13 14 14 outputs = [ "out" "dev" "man" ];
+1 -1
pkgs/tools/nix/npins/default.nix
··· 19 19 version = src.version; 20 20 src = passthru.mkSource sources.npins; 21 21 22 - cargoSha256 = "sha256-eySVpmCVWBJfyAkTQv+LqojWMO/3r6kBYP1a4z+FYHY="; 22 + cargoSha256 = "sha256-YwMypBl+P1ygf4zUbkZlq4zPrOzf+lPOz2FLg2/xI3k="; 23 23 24 24 buildInputs = lib.optional stdenv.isDarwin (with darwin.apple_sdk.frameworks; [ Security ]); 25 25 nativeBuildInputs = [ makeWrapper ];
+4 -4
pkgs/tools/nix/npins/sources.json
··· 9 9 }, 10 10 "pre_releases": false, 11 11 "version_upper_bound": null, 12 - "version": "0.2.2", 13 - "revision": "a443c58d9c7b818aaea3c47821d7c561faef66ec", 14 - "url": "https://api.github.com/repos/andir/npins/tarball/0.2.2", 15 - "hash": "0rv6m8c9lmzkb76b682w7ax6jy8ls4l4y17wjx98jk64b74qspca" 12 + "version": "0.2.4", 13 + "revision": "181da464f7edb5e675dd96cc25d611760796a739", 14 + "url": "https://api.github.com/repos/andir/npins/tarball/0.2.4", 15 + "hash": "04155dr6i1gy2zgy49v8zm75sn1akm83l4x8h6cxvxyk1l2abn4q" 16 16 } 17 17 }, 18 18 "version": 3
+3 -3
pkgs/tools/security/cnspec/default.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "cnspec"; 9 - version = "11.4.1"; 9 + version = "11.4.2"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "mondoohq"; 13 13 repo = "cnspec"; 14 14 rev = "refs/tags/v${version}"; 15 - hash = "sha256-amTkhUChhgO4Uhv23TLFiKAkp58NqBmbyVsF/vaq/ZU="; 15 + hash = "sha256-+UKiv+0BRmzu7ER6NE9jkZlov2MC2EEmpH7XWtJkBxA="; 16 16 }; 17 17 18 18 proxyVendor = true; 19 19 20 - vendorHash = "sha256-FNl7Tu2dDWmtCO3pJRWQpSkfR7aa96AdjP6lTcj6WY4="; 20 + vendorHash = "sha256-JxyThRpr1XFYtg3Z5cF/LnGFqG9vzVpGZRNpgHpE458="; 21 21 22 22 subPackages = [ "apps/cnspec" ]; 23 23
+3 -4
pkgs/tools/security/rnp/default.nix
··· 16 16 17 17 stdenv.mkDerivation (finalAttrs: { 18 18 pname = "rnp"; 19 - version = "0.17.0"; 19 + version = "0.17.1"; 20 20 21 21 src = fetchFromGitHub { 22 22 owner = "rnpgp"; 23 23 repo = "rnp"; 24 24 rev = "v${finalAttrs.version}"; 25 - hash = "sha256-4fB7Sl9+ATrJTRnhbNG5BoW3XLxR7IP167RK96+gxj0="; 25 + hash = "sha256-jUh7BxRnB6KePCk1jIvKzXgxSmWdKlQYmxshZZY4SBQ"; 26 26 }; 27 27 28 28 buildInputs = [ zlib bzip2 json_c botan2 sexpp ]; 29 29 30 30 patches = [ 31 - ./unbundle-sexpp.patch 32 - ./sexp_sexpp_rename.patch 33 31 ]; 34 32 35 33 cmakeFlags = [ ··· 38 36 "-DBUILD_TESTING=on" 39 37 "-DDOWNLOAD_GTEST=off" 40 38 "-DDOWNLOAD_RUBYRNP=off" 39 + "-DSYSTEM_LIBSEXPP=on" 41 40 ]; 42 41 43 42 nativeBuildInputs = [ asciidoctor cmake gnupg gtest pkg-config python3 ];
-50
pkgs/tools/security/rnp/sexp_sexpp_rename.patch
··· 1 - diff --git i/src/lib/CMakeLists.txt w/src/lib/CMakeLists.txt 2 - index 086ac57d..2ce59ca1 100755 3 - --- i/src/lib/CMakeLists.txt 4 - +++ w/src/lib/CMakeLists.txt 5 - @@ -328,7 +328,7 @@ elseif (CRYPTO_BACKEND_OPENSSL) 6 - target_link_libraries(librnp-obj PRIVATE OpenSSL::Crypto) 7 - endif() 8 - 9 - -target_link_libraries(librnp-obj PRIVATE sexp) 10 - +target_link_libraries(librnp-obj PRIVATE sexpp) 11 - 12 - set_target_properties(librnp-obj PROPERTIES CXX_VISIBILITY_PRESET hidden) 13 - if (TARGET BZip2::BZip2) 14 - @@ -384,7 +384,7 @@ foreach (prop LINK_LIBRARIES INTERFACE_LINK_LIBRARIES INCLUDE_DIRECTORIES INTERF 15 - get_target_property(val librnp-obj ${prop}) 16 - if (BUILD_SHARED_LIBS) 17 - set_property(TARGET librnp-static PROPERTY ${prop} ${val}) 18 - - list(REMOVE_ITEM val "$<LINK_ONLY:sexp>") 19 - + list(REMOVE_ITEM val "$<LINK_ONLY:sexpp>") 20 - set_property(TARGET librnp PROPERTY ${prop} ${val}) 21 - else() 22 - set_property(TARGET librnp PROPERTY ${prop} ${val}) 23 - diff --git i/src/librekey/g23_sexp.hpp w/src/librekey/g23_sexp.hpp 24 - index b888680f..b062c52f 100644 25 - --- i/src/librekey/g23_sexp.hpp 26 - +++ w/src/librekey/g23_sexp.hpp 27 - @@ -27,8 +27,8 @@ 28 - #ifndef RNP_G23_SEXP_HPP 29 - #define RNP_G23_SEXP_HPP 30 - 31 - -#include "sexp/sexp.h" 32 - -#include "sexp/ext-key-format.h" 33 - +#include "sexpp/sexp.h" 34 - +#include "sexpp/ext-key-format.h" 35 - 36 - #define SXP_MAX_DEPTH 30 37 - 38 - diff --git i/src/tests/CMakeLists.txt w/src/tests/CMakeLists.txt 39 - index 7d2a6b0c..88aeaf9f 100644 40 - --- i/src/tests/CMakeLists.txt 41 - +++ w/src/tests/CMakeLists.txt 42 - @@ -176,7 +176,7 @@ target_link_libraries(rnp_tests 43 - PRIVATE 44 - librnp-static 45 - JSON-C::JSON-C 46 - - sexp 47 - + sexpp 48 - ${GTestMain} 49 - ) 50 - if (CRYPTO_BACKEND_LOWERCASE STREQUAL "openssl")
-38
pkgs/tools/security/rnp/unbundle-sexpp.patch
··· 1 - diff --git i/CMakeLists.txt w/CMakeLists.txt 2 - index bb6d40cb..30171e7c 100644 3 - --- i/CMakeLists.txt 4 - +++ w/CMakeLists.txt 5 - @@ -176,11 +176,6 @@ if (ENABLE_FUZZERS) 6 - endif() 7 - add_subdirectory(src/common) 8 - 9 - -set(WITH_SEXP_CLI OFF) 10 - -set(WITH_SEXP_TESTS OFF) 11 - -set(CMAKE_INSTALL_DEFAULT_COMPONENT_NAME development) 12 - -add_subdirectory(src/libsexp EXCLUDE_FROM_ALL) 13 - - 14 - add_subdirectory(src/lib) 15 - add_subdirectory(src/rnp) 16 - add_subdirectory(src/rnpkeys) 17 - diff --git i/src/lib/CMakeLists.txt w/src/lib/CMakeLists.txt 18 - index 086ac57d..b219ef06 100755 19 - --- i/src/lib/CMakeLists.txt 20 - +++ w/src/lib/CMakeLists.txt 21 - @@ -433,7 +433,7 @@ install(TARGETS librnp 22 - COMPONENT development 23 - ) 24 - 25 - - install(TARGETS librnp-static sexp 26 - + install(TARGETS librnp-static 27 - EXPORT rnp-targets 28 - ARCHIVE 29 - DESTINATION "${CMAKE_INSTALL_LIBDIR}" 30 - @@ -441,7 +441,7 @@ install(TARGETS librnp 31 - ) 32 - else(BUILD_SHARED_LIBS) 33 - # static libraries only 34 - -install(TARGETS librnp sexp 35 - +install(TARGETS librnp 36 - EXPORT rnp-targets 37 - ARCHIVE 38 - DESTINATION "${CMAKE_INSTALL_LIBDIR}"
+40 -15
pkgs/tools/security/ssh-mitm/default.nix
··· 1 - { lib 2 - , fetchFromGitHub 3 - , python3 1 + { 2 + lib, 3 + stdenv, 4 + fetchFromGitHub, 5 + fetchpatch, 6 + installShellFiles, 7 + python3, 4 8 }: 5 9 6 10 let 7 11 py = python3.override { 8 12 packageOverrides = self: super: { 9 13 paramiko = super.paramiko.overridePythonAttrs (oldAttrs: rec { 10 - version = "3.1.0"; 14 + version = "3.3.1"; 11 15 src = oldAttrs.src.override { 12 16 inherit version; 13 - hash = "sha256-aVD6ymgZrNMhnUrmlKI8eofuONCE9wwXJLDA27i3V2k="; 17 + hash = "sha256-ajd3qWGshtvvN1xfW41QAUoaltD9fwVKQ7yIATSw/3c="; 14 18 }; 15 - patches = [ ]; 19 + patches = [ 20 + (fetchpatch { 21 + name = "Use-pytest-s-setup_method-in-pytest-8-the-nose-method-setup-is-deprecated.patch"; 22 + url = "https://github.com/paramiko/paramiko/pull/2349.diff"; 23 + hash = "sha256-4CTIZ9BmzRdh+HOwxSzfM9wkUGJOnndctK5swqqsIvU="; 24 + }) 25 + 26 + ]; 16 27 propagatedBuildInputs = oldAttrs.propagatedBuildInputs ++ [ python3.pkgs.icecream ]; 17 28 }); 18 29 }; ··· 20 31 in 21 32 with py.pkgs; 22 33 34 + 23 35 buildPythonApplication rec { 24 36 pname = "ssh-mitm"; 25 - version = "3.0.2"; 26 - format = "setuptools"; 37 + version = "4.1.1"; 38 + pyproject = true; 27 39 28 40 src = fetchFromGitHub { 29 - owner = pname; 30 - repo = pname; 41 + owner = "ssh-mitm"; 42 + repo = "ssh-mitm"; 31 43 rev = "refs/tags/${version}"; 32 - hash = "sha256-koV7g6ZmrrXk60rrDP8BwrDZk3shiyJigQgNcb4BASE="; 44 + hash = "sha256-Uf1B7oEZyNWj4TjrLvEfFdxsvsGeMLXFsSdxGLUV4ZU="; 33 45 }; 34 46 47 + build-system = [ 48 + hatchling 49 + hatch-requirements-txt 50 + ]; 51 + 35 52 propagatedBuildInputs = [ 36 53 argcomplete 37 54 colored ··· 39 56 paramiko 40 57 pytz 41 58 pyyaml 59 + python-json-logger 42 60 rich 61 + tkinter 43 62 setuptools 44 63 sshpubkeys 45 - ]; 64 + wrapt 65 + ] ++ lib.optionals stdenv.isDarwin [ setuptools ]; 66 + # fix for darwin users 67 + 68 + nativeBuildInputs = [ installShellFiles ]; 46 69 47 70 # Module has no tests 48 71 doCheck = false; 72 + # Install man page 73 + postInstall = '' 74 + installManPage man1/* 75 + ''; 49 76 50 - pythonImportsCheck = [ 51 - "sshmitm" 52 - ]; 77 + pythonImportsCheck = [ "sshmitm" ]; 53 78 54 79 meta = with lib; { 55 80 description = "Tool for SSH security audits";
+2 -2
pkgs/tools/system/runitor/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "runitor"; 5 - version = "1.2.0"; 5 + version = "1.3.0"; 6 6 vendorHash = null; 7 7 8 8 src = fetchFromGitHub { 9 9 owner = "bdd"; 10 10 repo = "runitor"; 11 11 rev = "v${version}"; 12 - sha256 = "sha256-lL9yfiqPIIfEvjiWcG6e1NrURHJFdk4x/od/w7/i2DE="; 12 + sha256 = "sha256-9sg+ku3Qh/X/EZ2VCrvIc0pq5iyn4O8RZrO4KpkciAI="; 13 13 }; 14 14 15 15 ldflags = [
+2 -2
pkgs/tools/text/crowdin-cli/default.nix
··· 14 14 15 15 stdenv.mkDerivation rec { 16 16 pname = "crowdin-cli"; 17 - version = "3.19.3"; 17 + version = "3.19.4"; 18 18 19 19 src = fetchurl { 20 20 url = "https://github.com/crowdin/${pname}/releases/download/${version}/${pname}.zip"; 21 - hash = "sha256-9SghBr+vyXrzB+zq+J0hRMVIom4mb4x0xBSqS4EqhVM="; 21 + hash = "sha256-SD4D9wW+Tdr3mD91SJKm5K3gktH0ywQBRh0d1TMeLDs="; 22 22 }; 23 23 24 24 nativeBuildInputs = [ installShellFiles makeWrapper unzip ];
+3 -3
pkgs/tools/typesetting/hayagriva/default.nix
··· 5 5 6 6 rustPlatform.buildRustPackage rec { 7 7 pname = "hayagriva"; 8 - version = "0.5.2"; 8 + version = "0.5.3"; 9 9 10 10 src = fetchCrate { 11 11 inherit pname version; 12 - hash = "sha256-hE0Oi+0vDQGDEOYtHiPit1RrrkrlLZs20nEHOm/bp5M="; 12 + hash = "sha256-6LJRvyCgcj/m25kC26vT3aUREstXmmCIR4+LoHZgIqw="; 13 13 }; 14 14 15 - cargoHash = "sha256-WZbbjLDHYJTiuM0Lh9YfVvLTvK/jfO8fRbLqZ8XOLGg="; 15 + cargoHash = "sha256-asINO3zy4x+n7chriC8ESCe3K027xFUNi+54XtQwS0w="; 16 16 17 17 buildFeatures = [ "cli" ]; 18 18
+3 -3
pkgs/tools/typesetting/pulldown-cmark/default.nix
··· 5 5 6 6 rustPlatform.buildRustPackage rec { 7 7 pname = "pulldown-cmark"; 8 - version = "0.10.3"; 8 + version = "0.11.0"; 9 9 10 10 src = fetchCrate { 11 11 inherit pname version; 12 - hash = "sha256-lJTMMXjuam872p+3+uesODd3s3/IJFg476AssikhI48="; 12 + hash = "sha256-1RE622jAtIxv9Jk6vMdm1djaaUCyNGXHIIela+WRubI="; 13 13 }; 14 14 15 - cargoHash = "sha256-P0Wem+iEnjq+iyJYw0QqwFQ7UuG/BMKEUernykjg44o="; 15 + cargoHash = "sha256-L1KPpLw1MEYDisVdPEO16ZvSRx/ya22oDReyS+hG5t4="; 16 16 17 17 meta = { 18 18 description = "A pull parser for CommonMark written in Rust";
+3 -1
pkgs/top-level/aliases.nix
··· 970 970 pdf2xml = throw "'pdf2xml' was removed: abandoned for years."; # Added 2023-10-22 971 971 peach = asouldocs; # Added 2022-08-28 972 972 pentablet-driver = xp-pen-g430-driver; # Added 2022-06-23 973 + percona-server_8_0 = percona-server_lts; # Added 2024-05-07 974 + percona-xtrabackup_8_0 = percona-xtrabackup_lts; # Added 2024-05-07 973 975 perldevel = throw "'perldevel' has been dropped due to lack of updates in nixpkgs and lack of consistent support for devel versions by 'perl-cross' releases, use 'perl' instead"; 974 976 perldevelPackages = perldevel; 975 977 pgadmin = pgadmin4; ··· 1412 1414 inherit (stdenv) buildPlatform hostPlatform targetPlatform; # Added 2023-01-09 1413 1415 1414 1416 # LLVM packages for (integration) testing that should not be used inside Nixpkgs: 1415 - llvmPackages_latest = llvmPackages_17; 1417 + llvmPackages_latest = llvmPackages_18; 1416 1418 llvmPackages_git = recurseIntoAttrs (callPackage ../development/compilers/llvm/git { 1417 1419 inherit (stdenvAdapters) overrideCC; 1418 1420 buildLlvmTools = buildPackages.llvmPackages_git.tools;
+14 -29
pkgs/top-level/all-packages.nix
··· 1088 1088 inherit (darwin) cctools DarwinTools; 1089 1089 inherit (darwin.apple_sdk.frameworks) CoreServices; 1090 1090 antlr = antlr4_10; 1091 - icu = icu69; 1092 - protobuf = protobuf_21; 1091 + icu = icu73; 1092 + protobuf = protobuf_24; 1093 1093 }; 1094 1094 1095 1095 broadlink-cli = callPackage ../tools/misc/broadlink-cli { }; ··· 1841 1841 1842 1842 goflow = callPackage ../tools/networking/goflow { }; 1843 1843 1844 - goflow2 = callPackage ../tools/networking/goflow2 { }; 1845 - 1846 1844 gofu = callPackage ../applications/misc/gofu { }; 1847 1845 1848 1846 godspeed = callPackage ../tools/networking/godspeed { }; ··· 1970 1968 node-glob = callPackage ../tools/misc/node-glob { }; 1971 1969 1972 1970 nominatim = callPackage ../servers/nominatim { 1973 - postgresql = postgresql_12; 1971 + postgresql = postgresql_14; 1974 1972 }; 1975 1973 1976 1974 npm-check-updates = callPackage ../tools/package-management/npm-check-updates { }; ··· 2492 2490 gitnuro = callPackage ../applications/version-management/gitnuro { }; 2493 2491 2494 2492 gitnr = callPackage ../applications/version-management/gitnr { }; 2495 - 2496 - gitprompt-rs = callPackage ../applications/version-management/gitprompt-rs/default.nix { }; 2497 2493 2498 2494 gitsign = callPackage ../applications/version-management/gitsign { }; 2499 2495 ··· 8174 8170 8175 8171 fuseiso = callPackage ../tools/filesystems/fuseiso { }; 8176 8172 8177 - fusuma = callPackage ../tools/inputmethods/fusuma { }; 8178 - 8179 8173 fdbPackages = dontRecurseIntoAttrs (callPackage ../servers/foundationdb { }); 8180 8174 8181 8175 inherit (fdbPackages) ··· 11648 11642 11649 11643 perceptualdiff = callPackage ../tools/graphics/perceptualdiff { }; 11650 11644 11651 - percona-server_8_0 = callPackage ../servers/sql/percona-server/8.0.x.nix { 11652 - inherit (darwin) cctools developer_cmds DarwinTools; 11653 - inherit (darwin.apple_sdk.frameworks) CoreServices; 11654 - boost = boost177; # Configure checks for specific version. 11655 - icu = icu69; 11656 - protobuf = protobuf_21; 11657 - }; 11658 - percona-xtrabackup = percona-xtrabackup_8_0; 11659 - percona-xtrabackup_8_0 = callPackage ../tools/backup/percona-xtrabackup/8_0.nix { 11660 - boost = boost177; 11661 - }; 11645 + inherit (import ../servers/sql/percona-server pkgs) percona-server_lts percona-server_innovation; 11646 + percona-server = percona-server_lts; 11647 + inherit (import ../tools/backup/percona-xtrabackup pkgs) percona-xtrabackup_lts percona-xtrabackup_innovation; 11648 + percona-xtrabackup = percona-xtrabackup_lts; 11662 11649 11663 11650 pick = callPackage ../tools/misc/pick { }; 11664 11651 ··· 14211 14198 14212 14199 wakapi = callPackage ../tools/misc/wakapi { }; 14213 14200 14214 - wakatime = callPackage ../tools/misc/wakatime { }; 14215 - 14216 14201 wambo = callPackage ../development/tools/wambo { }; 14217 14202 14218 14203 weather = callPackage ../applications/misc/weather { }; ··· 16487 16472 ocamlformat # latest version 16488 16473 ocamlformat_0_19_0 ocamlformat_0_20_0 ocamlformat_0_20_1 ocamlformat_0_21_0 16489 16474 ocamlformat_0_22_4 ocamlformat_0_23_0 ocamlformat_0_24_1 ocamlformat_0_25_1 16490 - ocamlformat_0_26_0 ocamlformat_0_26_1; 16475 + ocamlformat_0_26_0 ocamlformat_0_26_1 ocamlformat_0_26_2; 16491 16476 16492 16477 inherit (ocamlPackages) odig; 16493 16478 ··· 25667 25652 felix_remoteshell = callPackage ../servers/felix/remoteshell.nix { }; 25668 25653 25669 25654 inherit (callPackages ../servers/firebird { }) firebird_4 firebird_3 firebird_2_5 firebird; 25670 - 25671 - flashmq = callPackage ../servers/mqtt/flashmq { }; 25672 25655 25673 25656 freeradius = callPackage ../servers/freeradius { }; 25674 25657 ··· 31143 31126 31144 31127 freenet = callPackage ../applications/networking/p2p/freenet { 31145 31128 gradle = gradle_7; 31146 - jdk = jdk_headless; 31129 + jdk = jdk17_headless; 31147 31130 # Reduce closure size 31148 - jre = pkgs.jre_minimal.override { 31131 + jre = pkgs.jre17_minimal.override { 31149 31132 modules = [ 31150 31133 "java.base" 31151 31134 "java.logging" ··· 31154 31137 "java.desktop" 31155 31138 "java.management" 31156 31139 ]; 31157 - jdk = jdk_headless; 31140 + jdk = jdk17_headless; 31158 31141 }; 31159 31142 }; 31160 31143 ··· 34866 34849 inherit (darwin.apple_sdk.frameworks) Foundation; 34867 34850 }; 34868 34851 34869 - tipp10 = qt5.callPackage ../applications/misc/tipp10 { }; 34852 + tipp10 = qt6.callPackage ../applications/misc/tipp10 { }; 34870 34853 34871 34854 tkrev = callPackage ../applications/version-management/tkrev { }; 34872 34855 ··· 36213 36196 beancount = with python3.pkgs; toPythonApplication beancount; 36214 36197 36215 36198 beancount-black = with python3.pkgs; toPythonApplication beancount-black; 36199 + 36200 + beanhub-cli = with python3.pkgs; toPythonApplication beanhub-cli; 36216 36201 36217 36202 bean-add = callPackage ../applications/office/beancount/bean-add.nix { }; 36218 36203
+1
pkgs/top-level/ocaml-packages.nix
··· 1292 1292 ocamlformat_0_25_1 = ocamlformat.override { version = "0.25.1"; }; 1293 1293 ocamlformat_0_26_0 = ocamlformat.override { version = "0.26.0"; }; 1294 1294 ocamlformat_0_26_1 = ocamlformat.override { version = "0.26.1"; }; 1295 + ocamlformat_0_26_2 = ocamlformat.override { version = "0.26.2"; }; 1295 1296 1296 1297 ocamlformat = callPackage ../development/ocaml-modules/ocamlformat/ocamlformat.nix {}; 1297 1298
+12
pkgs/top-level/python-packages.nix
··· 1467 1467 1468 1468 beancount-docverif = callPackage ../development/python-modules/beancount-docverif { }; 1469 1469 1470 + beanhub-cli = callPackage ../development/python-modules/beanhub-cli { }; 1471 + 1472 + beanhub-extract = callPackage ../development/python-modules/beanhub-extract { }; 1473 + 1474 + beanhub-forms = callPackage ../development/python-modules/beanhub-forms { }; 1475 + 1476 + beanhub-import = callPackage ../development/python-modules/beanhub-import { }; 1477 + 1470 1478 beanstalkc = callPackage ../development/python-modules/beanstalkc { }; 1471 1479 1472 1480 beartype = callPackage ../development/python-modules/beartype { }; ··· 9667 9675 9668 9676 pins = callPackage ../development/python-modules/pins { }; 9669 9677 9678 + pipetools = callPackage ../development/python-modules/pipetools { }; 9679 + 9670 9680 pg8000 = callPackage ../development/python-modules/pg8000 { }; 9671 9681 9672 9682 pgcli = callPackage ../development/python-modules/pgcli { }; ··· 16826 16836 wavefile = callPackage ../development/python-modules/wavefile { }; 16827 16837 16828 16838 wavinsentio = callPackage ../development/python-modules/wavinsentio { }; 16839 + 16840 + waybackpy = callPackage ../development/python-modules/waybackpy {}; 16829 16841 16830 16842 wazeroutecalculator = callPackage ../development/python-modules/wazeroutecalculator { }; 16831 16843
+2 -2
pkgs/top-level/stage.nix
··· 281 281 if stdenv.isLinux 282 282 then makeMuslParsedPlatform stdenv.hostPlatform.parsed 283 283 else stdenv.hostPlatform.parsed; 284 - } // lib.optionalAttrs (stdenv.hostPlatform.system == "powerpc64-linux") { 285 - gcc.abi = "elfv2"; 284 + gcc = lib.optionalAttrs (stdenv.hostPlatform.system == "powerpc64-linux") { abi = "elfv2"; } // 285 + stdenv.hostPlatform.gcc or {}; 286 286 }; 287 287 }); 288 288