Merge master into staging-next

authored by

github-actions[bot] and committed by
GitHub
145ffddb 7e4d4820

+1540 -641
+19
maintainers/maintainer-list.nix
··· 3276 3276 githubId = 355401; 3277 3277 name = "Brian Hicks"; 3278 3278 }; 3279 + brianmay = { 3280 + name = "Brian May"; 3281 + email = "brian@linuxpenguins.xyz"; 3282 + github = "brianmay"; 3283 + githubId = 112729; 3284 + keys = [ { fingerprint = "D636 5126 A92D B560 C627 ACED 1784 577F 811F 6EAC"; } ]; 3285 + }; 3279 3286 brianmcgee = { 3280 3287 name = "Brian McGee"; 3281 3288 email = "brian@41north.dev"; ··· 13662 13669 githubId = 34819524; 13663 13670 name = "Marcel"; 13664 13671 }; 13672 + MarchCraft = { 13673 + email = "felix@dienilles.de"; 13674 + github = "MarchCraft"; 13675 + githubId = 30194994; 13676 + name = "Felix Nilles"; 13677 + }; 13665 13678 marcovergueira = { 13666 13679 email = "vergueira.marco@gmail.com"; 13667 13680 github = "marcovergueira"; ··· 20423 20436 githubId = 23130178; 20424 20437 name = "夜坂雅"; 20425 20438 keys = [ { fingerprint = "3237 D49E 8F81 5A45 2133 64EA 4FF3 5790 F405 53A9"; } ]; 20439 + }; 20440 + shadows_withal = { 20441 + email = "shadows@with.al"; 20442 + github = "shadows-withal"; 20443 + githubId = 6445316; 20444 + name = "liv"; 20426 20445 }; 20427 20446 shahrukh330 = { 20428 20447 email = "shahrukh330@gmail.com";
+6
nixos/doc/manual/development/running-nixos-tests-interactively.section.md
··· 10 10 >>> 11 11 ``` 12 12 13 + ::: {.note} 14 + By executing the test driver in this way, 15 + the VMs executed may gain network & Internet access via their backdoor control interface, 16 + typically recognized as `eth0`. 17 + ::: 18 + 13 19 You can then take any Python statement, e.g. 14 20 15 21 ```py
+2
nixos/doc/manual/release-notes/rl-2505.section.md
··· 47 47 48 48 - [waagent](https://github.com/Azure/WALinuxAgent), the Microsoft Azure Linux Agent (waagent) manages Linux provisioning and VM interaction with the Azure Fabric Controller. Available with [services.waagent](options.html#opt-services.waagent.enable). 49 49 50 + - [nostr-rs-relay](https://git.sr.ht/~gheartsfield/nostr-rs-relay/), This is a nostr relay, written in Rust. Available as [services.nostr-rs-relay](options.html#opt-services.nostr-rs-relay.enable). 51 + 50 52 - [mqtt-exporter](https://github.com/kpetremann/mqtt-exporter/), a Prometheus exporter for exposing messages from MQTT. Available as [services.prometheus.exporters.mqtt](#opt-services.prometheus.exporters.mqtt.enable). 51 53 52 54 - [Buffyboard](https://gitlab.postmarketos.org/postmarketOS/buffybox/-/tree/master/buffyboard), a framebuffer on-screen keyboard. Available as [services.buffyboard](option.html#opt-services.buffyboard).
+9 -3
nixos/modules/hardware/video/nvidia.nix
··· 274 274 config.hardware.nvidia.open == true || lib.versionAtLeast config.hardware.nvidia.package.version "555" 275 275 ''; 276 276 }; 277 + 278 + videoAcceleration = 279 + (lib.mkEnableOption '' 280 + Whether video acceleration (VA-API) should be enabled. 281 + '') 282 + // { 283 + default = true; 284 + }; 277 285 }; 278 286 }; 279 287 ··· 504 512 "egl/egl_external_platform.d".source = "/run/opengl-driver/share/egl/egl_external_platform.d/"; 505 513 }; 506 514 507 - hardware.graphics = { 508 - extraPackages = [ pkgs.nvidia-vaapi-driver ]; 509 - }; 515 + hardware.graphics.extraPackages = lib.optional cfg.videoAcceleration pkgs.nvidia-vaapi-driver; 510 516 511 517 environment.systemPackages = 512 518 lib.optional cfg.nvidiaSettings nvidia_x11.settings
+1
nixos/modules/module-list.nix
··· 1507 1507 ./services/web-apps/nexus.nix 1508 1508 ./services/web-apps/nifi.nix 1509 1509 ./services/web-apps/node-red.nix 1510 + ./services/web-apps/nostr-rs-relay.nix 1510 1511 ./services/web-apps/ocis.nix 1511 1512 ./services/web-apps/onlyoffice.nix 1512 1513 ./services/web-apps/openvscode-server.nix
+2 -2
nixos/modules/services/cluster/kubernetes/kubelet.nix
··· 345 345 echo "Seeding container image: ${img}" 346 346 ${ 347 347 if (lib.hasSuffix "gz" img) then 348 - ''${pkgs.gzip}/bin/zcat "${img}" | ${pkgs.containerd}/bin/ctr -n k8s.io image import --all-platforms -'' 348 + ''${pkgs.gzip}/bin/zcat "${img}" | ${pkgs.containerd}/bin/ctr -n k8s.io image import -'' 349 349 else 350 - ''${pkgs.coreutils}/bin/cat "${img}" | ${pkgs.containerd}/bin/ctr -n k8s.io image import --all-platforms -'' 350 + ''${pkgs.coreutils}/bin/cat "${img}" | ${pkgs.containerd}/bin/ctr -n k8s.io image import -'' 351 351 } 352 352 '') cfg.seedDockerImages} 353 353
+35 -9
nixos/modules/services/hardware/udev.nix
··· 162 162 ''; 163 163 164 164 compressFirmware = firmware: 165 - let 166 - inherit (config.boot.kernelPackages) kernelAtLeast; 167 - in 168 - if ! (firmware.compressFirmware or true) then 169 - firmware 170 - else 171 - if kernelAtLeast "5.19" then pkgs.compressFirmwareZstd firmware 172 - else if kernelAtLeast "5.3" then pkgs.compressFirmwareXz firmware 173 - else firmware; 165 + if config.hardware.firmwareCompression == "none" || (firmware.compressFirmware or false) == false then firmware 166 + else if config.hardware.firmwareCompression == "zstd" then pkgs.compressFirmwareZstd firmware 167 + else pkgs.compressFirmwareXz firmware; 174 168 175 169 # Udev has a 512-character limit for ENV{PATH}, so create a symlink 176 170 # tree to work around this. ··· 279 273 }; 280 274 }; 281 275 276 + hardware.firmwareCompression = lib.mkOption { 277 + type = lib.types.enum [ "xz" "zstd" "none" ]; 278 + default = if config.boot.kernelPackages.kernelAtLeast "5.19" then "zstd" 279 + else if config.boot.kernelPackages.kernelAtLeast "5.3" then "xz" 280 + else "none"; 281 + defaultText = "auto"; 282 + description = '' 283 + Whether to compress firmware files. 284 + Defaults depend on the kernel version. 285 + For kernels older than 5.3, firmware files are not compressed. 286 + For kernels 5.3 and newer, firmware files are compressed with xz. 287 + For kernels 5.19 and newer, firmware files are compressed with zstd. 288 + ''; 289 + }; 290 + 282 291 networking.usePredictableInterfaceNames = lib.mkOption { 283 292 default = true; 284 293 type = lib.types.bool; ··· 345 354 ###### implementation 346 355 347 356 config = lib.mkIf cfg.enable { 357 + 358 + assertions = [ 359 + { 360 + assertion = config.hardware.firmwareCompression == "zstd" -> config.boot.kernelPackages.kernelAtLeast "5.19"; 361 + message = '' 362 + The firmware compression method is set to zstd, but the kernel version is too old. 363 + The kernel version must be at least 5.3 to use zstd compression. 364 + ''; 365 + } 366 + { 367 + assertion = config.hardware.firmwareCompression == "xz" -> config.boot.kernelPackages.kernelAtLeast "5.3"; 368 + message = '' 369 + The firmware compression method is set to xz, but the kernel version is too old. 370 + The kernel version must be at least 5.3 to use xz compression. 371 + ''; 372 + } 373 + ]; 348 374 349 375 services.udev.extraRules = nixosRules; 350 376
+1 -4
nixos/modules/services/misc/paperless.nix
··· 70 70 ProtectKernelModules = true; 71 71 ProtectKernelTunables = true; 72 72 ProtectProc = "invisible"; 73 - # Don't restrict ProcSubset because django-q requires read access to /proc/stat 74 - # to query CPU and memory information. 75 - # Note that /proc only contains processes of user `paperless`, so this is safe. 76 - # ProcSubset = "pid"; 73 + ProcSubset = "pid"; 77 74 RestrictAddressFamilies = [ "AF_UNIX" "AF_INET" "AF_INET6" ]; 78 75 RestrictNamespaces = true; 79 76 RestrictRealtime = true;
+18 -5
nixos/modules/services/networking/hickory-dns.nix
··· 3 3 cfg = config.services.hickory-dns; 4 4 toml = pkgs.formats.toml { }; 5 5 6 - configFile = toml.generate "hickory-dns.toml" ( 7 - lib.filterAttrsRecursive (_: v: v != null) cfg.settings 8 - ); 9 - 10 6 zoneType = lib.types.submodule ({ config, ... }: { 7 + freeformType = toml.type; 11 8 options = with lib; { 12 9 zone = mkOption { 13 10 type = types.str; ··· 82 79 If neither `quiet` nor `debug` are enabled, logging defaults to the INFO level. 83 80 ''; 84 81 }; 82 + configFile = mkOption { 83 + type = types.path; 84 + default = toml.generate "hickory-dns.toml" ( 85 + lib.filterAttrsRecursive (_: v: v != null) cfg.settings 86 + ); 87 + defaultText = lib.literalExpression '' 88 + let toml = pkgs.formats.toml { }; in toml.generate "hickory-dns.toml" cfg.settings 89 + ''; 90 + description = '' 91 + Path to an existing toml file to configure hickory-dns with. 92 + 93 + This can usually be left unspecified, in which case it will be 94 + generated from the values in `settings`. 95 + If manually specified, then the options in `settings` are ignored. 96 + ''; 97 + }; 85 98 settings = mkOption { 86 99 description = '' 87 100 Settings for hickory-dns. The options enumerated here are not exhaustive. ··· 142 155 flags = (lib.optional cfg.debug "--debug") ++ (lib.optional cfg.quiet "--quiet"); 143 156 flagsStr = builtins.concatStringsSep " " flags; 144 157 in '' 145 - ${lib.getExe cfg.package} --config ${configFile} ${flagsStr} 158 + ${lib.getExe cfg.package} --config ${cfg.configFile} ${flagsStr} 146 159 ''; 147 160 Type = "simple"; 148 161 Restart = "on-failure";
+96
nixos/modules/services/web-apps/nostr-rs-relay.nix
··· 1 + { 2 + config, 3 + pkgs, 4 + lib, 5 + ... 6 + }: 7 + let 8 + cfg = config.services.nostr-rs-relay; 9 + settingsFormat = pkgs.formats.toml { }; 10 + configFile = settingsFormat.generate "config.toml" ( 11 + cfg.settings 12 + // { 13 + database = { 14 + data_directory = config.services.nostr-rs-relay.dataDir; 15 + }; 16 + network = { 17 + port = config.services.nostr-rs-relay.port; 18 + }; 19 + } 20 + ); 21 + in 22 + { 23 + options.services.nostr-rs-relay = { 24 + enable = lib.mkEnableOption "nostr-rs-relay"; 25 + 26 + package = lib.mkPackageOption pkgs "nostr-rs-relay" { }; 27 + 28 + port = lib.mkOption { 29 + default = 12849; 30 + type = lib.types.port; 31 + description = "Listen on this port."; 32 + }; 33 + 34 + dataDir = lib.mkOption { 35 + type = lib.types.path; 36 + default = "/var/lib/nostr-rs-relay"; 37 + description = "Directory for SQLite files."; 38 + }; 39 + 40 + settings = lib.mkOption { 41 + inherit (settingsFormat) type; 42 + default = { }; 43 + description = "See https://git.sr.ht/~gheartsfield/nostr-rs-relay/#configuration for documentation."; 44 + }; 45 + }; 46 + 47 + config = lib.mkIf cfg.enable { 48 + systemd.services.nostr-rs-relay = { 49 + description = "nostr-rs-relay"; 50 + wants = [ "network.target" ]; 51 + wantedBy = [ "multi-user.target" ]; 52 + 53 + serviceConfig = { 54 + ExecStart = "${cfg.package}/bin/nostr-rs-relay --config ${configFile}"; 55 + DynamicUser = true; 56 + Restart = "on-failure"; 57 + Type = "simple"; 58 + 59 + ReadWritePaths = [ cfg.dataDir ]; 60 + 61 + RuntimeDirectory = "nostr-rs-relay"; 62 + StateDirectory = "nostr-rs-relay"; 63 + 64 + PrivateTmp = true; 65 + PrivateUsers = true; 66 + PrivateDevices = true; 67 + ProtectSystem = "strict"; 68 + ProtectHome = true; 69 + NoNewPrivileges = true; 70 + MemoryDenyWriteExecute = true; 71 + ProtectKernelTunables = true; 72 + ProtectKernelModules = true; 73 + ProtectKernelLogs = true; 74 + ProtectClock = true; 75 + ProtectProc = "invisible"; 76 + ProcSubset = "pid"; 77 + ProtectControlGroups = true; 78 + LockPersonality = true; 79 + RestrictSUIDSGID = true; 80 + RemoveIPC = true; 81 + RestrictRealtime = true; 82 + ProtectHostname = true; 83 + CapabilityBoundingSet = ""; 84 + SystemCallFilter = [ 85 + "@system-service" 86 + ]; 87 + SystemCallArchitectures = "native"; 88 + }; 89 + }; 90 + }; 91 + 92 + meta.maintainers = with lib.maintainers; [ 93 + felixzieger 94 + jb55 95 + ]; 96 + }
+3 -3
nixos/modules/services/x11/desktop-managers/plasma5.nix
··· 39 39 # on NixOS because the timestamp never changes. As a workaround, delete the 40 40 # icon cache at login and session activation. 41 41 # See also: http://lists-archives.org/kde-devel/26175-what-when-will-icon-cache-refresh.html 42 - rm -fv $HOME/.cache/icon-cache.kcache 42 + rm -fv "$HOME"/.cache/icon-cache.kcache 43 43 44 44 # xdg-desktop-settings generates this empty file but 45 45 # it makes kbuildsyscoca5 fail silently. To fix this 46 46 # remove that menu if it exists. 47 - rm -fv ''${XDG_CONFIG_HOME}/menus/applications-merged/xdg-desktop-menu-dummy.menu 47 + rm -fv "''${XDG_CONFIG_HOME}"/menus/applications-merged/xdg-desktop-menu-dummy.menu 48 48 49 49 # Qt writes a weird ‘libraryPath’ line to 50 50 # ~/.config/Trolltech.conf that causes the KDE plugin ··· 61 61 # Remove the kbuildsyscoca5 cache. It will be regenerated 62 62 # immediately after. This is necessary for kbuildsyscoca5 to 63 63 # recognize that software that has been removed. 64 - rm -fv $HOME/.cache/ksycoca* 64 + rm -fv "$HOME"/.cache/ksycoca* 65 65 66 66 ${pkgs.plasma5Packages.kservice}/bin/kbuildsycoca5 67 67 '';
+2 -1
nixos/modules/system/activation/activation-script.nix
··· 260 260 '' 261 261 else '' 262 262 rm -f /usr/bin/env 263 - rmdir --ignore-fail-on-non-empty /usr/bin /usr 263 + if test -d /usr/bin; then rmdir --ignore-fail-on-non-empty /usr/bin; fi 264 + if test -d /usr; then rmdir --ignore-fail-on-non-empty /usr; fi 264 265 ''; 265 266 266 267 system.activationScripts.specialfs =
+1
nixos/modules/tasks/network-interfaces.nix
··· 1446 1446 1447 1447 systemd.services = { 1448 1448 network-local-commands = { 1449 + enable = (cfg.localCommands != ""); 1449 1450 description = "Extra networking commands."; 1450 1451 before = [ "network.target" ]; 1451 1452 wantedBy = [ "network.target" ];
+252 -252
pkgs/applications/editors/jetbrains/bin/versions.json
··· 3 3 "aqua": { 4 4 "update-channel": "Aqua RELEASE", 5 5 "url-template": "https://download.jetbrains.com/aqua/aqua-{version}.tar.gz", 6 - "version": "2024.2.1", 7 - "sha256": "847b7658843dd06b9d6f2689fa4030e54473b6e5e234f23b6e17a6c646fad07c", 8 - "url": "https://download.jetbrains.com/aqua/aqua-2024.2.1.tar.gz", 9 - "build_number": "242.22855.128" 6 + "version": "2024.3", 7 + "sha256": "b408823bd819077961064f2a82b1556f112171da5eccb11748fab79fc0c33840", 8 + "url": "https://download.jetbrains.com/aqua/aqua-2024.3.tar.gz", 9 + "build_number": "243.22562.117" 10 10 }, 11 11 "clion": { 12 12 "update-channel": "CLion RELEASE", 13 13 "url-template": "https://download.jetbrains.com/cpp/CLion-{version}.tar.gz", 14 - "version": "2024.3", 15 - "sha256": "e66ee52c365552fe40d035f5b205ab8c28a9a02ed4af5f787b78a0048bcf7f81", 16 - "url": "https://download.jetbrains.com/cpp/CLion-2024.3.tar.gz", 17 - "build_number": "243.21565.238" 14 + "version": "2024.3.1", 15 + "sha256": "5320b7a6b3bc49b8c798c6f06f1b108a8b1b3c37ab12763efc23907b2639be65", 16 + "url": "https://download.jetbrains.com/cpp/CLion-2024.3.1.tar.gz", 17 + "build_number": "243.22562.155" 18 18 }, 19 19 "datagrip": { 20 20 "update-channel": "DataGrip RELEASE", 21 21 "url-template": "https://download.jetbrains.com/datagrip/datagrip-{version}.tar.gz", 22 - "version": "2024.3", 23 - "sha256": "22bce5430534136dc5e63f9e38007f85d2e06b8e96ca42f2403d205dcc171caf", 24 - "url": "https://download.jetbrains.com/datagrip/datagrip-2024.3.tar.gz", 25 - "build_number": "243.21565.204" 22 + "version": "2024.3.2", 23 + "sha256": "8375752c0b24a363b982862af91d65b573aebabc36b55b16fbeff2c208176f61", 24 + "url": "https://download.jetbrains.com/datagrip/datagrip-2024.3.2.tar.gz", 25 + "build_number": "243.22562.115" 26 26 }, 27 27 "dataspell": { 28 28 "update-channel": "DataSpell RELEASE", 29 29 "url-template": "https://download.jetbrains.com/python/dataspell-{version}.tar.gz", 30 - "version": "2024.2.2", 31 - "sha256": "9b3dd8185f805d8d968f5a515dbe74d3672e0cd1b2cb052cf81382bd63ddb3b8", 32 - "url": "https://download.jetbrains.com/python/dataspell-2024.2.2.tar.gz", 33 - "build_number": "242.22855.78" 30 + "version": "2024.3.1", 31 + "sha256": "3407a15cf9a90f45567c5994eea4755d5462fa3dc59c41ce98ed4b00aa1ff4cf", 32 + "url": "https://download.jetbrains.com/python/dataspell-2024.3.1.tar.gz", 33 + "build_number": "243.22562.185" 34 34 }, 35 35 "gateway": { 36 36 "update-channel": "Gateway RELEASE", 37 37 "url-template": "https://download.jetbrains.com/idea/gateway/JetBrainsGateway-{version}.tar.gz", 38 - "version": "2024.3", 39 - "sha256": "accb6a69d188ec4e9f9a0e850d2e7751cd8aa2cbd4b91d544e5bd2b8342e8b43", 40 - "url": "https://download.jetbrains.com/idea/gateway/JetBrainsGateway-2024.3.tar.gz", 41 - "build_number": "243.21565.196" 38 + "version": "2024.3.1", 39 + "sha256": "d672a5552e7cf0387e1fb93a6cadf3a4ca1d5d942de1c3d1adc0af3f092d1780", 40 + "url": "https://download.jetbrains.com/idea/gateway/JetBrainsGateway-2024.3.1.tar.gz", 41 + "build_number": "243.22562.160" 42 42 }, 43 43 "goland": { 44 44 "update-channel": "GoLand RELEASE", 45 45 "url-template": "https://download.jetbrains.com/go/goland-{version}.tar.gz", 46 - "version": "2024.3", 47 - "sha256": "6d52c50fb665f1d42f1eba8fcfafca0ac4ce101a235ea435558a542ae290a6af", 48 - "url": "https://download.jetbrains.com/go/goland-2024.3.tar.gz", 49 - "build_number": "243.21565.208" 46 + "version": "2024.3.1", 47 + "sha256": "028cb0c004c1f0d6e46ce897784ea37291900a85ea49df47678c86aaea1ea681", 48 + "url": "https://download.jetbrains.com/go/goland-2024.3.1.tar.gz", 49 + "build_number": "243.22562.186" 50 50 }, 51 51 "idea-community": { 52 52 "update-channel": "IntelliJ IDEA RELEASE", 53 53 "url-template": "https://download.jetbrains.com/idea/ideaIC-{version}.tar.gz", 54 - "version": "2024.3", 55 - "sha256": "16d4f411b62ddc7747fe11e8fff004bf8d144df4052b8111306fd4cbba8f748c", 56 - "url": "https://download.jetbrains.com/idea/ideaIC-2024.3.tar.gz", 57 - "build_number": "243.21565.193" 54 + "version": "2024.3.1", 55 + "sha256": "b3fbdba793ba9e7800ac1ee4ceedf4726f86d5320c7c0d4e155b5bd10a296777", 56 + "url": "https://download.jetbrains.com/idea/ideaIC-2024.3.1.tar.gz", 57 + "build_number": "243.22562.145" 58 58 }, 59 59 "idea-ultimate": { 60 60 "update-channel": "IntelliJ IDEA RELEASE", 61 61 "url-template": "https://download.jetbrains.com/idea/ideaIU-{version}.tar.gz", 62 - "version": "2024.3", 63 - "sha256": "c0627c42510bdd25b82127db62997fe6b7b98cc7e30987a83fa0b419692a15c1", 64 - "url": "https://download.jetbrains.com/idea/ideaIU-2024.3.tar.gz", 65 - "build_number": "243.21565.193" 62 + "version": "2024.3.1", 63 + "sha256": "f427f4eea252d574f6135c020113f02c6d880e428265b943be26ee6110876610", 64 + "url": "https://download.jetbrains.com/idea/ideaIU-2024.3.1.tar.gz", 65 + "build_number": "243.22562.145" 66 66 }, 67 67 "mps": { 68 68 "update-channel": "MPS RELEASE", ··· 75 75 "phpstorm": { 76 76 "update-channel": "PhpStorm RELEASE", 77 77 "url-template": "https://download.jetbrains.com/webide/PhpStorm-{version}.tar.gz", 78 - "version": "2024.3", 79 - "sha256": "60e39a14dad77ffa7b2e36f701dc4d5c5bb281231d06d7c292807483a6879071", 80 - "url": "https://download.jetbrains.com/webide/PhpStorm-2024.3.tar.gz", 81 - "build_number": "243.21565.202", 78 + "version": "2024.3.1", 79 + "sha256": "acbd2adda79817cbe508e89b8a431bd0ec390c4ab19a78e04e1ef101843dddf1", 80 + "url": "https://download.jetbrains.com/webide/PhpStorm-2024.3.1.tar.gz", 81 + "build_number": "243.22562.164", 82 82 "version-major-minor": "2022.3" 83 83 }, 84 84 "pycharm-community": { 85 85 "update-channel": "PyCharm RELEASE", 86 86 "url-template": "https://download.jetbrains.com/python/pycharm-community-{version}.tar.gz", 87 - "version": "2024.3", 88 - "sha256": "266975b832a4b2ec6cf23adc2c244650c1fb546f1ffa36dc2405866f1c32cb3e", 89 - "url": "https://download.jetbrains.com/python/pycharm-community-2024.3.tar.gz", 90 - "build_number": "243.21565.199" 87 + "version": "2024.3.1", 88 + "sha256": "b262750532c2655482bee77dbb2dea7e4d0604ab7413cc622f32fdc24458a58c", 89 + "url": "https://download.jetbrains.com/python/pycharm-community-2024.3.1.tar.gz", 90 + "build_number": "243.22562.180" 91 91 }, 92 92 "pycharm-professional": { 93 93 "update-channel": "PyCharm RELEASE", 94 94 "url-template": "https://download.jetbrains.com/python/pycharm-professional-{version}.tar.gz", 95 - "version": "2024.3", 96 - "sha256": "142d7033f0548fd4f3e26bb2f8507f5d16048d9dfbe2f3a3de5246042e269ff7", 97 - "url": "https://download.jetbrains.com/python/pycharm-professional-2024.3.tar.gz", 98 - "build_number": "243.21565.199" 95 + "version": "2024.3.1", 96 + "sha256": "7bd9ea5c4eae1d1fc71cd538b1443c809c77c05fb8c793f3ebb5b1abd898a70f", 97 + "url": "https://download.jetbrains.com/python/pycharm-professional-2024.3.1.tar.gz", 98 + "build_number": "243.22562.180" 99 99 }, 100 100 "rider": { 101 101 "update-channel": "Rider RELEASE", 102 102 "url-template": "https://download.jetbrains.com/rider/JetBrains.Rider-{version}.tar.gz", 103 - "version": "2024.3", 104 - "sha256": "ef9b61c18851b6f3ef2bfa3fe147b34ac191622f65a41f2b53b3a609f9bff360", 105 - "url": "https://download.jetbrains.com/rider/JetBrains.Rider-2024.3.tar.gz", 106 - "build_number": "243.21565.191" 103 + "version": "2024.3.2", 104 + "sha256": "7c716bad550067960222bf1d97c5ac7c40d0ceba6cafd754065038f4d23b2a9e", 105 + "url": "https://download.jetbrains.com/rider/JetBrains.Rider-2024.3.2.tar.gz", 106 + "build_number": "243.22562.171" 107 107 }, 108 108 "ruby-mine": { 109 109 "update-channel": "RubyMine RELEASE", 110 110 "url-template": "https://download.jetbrains.com/ruby/RubyMine-{version}.tar.gz", 111 - "version": "2024.3", 112 - "sha256": "391ed7fa3f46d672f9d2a9706f21c33f974472cb81ebb172931c6b16c8aa9836", 113 - "url": "https://download.jetbrains.com/ruby/RubyMine-2024.3.tar.gz", 114 - "build_number": "243.21565.197" 111 + "version": "2024.3.1", 112 + "sha256": "d288557a95b8f28b2bec32a749bf104ae33d2b0e899c164772856b82c1a51380", 113 + "url": "https://download.jetbrains.com/ruby/RubyMine-2024.3.1.tar.gz", 114 + "build_number": "243.22562.151" 115 115 }, 116 116 "rust-rover": { 117 117 "update-channel": "RustRover RELEASE", 118 118 "url-template": "https://download.jetbrains.com/rustrover/RustRover-{version}.tar.gz", 119 - "version": "2024.2.5", 120 - "sha256": "b3ce4f354d4fdbee8dff5d8120db098502f7393fbebe25891f8bd76e51736b69", 121 - "url": "https://download.jetbrains.com/rustrover/RustRover-2024.2.5.tar.gz", 122 - "build_number": "242.23726.162" 119 + "version": "2024.3.1", 120 + "sha256": "0d20cffc2ab1e698c515e5a1f9753245db373ed721fa3d4f9dab715fc28e910b", 121 + "url": "https://download.jetbrains.com/rustrover/RustRover-2024.3.1.tar.gz", 122 + "build_number": "243.22562.187" 123 123 }, 124 124 "webstorm": { 125 125 "update-channel": "WebStorm RELEASE", 126 126 "url-template": "https://download.jetbrains.com/webstorm/WebStorm-{version}.tar.gz", 127 - "version": "2024.3", 128 - "sha256": "23858c20f84a10f3be6ac05cdb03a47e6862fabbf4a748ecef7902f882a9e935", 129 - "url": "https://download.jetbrains.com/webstorm/WebStorm-2024.3.tar.gz", 130 - "build_number": "243.21565.180" 127 + "version": "2024.3.1", 128 + "sha256": "f9122a02312bee9d06c77774cad37b32ac0dcbc460af4ac8b8059a1780d16018", 129 + "url": "https://download.jetbrains.com/webstorm/WebStorm-2024.3.1.tar.gz", 130 + "build_number": "243.22562.112" 131 131 }, 132 132 "writerside": { 133 133 "update-channel": "Writerside EAP", 134 134 "url-template": "https://download.jetbrains.com/writerside/writerside-{version}.tar.gz", 135 135 "version": "2024.3 EAP", 136 - "sha256": "651491afd8a42431045b8d6af13954c001aa45f59f905481b1b3b821f140b60b", 137 - "url": "https://download.jetbrains.com/writerside/writerside-243.21565.432.tar.gz", 138 - "build_number": "243.21565.432" 136 + "sha256": "90cf02ed5803040a0aefaa3c8e8a938e6e462c1bcc7ce48902b2933f79ca92bb", 137 + "url": "https://download.jetbrains.com/writerside/writerside-243.22562.163.tar.gz", 138 + "build_number": "243.22562.163" 139 139 } 140 140 }, 141 141 "aarch64-linux": { 142 142 "aqua": { 143 143 "update-channel": "Aqua RELEASE", 144 144 "url-template": "https://download.jetbrains.com/aqua/aqua-{version}-aarch64.tar.gz", 145 - "version": "2024.2.1", 146 - "sha256": "8136b8a13edc9d7cf35eb0bbac685e74a76b52b0f15541f0289ed0968b316c2c", 147 - "url": "https://download.jetbrains.com/aqua/aqua-2024.2.1-aarch64.tar.gz", 148 - "build_number": "242.22855.128" 145 + "version": "2024.3", 146 + "sha256": "81227e4863b8d00fa368db052d5b4ddb9c3fc817e19965f81493495aedfc59e3", 147 + "url": "https://download.jetbrains.com/aqua/aqua-2024.3-aarch64.tar.gz", 148 + "build_number": "243.22562.117" 149 149 }, 150 150 "clion": { 151 151 "update-channel": "CLion RELEASE", 152 152 "url-template": "https://download.jetbrains.com/cpp/CLion-{version}-aarch64.tar.gz", 153 - "version": "2024.3", 154 - "sha256": "526147203ce3f9ec25e264f33fca042fda59a728237a165983c47c0c06356f6e", 155 - "url": "https://download.jetbrains.com/cpp/CLion-2024.3-aarch64.tar.gz", 156 - "build_number": "243.21565.238" 153 + "version": "2024.3.1", 154 + "sha256": "da6e06b379f823a744e368935d84848c69b54cd8936153bba3cc8b51a4473920", 155 + "url": "https://download.jetbrains.com/cpp/CLion-2024.3.1-aarch64.tar.gz", 156 + "build_number": "243.22562.155" 157 157 }, 158 158 "datagrip": { 159 159 "update-channel": "DataGrip RELEASE", 160 160 "url-template": "https://download.jetbrains.com/datagrip/datagrip-{version}-aarch64.tar.gz", 161 - "version": "2024.3", 162 - "sha256": "0f923e16f78dda2f86a72921ae9c2ae361950208e32b882a76b7aa3cf560ed6e", 163 - "url": "https://download.jetbrains.com/datagrip/datagrip-2024.3-aarch64.tar.gz", 164 - "build_number": "243.21565.204" 161 + "version": "2024.3.2", 162 + "sha256": "f7ce542c197030b8390cbb21fb86394dc0158924815e3ed94a754d35ddede3b6", 163 + "url": "https://download.jetbrains.com/datagrip/datagrip-2024.3.2-aarch64.tar.gz", 164 + "build_number": "243.22562.115" 165 165 }, 166 166 "dataspell": { 167 167 "update-channel": "DataSpell RELEASE", 168 168 "url-template": "https://download.jetbrains.com/python/dataspell-{version}-aarch64.tar.gz", 169 - "version": "2024.2.2", 170 - "sha256": "e529c27d3c5eeabec02c7ff2e3c0a682d60b962923054cb9dca2e46bf1ec9104", 171 - "url": "https://download.jetbrains.com/python/dataspell-2024.2.2-aarch64.tar.gz", 172 - "build_number": "242.22855.78" 169 + "version": "2024.3.1", 170 + "sha256": "61c830a307fe5e4191da88596c63483d64fd12a5ea248128921ca99c5d7c39b5", 171 + "url": "https://download.jetbrains.com/python/dataspell-2024.3.1-aarch64.tar.gz", 172 + "build_number": "243.22562.185" 173 173 }, 174 174 "gateway": { 175 175 "update-channel": "Gateway RELEASE", 176 176 "url-template": "https://download.jetbrains.com/idea/gateway/JetBrainsGateway-{version}-aarch64.tar.gz", 177 - "version": "2024.3", 178 - "sha256": "deeba887b6f51c57daef97c7db25578b94bccf5ed777c3867d484d034f60bc12", 179 - "url": "https://download.jetbrains.com/idea/gateway/JetBrainsGateway-2024.3-aarch64.tar.gz", 180 - "build_number": "243.21565.196" 177 + "version": "2024.3.1", 178 + "sha256": "75b49b6f95e7c136ec6a27dc6c3b84f41e8d5149a6776c1a7e35c21e8363027d", 179 + "url": "https://download.jetbrains.com/idea/gateway/JetBrainsGateway-2024.3.1-aarch64.tar.gz", 180 + "build_number": "243.22562.160" 181 181 }, 182 182 "goland": { 183 183 "update-channel": "GoLand RELEASE", 184 184 "url-template": "https://download.jetbrains.com/go/goland-{version}-aarch64.tar.gz", 185 - "version": "2024.3", 186 - "sha256": "1aeccc1f371bfd07c9b3f09b676af5b63c3032f803aa1aee9b304f6ae07280b3", 187 - "url": "https://download.jetbrains.com/go/goland-2024.3-aarch64.tar.gz", 188 - "build_number": "243.21565.208" 185 + "version": "2024.3.1", 186 + "sha256": "9292d1502e3fada094469c590a59465d105fb6c81988f5414dac792ef3ae9dc5", 187 + "url": "https://download.jetbrains.com/go/goland-2024.3.1-aarch64.tar.gz", 188 + "build_number": "243.22562.186" 189 189 }, 190 190 "idea-community": { 191 191 "update-channel": "IntelliJ IDEA RELEASE", 192 192 "url-template": "https://download.jetbrains.com/idea/ideaIC-{version}-aarch64.tar.gz", 193 - "version": "2024.3", 194 - "sha256": "7f21a648346c38b9e4c8c0d693b62d2383fc59a5d5228bb12f32549f3b80080a", 195 - "url": "https://download.jetbrains.com/idea/ideaIC-2024.3-aarch64.tar.gz", 196 - "build_number": "243.21565.193" 193 + "version": "2024.3.1", 194 + "sha256": "dc3427884cc1b98cd79d152b9d808a72b99f751dc627063148dce862853819d4", 195 + "url": "https://download.jetbrains.com/idea/ideaIC-2024.3.1-aarch64.tar.gz", 196 + "build_number": "243.22562.145" 197 197 }, 198 198 "idea-ultimate": { 199 199 "update-channel": "IntelliJ IDEA RELEASE", 200 200 "url-template": "https://download.jetbrains.com/idea/ideaIU-{version}-aarch64.tar.gz", 201 - "version": "2024.3", 202 - "sha256": "8b262ad7dc6efd2ef4b953701771ec6cf526b5e628a1b07afb6092d6e70a55a2", 203 - "url": "https://download.jetbrains.com/idea/ideaIU-2024.3-aarch64.tar.gz", 204 - "build_number": "243.21565.193" 201 + "version": "2024.3.1", 202 + "sha256": "f6f328b4a088f1254a1cbac76149c8afa07ff86ed921663392172af070117bce", 203 + "url": "https://download.jetbrains.com/idea/ideaIU-2024.3.1-aarch64.tar.gz", 204 + "build_number": "243.22562.145" 205 205 }, 206 206 "mps": { 207 207 "update-channel": "MPS RELEASE", ··· 214 214 "phpstorm": { 215 215 "update-channel": "PhpStorm RELEASE", 216 216 "url-template": "https://download.jetbrains.com/webide/PhpStorm-{version}-aarch64.tar.gz", 217 - "version": "2024.3", 218 - "sha256": "693742e6109a2cbe034ff99a5ebc3932c8a3e9d03aab84df1ea76b74fe29991e", 219 - "url": "https://download.jetbrains.com/webide/PhpStorm-2024.3-aarch64.tar.gz", 220 - "build_number": "243.21565.202", 217 + "version": "2024.3.1", 218 + "sha256": "c9def2cfb2193bbe9f70d1831af1f2d69bd886b68f3094edbceda73afe49027b", 219 + "url": "https://download.jetbrains.com/webide/PhpStorm-2024.3.1-aarch64.tar.gz", 220 + "build_number": "243.22562.164", 221 221 "version-major-minor": "2022.3" 222 222 }, 223 223 "pycharm-community": { 224 224 "update-channel": "PyCharm RELEASE", 225 225 "url-template": "https://download.jetbrains.com/python/pycharm-community-{version}-aarch64.tar.gz", 226 - "version": "2024.3", 227 - "sha256": "1198417e8fc7a7bc789a78939ebcab238c93121e64f706b3f2e6ab31c69fd633", 228 - "url": "https://download.jetbrains.com/python/pycharm-community-2024.3-aarch64.tar.gz", 229 - "build_number": "243.21565.199" 226 + "version": "2024.3.1", 227 + "sha256": "fe90ad8fa15e4a5ce3ed1d7d6e95c3578bdb10e5f0cd94b2fa9c8d51cc13e9db", 228 + "url": "https://download.jetbrains.com/python/pycharm-community-2024.3.1-aarch64.tar.gz", 229 + "build_number": "243.22562.180" 230 230 }, 231 231 "pycharm-professional": { 232 232 "update-channel": "PyCharm RELEASE", 233 233 "url-template": "https://download.jetbrains.com/python/pycharm-professional-{version}-aarch64.tar.gz", 234 - "version": "2024.3", 235 - "sha256": "7394972b57d04d3e1f147a9802661ee6600d6b0213576a551eac9b88939ebd6e", 236 - "url": "https://download.jetbrains.com/python/pycharm-professional-2024.3-aarch64.tar.gz", 237 - "build_number": "243.21565.199" 234 + "version": "2024.3.1", 235 + "sha256": "2483768c690f6caa9c1c3e3ef948fbd88e2b1ebb6f77ebd3f6c80e12e406e6c9", 236 + "url": "https://download.jetbrains.com/python/pycharm-professional-2024.3.1-aarch64.tar.gz", 237 + "build_number": "243.22562.180" 238 238 }, 239 239 "rider": { 240 240 "update-channel": "Rider RELEASE", 241 241 "url-template": "https://download.jetbrains.com/rider/JetBrains.Rider-{version}-aarch64.tar.gz", 242 - "version": "2024.3", 243 - "sha256": "d1b9b3925ad79f50239f11c72f9d4f3ed52716251d54a3340e3aaf63f813d79e", 244 - "url": "https://download.jetbrains.com/rider/JetBrains.Rider-2024.3-aarch64.tar.gz", 245 - "build_number": "243.21565.191" 242 + "version": "2024.3.2", 243 + "sha256": "f1eff56a298f58bd25fcce7f7d572b2ba9e3bd1b51ff6457ab5f6dfe7f789b4a", 244 + "url": "https://download.jetbrains.com/rider/JetBrains.Rider-2024.3.2-aarch64.tar.gz", 245 + "build_number": "243.22562.171" 246 246 }, 247 247 "ruby-mine": { 248 248 "update-channel": "RubyMine RELEASE", 249 249 "url-template": "https://download.jetbrains.com/ruby/RubyMine-{version}-aarch64.tar.gz", 250 - "version": "2024.3", 251 - "sha256": "22daedfbc53cb07dd70c504d7e44366c902a17e39cc56bc8121e50db6da28238", 252 - "url": "https://download.jetbrains.com/ruby/RubyMine-2024.3-aarch64.tar.gz", 253 - "build_number": "243.21565.197" 250 + "version": "2024.3.1", 251 + "sha256": "6c714429a73afce55ec1dff15ac78c31b0e3f719496dfa33d966f53f47076992", 252 + "url": "https://download.jetbrains.com/ruby/RubyMine-2024.3.1-aarch64.tar.gz", 253 + "build_number": "243.22562.151" 254 254 }, 255 255 "rust-rover": { 256 256 "update-channel": "RustRover RELEASE", 257 257 "url-template": "https://download.jetbrains.com/rustrover/RustRover-{version}-aarch64.tar.gz", 258 - "version": "2024.2.5", 259 - "sha256": "b208af1d63ccdf6411916c087a08830b947fd6d63d86c2b6ceee7394f5538383", 260 - "url": "https://download.jetbrains.com/rustrover/RustRover-2024.2.5-aarch64.tar.gz", 261 - "build_number": "242.23726.162" 258 + "version": "2024.3.1", 259 + "sha256": "53f1ba0ccb661e1405878587f81a869675e7e3196719e590ccf8f7d35a514305", 260 + "url": "https://download.jetbrains.com/rustrover/RustRover-2024.3.1-aarch64.tar.gz", 261 + "build_number": "243.22562.187" 262 262 }, 263 263 "webstorm": { 264 264 "update-channel": "WebStorm RELEASE", 265 265 "url-template": "https://download.jetbrains.com/webstorm/WebStorm-{version}-aarch64.tar.gz", 266 - "version": "2024.3", 267 - "sha256": "85541c9e8209d7b99422ea2bd1c3b3c14b680f7c5a92cd37f9476c41bfb3c0eb", 268 - "url": "https://download.jetbrains.com/webstorm/WebStorm-2024.3-aarch64.tar.gz", 269 - "build_number": "243.21565.180" 266 + "version": "2024.3.1", 267 + "sha256": "e1b34cf2456233f6a7aa079e7c2af23bc88d4b29bbddcf6d7a5b4e0432e38db3", 268 + "url": "https://download.jetbrains.com/webstorm/WebStorm-2024.3.1-aarch64.tar.gz", 269 + "build_number": "243.22562.112" 270 270 }, 271 271 "writerside": { 272 272 "update-channel": "Writerside EAP", 273 273 "url-template": "https://download.jetbrains.com/writerside/writerside-{version}-aarch64.tar.gz", 274 274 "version": "2024.3 EAP", 275 - "sha256": "c745b284f057bd150b19f773fdfbb4f54922040faaa01293538f51ede9802e35", 276 - "url": "https://download.jetbrains.com/writerside/writerside-243.21565.432-aarch64.tar.gz", 277 - "build_number": "243.21565.432" 275 + "sha256": "b6e04707d2774e064d8fa793b78da0bd64245d9c468095d07d0eb23ea54ae9d8", 276 + "url": "https://download.jetbrains.com/writerside/writerside-243.22562.163-aarch64.tar.gz", 277 + "build_number": "243.22562.163" 278 278 } 279 279 }, 280 280 "x86_64-darwin": { 281 281 "aqua": { 282 282 "update-channel": "Aqua RELEASE", 283 283 "url-template": "https://download.jetbrains.com/aqua/aqua-{version}.dmg", 284 - "version": "2024.2.1", 285 - "sha256": "e65135897e988eb01e2f78e18a92953f592ac0de07c6626780fab544affcd64e", 286 - "url": "https://download.jetbrains.com/aqua/aqua-2024.2.1.dmg", 287 - "build_number": "242.22855.128" 284 + "version": "2024.3", 285 + "sha256": "65c4c3b38443a3b7b9e2d44619be090d0a594d7d63331044cec998860278cfea", 286 + "url": "https://download.jetbrains.com/aqua/aqua-2024.3.dmg", 287 + "build_number": "243.22562.117" 288 288 }, 289 289 "clion": { 290 290 "update-channel": "CLion RELEASE", 291 291 "url-template": "https://download.jetbrains.com/cpp/CLion-{version}.dmg", 292 - "version": "2024.3", 293 - "sha256": "e3d82ad3303cb4f373efce378f7f289afd3b35d3315d03ac53dc27302c87aa6f", 294 - "url": "https://download.jetbrains.com/cpp/CLion-2024.3.dmg", 295 - "build_number": "243.21565.238" 292 + "version": "2024.3.1", 293 + "sha256": "dedf67707acb6183aadf9607d16f926f3233616ca610f85a294405536c2f2eee", 294 + "url": "https://download.jetbrains.com/cpp/CLion-2024.3.1.dmg", 295 + "build_number": "243.22562.155" 296 296 }, 297 297 "datagrip": { 298 298 "update-channel": "DataGrip RELEASE", 299 299 "url-template": "https://download.jetbrains.com/datagrip/datagrip-{version}.dmg", 300 - "version": "2024.3", 301 - "sha256": "a0badb24a8cf0d04d7933d3695d5daeaeb296574f1cacaa8fe5ca14329df863f", 302 - "url": "https://download.jetbrains.com/datagrip/datagrip-2024.3.dmg", 303 - "build_number": "243.21565.204" 300 + "version": "2024.3.2", 301 + "sha256": "2098f0056478c8ce86294bef246ba204fd6ea0332c0ca4fd96bd09b2f1bdf1a6", 302 + "url": "https://download.jetbrains.com/datagrip/datagrip-2024.3.2.dmg", 303 + "build_number": "243.22562.115" 304 304 }, 305 305 "dataspell": { 306 306 "update-channel": "DataSpell RELEASE", 307 307 "url-template": "https://download.jetbrains.com/python/dataspell-{version}.dmg", 308 - "version": "2024.2.2", 309 - "sha256": "2afdedae414e62077580c88c76093ea608b49aa3e4c9c9f1ec8aef7d467a7285", 310 - "url": "https://download.jetbrains.com/python/dataspell-2024.2.2.dmg", 311 - "build_number": "242.22855.78" 308 + "version": "2024.3.1", 309 + "sha256": "a64eabb192181f81700f0c46c65ba7e6951f249f2f2055986c9e39b3dda911c0", 310 + "url": "https://download.jetbrains.com/python/dataspell-2024.3.1.dmg", 311 + "build_number": "243.22562.185" 312 312 }, 313 313 "gateway": { 314 314 "update-channel": "Gateway RELEASE", 315 315 "url-template": "https://download.jetbrains.com/idea/gateway/JetBrainsGateway-{version}.dmg", 316 - "version": "2024.3", 317 - "sha256": "ea9c1e37afc2a67357755df9c4c12bfaca0106e1d4a6630a5abab9a40a7e8bab", 318 - "url": "https://download.jetbrains.com/idea/gateway/JetBrainsGateway-2024.3.dmg", 319 - "build_number": "243.21565.196" 316 + "version": "2024.3.1", 317 + "sha256": "709bd2cc759eb29d88726a0c24db2f11eb2fc87ee1975d8e101a03226b919ebf", 318 + "url": "https://download.jetbrains.com/idea/gateway/JetBrainsGateway-2024.3.1.dmg", 319 + "build_number": "243.22562.160" 320 320 }, 321 321 "goland": { 322 322 "update-channel": "GoLand RELEASE", 323 323 "url-template": "https://download.jetbrains.com/go/goland-{version}.dmg", 324 - "version": "2024.3", 325 - "sha256": "610faf6b940c0271f1c57cac1fb4e52b96aa059b20f7c8439caab380fda0e8b0", 326 - "url": "https://download.jetbrains.com/go/goland-2024.3.dmg", 327 - "build_number": "243.21565.208" 324 + "version": "2024.3.1", 325 + "sha256": "ec442f7a42cd95a7956d0ff4eb039f856e99451685a537dda9d67fbcd5b729e6", 326 + "url": "https://download.jetbrains.com/go/goland-2024.3.1.dmg", 327 + "build_number": "243.22562.186" 328 328 }, 329 329 "idea-community": { 330 330 "update-channel": "IntelliJ IDEA RELEASE", 331 331 "url-template": "https://download.jetbrains.com/idea/ideaIC-{version}.dmg", 332 - "version": "2024.3", 333 - "sha256": "9162a57c3f39c2f54b9ab86f41ae25de839e749c1708e674deef59c40c4f577f", 334 - "url": "https://download.jetbrains.com/idea/ideaIC-2024.3.dmg", 335 - "build_number": "243.21565.193" 332 + "version": "2024.3.1", 333 + "sha256": "0429e493747063ba65d2700f546a1ff08c537169499b9cb957f3c71c580fe7da", 334 + "url": "https://download.jetbrains.com/idea/ideaIC-2024.3.1.dmg", 335 + "build_number": "243.22562.145" 336 336 }, 337 337 "idea-ultimate": { 338 338 "update-channel": "IntelliJ IDEA RELEASE", 339 339 "url-template": "https://download.jetbrains.com/idea/ideaIU-{version}.dmg", 340 - "version": "2024.3", 341 - "sha256": "73df7fca9085afd81a4564acad598e4196ed003988269205edcf222ef954a0b8", 342 - "url": "https://download.jetbrains.com/idea/ideaIU-2024.3.dmg", 343 - "build_number": "243.21565.193" 340 + "version": "2024.3.1", 341 + "sha256": "5a5f12b802a70f9cad196a2089176b7e428cd6c06183b48b87625df12b7b90d0", 342 + "url": "https://download.jetbrains.com/idea/ideaIU-2024.3.1.dmg", 343 + "build_number": "243.22562.145" 344 344 }, 345 345 "mps": { 346 346 "update-channel": "MPS RELEASE", ··· 353 353 "phpstorm": { 354 354 "update-channel": "PhpStorm RELEASE", 355 355 "url-template": "https://download.jetbrains.com/webide/PhpStorm-{version}.dmg", 356 - "version": "2024.3", 357 - "sha256": "1383a1fecafa9b84338fef846f434b6deac2849afb4876de544550b86c0c3c01", 358 - "url": "https://download.jetbrains.com/webide/PhpStorm-2024.3.dmg", 359 - "build_number": "243.21565.202", 356 + "version": "2024.3.1", 357 + "sha256": "18d45cdde46fdd3fd55685ad9c76d5ad8117d7bb335ee24ed70d881e68fa85db", 358 + "url": "https://download.jetbrains.com/webide/PhpStorm-2024.3.1.dmg", 359 + "build_number": "243.22562.164", 360 360 "version-major-minor": "2022.3" 361 361 }, 362 362 "pycharm-community": { 363 363 "update-channel": "PyCharm RELEASE", 364 364 "url-template": "https://download.jetbrains.com/python/pycharm-community-{version}.dmg", 365 - "version": "2024.3", 366 - "sha256": "25273a4b91cd04ef317988c56a4bd8af8f1c57d184b987571e82621a1e2c7535", 367 - "url": "https://download.jetbrains.com/python/pycharm-community-2024.3.dmg", 368 - "build_number": "243.21565.199" 365 + "version": "2024.3.1", 366 + "sha256": "2b00641155946efe3b8b32e6eb08664ad316d90aa2d7cf9c0360b3c9d7849cc4", 367 + "url": "https://download.jetbrains.com/python/pycharm-community-2024.3.1.dmg", 368 + "build_number": "243.22562.180" 369 369 }, 370 370 "pycharm-professional": { 371 371 "update-channel": "PyCharm RELEASE", 372 372 "url-template": "https://download.jetbrains.com/python/pycharm-professional-{version}.dmg", 373 - "version": "2024.3", 374 - "sha256": "1678b71fcbdcd3a3125eb008cdf21281168744599de3093b29f8de3fb0bc6e49", 375 - "url": "https://download.jetbrains.com/python/pycharm-professional-2024.3.dmg", 376 - "build_number": "243.21565.199" 373 + "version": "2024.3.1", 374 + "sha256": "3edc97c7137fe744715a9073388334b3a8eef84ae9af756a11ebf1a2906a3751", 375 + "url": "https://download.jetbrains.com/python/pycharm-professional-2024.3.1.dmg", 376 + "build_number": "243.22562.180" 377 377 }, 378 378 "rider": { 379 379 "update-channel": "Rider RELEASE", 380 380 "url-template": "https://download.jetbrains.com/rider/JetBrains.Rider-{version}.dmg", 381 - "version": "2024.3", 382 - "sha256": "b8552f7e124b3d7678d6b7dfe3b54b13a70f70c4523f19d36f52172dc276ad3c", 383 - "url": "https://download.jetbrains.com/rider/JetBrains.Rider-2024.3.dmg", 384 - "build_number": "243.21565.191" 381 + "version": "2024.3.2", 382 + "sha256": "8ad665e16509e7e3ed32265a2b6c8843bcbd2588f7768eb102c735f2b28b1584", 383 + "url": "https://download.jetbrains.com/rider/JetBrains.Rider-2024.3.2.dmg", 384 + "build_number": "243.22562.171" 385 385 }, 386 386 "ruby-mine": { 387 387 "update-channel": "RubyMine RELEASE", 388 388 "url-template": "https://download.jetbrains.com/ruby/RubyMine-{version}.dmg", 389 - "version": "2024.3", 390 - "sha256": "bb6a97f54a1a108f92a88152c1c4af9e6d6b85e66cff4e55038c275b3a061971", 391 - "url": "https://download.jetbrains.com/ruby/RubyMine-2024.3.dmg", 392 - "build_number": "243.21565.197" 389 + "version": "2024.3.1", 390 + "sha256": "13d48b50c8f614496045a93ef168f4b2895447b328095934e7a2a32af0510364", 391 + "url": "https://download.jetbrains.com/ruby/RubyMine-2024.3.1.dmg", 392 + "build_number": "243.22562.151" 393 393 }, 394 394 "rust-rover": { 395 395 "update-channel": "RustRover RELEASE", 396 396 "url-template": "https://download.jetbrains.com/rustrover/RustRover-{version}.dmg", 397 - "version": "2024.2.5", 398 - "sha256": "906bc85ada746fd8e783c4fa524458f6cedde7c77499728da8ccae050201a400", 399 - "url": "https://download.jetbrains.com/rustrover/RustRover-2024.2.5.dmg", 400 - "build_number": "242.23726.162" 397 + "version": "2024.3.1", 398 + "sha256": "9ef8ae40734c7d817154a0bb8f418027bdca23c3e9db05d54f698d6027bc4589", 399 + "url": "https://download.jetbrains.com/rustrover/RustRover-2024.3.1.dmg", 400 + "build_number": "243.22562.187" 401 401 }, 402 402 "webstorm": { 403 403 "update-channel": "WebStorm RELEASE", 404 404 "url-template": "https://download.jetbrains.com/webstorm/WebStorm-{version}.dmg", 405 - "version": "2024.3", 406 - "sha256": "fccac67e93d69ad98a36b0b8c092913fbc8bfc06b1cb7ee3932bad4394f78c78", 407 - "url": "https://download.jetbrains.com/webstorm/WebStorm-2024.3.dmg", 408 - "build_number": "243.21565.180" 405 + "version": "2024.3.1", 406 + "sha256": "92ef1b0682de2c0aca51bd613fe45dbf4fa6178c33d63f30eda33b68d6a5be93", 407 + "url": "https://download.jetbrains.com/webstorm/WebStorm-2024.3.1.dmg", 408 + "build_number": "243.22562.112" 409 409 }, 410 410 "writerside": { 411 411 "update-channel": "Writerside EAP", 412 412 "url-template": "https://download.jetbrains.com/writerside/writerside-{version}.dmg", 413 413 "version": "2024.3 EAP", 414 - "sha256": "5a44fc83964514916c52b9cd49fa13e3f16757474a84dca85af7c6d97c2ede4b", 415 - "url": "https://download.jetbrains.com/writerside/writerside-243.21565.432.dmg", 416 - "build_number": "243.21565.432" 414 + "sha256": "5ab49b342f940f931cbd55feeafaf7b0d3cae64e2ca66f0906c00a57089e5083", 415 + "url": "https://download.jetbrains.com/writerside/writerside-243.22562.163.dmg", 416 + "build_number": "243.22562.163" 417 417 } 418 418 }, 419 419 "aarch64-darwin": { 420 420 "aqua": { 421 421 "update-channel": "Aqua RELEASE", 422 422 "url-template": "https://download.jetbrains.com/aqua/aqua-{version}-aarch64.dmg", 423 - "version": "2024.2.1", 424 - "sha256": "f91c189a05b98e0e0ad0ddc9d08345e80b5cd6b784689b8e75bcbc74cc61d1ff", 425 - "url": "https://download.jetbrains.com/aqua/aqua-2024.2.1-aarch64.dmg", 426 - "build_number": "242.22855.128" 423 + "version": "2024.3", 424 + "sha256": "67c96db5b29bc355d7d695a78d4bf29d83191aa08008d155050f8d0949a28ef8", 425 + "url": "https://download.jetbrains.com/aqua/aqua-2024.3-aarch64.dmg", 426 + "build_number": "243.22562.117" 427 427 }, 428 428 "clion": { 429 429 "update-channel": "CLion RELEASE", 430 430 "url-template": "https://download.jetbrains.com/cpp/CLion-{version}-aarch64.dmg", 431 - "version": "2024.3", 432 - "sha256": "2f4ad6ea4ffb0862f85780cd960b46925ea6c9e5f97e9fa290f3007652103825", 433 - "url": "https://download.jetbrains.com/cpp/CLion-2024.3-aarch64.dmg", 434 - "build_number": "243.21565.238" 431 + "version": "2024.3.1", 432 + "sha256": "a10b9ab9bcffb691d0a3f91c4ffd008ccbda7b628abbdff50f43136cb0689fd5", 433 + "url": "https://download.jetbrains.com/cpp/CLion-2024.3.1-aarch64.dmg", 434 + "build_number": "243.22562.155" 435 435 }, 436 436 "datagrip": { 437 437 "update-channel": "DataGrip RELEASE", 438 438 "url-template": "https://download.jetbrains.com/datagrip/datagrip-{version}-aarch64.dmg", 439 - "version": "2024.3", 440 - "sha256": "94efff741478dbe1d33726238b9d6f04b0269761ed0f787eaa93b50ae40c6704", 441 - "url": "https://download.jetbrains.com/datagrip/datagrip-2024.3-aarch64.dmg", 442 - "build_number": "243.21565.204" 439 + "version": "2024.3.2", 440 + "sha256": "aa7776cf0a7c39e1968b28ea3977f381fa63c83854b9e647ac0ec93eb9c10e4b", 441 + "url": "https://download.jetbrains.com/datagrip/datagrip-2024.3.2-aarch64.dmg", 442 + "build_number": "243.22562.115" 443 443 }, 444 444 "dataspell": { 445 445 "update-channel": "DataSpell RELEASE", 446 446 "url-template": "https://download.jetbrains.com/python/dataspell-{version}-aarch64.dmg", 447 - "version": "2024.2.2", 448 - "sha256": "3d153a2813dd5b1527a0e5c429a390cdcb7d921774c369818283a6706bb47375", 449 - "url": "https://download.jetbrains.com/python/dataspell-2024.2.2-aarch64.dmg", 450 - "build_number": "242.22855.78" 447 + "version": "2024.3.1", 448 + "sha256": "2c98c572e2eea113448758e70df5ceaba99291af66f28e10e8bf84d08a2526e2", 449 + "url": "https://download.jetbrains.com/python/dataspell-2024.3.1-aarch64.dmg", 450 + "build_number": "243.22562.185" 451 451 }, 452 452 "gateway": { 453 453 "update-channel": "Gateway RELEASE", 454 454 "url-template": "https://download.jetbrains.com/idea/gateway/JetBrainsGateway-{version}-aarch64.dmg", 455 - "version": "2024.3", 456 - "sha256": "e2ad82e41258e108fd6844a182148db036f8211dc5f69e13de899f529c0345df", 457 - "url": "https://download.jetbrains.com/idea/gateway/JetBrainsGateway-2024.3-aarch64.dmg", 458 - "build_number": "243.21565.196" 455 + "version": "2024.3.1", 456 + "sha256": "0463fe8a955c61df0120c4b2b78f82c092f4b8da011d7d439b3862ee53441c91", 457 + "url": "https://download.jetbrains.com/idea/gateway/JetBrainsGateway-2024.3.1-aarch64.dmg", 458 + "build_number": "243.22562.160" 459 459 }, 460 460 "goland": { 461 461 "update-channel": "GoLand RELEASE", 462 462 "url-template": "https://download.jetbrains.com/go/goland-{version}-aarch64.dmg", 463 - "version": "2024.3", 464 - "sha256": "052f0c50c100b751ece65276ae284952a2470b2769c05b578b99d0dce1dae542", 465 - "url": "https://download.jetbrains.com/go/goland-2024.3-aarch64.dmg", 466 - "build_number": "243.21565.208" 463 + "version": "2024.3.1", 464 + "sha256": "4805e527a7d0cb66c278fcdba70468e14854defc3619edad439763d355303eba", 465 + "url": "https://download.jetbrains.com/go/goland-2024.3.1-aarch64.dmg", 466 + "build_number": "243.22562.186" 467 467 }, 468 468 "idea-community": { 469 469 "update-channel": "IntelliJ IDEA RELEASE", 470 470 "url-template": "https://download.jetbrains.com/idea/ideaIC-{version}-aarch64.dmg", 471 - "version": "2024.3", 472 - "sha256": "568e0a3a1d623627411abed770ce20c2a9906331335e4576c72f019a1e992267", 473 - "url": "https://download.jetbrains.com/idea/ideaIC-2024.3-aarch64.dmg", 474 - "build_number": "243.21565.193" 471 + "version": "2024.3.1", 472 + "sha256": "ef06b0b1eaf3a4c22dbdfda8d1a2a14a534f7f8d6c48b6fcb26bf2087062266b", 473 + "url": "https://download.jetbrains.com/idea/ideaIC-2024.3.1-aarch64.dmg", 474 + "build_number": "243.22562.145" 475 475 }, 476 476 "idea-ultimate": { 477 477 "update-channel": "IntelliJ IDEA RELEASE", 478 478 "url-template": "https://download.jetbrains.com/idea/ideaIU-{version}-aarch64.dmg", 479 - "version": "2024.3", 480 - "sha256": "022d1dbbf6798d6e5b6392b7b11ad782b6590a34dfae30ea3564bc131a70e526", 481 - "url": "https://download.jetbrains.com/idea/ideaIU-2024.3-aarch64.dmg", 482 - "build_number": "243.21565.193" 479 + "version": "2024.3.1", 480 + "sha256": "7c4062bfb48e167eca585dfbce9334749f4f83079f068fb26bd5968d78ec87e3", 481 + "url": "https://download.jetbrains.com/idea/ideaIU-2024.3.1-aarch64.dmg", 482 + "build_number": "243.22562.145" 483 483 }, 484 484 "mps": { 485 485 "update-channel": "MPS RELEASE", ··· 492 492 "phpstorm": { 493 493 "update-channel": "PhpStorm RELEASE", 494 494 "url-template": "https://download.jetbrains.com/webide/PhpStorm-{version}-aarch64.dmg", 495 - "version": "2024.3", 496 - "sha256": "95ed8e4ad4f94a159beec0306135b6bb85e0045d6afe3e4c2364d90901ae39b5", 497 - "url": "https://download.jetbrains.com/webide/PhpStorm-2024.3-aarch64.dmg", 498 - "build_number": "243.21565.202", 495 + "version": "2024.3.1", 496 + "sha256": "424b8a2efa1ca76ba0608c00bc1b1e4cfbaab1ef94073a6e3248259cbcdaa46c", 497 + "url": "https://download.jetbrains.com/webide/PhpStorm-2024.3.1-aarch64.dmg", 498 + "build_number": "243.22562.164", 499 499 "version-major-minor": "2022.3" 500 500 }, 501 501 "pycharm-community": { 502 502 "update-channel": "PyCharm RELEASE", 503 503 "url-template": "https://download.jetbrains.com/python/pycharm-community-{version}-aarch64.dmg", 504 - "version": "2024.3", 505 - "sha256": "eb393d0ad5414a01ab8d2b00538a57f1170e662685d7e3c1e7d25b4ac4de04bd", 506 - "url": "https://download.jetbrains.com/python/pycharm-community-2024.3-aarch64.dmg", 507 - "build_number": "243.21565.199" 504 + "version": "2024.3.1", 505 + "sha256": "16376ceb0f6cc0be1bbb2705513d9cd1449d150f97b2926e9fb34d51616d0a6e", 506 + "url": "https://download.jetbrains.com/python/pycharm-community-2024.3.1-aarch64.dmg", 507 + "build_number": "243.22562.180" 508 508 }, 509 509 "pycharm-professional": { 510 510 "update-channel": "PyCharm RELEASE", 511 511 "url-template": "https://download.jetbrains.com/python/pycharm-professional-{version}-aarch64.dmg", 512 - "version": "2024.3", 513 - "sha256": "254243b532bcbe60b36fba2900048ab5eb6e5edb0aeb45945a63fade3929ebc8", 514 - "url": "https://download.jetbrains.com/python/pycharm-professional-2024.3-aarch64.dmg", 515 - "build_number": "243.21565.199" 512 + "version": "2024.3.1", 513 + "sha256": "43cb744fa5308715f31c83add100fbc4a32b8d5c6fa54992f7984e775e13931b", 514 + "url": "https://download.jetbrains.com/python/pycharm-professional-2024.3.1-aarch64.dmg", 515 + "build_number": "243.22562.180" 516 516 }, 517 517 "rider": { 518 518 "update-channel": "Rider RELEASE", 519 519 "url-template": "https://download.jetbrains.com/rider/JetBrains.Rider-{version}-aarch64.dmg", 520 - "version": "2024.3", 521 - "sha256": "2ca76a1d37bd429c8cfd8792512ecd6a9ff385c152e65c68a4620c8a67441e44", 522 - "url": "https://download.jetbrains.com/rider/JetBrains.Rider-2024.3-aarch64.dmg", 523 - "build_number": "243.21565.191" 520 + "version": "2024.3.2", 521 + "sha256": "8134c06510bdee910620bbf013d3a5bb3f230ddddf4b7340a1a2920c70b346e4", 522 + "url": "https://download.jetbrains.com/rider/JetBrains.Rider-2024.3.2-aarch64.dmg", 523 + "build_number": "243.22562.171" 524 524 }, 525 525 "ruby-mine": { 526 526 "update-channel": "RubyMine RELEASE", 527 527 "url-template": "https://download.jetbrains.com/ruby/RubyMine-{version}-aarch64.dmg", 528 - "version": "2024.3", 529 - "sha256": "410f621c351b57b6fdc15391f836f45a454f2accee8d49fd60848ced3ddd4c25", 530 - "url": "https://download.jetbrains.com/ruby/RubyMine-2024.3-aarch64.dmg", 531 - "build_number": "243.21565.197" 528 + "version": "2024.3.1", 529 + "sha256": "e9642a76c2c174833442de0a8f4249e15045ee9a4d4153aa291bfc262539918e", 530 + "url": "https://download.jetbrains.com/ruby/RubyMine-2024.3.1-aarch64.dmg", 531 + "build_number": "243.22562.151" 532 532 }, 533 533 "rust-rover": { 534 534 "update-channel": "RustRover RELEASE", 535 535 "url-template": "https://download.jetbrains.com/rustrover/RustRover-{version}-aarch64.dmg", 536 - "version": "2024.2.5", 537 - "sha256": "f0ccd53e5cd8a0a143db956fbc6d118d3771bc42c62b846e9d396a620bea79d1", 538 - "url": "https://download.jetbrains.com/rustrover/RustRover-2024.2.5-aarch64.dmg", 539 - "build_number": "242.23726.162" 536 + "version": "2024.3.1", 537 + "sha256": "3e45cbfe48f42aac6be5808c42160dc5d711e258e020824259961cf08db92fb4", 538 + "url": "https://download.jetbrains.com/rustrover/RustRover-2024.3.1-aarch64.dmg", 539 + "build_number": "243.22562.187" 540 540 }, 541 541 "webstorm": { 542 542 "update-channel": "WebStorm RELEASE", 543 543 "url-template": "https://download.jetbrains.com/webstorm/WebStorm-{version}-aarch64.dmg", 544 - "version": "2024.3", 545 - "sha256": "b3fed87c00746694419b0da71baf71ebb10a8c3803c5a1502c689ff9ce7831f4", 546 - "url": "https://download.jetbrains.com/webstorm/WebStorm-2024.3-aarch64.dmg", 547 - "build_number": "243.21565.180" 544 + "version": "2024.3.1", 545 + "sha256": "1e17aea814f6168d0c0a7c519dada50486c0c09cb8f9b5c58fe3bf8f051a8a14", 546 + "url": "https://download.jetbrains.com/webstorm/WebStorm-2024.3.1-aarch64.dmg", 547 + "build_number": "243.22562.112" 548 548 }, 549 549 "writerside": { 550 550 "update-channel": "Writerside EAP", 551 551 "url-template": "https://download.jetbrains.com/writerside/writerside-{version}-aarch64.dmg", 552 552 "version": "2024.3 EAP", 553 - "sha256": "04996f17dfb4a840c74270266efc4dad9b78fa498fb9016109d1b58b498791b5", 554 - "url": "https://download.jetbrains.com/writerside/writerside-243.21565.432-aarch64.dmg", 555 - "build_number": "243.21565.432" 553 + "sha256": "29f78599e6896080ca714ad65fd3713afd69a90ecd8d848ddad1c0b42a32aed9", 554 + "url": "https://download.jetbrains.com/writerside/writerside-243.22562.163-aarch64.dmg", 555 + "build_number": "243.22562.163" 556 556 } 557 557 } 558 558 }
+240 -234
pkgs/applications/editors/jetbrains/plugins/plugins.json
··· 18 18 ], 19 19 "builds": { 20 20 "241.19072.1155": "https://plugins.jetbrains.com/files/164/590339/IdeaVIM-2.16.0.zip", 21 - "242.23726.162": "https://plugins.jetbrains.com/files/164/635855/IdeaVIM-2.17.0.zip", 22 - "243.21565.180": "https://plugins.jetbrains.com/files/164/635855/IdeaVIM-2.17.0.zip", 23 - "243.21565.191": "https://plugins.jetbrains.com/files/164/635855/IdeaVIM-2.17.0.zip", 24 - "243.21565.193": "https://plugins.jetbrains.com/files/164/635855/IdeaVIM-2.17.0.zip", 25 - "243.21565.197": "https://plugins.jetbrains.com/files/164/635855/IdeaVIM-2.17.0.zip", 26 - "243.21565.199": "https://plugins.jetbrains.com/files/164/635855/IdeaVIM-2.17.0.zip", 27 - "243.21565.202": "https://plugins.jetbrains.com/files/164/635855/IdeaVIM-2.17.0.zip", 28 - "243.21565.204": "https://plugins.jetbrains.com/files/164/635855/IdeaVIM-2.17.0.zip", 29 - "243.21565.208": "https://plugins.jetbrains.com/files/164/635855/IdeaVIM-2.17.0.zip", 30 - "243.21565.238": "https://plugins.jetbrains.com/files/164/635855/IdeaVIM-2.17.0.zip" 21 + "243.22562.112": "https://plugins.jetbrains.com/files/164/635855/IdeaVIM-2.17.0.zip", 22 + "243.22562.115": "https://plugins.jetbrains.com/files/164/635855/IdeaVIM-2.17.0.zip", 23 + "243.22562.145": "https://plugins.jetbrains.com/files/164/635855/IdeaVIM-2.17.0.zip", 24 + "243.22562.151": "https://plugins.jetbrains.com/files/164/635855/IdeaVIM-2.17.0.zip", 25 + "243.22562.155": "https://plugins.jetbrains.com/files/164/635855/IdeaVIM-2.17.0.zip", 26 + "243.22562.164": "https://plugins.jetbrains.com/files/164/635855/IdeaVIM-2.17.0.zip", 27 + "243.22562.171": "https://plugins.jetbrains.com/files/164/635855/IdeaVIM-2.17.0.zip", 28 + "243.22562.180": "https://plugins.jetbrains.com/files/164/635855/IdeaVIM-2.17.0.zip", 29 + "243.22562.186": "https://plugins.jetbrains.com/files/164/635855/IdeaVIM-2.17.0.zip", 30 + "243.22562.187": "https://plugins.jetbrains.com/files/164/635855/IdeaVIM-2.17.0.zip" 31 31 }, 32 32 "name": "ideavim" 33 33 }, ··· 36 36 "idea-ultimate" 37 37 ], 38 38 "builds": { 39 - "243.21565.193": "https://plugins.jetbrains.com/files/631/634183/python-243.21565.211.zip" 39 + "243.22562.145": "https://plugins.jetbrains.com/files/631/646610/python-243.22562.145.zip" 40 40 }, 41 41 "name": "python" 42 42 }, ··· 46 46 "idea-ultimate" 47 47 ], 48 48 "builds": { 49 - "243.21565.193": "https://plugins.jetbrains.com/files/1347/631989/scala-intellij-bin-2024.3.18.zip" 49 + "243.22562.145": "https://plugins.jetbrains.com/files/1347/645439/scala-intellij-bin-2024.3.22.zip" 50 50 }, 51 51 "name": "scala" 52 52 }, ··· 67 67 "webstorm" 68 68 ], 69 69 "builds": { 70 - "241.19072.1155": "https://plugins.jetbrains.com/files/2162/542984/StringManipulation-9.14.1.zip", 71 - "242.23726.162": "https://plugins.jetbrains.com/files/2162/542984/StringManipulation-9.14.1.zip", 72 - "243.21565.180": "https://plugins.jetbrains.com/files/2162/542984/StringManipulation-9.14.1.zip", 73 - "243.21565.191": "https://plugins.jetbrains.com/files/2162/542984/StringManipulation-9.14.1.zip", 74 - "243.21565.193": "https://plugins.jetbrains.com/files/2162/542984/StringManipulation-9.14.1.zip", 75 - "243.21565.197": "https://plugins.jetbrains.com/files/2162/542984/StringManipulation-9.14.1.zip", 76 - "243.21565.199": "https://plugins.jetbrains.com/files/2162/542984/StringManipulation-9.14.1.zip", 77 - "243.21565.202": "https://plugins.jetbrains.com/files/2162/542984/StringManipulation-9.14.1.zip", 78 - "243.21565.204": "https://plugins.jetbrains.com/files/2162/542984/StringManipulation-9.14.1.zip", 79 - "243.21565.208": "https://plugins.jetbrains.com/files/2162/542984/StringManipulation-9.14.1.zip", 80 - "243.21565.238": "https://plugins.jetbrains.com/files/2162/542984/StringManipulation-9.14.1.zip" 70 + "241.19072.1155": "https://plugins.jetbrains.com/files/2162/640476/StringManipulation-9.15.0.zip", 71 + "243.22562.112": "https://plugins.jetbrains.com/files/2162/640476/StringManipulation-9.15.0.zip", 72 + "243.22562.115": "https://plugins.jetbrains.com/files/2162/640476/StringManipulation-9.15.0.zip", 73 + "243.22562.145": "https://plugins.jetbrains.com/files/2162/640476/StringManipulation-9.15.0.zip", 74 + "243.22562.151": "https://plugins.jetbrains.com/files/2162/640476/StringManipulation-9.15.0.zip", 75 + "243.22562.155": "https://plugins.jetbrains.com/files/2162/640476/StringManipulation-9.15.0.zip", 76 + "243.22562.164": "https://plugins.jetbrains.com/files/2162/640476/StringManipulation-9.15.0.zip", 77 + "243.22562.171": "https://plugins.jetbrains.com/files/2162/640476/StringManipulation-9.15.0.zip", 78 + "243.22562.180": "https://plugins.jetbrains.com/files/2162/640476/StringManipulation-9.15.0.zip", 79 + "243.22562.186": "https://plugins.jetbrains.com/files/2162/640476/StringManipulation-9.15.0.zip", 80 + "243.22562.187": "https://plugins.jetbrains.com/files/2162/640476/StringManipulation-9.15.0.zip" 81 81 }, 82 82 "name": "string-manipulation" 83 83 }, ··· 99 99 ], 100 100 "builds": { 101 101 "241.19072.1155": null, 102 - "242.23726.162": null, 103 - "243.21565.180": null, 104 - "243.21565.191": null, 105 - "243.21565.193": null, 106 - "243.21565.197": null, 107 - "243.21565.199": null, 108 - "243.21565.202": null, 109 - "243.21565.204": null, 110 - "243.21565.208": null, 111 - "243.21565.238": null 102 + "243.22562.112": null, 103 + "243.22562.115": null, 104 + "243.22562.145": null, 105 + "243.22562.151": null, 106 + "243.22562.155": null, 107 + "243.22562.164": null, 108 + "243.22562.171": null, 109 + "243.22562.180": null, 110 + "243.22562.186": null, 111 + "243.22562.187": null 112 112 }, 113 113 "name": "kotlin" 114 114 }, ··· 130 130 ], 131 131 "builds": { 132 132 "241.19072.1155": null, 133 - "242.23726.162": "https://plugins.jetbrains.com/files/6981/623497/ini-242.23726.110.zip", 134 - "243.21565.180": "https://plugins.jetbrains.com/files/6981/633889/ini-243.21565.208.zip", 135 - "243.21565.191": "https://plugins.jetbrains.com/files/6981/633889/ini-243.21565.208.zip", 136 - "243.21565.193": "https://plugins.jetbrains.com/files/6981/633889/ini-243.21565.208.zip", 137 - "243.21565.197": "https://plugins.jetbrains.com/files/6981/633889/ini-243.21565.208.zip", 138 - "243.21565.199": "https://plugins.jetbrains.com/files/6981/633889/ini-243.21565.208.zip", 139 - "243.21565.202": "https://plugins.jetbrains.com/files/6981/633889/ini-243.21565.208.zip", 140 - "243.21565.204": "https://plugins.jetbrains.com/files/6981/633889/ini-243.21565.208.zip", 141 - "243.21565.208": "https://plugins.jetbrains.com/files/6981/633889/ini-243.21565.208.zip", 142 - "243.21565.238": "https://plugins.jetbrains.com/files/6981/633889/ini-243.21565.208.zip" 133 + "243.22562.112": "https://plugins.jetbrains.com/files/6981/648802/ini-243.22562.180.zip", 134 + "243.22562.115": "https://plugins.jetbrains.com/files/6981/648802/ini-243.22562.180.zip", 135 + "243.22562.145": "https://plugins.jetbrains.com/files/6981/648802/ini-243.22562.180.zip", 136 + "243.22562.151": "https://plugins.jetbrains.com/files/6981/648802/ini-243.22562.180.zip", 137 + "243.22562.155": "https://plugins.jetbrains.com/files/6981/648802/ini-243.22562.180.zip", 138 + "243.22562.164": "https://plugins.jetbrains.com/files/6981/648802/ini-243.22562.180.zip", 139 + "243.22562.171": "https://plugins.jetbrains.com/files/6981/648802/ini-243.22562.180.zip", 140 + "243.22562.180": "https://plugins.jetbrains.com/files/6981/648802/ini-243.22562.180.zip", 141 + "243.22562.186": "https://plugins.jetbrains.com/files/6981/648802/ini-243.22562.180.zip", 142 + "243.22562.187": "https://plugins.jetbrains.com/files/6981/648802/ini-243.22562.180.zip" 143 143 }, 144 144 "name": "ini" 145 145 }, ··· 161 161 ], 162 162 "builds": { 163 163 "241.19072.1155": "https://plugins.jetbrains.com/files/7086/610924/AceJump.zip", 164 - "242.23726.162": "https://plugins.jetbrains.com/files/7086/610924/AceJump.zip", 165 - "243.21565.180": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip", 166 - "243.21565.191": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip", 167 - "243.21565.193": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip", 168 - "243.21565.197": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip", 169 - "243.21565.199": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip", 170 - "243.21565.202": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip", 171 - "243.21565.204": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip", 172 - "243.21565.208": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip", 173 - "243.21565.238": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip" 164 + "243.22562.112": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip", 165 + "243.22562.115": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip", 166 + "243.22562.145": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip", 167 + "243.22562.151": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip", 168 + "243.22562.155": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip", 169 + "243.22562.164": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip", 170 + "243.22562.171": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip", 171 + "243.22562.180": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip", 172 + "243.22562.186": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip", 173 + "243.22562.187": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip" 174 174 }, 175 175 "name": "acejump" 176 176 }, ··· 180 180 "phpstorm" 181 181 ], 182 182 "builds": { 183 - "243.21565.193": "https://plugins.jetbrains.com/files/7219/605730/Symfony_Plugin-2024.1.276.zip", 184 - "243.21565.202": "https://plugins.jetbrains.com/files/7219/605730/Symfony_Plugin-2024.1.276.zip" 183 + "243.22562.145": "https://plugins.jetbrains.com/files/7219/605730/Symfony_Plugin-2024.1.276.zip", 184 + "243.22562.164": "https://plugins.jetbrains.com/files/7219/605730/Symfony_Plugin-2024.1.276.zip" 185 185 }, 186 186 "name": "symfony-support" 187 187 }, ··· 191 191 "phpstorm" 192 192 ], 193 193 "builds": { 194 - "243.21565.193": "https://plugins.jetbrains.com/files/7320/630497/PHP_Annotations-11.1.1.zip", 195 - "243.21565.202": "https://plugins.jetbrains.com/files/7320/630497/PHP_Annotations-11.1.1.zip" 194 + "243.22562.145": "https://plugins.jetbrains.com/files/7320/630497/PHP_Annotations-11.1.1.zip", 195 + "243.22562.164": "https://plugins.jetbrains.com/files/7320/630497/PHP_Annotations-11.1.1.zip" 196 196 }, 197 197 "name": "php-annotations" 198 198 }, ··· 209 209 "webstorm" 210 210 ], 211 211 "builds": { 212 - "242.23726.162": "https://plugins.jetbrains.com/files/7322/622853/python-ce-242.23726.103.zip", 213 - "243.21565.180": "https://plugins.jetbrains.com/files/7322/634169/python-ce-243.21565.211.zip", 214 - "243.21565.191": "https://plugins.jetbrains.com/files/7322/634169/python-ce-243.21565.211.zip", 215 - "243.21565.193": "https://plugins.jetbrains.com/files/7322/634169/python-ce-243.21565.211.zip", 216 - "243.21565.199": "https://plugins.jetbrains.com/files/7322/634169/python-ce-243.21565.211.zip", 217 - "243.21565.204": "https://plugins.jetbrains.com/files/7322/634169/python-ce-243.21565.211.zip", 218 - "243.21565.208": "https://plugins.jetbrains.com/files/7322/634169/python-ce-243.21565.211.zip", 219 - "243.21565.238": "https://plugins.jetbrains.com/files/7322/634169/python-ce-243.21565.211.zip" 212 + "243.22562.112": "https://plugins.jetbrains.com/files/7322/646590/python-ce-243.22562.145.zip", 213 + "243.22562.115": "https://plugins.jetbrains.com/files/7322/646590/python-ce-243.22562.145.zip", 214 + "243.22562.145": "https://plugins.jetbrains.com/files/7322/646590/python-ce-243.22562.145.zip", 215 + "243.22562.155": "https://plugins.jetbrains.com/files/7322/646590/python-ce-243.22562.145.zip", 216 + "243.22562.171": "https://plugins.jetbrains.com/files/7322/646590/python-ce-243.22562.145.zip", 217 + "243.22562.180": "https://plugins.jetbrains.com/files/7322/646590/python-ce-243.22562.145.zip", 218 + "243.22562.186": "https://plugins.jetbrains.com/files/7322/646590/python-ce-243.22562.145.zip", 219 + "243.22562.187": "https://plugins.jetbrains.com/files/7322/646590/python-ce-243.22562.145.zip" 220 220 }, 221 221 "name": "python-community-edition" 222 222 }, ··· 238 238 ], 239 239 "builds": { 240 240 "241.19072.1155": "https://plugins.jetbrains.com/files/7391/561441/asciidoctor-intellij-plugin-0.42.2.zip", 241 - "242.23726.162": "https://plugins.jetbrains.com/files/7391/634204/asciidoctor-intellij-plugin-0.43.3.zip", 242 - "243.21565.180": "https://plugins.jetbrains.com/files/7391/634204/asciidoctor-intellij-plugin-0.43.3.zip", 243 - "243.21565.191": "https://plugins.jetbrains.com/files/7391/634204/asciidoctor-intellij-plugin-0.43.3.zip", 244 - "243.21565.193": "https://plugins.jetbrains.com/files/7391/634204/asciidoctor-intellij-plugin-0.43.3.zip", 245 - "243.21565.197": "https://plugins.jetbrains.com/files/7391/634204/asciidoctor-intellij-plugin-0.43.3.zip", 246 - "243.21565.199": "https://plugins.jetbrains.com/files/7391/634204/asciidoctor-intellij-plugin-0.43.3.zip", 247 - "243.21565.202": "https://plugins.jetbrains.com/files/7391/634204/asciidoctor-intellij-plugin-0.43.3.zip", 248 - "243.21565.204": "https://plugins.jetbrains.com/files/7391/634204/asciidoctor-intellij-plugin-0.43.3.zip", 249 - "243.21565.208": "https://plugins.jetbrains.com/files/7391/634204/asciidoctor-intellij-plugin-0.43.3.zip", 250 - "243.21565.238": "https://plugins.jetbrains.com/files/7391/634204/asciidoctor-intellij-plugin-0.43.3.zip" 241 + "243.22562.112": "https://plugins.jetbrains.com/files/7391/634204/asciidoctor-intellij-plugin-0.43.3.zip", 242 + "243.22562.115": "https://plugins.jetbrains.com/files/7391/634204/asciidoctor-intellij-plugin-0.43.3.zip", 243 + "243.22562.145": "https://plugins.jetbrains.com/files/7391/634204/asciidoctor-intellij-plugin-0.43.3.zip", 244 + "243.22562.151": "https://plugins.jetbrains.com/files/7391/634204/asciidoctor-intellij-plugin-0.43.3.zip", 245 + "243.22562.155": "https://plugins.jetbrains.com/files/7391/634204/asciidoctor-intellij-plugin-0.43.3.zip", 246 + "243.22562.164": "https://plugins.jetbrains.com/files/7391/634204/asciidoctor-intellij-plugin-0.43.3.zip", 247 + "243.22562.171": "https://plugins.jetbrains.com/files/7391/634204/asciidoctor-intellij-plugin-0.43.3.zip", 248 + "243.22562.180": "https://plugins.jetbrains.com/files/7391/634204/asciidoctor-intellij-plugin-0.43.3.zip", 249 + "243.22562.186": "https://plugins.jetbrains.com/files/7391/634204/asciidoctor-intellij-plugin-0.43.3.zip", 250 + "243.22562.187": "https://plugins.jetbrains.com/files/7391/634204/asciidoctor-intellij-plugin-0.43.3.zip" 251 251 }, 252 252 "name": "asciidoc" 253 253 }, ··· 268 268 ], 269 269 "builds": { 270 270 "241.19072.1155": null, 271 - "243.21565.180": null, 272 - "243.21565.191": null, 273 - "243.21565.193": null, 274 - "243.21565.197": null, 275 - "243.21565.199": null, 276 - "243.21565.202": null, 277 - "243.21565.204": null, 278 - "243.21565.208": null, 279 - "243.21565.238": null 271 + "243.22562.112": null, 272 + "243.22562.115": null, 273 + "243.22562.145": null, 274 + "243.22562.151": null, 275 + "243.22562.155": null, 276 + "243.22562.164": null, 277 + "243.22562.171": null, 278 + "243.22562.180": null, 279 + "243.22562.186": null 280 280 }, 281 281 "name": "-deprecated-rust" 282 282 }, ··· 297 297 ], 298 298 "builds": { 299 299 "241.19072.1155": null, 300 - "243.21565.180": null, 301 - "243.21565.191": null, 302 - "243.21565.193": null, 303 - "243.21565.197": null, 304 - "243.21565.199": null, 305 - "243.21565.202": null, 306 - "243.21565.204": null, 307 - "243.21565.208": null, 308 - "243.21565.238": null 300 + "243.22562.112": null, 301 + "243.22562.115": null, 302 + "243.22562.145": null, 303 + "243.22562.151": null, 304 + "243.22562.155": null, 305 + "243.22562.164": null, 306 + "243.22562.171": null, 307 + "243.22562.180": null, 308 + "243.22562.186": null 309 309 }, 310 310 "name": "-deprecated-rust-beta" 311 311 }, 312 312 "8554": { 313 313 "compatible": [ 314 + "clion", 315 + "datagrip", 314 316 "goland", 315 317 "idea-community", 316 318 "idea-ultimate", 319 + "mps", 320 + "phpstorm", 317 321 "pycharm-community", 318 322 "pycharm-professional", 319 - "ruby-mine" 323 + "rider", 324 + "ruby-mine", 325 + "rust-rover", 326 + "webstorm" 320 327 ], 321 328 "builds": { 322 - "243.21565.193": "https://plugins.jetbrains.com/files/8554/633920/featuresTrainer-243.21565.204.zip", 323 - "243.21565.197": "https://plugins.jetbrains.com/files/8554/633920/featuresTrainer-243.21565.204.zip", 324 - "243.21565.199": "https://plugins.jetbrains.com/files/8554/633920/featuresTrainer-243.21565.204.zip", 325 - "243.21565.208": "https://plugins.jetbrains.com/files/8554/633920/featuresTrainer-243.21565.204.zip" 329 + "241.19072.1155": null, 330 + "243.22562.112": "https://plugins.jetbrains.com/files/8554/649092/featuresTrainer-243.22562.187.zip", 331 + "243.22562.115": "https://plugins.jetbrains.com/files/8554/649092/featuresTrainer-243.22562.187.zip", 332 + "243.22562.145": "https://plugins.jetbrains.com/files/8554/649092/featuresTrainer-243.22562.187.zip", 333 + "243.22562.151": "https://plugins.jetbrains.com/files/8554/649092/featuresTrainer-243.22562.187.zip", 334 + "243.22562.155": "https://plugins.jetbrains.com/files/8554/649092/featuresTrainer-243.22562.187.zip", 335 + "243.22562.164": "https://plugins.jetbrains.com/files/8554/649092/featuresTrainer-243.22562.187.zip", 336 + "243.22562.171": "https://plugins.jetbrains.com/files/8554/649092/featuresTrainer-243.22562.187.zip", 337 + "243.22562.180": "https://plugins.jetbrains.com/files/8554/649092/featuresTrainer-243.22562.187.zip", 338 + "243.22562.186": "https://plugins.jetbrains.com/files/8554/649092/featuresTrainer-243.22562.187.zip", 339 + "243.22562.187": "https://plugins.jetbrains.com/files/8554/649092/featuresTrainer-243.22562.187.zip" 326 340 }, 327 341 "name": "ide-features-trainer" 328 342 }, ··· 344 358 ], 345 359 "builds": { 346 360 "241.19072.1155": "https://plugins.jetbrains.com/files/8607/606922/NixIDEA-0.4.0.16.zip", 347 - "242.23726.162": "https://plugins.jetbrains.com/files/8607/606922/NixIDEA-0.4.0.16.zip", 348 - "243.21565.180": "https://plugins.jetbrains.com/files/8607/606922/NixIDEA-0.4.0.16.zip", 349 - "243.21565.191": "https://plugins.jetbrains.com/files/8607/606922/NixIDEA-0.4.0.16.zip", 350 - "243.21565.193": "https://plugins.jetbrains.com/files/8607/606922/NixIDEA-0.4.0.16.zip", 351 - "243.21565.197": "https://plugins.jetbrains.com/files/8607/606922/NixIDEA-0.4.0.16.zip", 352 - "243.21565.199": "https://plugins.jetbrains.com/files/8607/606922/NixIDEA-0.4.0.16.zip", 353 - "243.21565.202": "https://plugins.jetbrains.com/files/8607/606922/NixIDEA-0.4.0.16.zip", 354 - "243.21565.204": "https://plugins.jetbrains.com/files/8607/606922/NixIDEA-0.4.0.16.zip", 355 - "243.21565.208": "https://plugins.jetbrains.com/files/8607/606922/NixIDEA-0.4.0.16.zip", 356 - "243.21565.238": "https://plugins.jetbrains.com/files/8607/606922/NixIDEA-0.4.0.16.zip" 361 + "243.22562.112": "https://plugins.jetbrains.com/files/8607/606922/NixIDEA-0.4.0.16.zip", 362 + "243.22562.115": "https://plugins.jetbrains.com/files/8607/606922/NixIDEA-0.4.0.16.zip", 363 + "243.22562.145": "https://plugins.jetbrains.com/files/8607/606922/NixIDEA-0.4.0.16.zip", 364 + "243.22562.151": "https://plugins.jetbrains.com/files/8607/606922/NixIDEA-0.4.0.16.zip", 365 + "243.22562.155": "https://plugins.jetbrains.com/files/8607/606922/NixIDEA-0.4.0.16.zip", 366 + "243.22562.164": "https://plugins.jetbrains.com/files/8607/606922/NixIDEA-0.4.0.16.zip", 367 + "243.22562.171": "https://plugins.jetbrains.com/files/8607/606922/NixIDEA-0.4.0.16.zip", 368 + "243.22562.180": "https://plugins.jetbrains.com/files/8607/606922/NixIDEA-0.4.0.16.zip", 369 + "243.22562.186": "https://plugins.jetbrains.com/files/8607/606922/NixIDEA-0.4.0.16.zip", 370 + "243.22562.187": "https://plugins.jetbrains.com/files/8607/606922/NixIDEA-0.4.0.16.zip" 357 371 }, 358 372 "name": "nixidea" 359 373 }, ··· 363 377 "idea-ultimate" 364 378 ], 365 379 "builds": { 366 - "243.21565.193": "https://plugins.jetbrains.com/files/9568/634176/go-plugin-243.21565.211.zip", 367 - "243.21565.208": "https://plugins.jetbrains.com/files/9568/634176/go-plugin-243.21565.211.zip" 380 + "243.22562.145": "https://plugins.jetbrains.com/files/9568/646604/go-plugin-243.22562.145.zip", 381 + "243.22562.186": "https://plugins.jetbrains.com/files/9568/646604/go-plugin-243.22562.145.zip" 368 382 }, 369 383 "name": "go" 370 384 }, ··· 386 400 ], 387 401 "builds": { 388 402 "241.19072.1155": "https://plugins.jetbrains.com/files/10037/585243/CSVEditor-3.4.0-241.zip", 389 - "242.23726.162": "https://plugins.jetbrains.com/files/10037/614791/intellij-csv-validator-4.0.0.zip", 390 - "243.21565.180": "https://plugins.jetbrains.com/files/10037/614791/intellij-csv-validator-4.0.0.zip", 391 - "243.21565.191": "https://plugins.jetbrains.com/files/10037/614791/intellij-csv-validator-4.0.0.zip", 392 - "243.21565.193": "https://plugins.jetbrains.com/files/10037/614791/intellij-csv-validator-4.0.0.zip", 393 - "243.21565.197": "https://plugins.jetbrains.com/files/10037/614791/intellij-csv-validator-4.0.0.zip", 394 - "243.21565.199": "https://plugins.jetbrains.com/files/10037/614791/intellij-csv-validator-4.0.0.zip", 395 - "243.21565.202": "https://plugins.jetbrains.com/files/10037/614791/intellij-csv-validator-4.0.0.zip", 396 - "243.21565.204": "https://plugins.jetbrains.com/files/10037/614791/intellij-csv-validator-4.0.0.zip", 397 - "243.21565.208": "https://plugins.jetbrains.com/files/10037/614791/intellij-csv-validator-4.0.0.zip", 398 - "243.21565.238": "https://plugins.jetbrains.com/files/10037/614791/intellij-csv-validator-4.0.0.zip" 403 + "243.22562.112": "https://plugins.jetbrains.com/files/10037/646414/intellij-csv-validator-4.0.1.zip", 404 + "243.22562.115": "https://plugins.jetbrains.com/files/10037/646414/intellij-csv-validator-4.0.1.zip", 405 + "243.22562.145": "https://plugins.jetbrains.com/files/10037/646414/intellij-csv-validator-4.0.1.zip", 406 + "243.22562.151": "https://plugins.jetbrains.com/files/10037/646414/intellij-csv-validator-4.0.1.zip", 407 + "243.22562.155": "https://plugins.jetbrains.com/files/10037/646414/intellij-csv-validator-4.0.1.zip", 408 + "243.22562.164": "https://plugins.jetbrains.com/files/10037/646414/intellij-csv-validator-4.0.1.zip", 409 + "243.22562.171": "https://plugins.jetbrains.com/files/10037/646414/intellij-csv-validator-4.0.1.zip", 410 + "243.22562.180": "https://plugins.jetbrains.com/files/10037/646414/intellij-csv-validator-4.0.1.zip", 411 + "243.22562.186": "https://plugins.jetbrains.com/files/10037/646414/intellij-csv-validator-4.0.1.zip", 412 + "243.22562.187": "https://plugins.jetbrains.com/files/10037/646414/intellij-csv-validator-4.0.1.zip" 399 413 }, 400 414 "name": "csv-editor" 401 415 }, ··· 416 430 "webstorm" 417 431 ], 418 432 "builds": { 419 - "241.19072.1155": "https://plugins.jetbrains.com/files/11349/634264/aws-toolkit-jetbrains-standalone-3.40-241.zip", 420 - "242.23726.162": "https://plugins.jetbrains.com/files/11349/634268/aws-toolkit-jetbrains-standalone-3.40-242.zip", 421 - "243.21565.180": "https://plugins.jetbrains.com/files/11349/634266/aws-toolkit-jetbrains-standalone-3.40-243.zip", 422 - "243.21565.191": "https://plugins.jetbrains.com/files/11349/634266/aws-toolkit-jetbrains-standalone-3.40-243.zip", 423 - "243.21565.193": "https://plugins.jetbrains.com/files/11349/634266/aws-toolkit-jetbrains-standalone-3.40-243.zip", 424 - "243.21565.197": "https://plugins.jetbrains.com/files/11349/634266/aws-toolkit-jetbrains-standalone-3.40-243.zip", 425 - "243.21565.199": "https://plugins.jetbrains.com/files/11349/634266/aws-toolkit-jetbrains-standalone-3.40-243.zip", 426 - "243.21565.202": "https://plugins.jetbrains.com/files/11349/634266/aws-toolkit-jetbrains-standalone-3.40-243.zip", 427 - "243.21565.204": "https://plugins.jetbrains.com/files/11349/634266/aws-toolkit-jetbrains-standalone-3.40-243.zip", 428 - "243.21565.208": "https://plugins.jetbrains.com/files/11349/634266/aws-toolkit-jetbrains-standalone-3.40-243.zip", 429 - "243.21565.238": "https://plugins.jetbrains.com/files/11349/634266/aws-toolkit-jetbrains-standalone-3.40-243.zip" 433 + "241.19072.1155": "https://plugins.jetbrains.com/files/11349/648222/aws-toolkit-jetbrains-standalone-3.45-241.zip", 434 + "243.22562.112": "https://plugins.jetbrains.com/files/11349/648226/aws-toolkit-jetbrains-standalone-3.45-243.zip", 435 + "243.22562.115": "https://plugins.jetbrains.com/files/11349/648226/aws-toolkit-jetbrains-standalone-3.45-243.zip", 436 + "243.22562.145": "https://plugins.jetbrains.com/files/11349/648226/aws-toolkit-jetbrains-standalone-3.45-243.zip", 437 + "243.22562.151": "https://plugins.jetbrains.com/files/11349/648226/aws-toolkit-jetbrains-standalone-3.45-243.zip", 438 + "243.22562.155": "https://plugins.jetbrains.com/files/11349/648226/aws-toolkit-jetbrains-standalone-3.45-243.zip", 439 + "243.22562.164": "https://plugins.jetbrains.com/files/11349/648226/aws-toolkit-jetbrains-standalone-3.45-243.zip", 440 + "243.22562.171": "https://plugins.jetbrains.com/files/11349/648226/aws-toolkit-jetbrains-standalone-3.45-243.zip", 441 + "243.22562.180": "https://plugins.jetbrains.com/files/11349/648226/aws-toolkit-jetbrains-standalone-3.45-243.zip", 442 + "243.22562.186": "https://plugins.jetbrains.com/files/11349/648226/aws-toolkit-jetbrains-standalone-3.45-243.zip", 443 + "243.22562.187": "https://plugins.jetbrains.com/files/11349/648226/aws-toolkit-jetbrains-standalone-3.45-243.zip" 430 444 }, 431 445 "name": "aws-toolkit" 432 446 }, ··· 448 462 ], 449 463 "builds": { 450 464 "241.19072.1155": null, 451 - "242.23726.162": "https://plugins.jetbrains.com/files/12062/586741/keymap-vscode-242.20224.385.zip", 452 - "243.21565.180": "https://plugins.jetbrains.com/files/12062/630060/keymap-vscode-243.21565.122.zip", 453 - "243.21565.191": "https://plugins.jetbrains.com/files/12062/630060/keymap-vscode-243.21565.122.zip", 454 - "243.21565.193": "https://plugins.jetbrains.com/files/12062/630060/keymap-vscode-243.21565.122.zip", 455 - "243.21565.197": "https://plugins.jetbrains.com/files/12062/630060/keymap-vscode-243.21565.122.zip", 456 - "243.21565.199": "https://plugins.jetbrains.com/files/12062/630060/keymap-vscode-243.21565.122.zip", 457 - "243.21565.202": "https://plugins.jetbrains.com/files/12062/630060/keymap-vscode-243.21565.122.zip", 458 - "243.21565.204": "https://plugins.jetbrains.com/files/12062/630060/keymap-vscode-243.21565.122.zip", 459 - "243.21565.208": "https://plugins.jetbrains.com/files/12062/630060/keymap-vscode-243.21565.122.zip", 460 - "243.21565.238": "https://plugins.jetbrains.com/files/12062/630060/keymap-vscode-243.21565.122.zip" 465 + "243.22562.112": "https://plugins.jetbrains.com/files/12062/630060/keymap-vscode-243.21565.122.zip", 466 + "243.22562.115": "https://plugins.jetbrains.com/files/12062/630060/keymap-vscode-243.21565.122.zip", 467 + "243.22562.145": "https://plugins.jetbrains.com/files/12062/630060/keymap-vscode-243.21565.122.zip", 468 + "243.22562.151": "https://plugins.jetbrains.com/files/12062/630060/keymap-vscode-243.21565.122.zip", 469 + "243.22562.155": "https://plugins.jetbrains.com/files/12062/630060/keymap-vscode-243.21565.122.zip", 470 + "243.22562.164": "https://plugins.jetbrains.com/files/12062/630060/keymap-vscode-243.21565.122.zip", 471 + "243.22562.171": "https://plugins.jetbrains.com/files/12062/630060/keymap-vscode-243.21565.122.zip", 472 + "243.22562.180": "https://plugins.jetbrains.com/files/12062/630060/keymap-vscode-243.21565.122.zip", 473 + "243.22562.186": "https://plugins.jetbrains.com/files/12062/630060/keymap-vscode-243.21565.122.zip", 474 + "243.22562.187": "https://plugins.jetbrains.com/files/12062/630060/keymap-vscode-243.21565.122.zip" 461 475 }, 462 476 "name": "vscode-keymap" 463 477 }, ··· 479 493 ], 480 494 "builds": { 481 495 "241.19072.1155": "https://plugins.jetbrains.com/files/12559/508216/keymap-eclipse-241.14494.150.zip", 482 - "242.23726.162": "https://plugins.jetbrains.com/files/12559/579737/keymap-eclipse-242.20224.204.zip", 483 - "243.21565.180": "https://plugins.jetbrains.com/files/12559/629985/keymap-eclipse-243.21565.122.zip", 484 - "243.21565.191": "https://plugins.jetbrains.com/files/12559/629985/keymap-eclipse-243.21565.122.zip", 485 - "243.21565.193": "https://plugins.jetbrains.com/files/12559/629985/keymap-eclipse-243.21565.122.zip", 486 - "243.21565.197": "https://plugins.jetbrains.com/files/12559/629985/keymap-eclipse-243.21565.122.zip", 487 - "243.21565.199": "https://plugins.jetbrains.com/files/12559/629985/keymap-eclipse-243.21565.122.zip", 488 - "243.21565.202": "https://plugins.jetbrains.com/files/12559/629985/keymap-eclipse-243.21565.122.zip", 489 - "243.21565.204": "https://plugins.jetbrains.com/files/12559/629985/keymap-eclipse-243.21565.122.zip", 490 - "243.21565.208": "https://plugins.jetbrains.com/files/12559/629985/keymap-eclipse-243.21565.122.zip", 491 - "243.21565.238": "https://plugins.jetbrains.com/files/12559/629985/keymap-eclipse-243.21565.122.zip" 496 + "243.22562.112": "https://plugins.jetbrains.com/files/12559/629985/keymap-eclipse-243.21565.122.zip", 497 + "243.22562.115": "https://plugins.jetbrains.com/files/12559/629985/keymap-eclipse-243.21565.122.zip", 498 + "243.22562.145": "https://plugins.jetbrains.com/files/12559/629985/keymap-eclipse-243.21565.122.zip", 499 + "243.22562.151": "https://plugins.jetbrains.com/files/12559/629985/keymap-eclipse-243.21565.122.zip", 500 + "243.22562.155": "https://plugins.jetbrains.com/files/12559/629985/keymap-eclipse-243.21565.122.zip", 501 + "243.22562.164": "https://plugins.jetbrains.com/files/12559/629985/keymap-eclipse-243.21565.122.zip", 502 + "243.22562.171": "https://plugins.jetbrains.com/files/12559/629985/keymap-eclipse-243.21565.122.zip", 503 + "243.22562.180": "https://plugins.jetbrains.com/files/12559/629985/keymap-eclipse-243.21565.122.zip", 504 + "243.22562.186": "https://plugins.jetbrains.com/files/12559/629985/keymap-eclipse-243.21565.122.zip", 505 + "243.22562.187": "https://plugins.jetbrains.com/files/12559/629985/keymap-eclipse-243.21565.122.zip" 492 506 }, 493 507 "name": "eclipse-keymap" 494 508 }, ··· 510 524 ], 511 525 "builds": { 512 526 "241.19072.1155": null, 513 - "242.23726.162": "https://plugins.jetbrains.com/files/13017/591092/keymap-visualStudio-242.21829.44.zip", 514 - "243.21565.180": "https://plugins.jetbrains.com/files/13017/630016/keymap-visualStudio-243.21565.122.zip", 515 - "243.21565.191": "https://plugins.jetbrains.com/files/13017/630016/keymap-visualStudio-243.21565.122.zip", 516 - "243.21565.193": "https://plugins.jetbrains.com/files/13017/630016/keymap-visualStudio-243.21565.122.zip", 517 - "243.21565.197": "https://plugins.jetbrains.com/files/13017/630016/keymap-visualStudio-243.21565.122.zip", 518 - "243.21565.199": "https://plugins.jetbrains.com/files/13017/630016/keymap-visualStudio-243.21565.122.zip", 519 - "243.21565.202": "https://plugins.jetbrains.com/files/13017/630016/keymap-visualStudio-243.21565.122.zip", 520 - "243.21565.204": "https://plugins.jetbrains.com/files/13017/630016/keymap-visualStudio-243.21565.122.zip", 521 - "243.21565.208": "https://plugins.jetbrains.com/files/13017/630016/keymap-visualStudio-243.21565.122.zip", 522 - "243.21565.238": "https://plugins.jetbrains.com/files/13017/630016/keymap-visualStudio-243.21565.122.zip" 527 + "243.22562.112": "https://plugins.jetbrains.com/files/13017/630016/keymap-visualStudio-243.21565.122.zip", 528 + "243.22562.115": "https://plugins.jetbrains.com/files/13017/630016/keymap-visualStudio-243.21565.122.zip", 529 + "243.22562.145": "https://plugins.jetbrains.com/files/13017/630016/keymap-visualStudio-243.21565.122.zip", 530 + "243.22562.151": "https://plugins.jetbrains.com/files/13017/630016/keymap-visualStudio-243.21565.122.zip", 531 + "243.22562.155": "https://plugins.jetbrains.com/files/13017/630016/keymap-visualStudio-243.21565.122.zip", 532 + "243.22562.164": "https://plugins.jetbrains.com/files/13017/630016/keymap-visualStudio-243.21565.122.zip", 533 + "243.22562.171": "https://plugins.jetbrains.com/files/13017/630016/keymap-visualStudio-243.21565.122.zip", 534 + "243.22562.180": "https://plugins.jetbrains.com/files/13017/630016/keymap-visualStudio-243.21565.122.zip", 535 + "243.22562.186": "https://plugins.jetbrains.com/files/13017/630016/keymap-visualStudio-243.21565.122.zip", 536 + "243.22562.187": "https://plugins.jetbrains.com/files/13017/630016/keymap-visualStudio-243.21565.122.zip" 523 537 }, 524 538 "name": "visual-studio-keymap" 525 539 }, ··· 541 555 ], 542 556 "builds": { 543 557 "241.19072.1155": null, 544 - "242.23726.162": "https://plugins.jetbrains.com/files/14004/608477/protoeditor-242.23339.11.zip", 545 - "243.21565.180": "https://plugins.jetbrains.com/files/14004/629971/protoeditor-243.21565.122.zip", 546 - "243.21565.191": "https://plugins.jetbrains.com/files/14004/629971/protoeditor-243.21565.122.zip", 547 - "243.21565.193": "https://plugins.jetbrains.com/files/14004/629971/protoeditor-243.21565.122.zip", 548 - "243.21565.197": "https://plugins.jetbrains.com/files/14004/629971/protoeditor-243.21565.122.zip", 549 - "243.21565.199": "https://plugins.jetbrains.com/files/14004/629971/protoeditor-243.21565.122.zip", 550 - "243.21565.202": "https://plugins.jetbrains.com/files/14004/629971/protoeditor-243.21565.122.zip", 551 - "243.21565.204": "https://plugins.jetbrains.com/files/14004/629971/protoeditor-243.21565.122.zip", 552 - "243.21565.208": "https://plugins.jetbrains.com/files/14004/629971/protoeditor-243.21565.122.zip", 553 - "243.21565.238": "https://plugins.jetbrains.com/files/14004/629971/protoeditor-243.21565.122.zip" 558 + "243.22562.112": "https://plugins.jetbrains.com/files/14004/636643/protoeditor-243.22562.13.zip", 559 + "243.22562.115": "https://plugins.jetbrains.com/files/14004/636643/protoeditor-243.22562.13.zip", 560 + "243.22562.145": "https://plugins.jetbrains.com/files/14004/636643/protoeditor-243.22562.13.zip", 561 + "243.22562.151": "https://plugins.jetbrains.com/files/14004/636643/protoeditor-243.22562.13.zip", 562 + "243.22562.155": "https://plugins.jetbrains.com/files/14004/636643/protoeditor-243.22562.13.zip", 563 + "243.22562.164": "https://plugins.jetbrains.com/files/14004/636643/protoeditor-243.22562.13.zip", 564 + "243.22562.171": "https://plugins.jetbrains.com/files/14004/636643/protoeditor-243.22562.13.zip", 565 + "243.22562.180": "https://plugins.jetbrains.com/files/14004/636643/protoeditor-243.22562.13.zip", 566 + "243.22562.186": "https://plugins.jetbrains.com/files/14004/636643/protoeditor-243.22562.13.zip", 567 + "243.22562.187": "https://plugins.jetbrains.com/files/14004/636643/protoeditor-243.22562.13.zip" 554 568 }, 555 569 "name": "protocol-buffers" 556 570 }, ··· 572 586 ], 573 587 "builds": { 574 588 "241.19072.1155": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", 575 - "242.23726.162": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", 576 - "243.21565.180": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", 577 - "243.21565.191": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", 578 - "243.21565.193": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", 579 - "243.21565.197": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", 580 - "243.21565.199": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", 581 - "243.21565.202": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", 582 - "243.21565.204": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", 583 - "243.21565.208": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", 584 - "243.21565.238": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar" 589 + "243.22562.112": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", 590 + "243.22562.115": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", 591 + "243.22562.145": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", 592 + "243.22562.151": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", 593 + "243.22562.155": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", 594 + "243.22562.164": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", 595 + "243.22562.171": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", 596 + "243.22562.180": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", 597 + "243.22562.186": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", 598 + "243.22562.187": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar" 585 599 }, 586 600 "name": "darcula-pitch-black" 587 601 }, ··· 603 617 ], 604 618 "builds": { 605 619 "241.19072.1155": "https://plugins.jetbrains.com/files/17718/631741/github-copilot-intellij-1.5.29.7524.zip", 606 - "242.23726.162": "https://plugins.jetbrains.com/files/17718/631741/github-copilot-intellij-1.5.29.7524.zip", 607 - "243.21565.180": "https://plugins.jetbrains.com/files/17718/631741/github-copilot-intellij-1.5.29.7524.zip", 608 - "243.21565.191": "https://plugins.jetbrains.com/files/17718/631741/github-copilot-intellij-1.5.29.7524.zip", 609 - "243.21565.193": "https://plugins.jetbrains.com/files/17718/631741/github-copilot-intellij-1.5.29.7524.zip", 610 - "243.21565.197": "https://plugins.jetbrains.com/files/17718/631741/github-copilot-intellij-1.5.29.7524.zip", 611 - "243.21565.199": "https://plugins.jetbrains.com/files/17718/631741/github-copilot-intellij-1.5.29.7524.zip", 612 - "243.21565.202": "https://plugins.jetbrains.com/files/17718/631741/github-copilot-intellij-1.5.29.7524.zip", 613 - "243.21565.204": "https://plugins.jetbrains.com/files/17718/631741/github-copilot-intellij-1.5.29.7524.zip", 614 - "243.21565.208": "https://plugins.jetbrains.com/files/17718/631741/github-copilot-intellij-1.5.29.7524.zip", 615 - "243.21565.238": "https://plugins.jetbrains.com/files/17718/631741/github-copilot-intellij-1.5.29.7524.zip" 620 + "243.22562.112": "https://plugins.jetbrains.com/files/17718/631741/github-copilot-intellij-1.5.29.7524.zip", 621 + "243.22562.115": "https://plugins.jetbrains.com/files/17718/631741/github-copilot-intellij-1.5.29.7524.zip", 622 + "243.22562.145": "https://plugins.jetbrains.com/files/17718/631741/github-copilot-intellij-1.5.29.7524.zip", 623 + "243.22562.151": "https://plugins.jetbrains.com/files/17718/631741/github-copilot-intellij-1.5.29.7524.zip", 624 + "243.22562.155": "https://plugins.jetbrains.com/files/17718/631741/github-copilot-intellij-1.5.29.7524.zip", 625 + "243.22562.164": "https://plugins.jetbrains.com/files/17718/631741/github-copilot-intellij-1.5.29.7524.zip", 626 + "243.22562.171": "https://plugins.jetbrains.com/files/17718/631741/github-copilot-intellij-1.5.29.7524.zip", 627 + "243.22562.180": "https://plugins.jetbrains.com/files/17718/631741/github-copilot-intellij-1.5.29.7524.zip", 628 + "243.22562.186": "https://plugins.jetbrains.com/files/17718/631741/github-copilot-intellij-1.5.29.7524.zip", 629 + "243.22562.187": "https://plugins.jetbrains.com/files/17718/631741/github-copilot-intellij-1.5.29.7524.zip" 616 630 }, 617 631 "name": "github-copilot" 618 632 }, ··· 634 648 ], 635 649 "builds": { 636 650 "241.19072.1155": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", 637 - "242.23726.162": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", 638 - "243.21565.180": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", 639 - "243.21565.191": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", 640 - "243.21565.193": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", 641 - "243.21565.197": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", 642 - "243.21565.199": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", 643 - "243.21565.202": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", 644 - "243.21565.204": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", 645 - "243.21565.208": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", 646 - "243.21565.238": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip" 651 + "243.22562.112": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", 652 + "243.22562.115": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", 653 + "243.22562.145": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", 654 + "243.22562.151": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", 655 + "243.22562.155": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", 656 + "243.22562.164": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", 657 + "243.22562.171": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", 658 + "243.22562.180": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", 659 + "243.22562.186": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", 660 + "243.22562.187": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip" 647 661 }, 648 662 "name": "netbeans-6-5-keymap" 649 663 }, ··· 665 679 ], 666 680 "builds": { 667 681 "241.19072.1155": "https://plugins.jetbrains.com/files/20146/537545/Mermaid-0.0.22_IJ.232.zip", 668 - "242.23726.162": "https://plugins.jetbrains.com/files/20146/537545/Mermaid-0.0.22_IJ.232.zip", 669 - "243.21565.180": "https://plugins.jetbrains.com/files/20146/633971/Mermaid-0.0.24_IJ.243.zip", 670 - "243.21565.191": "https://plugins.jetbrains.com/files/20146/633971/Mermaid-0.0.24_IJ.243.zip", 671 - "243.21565.193": "https://plugins.jetbrains.com/files/20146/633971/Mermaid-0.0.24_IJ.243.zip", 672 - "243.21565.197": "https://plugins.jetbrains.com/files/20146/633971/Mermaid-0.0.24_IJ.243.zip", 673 - "243.21565.199": "https://plugins.jetbrains.com/files/20146/633971/Mermaid-0.0.24_IJ.243.zip", 674 - "243.21565.202": "https://plugins.jetbrains.com/files/20146/633971/Mermaid-0.0.24_IJ.243.zip", 675 - "243.21565.204": "https://plugins.jetbrains.com/files/20146/633971/Mermaid-0.0.24_IJ.243.zip", 676 - "243.21565.208": "https://plugins.jetbrains.com/files/20146/633971/Mermaid-0.0.24_IJ.243.zip", 677 - "243.21565.238": "https://plugins.jetbrains.com/files/20146/633971/Mermaid-0.0.24_IJ.243.zip" 682 + "243.22562.112": "https://plugins.jetbrains.com/files/20146/633971/Mermaid-0.0.24_IJ.243.zip", 683 + "243.22562.115": "https://plugins.jetbrains.com/files/20146/633971/Mermaid-0.0.24_IJ.243.zip", 684 + "243.22562.145": "https://plugins.jetbrains.com/files/20146/633971/Mermaid-0.0.24_IJ.243.zip", 685 + "243.22562.151": "https://plugins.jetbrains.com/files/20146/633971/Mermaid-0.0.24_IJ.243.zip", 686 + "243.22562.155": "https://plugins.jetbrains.com/files/20146/633971/Mermaid-0.0.24_IJ.243.zip", 687 + "243.22562.164": "https://plugins.jetbrains.com/files/20146/633971/Mermaid-0.0.24_IJ.243.zip", 688 + "243.22562.171": "https://plugins.jetbrains.com/files/20146/633971/Mermaid-0.0.24_IJ.243.zip", 689 + "243.22562.180": "https://plugins.jetbrains.com/files/20146/633971/Mermaid-0.0.24_IJ.243.zip", 690 + "243.22562.186": "https://plugins.jetbrains.com/files/20146/633971/Mermaid-0.0.24_IJ.243.zip", 691 + "243.22562.187": "https://plugins.jetbrains.com/files/20146/633971/Mermaid-0.0.24_IJ.243.zip" 678 692 }, 679 693 "name": "mermaid" 680 694 }, ··· 685 699 "rust-rover" 686 700 ], 687 701 "builds": { 688 - "242.23726.162": "https://plugins.jetbrains.com/files/22407/629692/intellij-rust-242.23726.162.zip", 689 - "243.21565.193": "https://plugins.jetbrains.com/files/22407/630513/intellij-rust-243.21565.136.zip", 690 - "243.21565.238": "https://plugins.jetbrains.com/files/22407/630513/intellij-rust-243.21565.136.zip" 702 + "243.22562.145": "https://plugins.jetbrains.com/files/22407/649101/intellij-rust-243.22562.187.zip", 703 + "243.22562.155": "https://plugins.jetbrains.com/files/22407/649101/intellij-rust-243.22562.187.zip", 704 + "243.22562.187": "https://plugins.jetbrains.com/files/22407/649101/intellij-rust-243.22562.187.zip" 691 705 }, 692 706 "name": "rust" 693 707 } 694 708 }, 695 709 "files": { 696 710 "https://plugins.jetbrains.com/files/10037/585243/CSVEditor-3.4.0-241.zip": "sha256-QwguD4ENrL7GxmX+CGEyCPowbAPNpYgntVGAbHxOlyQ=", 697 - "https://plugins.jetbrains.com/files/10037/614791/intellij-csv-validator-4.0.0.zip": "sha256-DuztEfLOmwSWrWk+Q9rWYn/BzHrkx2giKTTpIbZdAOQ=", 698 - "https://plugins.jetbrains.com/files/11349/634264/aws-toolkit-jetbrains-standalone-3.40-241.zip": "sha256-ZdbaVJk73XKRORaYRAsUBs5f8muHvufi+op3+HpmdgE=", 699 - "https://plugins.jetbrains.com/files/11349/634266/aws-toolkit-jetbrains-standalone-3.40-243.zip": "sha256-Gub9OafwI6qqAicRZBzxEldqRzzaIj/h7DrrgQM/+08=", 700 - "https://plugins.jetbrains.com/files/11349/634268/aws-toolkit-jetbrains-standalone-3.40-242.zip": "sha256-VCDTW7apAMZBoTOY/18v7IufL1PtP+7NVX2xAm4/e58=", 701 - "https://plugins.jetbrains.com/files/12062/586741/keymap-vscode-242.20224.385.zip": "sha256-LpooujwYaX339yZJVe7HPYIOw+YdJLeEtRgwPxLJ9eI=", 711 + "https://plugins.jetbrains.com/files/10037/646414/intellij-csv-validator-4.0.1.zip": "sha256-CtBwMIR78LlFcFVc/RScXShIaibyxjFp/weenl+PzK8=", 712 + "https://plugins.jetbrains.com/files/11349/648222/aws-toolkit-jetbrains-standalone-3.45-241.zip": "sha256-vcgPsB0zUciwDEJgdlHv+UdsjNaziBjH6R0ChYzxX6s=", 713 + "https://plugins.jetbrains.com/files/11349/648226/aws-toolkit-jetbrains-standalone-3.45-243.zip": "sha256-BakhuCeOtpKbapZhy0+7+sMylLD59Z861nyiW3O/oH4=", 702 714 "https://plugins.jetbrains.com/files/12062/630060/keymap-vscode-243.21565.122.zip": "sha256-phv8MTGKNGzRviKzX+nIVTbkX4WkU82QVO5zXUQLtAo=", 703 715 "https://plugins.jetbrains.com/files/12559/508216/keymap-eclipse-241.14494.150.zip": "sha256-/hEx0gIFvUXD799tRmMHAt9Z5ziFgaQs1RX0zQwTJIA=", 704 - "https://plugins.jetbrains.com/files/12559/579737/keymap-eclipse-242.20224.204.zip": "sha256-bAN0ifNiUqj51TYc7RLKwTMtv9OxjzqEQwXa6KtFlsU=", 705 716 "https://plugins.jetbrains.com/files/12559/629985/keymap-eclipse-243.21565.122.zip": "sha256-/g1ucT18ywVJnCePH7WyMWKgM9umowBz5wFObmO7cws=", 706 - "https://plugins.jetbrains.com/files/13017/591092/keymap-visualStudio-242.21829.44.zip": "sha256-aIwiMT30L3KCvbrkMUdgDdUdyBqGmT4w6c4pZEnMGNo=", 707 717 "https://plugins.jetbrains.com/files/13017/630016/keymap-visualStudio-243.21565.122.zip": "sha256-VQqK0Cm9ddXN63KYIqimuGOh7EB9VvdlErp/VrWx8SA=", 708 - "https://plugins.jetbrains.com/files/1347/631989/scala-intellij-bin-2024.3.18.zip": "sha256-lkkJhg8BDyN5c4KESTOniXUaQzlnv8NJS//j7k9Eln8=", 709 - "https://plugins.jetbrains.com/files/14004/608477/protoeditor-242.23339.11.zip": "sha256-gI3sY4jDXsY6pUhzqejJnvGJwLj6bNMs45UR8ekrZcs=", 710 - "https://plugins.jetbrains.com/files/14004/629971/protoeditor-243.21565.122.zip": "sha256-cv6JTujoD5g90ngXTtnj5x31wjbIZlKZ6Zn0H+vHCTk=", 718 + "https://plugins.jetbrains.com/files/1347/645439/scala-intellij-bin-2024.3.22.zip": "sha256-AGE32xgLZz5kf/8XMoiIQgZ6206l5sNmUaTRvyyqgSA=", 719 + "https://plugins.jetbrains.com/files/14004/636643/protoeditor-243.22562.13.zip": "sha256-Tgu8CfDhO6KugfuLNhmxe89dMm+Qo3fmAg/8hwjUaoc=", 711 720 "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar": "sha256-eXInfAqY3yEZRXCAuv3KGldM1pNKEioNwPB0rIGgJFw=", 712 721 "https://plugins.jetbrains.com/files/164/590339/IdeaVIM-2.16.0.zip": "sha256-uMIrYoZE16X/K96HuDJx8QMh6wUbi4+qSw+HJAq7ukI=", 713 722 "https://plugins.jetbrains.com/files/164/635855/IdeaVIM-2.17.0.zip": "sha256-ESbvyp66+X2Ko+bol3mk8aLIf8xjG7Qa0vz8k/zYl4A=", ··· 715 724 "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip": "sha256-KrzZTKZMQqoEMw+vDUv2jjs0EX0leaPBkU8H/ecq/oI=", 716 725 "https://plugins.jetbrains.com/files/20146/537545/Mermaid-0.0.22_IJ.232.zip": "sha256-DUiIQYIzYoXmgtBakSLtMB+xxJMaR70Jgg9erySa3wQ=", 717 726 "https://plugins.jetbrains.com/files/20146/633971/Mermaid-0.0.24_IJ.243.zip": "sha256-jGWRU0g120qYvvFiUFI10zvprTsemuIq3XmIjYxZGts=", 718 - "https://plugins.jetbrains.com/files/2162/542984/StringManipulation-9.14.1.zip": "sha256-OqeQCqFe8iW/8NPg+9i+UKh+twIPQ9uLZrItMukCi7k=", 719 - "https://plugins.jetbrains.com/files/22407/629692/intellij-rust-242.23726.162.zip": "sha256-QLh4Im0+rQqwk9nUVDv3HSRgMMqR7hwtN2CMaUNT2Go=", 720 - "https://plugins.jetbrains.com/files/22407/630513/intellij-rust-243.21565.136.zip": "sha256-mkfqxDs97T9QzgLVFS5CksZiHrDWF3DdWulTuEfY3Po=", 721 - "https://plugins.jetbrains.com/files/631/634183/python-243.21565.211.zip": "sha256-OTk8Wtn3QzU68EE0TQBik+hzZ1slPvj++qcpV0iMpXY=", 722 - "https://plugins.jetbrains.com/files/6981/623497/ini-242.23726.110.zip": "sha256-gSbiV74fQNU0xOkcK5BHozmy9Msslkhx9APH0JY74J8=", 723 - "https://plugins.jetbrains.com/files/6981/633889/ini-243.21565.208.zip": "sha256-CJjUYj3GR9MrNhrejrxJ4reZX/80XQ+gkZffFKd0nhc=", 727 + "https://plugins.jetbrains.com/files/2162/640476/StringManipulation-9.15.0.zip": "sha256-TZPup3EJ0cBv4i2eVAQwVmmzy0rmt4KptEsk3C7baEM=", 728 + "https://plugins.jetbrains.com/files/22407/649101/intellij-rust-243.22562.187.zip": "sha256-9oi0QzKYZ1p62RBdC6n6H1D7+9DWGsuz7NJziJy38jc=", 729 + "https://plugins.jetbrains.com/files/631/646610/python-243.22562.145.zip": "sha256-yStRdrh7gtKB56b0qBNfjlFlkLhWKgeULcJtETMnHGw=", 730 + "https://plugins.jetbrains.com/files/6981/648802/ini-243.22562.180.zip": "sha256-1t6E5rVDOOuWmbYsOI21fMx68OA1o2P4EBw9vI2lvMM=", 724 731 "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip": "sha256-kVUEgfEKUupV/qlB4Dpzi5pFHjhVvX74XIPetKtjysM=", 725 732 "https://plugins.jetbrains.com/files/7086/610924/AceJump.zip": "sha256-Qp24juITBXEF5izdzayWq28Ioy4/kgT0qz6snZ0dND0=", 726 733 "https://plugins.jetbrains.com/files/7219/605730/Symfony_Plugin-2024.1.276.zip": "sha256-drNmhJMe+kuY2fcHjY+SQmkACvFk0rVI4vAhyZ/bgLc=", 727 734 "https://plugins.jetbrains.com/files/7320/630497/PHP_Annotations-11.1.1.zip": "sha256-05aBYbqNIuwe/JTwntFdIqML8NHbTOwVusl1P9FzuYY=", 728 - "https://plugins.jetbrains.com/files/7322/622853/python-ce-242.23726.103.zip": "sha256-mHh0o6RN1Ey1dq+9yEDBCrE3CuF9Hx7fpmxUzPlWtlA=", 729 - "https://plugins.jetbrains.com/files/7322/634169/python-ce-243.21565.211.zip": "sha256-B+kpVTE2UEplClCyLX0T2r3yf8u8IMwjS3gMYsL3NkM=", 735 + "https://plugins.jetbrains.com/files/7322/646590/python-ce-243.22562.145.zip": "sha256-45UtQRZMtKF6addrrB3A+goeyICMfcZ2FKcJvJSqgg4=", 730 736 "https://plugins.jetbrains.com/files/7391/561441/asciidoctor-intellij-plugin-0.42.2.zip": "sha256-oKczkLHAk2bJRNRgToVe0ySEJGF8+P4oWqQ33olwzWw=", 731 737 "https://plugins.jetbrains.com/files/7391/634204/asciidoctor-intellij-plugin-0.43.3.zip": "sha256-lwUvD2Ehs1kUWGdZFQZILDLIq73rNBm/8yT1rJgKU5g=", 732 - "https://plugins.jetbrains.com/files/8554/633920/featuresTrainer-243.21565.204.zip": "sha256-3MCG1SNEy2Mf9r+nTLcRwJ+rIJRvtO0kYKFNjIan86E=", 738 + "https://plugins.jetbrains.com/files/8554/649092/featuresTrainer-243.22562.187.zip": "sha256-dYT0y5eeqcx6ix+fPnpwzi3z+NOB0u7L83gS9S9LiV8=", 733 739 "https://plugins.jetbrains.com/files/8607/606922/NixIDEA-0.4.0.16.zip": "sha256-9GMqs/hSavcw1E4ZJTLDH1lx3HEeQ5NR8BT+Q9pN3io=", 734 - "https://plugins.jetbrains.com/files/9568/634176/go-plugin-243.21565.211.zip": "sha256-2OF3dDL3nC8AdNzZFVA425ym1r2nC4aN1Sm7okn1krU=" 740 + "https://plugins.jetbrains.com/files/9568/646604/go-plugin-243.22562.145.zip": "sha256-7UBnL3+belHgt1oNOyD8Oo4CHQPUx0/w6guZxts84ck=" 735 741 } 736 742 }
+10 -5
pkgs/applications/networking/mullvad/mullvad.nix
··· 10 10 , libnftnl 11 11 , libmnl 12 12 , libwg 13 + , darwin 13 14 , enableOpenvpn ? true 14 15 , openvpn-mullvad 15 16 , shadowsocks-rust ··· 51 52 fakeGoCopyLibwg 52 53 ]; 53 54 54 - buildInputs = [ 55 - dbus.dev 56 - libnftnl 57 - libmnl 58 - ]; 55 + buildInputs = 56 + lib.optionals stdenv.hostPlatform.isLinux [ 57 + dbus.dev 58 + libnftnl 59 + libmnl 60 + ] 61 + ++ lib.optionals stdenv.hostPlatform.isDarwin [ 62 + darwin.libpcap 63 + ]; 59 64 60 65 postInstall = '' 61 66 compdir=$(mktemp -d)
+5 -5
pkgs/by-name/al/alist/package.nix
··· 10 10 }: 11 11 buildGoModule rec { 12 12 pname = "alist"; 13 - version = "3.40.0"; 14 - webVersion = "3.39.2"; 13 + version = "3.41.0"; 14 + webVersion = "3.41.0"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "AlistGo"; 18 18 repo = "alist"; 19 19 rev = "refs/tags/v${version}"; 20 - hash = "sha256-2cpYe00OoTLvbN2BeB50wiAcfrrXCp3DXb5xCZaVMPA="; 20 + hash = "sha256-DzqSkcyDRyiHM0yh7A+dZj7TnjhDVQoHHgV5piVcu1g="; 21 21 # populate values that require us to use git. By doing this in postFetch we 22 22 # can delete .git afterwards and maintain better reproducibility of the src. 23 23 leaveDotGit = true; ··· 31 31 }; 32 32 web = fetchzip { 33 33 url = "https://github.com/AlistGo/alist-web/releases/download/${webVersion}/dist.tar.gz"; 34 - hash = "sha256-vc/pwu6TohHVydhMJ5xOXPLogV0WodT/YnGIXtIsLlk="; 34 + hash = "sha256-1IXvst9VfxuIjUrgmJxTYm8jJQStMK+RlQibQ3fTDGs="; 35 35 }; 36 36 37 37 proxyVendor = true; 38 - vendorHash = "sha256-S8TPu+pOljrA8GAeCzxgv09pb5rauSYvRm8gt8oMPTs="; 38 + vendorHash = "sha256-p6JqYmcQR6W7RE7F6NGxoiTxSOESuYjpke0rLRlxeSM="; 39 39 40 40 buildInputs = [ fuse ]; 41 41
+2 -2
pkgs/by-name/bd/bdf2psf/package.nix
··· 8 8 9 9 stdenv.mkDerivation rec { 10 10 pname = "bdf2psf"; 11 - version = "1.232"; 11 + version = "1.233"; 12 12 13 13 src = fetchurl { 14 14 url = "mirror://debian/pool/main/c/console-setup/bdf2psf_${version}_all.deb"; 15 - sha256 = "sha256-+C3t/W/mXJacF0d5Yk325TpZm8A3Qhno0ZyJUGjhU8U="; 15 + sha256 = "sha256-DCP8kswoc/zQqf+C/S41f6LyuxoAkG39Oi5y9A56S3k="; 16 16 }; 17 17 18 18 nativeBuildInputs = [ dpkg ];
+3 -3
pkgs/by-name/ca/cadvisor/package.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "cadvisor"; 5 - version = "0.49.1"; 5 + version = "0.49.2"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "google"; 9 9 repo = "cadvisor"; 10 10 rev = "v${version}"; 11 - hash = "sha256-Hr9L9cewJN1ibh+6L0XhxxNAH4U8TrK+j7YBjS6FzZc="; 11 + hash = "sha256-V4UolB4R/QLLuiXPbzCIrtpgmLTeIuYoSZE3oAQEgn8="; 12 12 }; 13 13 14 14 modRoot = "./cmd"; 15 15 16 - vendorHash = "sha256-9h+W+zuwxlpkBaCpk1otrBrwfyitfGLViOcZRpKB3uU="; 16 + vendorHash = "sha256-HUBGqiRqsR942FwAeVkPLzxS6JiMRaiknuZAlqT9oY4="; 17 17 18 18 ldflags = [ "-s" "-w" "-X github.com/google/cadvisor/version.Version=${version}" ]; 19 19
+85
pkgs/by-name/ca/catalyst-browser/package.nix
··· 1 + { 2 + stdenv, 3 + lib, 4 + fetchurl, 5 + appimageTools, 6 + makeWrapper, 7 + electron_33, 8 + electronPackage ? electron_33, 9 + asar, 10 + }: 11 + 12 + let 13 + electron = electronPackage; 14 + in 15 + stdenv.mkDerivation rec { 16 + pname = "catalyst-browser"; 17 + version = "3.9.4"; 18 + 19 + src = fetchurl { 20 + url = "https://github.com/CatalystDevOrg/Catalyst/releases/download/v${version}/catalyst-${version}.AppImage"; 21 + hash = "sha256-6t1RAxmRc/1fAQT4Qnd42kh3cxgRZr74k8gwebTb0Ic="; 22 + name = "catalyst-${version}.AppImage"; 23 + }; 24 + 25 + appimageContents = appimageTools.extractType2 { 26 + inherit pname src version; 27 + }; 28 + 29 + dontUnpack = true; 30 + dontConfigure = true; 31 + dontBuild = true; 32 + 33 + nativeBuildInputs = [ 34 + makeWrapper 35 + asar 36 + ]; 37 + 38 + installPhase = '' 39 + runHook preInstall 40 + 41 + mkdir -p $out/bin $out/share/catalyst $out/share/applications 42 + mkdir -p $out/share/catalyst/resources/ 43 + 44 + cp -a ${appimageContents}/locales $out/share/catalyst 45 + cp -a ${appimageContents}/catalyst.desktop $out/share/applications/catalyst.desktop 46 + mkdir -p $out/share/pixmaps 47 + cp -r ${appimageContents}/usr/share/icons/hicolor/0x0/apps/catalyst.png $out/share/pixmaps/ 48 + asar extract ${appimageContents}/resources/app.asar resources/ 49 + rm -rf resources/.github 50 + rm -rf resources/.vscode 51 + rm -rf resources/.eslintrc.json 52 + rm -rf resources/.gitignore 53 + rm -rf resources/.pnpm-debug.log 54 + rm -rf resources/contributing.md 55 + rm -rf resources/pnpm-lock.yaml 56 + rm -rf resources/README.md 57 + rm -rf resources/CODE_OF_CONDUCT.md 58 + rm -rf *.nix 59 + substituteInPlace resources/src/index.html \ 60 + --replace-fail 'catalyst-default-distrib' 'catalyst-default-nixpkgs' 61 + 62 + substituteInPlace $out/share/applications/catalyst.desktop \ 63 + --replace-fail 'Exec=AppRun' 'Exec=${meta.mainProgram}' 64 + 65 + asar pack resources/ $out/share/catalyst/resources/app.asar 66 + 67 + runHook postInstall 68 + ''; 69 + 70 + postFixup = '' 71 + makeWrapper ${electron}/bin/electron $out/bin/${meta.mainProgram} \ 72 + --add-flags $out/share/catalyst/resources/app.asar \ 73 + --prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath [ stdenv.cc.cc ]}" 74 + ''; 75 + 76 + meta = { 77 + description = "Minimal, functional, and customizable user-focused FOSS web browser based on Chromium"; 78 + homepage = "https://getcatalyst.eu.org"; 79 + license = lib.licenses.mit; 80 + mainProgram = "catalyst"; 81 + maintainers = with lib.maintainers; [ jdev082 ]; 82 + platforms = [ "x86_64-linux" ]; 83 + sourceProvenance = [ lib.sourceTypes.binaryNativeCode ]; 84 + }; 85 + }
+3 -3
pkgs/by-name/cn/cnquery/package.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "cnquery"; 9 - version = "11.31.1"; 9 + version = "11.34.0"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "mondoohq"; 13 13 repo = "cnquery"; 14 14 rev = "refs/tags/v${version}"; 15 - hash = "sha256-wP6MburjIRevE2nfO6p7hPAmJ390v7y7r/DgVpwkVlo="; 15 + hash = "sha256-bgwAQi6X+g9GeqKrTLcxlDtdWXqVNsKq24CaVmzl/+M="; 16 16 }; 17 17 18 18 subPackages = [ "apps/cnquery" ]; 19 19 20 - vendorHash = "sha256-OxvC/JUXu5DLMv3VrcbJbfgEkkzTJEPR2ig/8YCff9U="; 20 + vendorHash = "sha256-rgjYpiTWp9KqC7gX05Fx5h2hKT1ah2GQorPzPhJpQH0="; 21 21 22 22 ldflags = [ 23 23 "-w"
+3 -3
pkgs/by-name/cu/cunicu/package.nix
··· 10 10 }: 11 11 buildGoModule rec { 12 12 pname = "cunicu"; 13 - version = "0.5.65"; 13 + version = "0.5.68"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "cunicu"; 17 17 repo = "cunicu"; 18 18 rev = "v${version}"; 19 - hash = "sha256-U+aFGh6OykjBUQvpm4TGE1AMfK0CAgjXjszC634x+/g="; 19 + hash = "sha256-bSX9Mf+7BNX37DrFut3c6HKdjBPh6xgdr8X2hNBjV54="; 20 20 }; 21 21 22 22 nativeBuildInputs = [ ··· 28 28 29 29 CGO_ENABLED = 0; 30 30 31 - vendorHash = "sha256-g6qjtdxqwABjxm6kdqwtVgYHFqEvcU6PI4bCmebXt/U="; 31 + vendorHash = "sha256-ATIDio2C71gm5/Ex3Ys9izJSxx4rb1jQU5snGS8idVU="; 32 32 33 33 # These packages contain networking dependent tests which fail in the sandbox 34 34 excludedPackages = [
+3 -3
pkgs/by-name/de/deno/package.nix
··· 19 19 in 20 20 rustPlatform.buildRustPackage rec { 21 21 pname = "deno"; 22 - version = "2.1.3"; 22 + version = "2.1.4"; 23 23 24 24 src = fetchFromGitHub { 25 25 owner = "denoland"; 26 26 repo = "deno"; 27 27 rev = "refs/tags/v${version}"; 28 - hash = "sha256-q4cBkmNekJnFVirD1r5LVFq94ZXOk8wnWoxw0+9LdNQ="; 28 + hash = "sha256-CUfUYiD1ZVrbH4RowJN0PUCafpIsEWu0sCPzxngz4Ak="; 29 29 }; 30 30 31 - cargoHash = "sha256-/HKXRQjQ1ToA80jouWXL0lDY19fnqDCjRifjpce9tTw="; 31 + cargoHash = "sha256-bnX2tKX6nrUU/cUsavV7bWSOhjLyMdYc/y6GHqwx55Q="; 32 32 33 33 postPatch = '' 34 34 # upstream uses lld on aarch64-darwin for faster builds
+31 -23
pkgs/by-name/di/dioxus-cli/package.nix
··· 1 - { lib 2 - , stdenv 3 - , fetchCrate 4 - , rustPlatform 5 - , pkg-config 6 - , rustfmt 7 - , cacert 8 - , openssl 9 - , darwin 10 - , nix-update-script 11 - , testers 12 - , dioxus-cli 1 + { 2 + lib, 3 + stdenv, 4 + fetchCrate, 5 + rustPlatform, 6 + pkg-config, 7 + rustfmt, 8 + cacert, 9 + openssl, 10 + nix-update-script, 11 + testers, 12 + dioxus-cli, 13 13 }: 14 14 15 15 rustPlatform.buildRustPackage rec { 16 16 pname = "dioxus-cli"; 17 - version = "0.5.7"; 17 + version = "0.6.0"; 18 18 19 19 src = fetchCrate { 20 20 inherit pname version; 21 - hash = "sha256-/LeMh5WX4dvkveu5w6qBQLbtoi5yUW6iad0YatA/tMQ="; 21 + hash = "sha256-0Kg2/+S8EuMYZQaK4Ao+mbS7K48VhVWjPL+LnoVJMSw="; 22 22 }; 23 23 24 - cargoHash = "sha256-D6y2NiFqSf0u6icSKCRZK7ycR+GswOX627M7PEy/D6U="; 24 + cargoHash = "sha256-RMo6q/GSAV1bCMWtR+wu9xGKCgz/Ie6t/8oirBly/LQ="; 25 + buildFeatures = [ "optimizations" ]; 25 26 26 - nativeBuildInputs = [ pkg-config cacert ]; 27 - buildInputs = [ openssl ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ 28 - darwin.apple_sdk.frameworks.CoreServices 29 - darwin.apple_sdk.frameworks.SystemConfiguration 27 + nativeBuildInputs = [ 28 + pkg-config 29 + cacert 30 30 ]; 31 + 32 + buildInputs = [ openssl ]; 31 33 32 34 OPENSSL_NO_VENDOR = 1; 33 35 ··· 35 37 36 38 checkFlags = [ 37 39 # requires network access 38 - "--skip=server::web::proxy::test::add_proxy" 39 - "--skip=server::web::proxy::test::add_proxy_trailing_slash" 40 + "--skip=serve::proxy::test" 40 41 ]; 41 42 42 43 passthru = { ··· 47 48 meta = with lib; { 48 49 homepage = "https://dioxuslabs.com"; 49 50 description = "CLI tool for developing, testing, and publishing Dioxus apps"; 50 - license = with licenses; [ mit asl20 ]; 51 - maintainers = with maintainers; [ xanderio cathalmullan ]; 51 + changelog = "https://github.com/DioxusLabs/dioxus/releases"; 52 + license = with licenses; [ 53 + mit 54 + asl20 55 + ]; 56 + maintainers = with maintainers; [ 57 + xanderio 58 + cathalmullan 59 + ]; 52 60 mainProgram = "dx"; 53 61 }; 54 62 }
+19 -8
pkgs/by-name/do/dogedns/package.nix
··· 11 11 12 12 rustPlatform.buildRustPackage rec { 13 13 pname = "dogedns"; 14 - version = "0.2.6"; 14 + version = "0.2.8"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "Dj-Codeman"; 18 18 repo = "doge"; 19 - rev = "6dd0383f31c096bfe2b6918c36b6e2c48414e753"; 20 - hash = "sha256-cvqDSTHFf/le2jItGTSkAGURj64WRvOmMRI+vFH0/50="; 19 + rev = "v${version}"; 20 + hash = "sha256-3wOka+MKSy2x3100eF0d9A5Jc0qFSNCiLsisHO1Uldc="; 21 21 }; 22 22 23 - cargoHash = "sha256-v9AuX7FZfy18yu4P9ovHsL5AQIYhPa8NEsMziEeHCJ8="; 23 + cargoHash = "sha256-hRtHjyOeIGx7ulXZiyY7EWXVQiF2vzFP1Gf+lTpe2GQ="; 24 24 25 25 patches = [ 26 26 # remove date info to make the build reproducible ··· 28 28 ./remove-date-info.patch 29 29 ]; 30 30 31 + checkFlags = [ 32 + "--skip=options::test::all_mixed_3" 33 + "--skip=options::test::domain_and_class" 34 + "--skip=options::test::domain_and_class_lowercase" 35 + "--skip=options::test::domain_and_nameserver" 36 + "--skip=options::test::domain_and_single_domain" 37 + "--skip=options::test::just_domain" 38 + "--skip=options::test::just_named_domain" 39 + "--skip=options::test::two_classes" 40 + ]; 41 + 31 42 nativeBuildInputs = [ installShellFiles pandoc ] 32 43 ++ lib.optionals stdenv.hostPlatform.isLinux [ pkg-config ]; 33 44 buildInputs = lib.optionals stdenv.hostPlatform.isLinux [ openssl ] ··· 38 49 installManPage ./target/man/*.1 39 50 ''; 40 51 41 - meta = with lib; { 42 - description = "Reviving A command-line DNS client"; 52 + meta = { 53 + description = "Reviving a command-line DNS client"; 43 54 homepage = "https://github.com/Dj-Codeman/doge"; 44 - license = licenses.eupl12; 55 + license = lib.licenses.eupl12; 45 56 mainProgram = "doge"; 46 - maintainers = with maintainers; [ aktaboot ]; 57 + maintainers = with lib.maintainers; [ aktaboot ]; 47 58 }; 48 59 }
+2 -2
pkgs/by-name/dp/dpkg/package.nix
··· 19 19 20 20 stdenv.mkDerivation rec { 21 21 pname = "dpkg"; 22 - version = "1.22.10"; 22 + version = "1.22.11"; 23 23 24 24 src = fetchgit { 25 25 url = "https://git.launchpad.net/ubuntu/+source/dpkg"; 26 26 rev = "applied/${version}"; 27 - hash = "sha256-D/9nQXwzgLo+odn72WHuCJDjipfWdim2ZdSLTI2VlgE="; 27 + hash = "sha256-mKyS0lPTG3ROcw8AhB4IdjNjvZK2YTGV9pbpjz/OLAc="; 28 28 }; 29 29 30 30 configureFlags = [
+78
pkgs/by-name/ea/easyroam-connect-desktop/package.nix
··· 1 + { 2 + stdenv, 3 + lib, 4 + fetchurl, 5 + autoPatchelfHook, 6 + glib, 7 + gtk3, 8 + pango, 9 + cairo, 10 + harfbuzz, 11 + networkmanager, 12 + libsecret, 13 + libsoup_3, 14 + webkitgtk_4_1, 15 + glib-networking, 16 + wrapGAppsHook3, 17 + }: 18 + stdenv.mkDerivation rec { 19 + pname = "easyroam-connect-desktop"; 20 + version = "1.3.5"; 21 + 22 + src = fetchurl { 23 + url = "http://packages.easyroam.de/repos/easyroam-desktop/pool/main/e/easyroam-desktop/easyroam_connect_desktop-${version}+${version}-linux.deb"; 24 + hash = "sha256-TRzEPPjsD1+eSuElvbTV4HJFfwfS+EH+r/OhdMP8KG0="; 25 + }; 26 + 27 + dontConfigure = true; 28 + dontBuild = true; 29 + 30 + nativeBuildInputs = [ 31 + autoPatchelfHook 32 + wrapGAppsHook3 33 + ]; 34 + 35 + buildInputs = [ 36 + glib 37 + gtk3 38 + pango 39 + cairo 40 + harfbuzz 41 + libsecret 42 + networkmanager 43 + webkitgtk_4_1 44 + libsoup_3 45 + glib-networking 46 + ]; 47 + 48 + unpackPhase = '' 49 + ar p $src data.tar.xz | tar xJ 50 + ''; 51 + 52 + installPhase = '' 53 + runHook preInstall 54 + 55 + mkdir -p $out 56 + cp -r usr/share $out/share 57 + 58 + mkdir -p $out/bin 59 + ln -s $out/share/easyroam_connect_desktop/easyroam_connect_desktop $out/bin/easyroam_connect_desktop 60 + 61 + runHook postInstall 62 + ''; 63 + 64 + meta = with lib; { 65 + description = "Manage and install your easyroam WiFi profiles"; 66 + mainProgram = "easyroam_connect_desktop"; 67 + longDescription = '' 68 + Using this software you can easily connect your device to eduroam® by simply logging in with your DFN-AAI account. 69 + ''; 70 + homepage = "https://easyroam.de"; 71 + license = licenses.unfree; 72 + maintainers = with maintainers; [ 73 + shadows_withal 74 + MarchCraft 75 + ]; 76 + platforms = [ "x86_64-linux" ]; 77 + }; 78 + }
+3 -3
pkgs/by-name/gr/grafana-alloy/package.nix
··· 17 17 18 18 buildGoModule rec { 19 19 pname = "grafana-alloy"; 20 - version = "1.5.0"; 20 + version = "1.5.1"; 21 21 22 22 src = fetchFromGitHub { 23 23 rev = "v${version}"; 24 24 owner = "grafana"; 25 25 repo = "alloy"; 26 - hash = "sha256-uiJwzpWmViyVZRimnDP8XkTyT0v6dliyyh4rvIi0T9M="; 26 + hash = "sha256-0aNEzEf7hbMZO2Nx+T1tXB7xuK3hsH7MCynC+i3Cnr4="; 27 27 }; 28 28 29 29 proxyVendor = true; 30 - vendorHash = "sha256-mh51vVHWq14UgfB45/HTE8Z/9t41atgoSJRPUb4jZd4="; 30 + vendorHash = "sha256-YreRPoAxPuuulsqtWix1ZumpKUJb32iTNe0ZiIBYhY0="; 31 31 32 32 nativeBuildInputs = [ 33 33 fixup-yarn-lock
+2 -2
pkgs/by-name/he/heptabase/package.nix
··· 5 5 }: 6 6 let 7 7 pname = "heptabase"; 8 - version = "1.46.1"; 8 + version = "1.48.1"; 9 9 src = fetchurl { 10 10 url = "https://github.com/heptameta/project-meta/releases/download/v${version}/Heptabase-${version}.AppImage"; 11 - hash = "sha256-JOjh9OHV+E7QuyWwsppLnRMpucTjq7X0upQDvZwYnJI="; 11 + hash = "sha256-zscrloVYmR4NSNWINqdAP/9gHu5+GpFTRq0MF7bNE2Y="; 12 12 }; 13 13 14 14 appimageContents = appimageTools.extractType2 { inherit pname version src; };
+3 -3
pkgs/by-name/ki/kitex/package.nix
··· 8 8 9 9 buildGoModule rec { 10 10 pname = "kitex"; 11 - version = "0.11.3"; 11 + version = "0.12.0"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "cloudwego"; 15 15 repo = "kitex"; 16 16 rev = "v${version}"; 17 - hash = "sha256-FjFhbkEMxuBUVfytPk27mrBaAlGXZ9RPWeBy+m0bPV8="; 17 + hash = "sha256-tCZHDdDwMgZVGeARNfBC3/vQHNN5chKt607R6htx8HI="; 18 18 }; 19 19 20 - vendorHash = "sha256-e98x8lSwO/u8lFbqDmbVNjVG57Y93/P0ls2UUgRvkH0="; 20 + vendorHash = "sha256-OkCCrdEiq63JTATlsMF3lwZ4JjYIwKOHAz2fqDj64Do="; 21 21 22 22 subPackages = [ "tool/cmd/kitex" ]; 23 23
+3 -3
pkgs/by-name/mo/mountpoint-s3/package.nix
··· 9 9 10 10 rustPlatform.buildRustPackage rec { 11 11 pname = "mountpoint-s3"; 12 - version = "1.12.0"; 12 + version = "1.13.0"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "awslabs"; 16 16 repo = "mountpoint-s3"; 17 17 rev = "v${version}"; 18 - hash = "sha256-tKeQn7yyw0AL/Rx8P1FSZU3Zd2UAlDYE6/85e6Ex9IA="; 18 + hash = "sha256-L0xVrADLWVH6r600XvxI5I+IghBSmpC6F93cIH/ejh8="; 19 19 fetchSubmodules = true; 20 20 }; 21 21 22 - cargoHash = "sha256-MU4wrThhy9y4ni2lfD0VcYqIEUpi/4TqKIaPSFHCkws="; 22 + cargoHash = "sha256-Uj6/ZDRaYq99gTwHqAX2c21LecC3LLkJXgCDQ+xEytE="; 23 23 24 24 # thread 'main' panicked at cargo-auditable/src/collect_audit_data.rs:77:9: 25 25 # cargo metadata failure: error: none of the selected packages contains these features: libfuse3
+60
pkgs/by-name/op/openbao/package.nix
··· 1 + { 2 + lib, 3 + fetchFromGitHub, 4 + buildGoModule, 5 + testers, 6 + openbao, 7 + }: 8 + buildGoModule rec { 9 + pname = "openbao"; 10 + version = "2.1.0"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "openbao"; 14 + repo = "openbao"; 15 + rev = "v${version}"; 16 + hash = "sha256-QzUNb4T9uau9bWZX6ulUDyfdInGd86iClBAG72C+7mo="; 17 + }; 18 + 19 + vendorHash = "sha256-Lg58NbwO7vLNRCBwJujcoVcrV018FevvdrUassnAg3k="; 20 + 21 + proxyVendor = true; 22 + 23 + subPackages = [ "." ]; 24 + 25 + tags = [ 26 + "openbao" 27 + "bao" 28 + ]; 29 + 30 + ldflags = [ 31 + "-s" 32 + "-w" 33 + "-X github.com/openbao/openbao/version.GitCommit=${src.rev}" 34 + "-X github.com/openbao/openbao/version.fullVersion=${version}" 35 + ]; 36 + 37 + postInstall = '' 38 + mv $out/bin/openbao $out/bin/bao 39 + ''; 40 + 41 + # TODO: Enable the NixOS tests after adding OpenBao as a NixOS service in an upcoming PR and 42 + # adding NixOS tests 43 + # 44 + # passthru.tests = { inherit (nixosTests) vault vault-postgresql vault-dev vault-agent; }; 45 + 46 + passthru.tests.version = testers.testVersion { 47 + package = openbao; 48 + command = "HOME=$(mktemp -d) bao --version"; 49 + version = "v${version}"; 50 + }; 51 + 52 + meta = with lib; { 53 + homepage = "https://www.openbao.org/"; 54 + description = "Open source, community-driven fork of Vault managed by the Linux Foundation"; 55 + changelog = "https://github.com/openbao/openbao/blob/v${version}/CHANGELOG.md"; 56 + license = licenses.mpl20; 57 + mainProgram = "bao"; 58 + maintainers = with maintainers; [ brianmay ]; 59 + }; 60 + }
+5 -10
pkgs/by-name/op/openscap/package.nix
··· 10 10 openssl, 11 11 util-linux, 12 12 pcre2, 13 - pcre, 14 13 libselinux, 15 14 graphviz, 16 15 glib, ··· 29 28 installShellFiles, 30 29 rpm, 31 30 system-sendmail, 32 - hyperscan, 33 31 gnome2, 34 32 curl, 35 33 procps, ··· 42 40 43 41 stdenv.mkDerivation rec { 44 42 pname = "openscap"; 45 - version = "1.3.10"; 43 + version = "1.4.0"; 46 44 47 45 src = fetchFromGitHub { 48 46 owner = "OpenSCAP"; 49 47 repo = "openscap"; 50 48 rev = version; 51 - hash = "sha256-P7k+Ygz/XmpTSKBEqbyJsd1bIDVJ1HA/RJdrEtjYD5g="; 49 + hash = "sha256-LYDXASy1yZA+GfUKaXUKyZgdRqGERvMeyVIHJFfCfII="; 52 50 }; 53 51 54 52 strictDeps = true; ··· 76 74 openssl 77 75 valgrind 78 76 pcre2 79 - pcre 80 77 libxslt 81 78 xmlsec 82 - hyperscan 83 79 libselinux 84 80 libyaml 85 81 xmlbird ··· 107 103 --replace-fail "DESTINATION ''${PERL_VENDORLIB}" "DESTINATION ''${SWIG_PERL_DIR}''${PERL_VERSION}" \ 108 104 --replace-fail "DESTINATION ''${PERL_VENDORARCH}" "DESTINATION ''${SWIG_PERL_DIR}" 109 105 substituteInPlace src/common/oscap_pcre.c \ 110 - --replace-fail "#include <pcre2.h>" "#include <${pcre2.dev}/include/pcre2.h>" \ 111 - --replace-fail "#include <pcre.h>" "#include <${pcre.dev}/include/pcre.h>" 106 + --replace-fail "#include <pcre2.h>" "#include <${pcre2.dev}/include/pcre2.h>" 112 107 ''; 113 108 114 109 cmakeFlags = [ ··· 139 134 ]; 140 135 141 136 postBuild = '' 142 - make docs 137 + make $makeFlags docs 143 138 ''; 144 139 145 140 installPhase = '' ··· 155 150 license = lib.licenses.lgpl21Only; 156 151 maintainers = with lib.maintainers; [ tochiaha ]; 157 152 mainProgram = "oscap"; 158 - platforms = [ "x86_64-linux" ]; 153 + platforms = lib.platforms.linux; 159 154 }; 160 155 }
+9 -2
pkgs/by-name/pa/paperless-ngx/package.nix
··· 161 161 ]; 162 162 163 163 postPatch = '' 164 - # pytest-xdist makes the tests flaky 164 + # pytest-xdist with to many threads makes the tests flaky 165 + if (( $NIX_BUILD_CORES > 4)); then 166 + NIX_BUILD_CORES=4 167 + fi 165 168 substituteInPlace src/setup.cfg \ 166 - --replace-fail "--numprocesses auto --maxprocesses=16" "" 169 + --replace-fail "--numprocesses auto --maxprocesses=16" "--numprocesses $NIX_BUILD_CORES" 167 170 ''; 168 171 169 172 nativeBuildInputs = [ ··· 277 280 pytest-httpx 278 281 pytest-mock 279 282 pytest-rerunfailures 283 + pytest-xdist 280 284 pytestCheckHook 281 285 ]; 286 + 287 + # manually managed in postPatch 288 + dontUsePytestXdist = false; 282 289 283 290 pytestFlagsArray = [ 284 291 "src"
+4 -4
pkgs/by-name/re/readarr/package.nix
··· 24 24 ."${stdenv.hostPlatform.system}" or (throw "Unsupported system: ${stdenv.hostPlatform.system}"); 25 25 hash = 26 26 { 27 - x64-linux_hash = "sha256-48ZlBTr/lO1AAsYInu48fDB77RXH+b2hXjDPwWdeZW4="; 28 - arm64-linux_hash = "sha256-vyNoI1ffqWyYCfH+3rRNtaECkku3pF3pD+2RBchD+6o="; 29 - x64-osx_hash = "sha256-VeGq+kVuBLGqERcWyvPfcygAG0/262J9/RPr49X4jtE="; 27 + x64-linux_hash = "sha256-VDA3+gZSkeWKCXIkyOZXyQp8Eh13CQPLpZuDN0+w5rE="; 28 + arm64-linux_hash = "sha256-I8kEWJL9DNJCytck1FZ8hB4kpQGpDDI7urOaCErX4fI="; 29 + x64-osx_hash = "sha256-dJBNLkFMGxOEgTPChYXbkUGn9Ty7FqwuTxJJqd77Lc4="; 30 30 } 31 31 ."${arch}-${os}_hash"; 32 32 in 33 33 stdenv.mkDerivation rec { 34 34 pname = "readarr"; 35 - version = "0.4.4.2686"; 35 + version = "0.4.5.2699"; 36 36 37 37 src = fetchurl { 38 38 url = "https://github.com/Readarr/Readarr/releases/download/v${version}/Readarr.develop.${version}.${os}-core-${arch}.tar.gz";
+3 -3
pkgs/by-name/ro/roadrunner/package.nix
··· 7 7 8 8 buildGoModule rec { 9 9 pname = "roadrunner"; 10 - version = "2024.2.1"; 10 + version = "2024.3.0"; 11 11 12 12 src = fetchFromGitHub { 13 13 repo = "roadrunner"; 14 14 owner = "roadrunner-server"; 15 15 rev = "refs/tags/v${version}"; 16 - hash = "sha256-uZUC2+sdMka6Q++Xm5y0KZnOifW/WcFi+XqnuepdErI="; 16 + hash = "sha256-5HW2O1Eb1jivcUrDh+4FurexVkkmU6sa7weHt0UAICY="; 17 17 }; 18 18 19 19 nativeBuildInputs = [ ··· 46 46 --replace "127.0.0.1:0" "127.0.0.1:55554" 47 47 ''; 48 48 49 - vendorHash = "sha256-JHJkL99Liz9qvh3oEDYBSMueh+OItXyuxk4uHYC31po="; 49 + vendorHash = "sha256-4wIyuLjULNpYY8jkAMnmmFGOQ848z/1DOmWsLomNCa0="; 50 50 51 51 meta = { 52 52 changelog = "https://github.com/roadrunner-server/roadrunner/blob/v${version}/CHANGELOG.md";
+256
pkgs/by-name/ry/ryujinx-greemdev/deps.nix
··· 1 + # This file was automatically generated by passthru.fetch-deps. 2 + # Please dont edit it manually, your changes might get overwritten! 3 + 4 + { fetchNuGet }: [ 5 + (fetchNuGet { pname = "Avalonia"; version = "11.0.10"; hash = "sha256-FuGl5admJ9AeRNrg/faGfqx8pwxGxdkmbnth9Jxhelc="; }) 6 + (fetchNuGet { pname = "Avalonia.Angle.Windows.Natives"; version = "2.1.0.2023020321"; hash = "sha256-TWop9cvak6cMv2vrA/GlpuYBxS8Fuj5UmupGIV7Q5Ks="; }) 7 + (fetchNuGet { pname = "Avalonia.BuildServices"; version = "0.0.29"; hash = "sha256-WPHRMNowRnYSCh88DWNBCltWsLPyOfzXGzBqLYE7tRY="; }) 8 + (fetchNuGet { pname = "Avalonia.Controls.ColorPicker"; version = "11.0.10"; hash = "sha256-G0ooIjNRW5YHKvQ6qPxe5gaE3HPwGfiCQUo34PSxXGg="; }) 9 + (fetchNuGet { pname = "Avalonia.Controls.ColorPicker"; version = "11.0.4"; hash = "sha256-Jp0j/58RF9Qooc7ATtq80FtX3TVLhi54JfgrbKdiDes="; }) 10 + (fetchNuGet { pname = "Avalonia.Controls.DataGrid"; version = "11.0.10"; hash = "sha256-0v4evkV0jbLffwfQG/QO/RQbHXlCBmFv8A2pBZjS5Y0="; }) 11 + (fetchNuGet { pname = "Avalonia.Controls.ItemsRepeater"; version = "11.0.4"; hash = "sha256-P8MfWKkDQrsk6x/vraNxxdYSMHytS8U3fMY2o8b49dw="; }) 12 + (fetchNuGet { pname = "Avalonia.Desktop"; version = "11.0.10"; hash = "sha256-fIty7TfiTC+OX9gCH4tA8Fs9dF4+G7Mhs9XnZadUR2g="; }) 13 + (fetchNuGet { pname = "Avalonia.Diagnostics"; version = "11.0.10"; hash = "sha256-itnN+LIZ2S+1CjD0ZS/woKtpgWbC/srMYzbYfX3a8LA="; }) 14 + (fetchNuGet { pname = "Avalonia.FreeDesktop"; version = "11.0.10"; hash = "sha256-uVNOOVTQIqQ2pDgSsz5saI7+fMvps40vJlMp1/XdyaE="; }) 15 + (fetchNuGet { pname = "Avalonia.Markup.Xaml.Loader"; version = "11.0.10"; hash = "sha256-Xv6L8U34QEiH6r3SQWLwuVFk9N9REmCUHa9hEbv2m24="; }) 16 + (fetchNuGet { pname = "Avalonia.Native"; version = "11.0.10"; hash = "sha256-P9j01FDXDpixo8wBVH3XK0Am6UBhG52HDrzt1ZqD8Ro="; }) 17 + (fetchNuGet { pname = "Avalonia.Remote.Protocol"; version = "11.0.10"; hash = "sha256-qtvlczTg2yUZWyyqXkkboB8lK9aYv+STbfDvSKb55Vw="; }) 18 + (fetchNuGet { pname = "Avalonia.Remote.Protocol"; version = "11.0.4"; hash = "sha256-13qXDjlWElmwQ0sb00+ny9gOgKuDOHKvALuQB6EZxCQ="; }) 19 + (fetchNuGet { pname = "Avalonia.Skia"; version = "11.0.0"; hash = "sha256-A01nrs3Ij1eTo6tPmu7++T1K+Wo/H/9LvpeuOUGbQeU="; }) 20 + (fetchNuGet { pname = "Avalonia.Skia"; version = "11.0.10"; hash = "sha256-1SU17j43Fiw4LbEEgqx10zE/iIVPfb8G1JVbfD2RhXA="; }) 21 + (fetchNuGet { pname = "Avalonia.Skia"; version = "11.0.4"; hash = "sha256-1XfPTcAaNj1926uYkvo7P62++ds5M2gHvkv1hRzBVfs="; }) 22 + (fetchNuGet { pname = "Avalonia.Svg"; version = "11.0.0.18"; hash = "sha256-U4bafxxxFE0tKmKVxguxH+doFrTHlM6DjFP8wz6Xm9U="; }) 23 + (fetchNuGet { pname = "Avalonia.Svg.Skia"; version = "11.0.0.18"; hash = "sha256-M4AQkL42efqOSck4Lf7C1naIRjEPMlnxi3OVC8zLJaQ="; }) 24 + (fetchNuGet { pname = "Avalonia.Themes.Simple"; version = "11.0.10"; hash = "sha256-54fc2g1yvM7pPRaF062lSjXaQDe2i61xQRM8m81vWm8="; }) 25 + (fetchNuGet { pname = "Avalonia.Win32"; version = "11.0.10"; hash = "sha256-+o228ElrBJBxBkZKGbo3x8/52wKpnAk/x6Yon5pyA74="; }) 26 + (fetchNuGet { pname = "Avalonia.X11"; version = "11.0.10"; hash = "sha256-/CRivMxpcbW1FnIuwZbF2ucdcbn4TCyjKzLXgdGtCfQ="; }) 27 + (fetchNuGet { pname = "CommandLineParser"; version = "2.9.1"; hash = "sha256-ApU9y1yX60daSjPk3KYDBeJ7XZByKW8hse9NRZGcjeo="; }) 28 + (fetchNuGet { pname = "Concentus"; version = "2.2.0"; hash = "sha256-7wbB76WoTd2CISIODGhmEiPIrydI0dqDMZGf4gdkogM="; }) 29 + (fetchNuGet { pname = "DiscordRichPresence"; version = "1.2.1.24"; hash = "sha256-oRNrlF1/yK0QvrW2+48RsmSg9h9/pDIfA56/bpoHXFU="; }) 30 + (fetchNuGet { pname = "DynamicData"; version = "9.0.4"; hash = "sha256-3pyiJeWRwfaT7p1ArsoR13aI78Jo13aHOEw3BelTS9g="; }) 31 + (fetchNuGet { pname = "ExCSS"; version = "4.2.3"; hash = "sha256-M/H6P5p7qqdFz/fgAI2MMBWQ7neN/GIieYSSxxjsM9I="; }) 32 + (fetchNuGet { pname = "FluentAvaloniaUI"; version = "2.0.5"; hash = "sha256-EaJ6qR2yn+7p8lf62yx2vL3sGhnPOfbP5jBjR+pGY7o="; }) 33 + (fetchNuGet { pname = "FSharp.Core"; version = "7.0.200"; hash = "sha256-680VgvYbZbztPQosO17r5y8vxg/Y/4Vmr5K3iLIJKMo="; }) 34 + (fetchNuGet { pname = "Gommon"; version = "2.6.5"; hash = "sha256-JpQs3FLEt3MThpmKmCkyCc/pXPwRPPGei92ONsOhzHo="; }) 35 + (fetchNuGet { pname = "HarfBuzzSharp"; version = "2.8.2.3"; hash = "sha256-4tbdgUabPjlkBm3aUFeocj4Fdslmms2olDFpzOLyqoQ="; }) 36 + (fetchNuGet { pname = "HarfBuzzSharp"; version = "7.3.0"; hash = "sha256-LlPQO/NYgIMWicvLOtWsQzCp512QpIImYDP9/n2rDOc="; }) 37 + (fetchNuGet { pname = "HarfBuzzSharp.NativeAssets.Linux"; version = "2.8.2.3"; hash = "sha256-3xwVfNfKTkuLdnT+e3bfG9tNTdEmar7ByzY+NTlUKLg="; }) 38 + (fetchNuGet { pname = "HarfBuzzSharp.NativeAssets.Linux"; version = "7.3.0"; hash = "sha256-AEHjgqX0o+Fob0SeZ6EikGKoEe6rRxess5fVJ31UL0U="; }) 39 + (fetchNuGet { pname = "HarfBuzzSharp.NativeAssets.macOS"; version = "2.8.2.3"; hash = "sha256-ZohUEaovj/sRB4rjuJIOq6S9eim3m+qMlpHIebNDTRQ="; }) 40 + (fetchNuGet { pname = "HarfBuzzSharp.NativeAssets.macOS"; version = "7.3.0"; hash = "sha256-6oFcdKb17UX5wyAUeCCKXGvzkf0w3MNdZOVMvs54tqw="; }) 41 + (fetchNuGet { pname = "HarfBuzzSharp.NativeAssets.WebAssembly"; version = "2.8.2.3"; hash = "sha256-ZsiBGpXfODHUHPgU/50k9QR/j6Klo7rsB0SUt8zYcBA="; }) 42 + (fetchNuGet { pname = "HarfBuzzSharp.NativeAssets.WebAssembly"; version = "7.3.0"; hash = "sha256-9VI0xCavuuIIStuQ7ipBfWu5HrAt+Kk/F2j57C1llTU="; }) 43 + (fetchNuGet { pname = "HarfBuzzSharp.NativeAssets.Win32"; version = "2.8.2.3"; hash = "sha256-5GSzM5IUoOwK+zJg0d74WlT3n1VZly8pKlyjiqVocCI="; }) 44 + (fetchNuGet { pname = "HarfBuzzSharp.NativeAssets.Win32"; version = "7.3.0"; hash = "sha256-WnB7l73hneU9Kpbm8S9zEYbZHjFre24vWz0vl8+v28M="; }) 45 + (fetchNuGet { pname = "Humanizer"; version = "2.14.1"; hash = "sha256-1wGwf5KAmDeiH0Dz8KcTdZw+UMkiNsjKOIOt/VJnnqE="; }) 46 + (fetchNuGet { pname = "Humanizer.Core"; version = "2.14.1"; hash = "sha256-EXvojddPu+9JKgOG9NSQgUTfWq1RpOYw7adxDPKDJ6o="; }) 47 + (fetchNuGet { pname = "Humanizer.Core.af"; version = "2.14.1"; hash = "sha256-8CCgI7OweSa53cZWZBXQ8a7VVt/NPP16zHVBZvzU9KQ="; }) 48 + (fetchNuGet { pname = "Humanizer.Core.ar"; version = "2.14.1"; hash = "sha256-JRoP+brQgYBZI8OccH/jaM1Z482ZWBiqU2XL3KsIPw8="; }) 49 + (fetchNuGet { pname = "Humanizer.Core.az"; version = "2.14.1"; hash = "sha256-ubwkbes9zrrisuXTcT4ZgOAiFsUieC6OLd4pgzxsE40="; }) 50 + (fetchNuGet { pname = "Humanizer.Core.bg"; version = "2.14.1"; hash = "sha256-Xv6DP1xxxGVUfP44TZasWpxgQ/DkriljvmIMtHf+nGk="; }) 51 + (fetchNuGet { pname = "Humanizer.Core.bn-BD"; version = "2.14.1"; hash = "sha256-6JpReIc3fkExvJIXzk6fUw56wJ78aTEg1dWQ6o+dQow="; }) 52 + (fetchNuGet { pname = "Humanizer.Core.cs"; version = "2.14.1"; hash = "sha256-MGL86KxSbz0PkDo9+NRj6h1fDjPZXlxAtYNf0Zreg/4="; }) 53 + (fetchNuGet { pname = "Humanizer.Core.da"; version = "2.14.1"; hash = "sha256-Gpw8kJbgz0KQS2mGY5tmrHqpgUO4abD7dSKIy//ONYM="; }) 54 + (fetchNuGet { pname = "Humanizer.Core.de"; version = "2.14.1"; hash = "sha256-Eswv8aEQoxI9MZr2CvWtBUn5X9JRZTWQjRzHJkGj80g="; }) 55 + (fetchNuGet { pname = "Humanizer.Core.el"; version = "2.14.1"; hash = "sha256-wCK2Uy/AV6FxPUSUM0NMbV14pAP+ss25AaVAHMQIeJA="; }) 56 + (fetchNuGet { pname = "Humanizer.Core.es"; version = "2.14.1"; hash = "sha256-iEHiQXKwg0ABDxh//HSrzwaVOlilQBFI96+GYzzTMwQ="; }) 57 + (fetchNuGet { pname = "Humanizer.Core.fa"; version = "2.14.1"; hash = "sha256-2Js7k3nvwJvxAjq3yoLn7PUY2S8+vXfgESwU4SbvjaA="; }) 58 + (fetchNuGet { pname = "Humanizer.Core.fi-FI"; version = "2.14.1"; hash = "sha256-jOWo43r3dhiBsV9cCoDfqK/YqWj5LejZsnfkG6mlkpA="; }) 59 + (fetchNuGet { pname = "Humanizer.Core.fr"; version = "2.14.1"; hash = "sha256-WCbA+f4B3g/ml7KrkHkzpU2Fj38HtWc/ujoVY5F3lk4="; }) 60 + (fetchNuGet { pname = "Humanizer.Core.fr-BE"; version = "2.14.1"; hash = "sha256-GydVmoEy+lwEQ1nM39QXSRhYNchqM47p7qhUEimN4Cw="; }) 61 + (fetchNuGet { pname = "Humanizer.Core.he"; version = "2.14.1"; hash = "sha256-MMf3qjJ+yzxjMxOR7wMWf+eErxWLqpsdWKFhjNCOsyM="; }) 62 + (fetchNuGet { pname = "Humanizer.Core.hr"; version = "2.14.1"; hash = "sha256-kBv2I9ns6L6D4XfXfyZS1VM6+YwF4yUkCmCA5zqvsok="; }) 63 + (fetchNuGet { pname = "Humanizer.Core.hu"; version = "2.14.1"; hash = "sha256-vRje+kxqOsl1JCXAE0yDKvauUumzuEhNcnhNsdIdgVM="; }) 64 + (fetchNuGet { pname = "Humanizer.Core.hy"; version = "2.14.1"; hash = "sha256-UL7PsK4msT5c96lk70/bVAxN63B71l8VOFtvuJQH9a0="; }) 65 + (fetchNuGet { pname = "Humanizer.Core.id"; version = "2.14.1"; hash = "sha256-nIl64gCuZh4D527qI2hfQRvzt1mTJUCDGMIZwpS3C/A="; }) 66 + (fetchNuGet { pname = "Humanizer.Core.is"; version = "2.14.1"; hash = "sha256-38vUQ1aVtlhK15kP9ZlDO0Nl0DcOA5iHx6F2SPN1gYM="; }) 67 + (fetchNuGet { pname = "Humanizer.Core.it"; version = "2.14.1"; hash = "sha256-4ne0VRNi9OAj3bGCQgCy1BNYKMizoHykJ/lchmCsWdc="; }) 68 + (fetchNuGet { pname = "Humanizer.Core.ja"; version = "2.14.1"; hash = "sha256-oAilMM8J6LumV6qv3gSIBNTm7u2L4vV38cQXtME3PhM="; }) 69 + (fetchNuGet { pname = "Humanizer.Core.ko-KR"; version = "2.14.1"; hash = "sha256-b70HQl2IWVPATtaYGDyJ+Z6ioPtrM53vXzfTCHYgxpQ="; }) 70 + (fetchNuGet { pname = "Humanizer.Core.ku"; version = "2.14.1"; hash = "sha256-8LiEH7MaapMtkHFMj7Y3pG+g0QYuIa5gD3VR9nYQn+k="; }) 71 + (fetchNuGet { pname = "Humanizer.Core.lv"; version = "2.14.1"; hash = "sha256-zyCsE5cD++u5shNIqCQUd+66FkUWOl+NfFrs2JduCaQ="; }) 72 + (fetchNuGet { pname = "Humanizer.Core.ms-MY"; version = "2.14.1"; hash = "sha256-pSdZLUi9oWo78nBh2DJunPhDR7THdZSZP0msCVbPsrY="; }) 73 + (fetchNuGet { pname = "Humanizer.Core.mt"; version = "2.14.1"; hash = "sha256-mkX2reEvNpx9w6gtZw+6bkrnj3Di1qgVDMr9q0IeKCw="; }) 74 + (fetchNuGet { pname = "Humanizer.Core.nb"; version = "2.14.1"; hash = "sha256-QvYJHqjO/SrelWYgtm8Sc7axs7J8wbJE+GbTgVw5LYs="; }) 75 + (fetchNuGet { pname = "Humanizer.Core.nb-NO"; version = "2.14.1"; hash = "sha256-YW8y2XkmHjwqf2fztNB3rsn3+CgslF1TclITwp0fA9g="; }) 76 + (fetchNuGet { pname = "Humanizer.Core.nl"; version = "2.14.1"; hash = "sha256-bQM7aXNQMBY+65NfMVQz/xYz9Ad2JC+ryXoB4lcYgmA="; }) 77 + (fetchNuGet { pname = "Humanizer.Core.pl"; version = "2.14.1"; hash = "sha256-IrPxHI4uQvBeMM9/8PaNueKwVkbN+1zFQlNWRjNfXEA="; }) 78 + (fetchNuGet { pname = "Humanizer.Core.pt"; version = "2.14.1"; hash = "sha256-XrlC15HNJFmDwLpHIUHb3Bec9A79msQCRB9Dvz8w4l0="; }) 79 + (fetchNuGet { pname = "Humanizer.Core.ro"; version = "2.14.1"; hash = "sha256-llXtfq4Tr5V2Q4dVD7J0IKITtpiWrFs50DAtJhcSuRI="; }) 80 + (fetchNuGet { pname = "Humanizer.Core.ru"; version = "2.14.1"; hash = "sha256-lD0dB3mkbFfGExwVWZk6fv24MyQQ8Cdv5OrleuZeChg="; }) 81 + (fetchNuGet { pname = "Humanizer.Core.sk"; version = "2.14.1"; hash = "sha256-EmyE+wssZwY6tAuEiFXGn5/yzVMZe7QEuTjOcByOXaA="; }) 82 + (fetchNuGet { pname = "Humanizer.Core.sl"; version = "2.14.1"; hash = "sha256-sWWxh7KZ8Y3Ps6GbBOHbU2GMsNZfkM+BOnUChf3fz4s="; }) 83 + (fetchNuGet { pname = "Humanizer.Core.sr"; version = "2.14.1"; hash = "sha256-/bA3LULRFn5WYmCscr5R5vaFRjeHC0xjNiF7PXEJ8r0="; }) 84 + (fetchNuGet { pname = "Humanizer.Core.sr-Latn"; version = "2.14.1"; hash = "sha256-43+o6oj0UNRJKiFoh57MGPSzlsWAq0eRtzlCrewDmVM="; }) 85 + (fetchNuGet { pname = "Humanizer.Core.sv"; version = "2.14.1"; hash = "sha256-9lXrHveKDs1y/W3Qxd+MVcohhKEU7zNPx21GBVPp/rA="; }) 86 + (fetchNuGet { pname = "Humanizer.Core.th-TH"; version = "2.14.1"; hash = "sha256-ldCsXINSvL2xom0SCtVQy+qX1IN5//EUoyIOwXiJ3k8="; }) 87 + (fetchNuGet { pname = "Humanizer.Core.tr"; version = "2.14.1"; hash = "sha256-VZnO1vMXiR7egKEKJ6lBsj7eNgxhFzakFWsYYRW4u2U="; }) 88 + (fetchNuGet { pname = "Humanizer.Core.uk"; version = "2.14.1"; hash = "sha256-rdvleUrKbj3c06A0O2MkgAZLtXLro9SPB1YqAGE1Vyg="; }) 89 + (fetchNuGet { pname = "Humanizer.Core.uz-Cyrl-UZ"; version = "2.14.1"; hash = "sha256-Qso1Iz9MTLs63x4F00kK31TZAN4AoFaFsuVzM+1z38k="; }) 90 + (fetchNuGet { pname = "Humanizer.Core.uz-Latn-UZ"; version = "2.14.1"; hash = "sha256-sVnkZTuEaHfMJIAZmSCqsspnKkYxK9eVBQZnAAqHNW4="; }) 91 + (fetchNuGet { pname = "Humanizer.Core.vi"; version = "2.14.1"; hash = "sha256-5wDt72+HdNN3mt/iJkxV9LaH13Jc1qr1vB4Lz8ahIPs="; }) 92 + (fetchNuGet { pname = "Humanizer.Core.zh-CN"; version = "2.14.1"; hash = "sha256-Z3qfFWyovcVT4Hqy51lgW2xGwyfI//Yfv90E0Liy1sw="; }) 93 + (fetchNuGet { pname = "Humanizer.Core.zh-Hans"; version = "2.14.1"; hash = "sha256-BTGkMEkQYJKRp858EU7hwNOdsHRT+w6vAMa6H8JIyX4="; }) 94 + (fetchNuGet { pname = "Humanizer.Core.zh-Hant"; version = "2.14.1"; hash = "sha256-N3D1z5aoGwAZ6+ZxrWMtXgacvQcgDG+aLrQQI9uysmM="; }) 95 + (fetchNuGet { pname = "JetBrains.Annotations"; version = "2023.2.0"; hash = "sha256-Um10fSmO+21I7f+lbzzVq5e8GBijJ9amTvOlt362p1s="; }) 96 + (fetchNuGet { pname = "LibHac"; version = "0.19.0"; hash = "sha256-FDEmeGHbX/aCFjFbFk8QwO2rTfFizt9UKb+KFDt23hk="; }) 97 + (fetchNuGet { pname = "MicroCom.CodeGenerator.MSBuild"; version = "0.11.0"; hash = "sha256-TsxziX9V8T3qRrEA3o9wY84ocDcUUUBzvARi5QZW23o="; }) 98 + (fetchNuGet { pname = "MicroCom.Runtime"; version = "0.11.0"; hash = "sha256-VdwpP5fsclvNqJuppaOvwEwv2ofnAI5ZSz2V+UEdLF0="; }) 99 + (fetchNuGet { pname = "Microsoft.Bcl.TimeProvider"; version = "8.0.1"; hash = "sha256-TQRaWjk1aZu+jn/rR8oOv8BJEG31i6mPkf3BkIR7C+c="; }) 100 + (fetchNuGet { pname = "Microsoft.CodeAnalysis.Analyzers"; version = "3.0.0"; hash = "sha256-KDbCfsBWSJ5ohEXUKp1s1LX9xA2NPvXE/xVzj68EdC0="; }) 101 + (fetchNuGet { pname = "Microsoft.CodeAnalysis.Analyzers"; version = "3.3.4"; hash = "sha256-qDzTfZBSCvAUu9gzq2k+LOvh6/eRvJ9++VCNck/ZpnE="; }) 102 + (fetchNuGet { pname = "Microsoft.CodeAnalysis.Common"; version = "3.8.0"; hash = "sha256-3G9vSc/gHH7FWgOySLTut1+eEaf3H66qcPOvNPLOx4o="; }) 103 + (fetchNuGet { pname = "Microsoft.CodeAnalysis.Common"; version = "4.9.2"; hash = "sha256-QU/nyiJWpdPQGHBdaOEVc+AghnGHcKBFBX0oyhRZ9CQ="; }) 104 + (fetchNuGet { pname = "Microsoft.CodeAnalysis.CSharp"; version = "3.8.0"; hash = "sha256-i/r3V/No/VzqmJlWxpGoirvlbJDbBPa/ONZtzYrxuc4="; }) 105 + (fetchNuGet { pname = "Microsoft.CodeAnalysis.CSharp"; version = "4.9.2"; hash = "sha256-j06Q4A9E65075SBXdXVCMRgeLxA63Rv1vxarydmmVAA="; }) 106 + (fetchNuGet { pname = "Microsoft.CodeAnalysis.CSharp.Scripting"; version = "3.8.0"; hash = "sha256-fA9Qu+vTyMZ9REzxJ4aMg/SHCDRk4q9k4ZGUdynoHnA="; }) 107 + (fetchNuGet { pname = "Microsoft.CodeAnalysis.Scripting.Common"; version = "3.8.0"; hash = "sha256-866jMHp8kbc1FYpKuUWnd7ViU6kGJTAxPcL/IjXrT0I="; }) 108 + (fetchNuGet { pname = "Microsoft.CodeCoverage"; version = "17.9.0"; hash = "sha256-OaGa4+jRPHs+T+p/oekm2Miluqfd2IX8Rt+BmUx8kr4="; }) 109 + (fetchNuGet { pname = "Microsoft.CSharp"; version = "4.3.0"; hash = "sha256-a3dAiPaVuky0wpcHmpTVtAQJNGZ2v91/oArA+dpJgj8="; }) 110 + (fetchNuGet { pname = "Microsoft.CSharp"; version = "4.7.0"; hash = "sha256-Enknv2RsFF68lEPdrf5M+BpV1kHoLTVRApKUwuk/pj0="; }) 111 + (fetchNuGet { pname = "Microsoft.DotNet.PlatformAbstractions"; version = "3.1.6"; hash = "sha256-RfM2qXiqdiamPkXr4IDkNc0IZSF9iTZv4uou/E7zNS0="; }) 112 + (fetchNuGet { pname = "Microsoft.Extensions.DependencyModel"; version = "8.0.0"; hash = "sha256-qkCdwemqdZY/yIW5Xmh7Exv74XuE39T8aHGHCofoVgo="; }) 113 + (fetchNuGet { pname = "Microsoft.IdentityModel.Abstractions"; version = "8.1.2"; hash = "sha256-uS0TjGTpt6q38Xheiu93yK3u47qK/dveidZabyKu7m0="; }) 114 + (fetchNuGet { pname = "Microsoft.IdentityModel.JsonWebTokens"; version = "8.1.2"; hash = "sha256-ASv9e7Q2Z5bfWfzCpQe5nQh782WISceFlxGwgJ51RHI="; }) 115 + (fetchNuGet { pname = "Microsoft.IdentityModel.Logging"; version = "8.1.2"; hash = "sha256-Yv1B2ETQTPm95LoNg2op4V5arrb0udDq/ZdfiZl/Sc0="; }) 116 + (fetchNuGet { pname = "Microsoft.IdentityModel.Tokens"; version = "8.1.2"; hash = "sha256-8fmgNOX1nyiNKrszZl3fvkxzCPuaeUbQJV45by8qRZs="; }) 117 + (fetchNuGet { pname = "Microsoft.IO.RecyclableMemoryStream"; version = "3.0.1"; hash = "sha256-unFg/5EcU/XKJbob4GtQC43Ydgi5VjeBGs7hfhj4EYo="; }) 118 + (fetchNuGet { pname = "Microsoft.NET.Test.Sdk"; version = "17.9.0"; hash = "sha256-q/1AJ7eNlk02wvN76qvjl2xBx5iJ+h5ssiE/4akLmtI="; }) 119 + (fetchNuGet { pname = "Microsoft.NETCore.Platforms"; version = "1.1.0"; hash = "sha256-FeM40ktcObQJk4nMYShB61H/E8B7tIKfl9ObJ0IOcCM="; }) 120 + (fetchNuGet { pname = "Microsoft.NETCore.Platforms"; version = "2.0.0"; hash = "sha256-IEvBk6wUXSdyCnkj6tHahOJv290tVVT8tyemYcR0Yro="; }) 121 + (fetchNuGet { pname = "Microsoft.NETCore.Platforms"; version = "2.1.2"; hash = "sha256-gYQQO7zsqG+OtN4ywYQyfsiggS2zmxw4+cPXlK+FB5Q="; }) 122 + (fetchNuGet { pname = "Microsoft.NETCore.Targets"; version = "1.1.0"; hash = "sha256-0AqQ2gMS8iNlYkrD+BxtIg7cXMnr9xZHtKAuN4bjfaQ="; }) 123 + (fetchNuGet { pname = "Microsoft.TestPlatform.ObjectModel"; version = "17.9.0"; hash = "sha256-iiXUFzpvT8OWdzMj9FGJDqanwHx40s1TXVY9l3ii+s0="; }) 124 + (fetchNuGet { pname = "Microsoft.TestPlatform.TestHost"; version = "17.9.0"; hash = "sha256-1BZIY1z+C9TROgdTV/tq4zsPy7Q71GQksr/LoMKAzqU="; }) 125 + (fetchNuGet { pname = "Microsoft.Win32.Registry"; version = "4.5.0"; hash = "sha256-WMBXsIb0DgPFPaFkNVxY9b9vcMxPqtgFgijKYMJfV/0="; }) 126 + (fetchNuGet { pname = "MsgPack.Cli"; version = "1.0.1"; hash = "sha256-Gf0Ed9XHH4oFpJIkzhg/xhDVpenunSol65qa8IZeYrY="; }) 127 + (fetchNuGet { pname = "NetCoreServer"; version = "8.0.7"; hash = "sha256-RUYic8uAgJGdhUCrMJQULKlHB6xvw9H1lnNGU1axNZw="; }) 128 + (fetchNuGet { pname = "NETStandard.Library"; version = "2.0.0"; hash = "sha256-Pp7fRylai8JrE1O+9TGfIEJrAOmnWTJRLWE+qJBahK0="; }) 129 + (fetchNuGet { pname = "NETStandard.Library"; version = "2.0.3"; hash = "sha256-Prh2RPebz/s8AzHb2sPHg3Jl8s31inv9k+Qxd293ybo="; }) 130 + (fetchNuGet { pname = "Newtonsoft.Json"; version = "13.0.1"; hash = "sha256-K2tSVW4n4beRPzPu3rlVaBEMdGvWSv/3Q1fxaDh4Mjo="; }) 131 + (fetchNuGet { pname = "NUnit"; version = "3.13.3"; hash = "sha256-Zn+sJIF7ieNqu/t2RwJx6WPFb1jl9UuNHidb/Px0v3E="; }) 132 + (fetchNuGet { pname = "NUnit3TestAdapter"; version = "4.1.0"; hash = "sha256-nDPiYdTFulqozEJrujr8/cqjG7m15Vkd/Frqem0Jr/w="; }) 133 + (fetchNuGet { pname = "Open.NAT.Core"; version = "2.1.0.5"; hash = "sha256-LqG5L2APr11142fsZPQ3clk3tJfAYBMXi1rP0EM9zDg="; }) 134 + (fetchNuGet { pname = "OpenTK.Audio.OpenAL"; version = "4.8.2"; hash = "sha256-i5KRiTYTNMB4Y5Qd5xewaYrb9sBbnXMDu2QXbM3RCeU="; }) 135 + (fetchNuGet { pname = "OpenTK.Core"; version = "4.8.2"; hash = "sha256-59S4Vj13y8HtZT6RZTwO6ZZbk1GUNDcYx1rMdv5jr4I="; }) 136 + (fetchNuGet { pname = "OpenTK.Graphics"; version = "4.8.2"; hash = "sha256-DNpXqtM9Oj6wDGYSF2FD4A4ueWG892Wk6uGWffNspo0="; }) 137 + (fetchNuGet { pname = "OpenTK.Mathematics"; version = "4.8.2"; hash = "sha256-TPsts443n6iEajfH2EuYTKtubrWuTLiCrTB1F4FndIo="; }) 138 + (fetchNuGet { pname = "OpenTK.redist.glfw"; version = "3.3.8.39"; hash = "sha256-bg8bGfoDDqmZ/efLFVm8l5etQajIVvOcQ/Nv+yKD4Bc="; }) 139 + (fetchNuGet { pname = "OpenTK.Windowing.GraphicsLibraryFramework"; version = "4.8.2"; hash = "sha256-a1MGtU+27pBNns55g8mOsxXpZxfEr6M62zLkIkkJTIY="; }) 140 + (fetchNuGet { pname = "Projektanker.Icons.Avalonia"; version = "9.4.0"; hash = "sha256-SVzkayPUk/7WXQW2Wn3ri4ia92WvJoXTrPmcT8C+J8U="; }) 141 + (fetchNuGet { pname = "Projektanker.Icons.Avalonia.FontAwesome"; version = "9.4.0"; hash = "sha256-NscqtIdfn4vWrZbPeJuBq+w6ysAIOLXm3FI8TYUJv4M="; }) 142 + (fetchNuGet { pname = "Projektanker.Icons.Avalonia.MaterialDesign"; version = "9.4.0"; hash = "sha256-OTXZAbTsIWjJ7CduyuW57RoExC0eHYIwk9yq3TEGEXE="; }) 143 + (fetchNuGet { pname = "runtime.any.System.Collections"; version = "4.3.0"; hash = "sha256-4PGZqyWhZ6/HCTF2KddDsbmTTjxs2oW79YfkberDZS8="; }) 144 + (fetchNuGet { pname = "runtime.any.System.Globalization"; version = "4.3.0"; hash = "sha256-PaiITTFI2FfPylTEk7DwzfKeiA/g/aooSU1pDcdwWLU="; }) 145 + (fetchNuGet { pname = "runtime.any.System.IO"; version = "4.3.0"; hash = "sha256-vej7ySRhyvM3pYh/ITMdC25ivSd0WLZAaIQbYj/6HVE="; }) 146 + (fetchNuGet { pname = "runtime.any.System.Reflection"; version = "4.3.0"; hash = "sha256-ns6f++lSA+bi1xXgmW1JkWFb2NaMD+w+YNTfMvyAiQk="; }) 147 + (fetchNuGet { pname = "runtime.any.System.Reflection.Extensions"; version = "4.3.0"; hash = "sha256-Y2AnhOcJwJVYv7Rp6Jz6ma0fpITFqJW+8rsw106K2X8="; }) 148 + (fetchNuGet { pname = "runtime.any.System.Reflection.Primitives"; version = "4.3.0"; hash = "sha256-LkPXtiDQM3BcdYkAm5uSNOiz3uF4J45qpxn5aBiqNXQ="; }) 149 + (fetchNuGet { pname = "runtime.any.System.Resources.ResourceManager"; version = "4.3.0"; hash = "sha256-9EvnmZslLgLLhJ00o5MWaPuJQlbUFcUF8itGQNVkcQ4="; }) 150 + (fetchNuGet { pname = "runtime.any.System.Runtime"; version = "4.3.0"; hash = "sha256-qwhNXBaJ1DtDkuRacgHwnZmOZ1u9q7N8j0cWOLYOELM="; }) 151 + (fetchNuGet { pname = "runtime.any.System.Runtime.Handles"; version = "4.3.0"; hash = "sha256-PQRACwnSUuxgVySO1840KvqCC9F8iI9iTzxNW0RcBS4="; }) 152 + (fetchNuGet { pname = "runtime.any.System.Runtime.InteropServices"; version = "4.3.0"; hash = "sha256-Kaw5PnLYIiqWbsoF3VKJhy7pkpoGsUwn4ZDCKscbbzA="; }) 153 + (fetchNuGet { pname = "runtime.any.System.Text.Encoding"; version = "4.3.0"; hash = "sha256-Q18B9q26MkWZx68exUfQT30+0PGmpFlDgaF0TnaIGCs="; }) 154 + (fetchNuGet { pname = "runtime.any.System.Threading.Tasks"; version = "4.3.0"; hash = "sha256-agdOM0NXupfHbKAQzQT8XgbI9B8hVEh+a/2vqeHctg4="; }) 155 + (fetchNuGet { pname = "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; hash = "sha256-LXUPLX3DJxsU1Pd3UwjO1PO9NM2elNEDXeu2Mu/vNps="; }) 156 + (fetchNuGet { pname = "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; hash = "sha256-qeSqaUI80+lqw5MK4vMpmO0CZaqrmYktwp6L+vQAb0I="; }) 157 + (fetchNuGet { pname = "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; hash = "sha256-SrHqT9wrCBsxILWtaJgGKd6Odmxm8/Mh7Kh0CUkZVzA="; }) 158 + (fetchNuGet { pname = "runtime.native.System"; version = "4.3.0"; hash = "sha256-ZBZaodnjvLXATWpXXakFgcy6P+gjhshFXmglrL5xD5Y="; }) 159 + (fetchNuGet { pname = "runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; hash = "sha256-Jy01KhtcCl2wjMpZWH+X3fhHcVn+SyllWFY8zWlz/6I="; }) 160 + (fetchNuGet { pname = "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; hash = "sha256-wyv00gdlqf8ckxEdV7E+Ql9hJIoPcmYEuyeWb5Oz3mM="; }) 161 + (fetchNuGet { pname = "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; hash = "sha256-zi+b4sCFrA9QBiSGDD7xPV27r3iHGlV99gpyVUjRmc4="; }) 162 + (fetchNuGet { pname = "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; hash = "sha256-gybQU6mPgaWV3rBG2dbH6tT3tBq8mgze3PROdsuWnX0="; }) 163 + (fetchNuGet { pname = "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; hash = "sha256-VsP72GVveWnGUvS/vjOQLv1U80H2K8nZ4fDAmI61Hm4="; }) 164 + (fetchNuGet { pname = "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; hash = "sha256-4yKGa/IrNCKuQ3zaDzILdNPD32bNdy6xr5gdJigyF5g="; }) 165 + (fetchNuGet { pname = "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; hash = "sha256-HmdJhhRsiVoOOCcUvAwdjpMRiyuSwdcgEv2j9hxi+Zc="; }) 166 + (fetchNuGet { pname = "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; hash = "sha256-pVFUKuPPIx0edQKjzRon3zKq8zhzHEzko/lc01V/jdw="; }) 167 + (fetchNuGet { pname = "runtime.unix.System.Diagnostics.Debug"; version = "4.3.0"; hash = "sha256-ReoazscfbGH+R6s6jkg5sIEHWNEvjEoHtIsMbpc7+tI="; }) 168 + (fetchNuGet { pname = "runtime.unix.System.Private.Uri"; version = "4.3.0"; hash = "sha256-c5tXWhE/fYbJVl9rXs0uHh3pTsg44YD1dJvyOA0WoMs="; }) 169 + (fetchNuGet { pname = "runtime.unix.System.Runtime.Extensions"; version = "4.3.0"; hash = "sha256-l8S9gt6dk3qYG6HYonHtdlYtBKyPb29uQ6NDjmrt3V4="; }) 170 + (fetchNuGet { pname = "Ryujinx.Audio.OpenAL.Dependencies"; version = "1.21.0.1"; hash = "sha256-NHGzMcYduuYJjduIlf8M8zSQQuJcXAEaMNmKIqAgs3w="; }) 171 + (fetchNuGet { pname = "Ryujinx.Graphics.Nvdec.Dependencies"; version = "5.0.3-build14"; hash = "sha256-+ff+tlWggY+qZTBJroOOphRpOjBDg5cQgwGtVOTiqRQ="; }) 172 + (fetchNuGet { pname = "Ryujinx.Graphics.Vulkan.Dependencies.MoltenVK"; version = "1.2.0"; hash = "sha256-vdDw6YGoyQzv6ustyXP6v7YWUIKEXaZOyUKAaVbRauI="; }) 173 + (fetchNuGet { pname = "Ryujinx.SDL2-CS"; version = "2.30.0-build32"; hash = "sha256-KrrlDq0pXcunnOhJL12dt1CAdNbaupbDlnza5gXuVKE="; }) 174 + (fetchNuGet { pname = "securifybv.PropertyStore"; version = "0.1.0"; hash = "sha256-jTPT9E2LyElgJq4HMavkdwT8tA9uklnJv00mlIx66+g="; }) 175 + (fetchNuGet { pname = "securifybv.ShellLink"; version = "0.1.0"; hash = "sha256-Am+ZednCVJUDgB7TePyY3CTxKDQ6Lr8M8KiCVAJoouw="; }) 176 + (fetchNuGet { pname = "shaderc.net"; version = "0.1.0"; hash = "sha256-+K7ObC9ucilwWY+Tlf9KcrAVoTFS65V6Di7JDWDSZTg="; }) 177 + (fetchNuGet { pname = "SharpZipLib"; version = "1.4.2"; hash = "sha256-/giVqikworG2XKqfN9uLyjUSXr35zBuZ2FX2r8X/WUY="; }) 178 + (fetchNuGet { pname = "ShimSkiaSharp"; version = "1.0.0.18"; hash = "sha256-72NV+OuW8bCfI/EOXwgS6dleLZnomLJTYeQPPmfhuu8="; }) 179 + (fetchNuGet { pname = "Silk.NET.Core"; version = "2.21.0"; hash = "sha256-D4ZUCm1Gf/EiRWrSwSLrdXT6U54icY2E/vrvCD/bRHw="; }) 180 + (fetchNuGet { pname = "Silk.NET.Vulkan"; version = "2.21.0"; hash = "sha256-Xnxl13+ziJ1+jNxMFSrEuh6NvL1FBrYmJ/d3HQXpgzY="; }) 181 + (fetchNuGet { pname = "Silk.NET.Vulkan.Extensions.EXT"; version = "2.21.0"; hash = "sha256-udELG0ppCOP9eT2yl/sI9MgKOVOuK0py9znmoaBGDpk="; }) 182 + (fetchNuGet { pname = "Silk.NET.Vulkan.Extensions.KHR"; version = "2.21.0"; hash = "sha256-KyiGHW6CNkXE3EdHk3ufwTVG7oLvSyHwx+MmIJhsiBk="; }) 183 + (fetchNuGet { pname = "SkiaSharp"; version = "2.88.3"; hash = "sha256-WyMAjnQt8ZsuWpGLI89l/f4bHvv+cg7FdTAL7CtJBvs="; }) 184 + (fetchNuGet { pname = "SkiaSharp"; version = "2.88.6"; hash = "sha256-y0wzgwdQXtgl5boCz/EgLWbK3SwC0cFVRUbBxOUPQXc="; }) 185 + (fetchNuGet { pname = "SkiaSharp"; version = "2.88.7"; hash = "sha256-Ip3afwTr4QOqtwOUKqK6g/9Ug4dMSebTci5K29Jc3Dg="; }) 186 + (fetchNuGet { pname = "SkiaSharp.HarfBuzz"; version = "2.88.6"; hash = "sha256-gpHiTuHfiXgbkBkzipXb8EXIatefsod75nyrFdPcwcA="; }) 187 + (fetchNuGet { pname = "SkiaSharp.NativeAssets.Linux"; version = "2.88.3"; hash = "sha256-eExWAAURgnwwm2fRwsK/rf+TeOAPs2n02XZzC0zeUjU="; }) 188 + (fetchNuGet { pname = "SkiaSharp.NativeAssets.Linux"; version = "2.88.7"; hash = "sha256-QdQRN1IBjqohmI8U+6WJRPgOsh8a9soN2UvVObs1H1w="; }) 189 + (fetchNuGet { pname = "SkiaSharp.NativeAssets.macOS"; version = "2.88.3"; hash = "sha256-8G4swiLMr6XS3kjfO/YC1PyoVdfSq7nxZthZZ+KTKqQ="; }) 190 + (fetchNuGet { pname = "SkiaSharp.NativeAssets.macOS"; version = "2.88.6"; hash = "sha256-7hOMjlYTOiNPLNwfLFUjTcdgiGEtmYUI1EubiRiC6bo="; }) 191 + (fetchNuGet { pname = "SkiaSharp.NativeAssets.macOS"; version = "2.88.7"; hash = "sha256-WgPldXSqPMm0TrdUWAyjge5rcRhd9G3/Ix/v/2NQvBc="; }) 192 + (fetchNuGet { pname = "SkiaSharp.NativeAssets.WebAssembly"; version = "2.88.3"; hash = "sha256-/SkV2pIZnt0ziSKB7gt7U2Rltk2Id+zOzbmqgfWUtvA="; }) 193 + (fetchNuGet { pname = "SkiaSharp.NativeAssets.WebAssembly"; version = "2.88.7"; hash = "sha256-oIjFF+Rv+g8AKyNaaVAgnHX3eeP/l8K2sgHs9bRyUMw="; }) 194 + (fetchNuGet { pname = "SkiaSharp.NativeAssets.Win32"; version = "2.88.3"; hash = "sha256-2PhMTwRHitT13KCKiZltKIFieAvNY4jBmVZ2ndVynA8="; }) 195 + (fetchNuGet { pname = "SkiaSharp.NativeAssets.Win32"; version = "2.88.6"; hash = "sha256-ljD4QmAO2/vwA6I8GIUNkONpOzmGsOVJJy9vPDnjVfA="; }) 196 + (fetchNuGet { pname = "SkiaSharp.NativeAssets.Win32"; version = "2.88.7"; hash = "sha256-+7RxCAr+ne9MZWdXKKpV4ZbHW0k6hLD20ZFWWOCiNYU="; }) 197 + (fetchNuGet { pname = "SPB"; version = "0.0.4-build32"; hash = "sha256-GUzbV5rLWtXTpiddYrKnWWLujG38vBDCO4xRStwAaDo="; }) 198 + (fetchNuGet { pname = "Svg.Custom"; version = "1.0.0.18"; hash = "sha256-RguRPwBM/KCogaiOgjELlvuqN1Tr+b3HA4Odz1rXBgU="; }) 199 + (fetchNuGet { pname = "Svg.Model"; version = "1.0.0.18"; hash = "sha256-CXZC45txfcd8MuRmDENw2ujlGk74YaUPNs7dXq+Zcg8="; }) 200 + (fetchNuGet { pname = "Svg.Skia"; version = "1.0.0.18"; hash = "sha256-o5VnCaAGX4LuwNyl7QM0KOg2gNfkD5uNMNthxB7w0m4="; }) 201 + (fetchNuGet { pname = "System.Buffers"; version = "4.5.1"; hash = "sha256-wws90sfi9M7kuCPWkv1CEYMJtCqx9QB/kj0ymlsNaxI="; }) 202 + (fetchNuGet { pname = "System.CodeDom"; version = "4.4.0"; hash = "sha256-L1xyspJ8pDJNVPYKl+FMGf4Zwm0tlqtAyQCNW6pT6/0="; }) 203 + (fetchNuGet { pname = "System.CodeDom"; version = "8.0.0"; hash = "sha256-uwVhi3xcvX7eiOGQi7dRETk3Qx1EfHsUfchZsEto338="; }) 204 + (fetchNuGet { pname = "System.Collections"; version = "4.3.0"; hash = "sha256-afY7VUtD6w/5mYqrce8kQrvDIfS2GXDINDh73IjxJKc="; }) 205 + (fetchNuGet { pname = "System.Collections.Immutable"; version = "5.0.0"; hash = "sha256-GdwSIjLMM0uVfE56VUSLVNgpW0B//oCeSFj8/hSlbM8="; }) 206 + (fetchNuGet { pname = "System.Collections.Immutable"; version = "8.0.0"; hash = "sha256-F7OVjKNwpqbUh8lTidbqJWYi476nsq9n+6k0+QVRo3w="; }) 207 + (fetchNuGet { pname = "System.ComponentModel.Annotations"; version = "4.5.0"; hash = "sha256-15yE2NoT9vmL9oGCaxHClQR1jLW1j1ef5hHMg55xRso="; }) 208 + (fetchNuGet { pname = "System.Diagnostics.Debug"; version = "4.3.0"; hash = "sha256-fkA79SjPbSeiEcrbbUsb70u9B7wqbsdM9s1LnoKj0gM="; }) 209 + (fetchNuGet { pname = "System.Dynamic.Runtime"; version = "4.3.0"; hash = "sha256-k75gjOYimIQtLBD5NDzwwi3ZMUBPRW3jmc3evDMMJbU="; }) 210 + (fetchNuGet { pname = "System.Globalization"; version = "4.3.0"; hash = "sha256-caL0pRmFSEsaoeZeWN5BTQtGrAtaQPwFi8YOZPZG5rI="; }) 211 + (fetchNuGet { pname = "System.IO"; version = "4.3.0"; hash = "sha256-ruynQHekFP5wPrDiVyhNiRIXeZ/I9NpjK5pU+HPDiRY="; }) 212 + (fetchNuGet { pname = "System.IO.Hashing"; version = "8.0.0"; hash = "sha256-szOGt0TNBo6dEdC3gf6H+e9YW3Nw0woa6UnCGGGK5cE="; }) 213 + (fetchNuGet { pname = "System.IO.Pipelines"; version = "6.0.0"; hash = "sha256-xfjF4UqTMJpf8KsBWUyJlJkzPTOO/H5MW023yTYNQSA="; }) 214 + (fetchNuGet { pname = "System.Linq"; version = "4.3.0"; hash = "sha256-R5uiSL3l6a3XrXSSL6jz+q/PcyVQzEAByiuXZNSqD/A="; }) 215 + (fetchNuGet { pname = "System.Linq.Expressions"; version = "4.3.0"; hash = "sha256-+3pvhZY7rip8HCbfdULzjlC9FPZFpYoQxhkcuFm2wk8="; }) 216 + (fetchNuGet { pname = "System.Management"; version = "8.0.0"; hash = "sha256-HwpfDb++q7/vxR6q57mGFgl5U0vxy+oRJ6orFKORfP0="; }) 217 + (fetchNuGet { pname = "System.Memory"; version = "4.5.4"; hash = "sha256-3sCEfzO4gj5CYGctl9ZXQRRhwAraMQfse7yzKoRe65E="; }) 218 + (fetchNuGet { pname = "System.Memory"; version = "4.5.5"; hash = "sha256-EPQ9o1Kin7KzGI5O3U3PUQAZTItSbk9h/i4rViN3WiI="; }) 219 + (fetchNuGet { pname = "System.Numerics.Vectors"; version = "4.3.0"; hash = "sha256-eog2Sp8CAntRlyp2Aar1tpAwDrojGFZ5LIdqsmuIchY="; }) 220 + (fetchNuGet { pname = "System.Numerics.Vectors"; version = "4.4.0"; hash = "sha256-auXQK2flL/JpnB/rEcAcUm4vYMCYMEMiWOCAlIaqu2U="; }) 221 + (fetchNuGet { pname = "System.Numerics.Vectors"; version = "4.5.0"; hash = "sha256-qdSTIFgf2htPS+YhLGjAGiLN8igCYJnCCo6r78+Q+c8="; }) 222 + (fetchNuGet { pname = "System.ObjectModel"; version = "4.3.0"; hash = "sha256-gtmRkWP2Kwr3nHtDh0yYtce38z1wrGzb6fjm4v8wN6Q="; }) 223 + (fetchNuGet { pname = "System.Private.Uri"; version = "4.3.0"; hash = "sha256-fVfgcoP4AVN1E5wHZbKBIOPYZ/xBeSIdsNF+bdukIRM="; }) 224 + (fetchNuGet { pname = "System.Reactive"; version = "6.0.1"; hash = "sha256-Lo5UMqp8DsbVSUxa2UpClR1GoYzqQQcSxkfyFqB/d4Q="; }) 225 + (fetchNuGet { pname = "System.Reflection"; version = "4.3.0"; hash = "sha256-NQSZRpZLvtPWDlvmMIdGxcVuyUnw92ZURo0hXsEshXY="; }) 226 + (fetchNuGet { pname = "System.Reflection.Emit"; version = "4.3.0"; hash = "sha256-5LhkDmhy2FkSxulXR+bsTtMzdU3VyyuZzsxp7/DwyIU="; }) 227 + (fetchNuGet { pname = "System.Reflection.Emit.ILGeneration"; version = "4.3.0"; hash = "sha256-mKRknEHNls4gkRwrEgi39B+vSaAz/Gt3IALtS98xNnA="; }) 228 + (fetchNuGet { pname = "System.Reflection.Emit.Lightweight"; version = "4.3.0"; hash = "sha256-rKx4a9yZKcajloSZHr4CKTVJ6Vjh95ni+zszPxWjh2I="; }) 229 + (fetchNuGet { pname = "System.Reflection.Extensions"; version = "4.3.0"; hash = "sha256-mMOCYzUenjd4rWIfq7zIX9PFYk/daUyF0A8l1hbydAk="; }) 230 + (fetchNuGet { pname = "System.Reflection.Metadata"; version = "1.6.0"; hash = "sha256-JJfgaPav7UfEh4yRAQdGhLZF1brr0tUWPl6qmfNWq/E="; }) 231 + (fetchNuGet { pname = "System.Reflection.Metadata"; version = "5.0.0"; hash = "sha256-Wo+MiqhcP9dQ6NuFGrQTw6hpbJORFwp+TBNTq2yhGp8="; }) 232 + (fetchNuGet { pname = "System.Reflection.Metadata"; version = "8.0.0"; hash = "sha256-dQGC30JauIDWNWXMrSNOJncVa1umR1sijazYwUDdSIE="; }) 233 + (fetchNuGet { pname = "System.Reflection.Primitives"; version = "4.3.0"; hash = "sha256-5ogwWB4vlQTl3jjk1xjniG2ozbFIjZTL9ug0usZQuBM="; }) 234 + (fetchNuGet { pname = "System.Reflection.TypeExtensions"; version = "4.3.0"; hash = "sha256-4U4/XNQAnddgQIHIJq3P2T80hN0oPdU2uCeghsDTWng="; }) 235 + (fetchNuGet { pname = "System.Resources.ResourceManager"; version = "4.3.0"; hash = "sha256-idiOD93xbbrbwwSnD4mORA9RYi/D/U48eRUsn/WnWGo="; }) 236 + (fetchNuGet { pname = "System.Runtime"; version = "4.3.0"; hash = "sha256-51813WXpBIsuA6fUtE5XaRQjcWdQ2/lmEokJt97u0Rg="; }) 237 + (fetchNuGet { pname = "System.Runtime.CompilerServices.Unsafe"; version = "4.7.1"; hash = "sha256-UvyoDV8O0oY3HPG1GbA56YVdvwTGEfjYR5gW1O7IK4U="; }) 238 + (fetchNuGet { pname = "System.Runtime.CompilerServices.Unsafe"; version = "5.0.0"; hash = "sha256-neARSpLPUzPxEKhJRwoBzhPxK+cKIitLx7WBYncsYgo="; }) 239 + (fetchNuGet { pname = "System.Runtime.CompilerServices.Unsafe"; version = "6.0.0"; hash = "sha256-bEG1PnDp7uKYz/OgLOWs3RWwQSVYm+AnPwVmAmcgp2I="; }) 240 + (fetchNuGet { pname = "System.Runtime.Extensions"; version = "4.3.0"; hash = "sha256-wLDHmozr84v1W2zYCWYxxj0FR0JDYHSVRaRuDm0bd/o="; }) 241 + (fetchNuGet { pname = "System.Runtime.Handles"; version = "4.3.0"; hash = "sha256-KJ5aXoGpB56Y6+iepBkdpx/AfaJDAitx4vrkLqR7gms="; }) 242 + (fetchNuGet { pname = "System.Runtime.InteropServices"; version = "4.3.0"; hash = "sha256-8sDH+WUJfCR+7e4nfpftj/+lstEiZixWUBueR2zmHgI="; }) 243 + (fetchNuGet { pname = "System.Security.AccessControl"; version = "4.5.0"; hash = "sha256-AFsKPb/nTk2/mqH/PYpaoI8PLsiKKimaXf+7Mb5VfPM="; }) 244 + (fetchNuGet { pname = "System.Security.Principal.Windows"; version = "4.5.0"; hash = "sha256-BkUYNguz0e4NJp1kkW7aJBn3dyH9STwB5N8XqnlCsmY="; }) 245 + (fetchNuGet { pname = "System.Text.Encoding"; version = "4.3.0"; hash = "sha256-GctHVGLZAa/rqkBNhsBGnsiWdKyv6VDubYpGkuOkBLg="; }) 246 + (fetchNuGet { pname = "System.Text.Encoding.CodePages"; version = "4.5.1"; hash = "sha256-PIhkv59IXjyiuefdhKxS9hQfEwO9YWRuNudpo53HQfw="; }) 247 + (fetchNuGet { pname = "System.Text.Encoding.CodePages"; version = "8.0.0"; hash = "sha256-fjCLQc1PRW0Ix5IZldg0XKv+J1DqPSfu9pjMyNBp7dE="; }) 248 + (fetchNuGet { pname = "System.Text.Encodings.Web"; version = "8.0.0"; hash = "sha256-IUQkQkV9po1LC0QsqrilqwNzPvnc+4eVvq+hCvq8fvE="; }) 249 + (fetchNuGet { pname = "System.Text.Json"; version = "8.0.0"; hash = "sha256-XFcCHMW1u2/WujlWNHaIWkbW1wn8W4kI0QdrwPtWmow="; }) 250 + (fetchNuGet { pname = "System.Text.Json"; version = "8.0.3"; hash = "sha256-ljBBGkResXv3MbrA14hR6QXo8SFLLV52GkpA+wxKdEo="; }) 251 + (fetchNuGet { pname = "System.Threading"; version = "4.3.0"; hash = "sha256-ZDQ3dR4pzVwmaqBg4hacZaVenQ/3yAF/uV7BXZXjiWc="; }) 252 + (fetchNuGet { pname = "System.Threading.Tasks"; version = "4.3.0"; hash = "sha256-Z5rXfJ1EXp3G32IKZGiZ6koMjRu0n8C1NGrwpdIen4w="; }) 253 + (fetchNuGet { pname = "System.Threading.Tasks.Extensions"; version = "4.5.4"; hash = "sha256-owSpY8wHlsUXn5xrfYAiu847L6fAKethlvYx97Ri1ng="; }) 254 + (fetchNuGet { pname = "Tmds.DBus.Protocol"; version = "0.15.0"; hash = "sha256-4gk2vXDjKFaBh82gTkwg3c/5GRjiH+bvM5elfDSbKTU="; }) 255 + (fetchNuGet { pname = "UnicornEngine.Unicorn"; version = "2.0.2-rc1-fb78016"; hash = "sha256-NrJ4/o4FmCt2zoB1fWAzqdonvpYhTFsWwh3h0lxZg+Q="; }) 256 + ]
+155
pkgs/by-name/ry/ryujinx-greemdev/package.nix
··· 1 + { 2 + lib, 3 + buildDotnetModule, 4 + cctools, 5 + darwin, 6 + dotnetCorePackages, 7 + fetchFromGitHub, 8 + libX11, 9 + libgdiplus, 10 + moltenvk, 11 + ffmpeg, 12 + openal, 13 + libsoundio, 14 + sndio, 15 + stdenv, 16 + pulseaudio, 17 + vulkan-loader, 18 + glew, 19 + libGL, 20 + libICE, 21 + libSM, 22 + libXcursor, 23 + libXext, 24 + libXi, 25 + libXrandr, 26 + udev, 27 + SDL2, 28 + SDL2_mixer, 29 + }: 30 + 31 + buildDotnetModule rec { 32 + pname = "ryujinx-greemdev"; 33 + version = "1.2.76"; 34 + 35 + src = fetchFromGitHub { 36 + owner = "GreemDev"; 37 + repo = "Ryujinx"; 38 + rev = version; 39 + hash = "sha256-RQbFN+XMEZtouUB7cvO3OdanUm6Is9V2L6q7dqzGQY4="; 40 + }; 41 + 42 + nativeBuildInputs = lib.optional stdenv.isDarwin [ 43 + cctools 44 + darwin.sigtool 45 + ]; 46 + 47 + enableParallelBuilding = false; 48 + 49 + dotnet-sdk = dotnetCorePackages.sdk_8_0; 50 + dotnet-runtime = dotnetCorePackages.runtime_8_0; 51 + 52 + nugetDeps = ./deps.nix; 53 + 54 + runtimeDeps = 55 + [ 56 + libX11 57 + libgdiplus 58 + SDL2_mixer 59 + openal 60 + libsoundio 61 + sndio 62 + vulkan-loader 63 + ffmpeg 64 + 65 + # Avalonia UI 66 + glew 67 + libICE 68 + libSM 69 + libXcursor 70 + libXext 71 + libXi 72 + libXrandr 73 + 74 + # Headless executable 75 + libGL 76 + SDL2 77 + ] 78 + ++ lib.optional (!stdenv.isDarwin) [ 79 + udev 80 + pulseaudio 81 + ] 82 + ++ lib.optional stdenv.isDarwin [ moltenvk ]; 83 + 84 + projectFile = "Ryujinx.sln"; 85 + testProjectFile = "src/Ryujinx.Tests/Ryujinx.Tests.csproj"; 86 + 87 + # Tests on Darwin currently fail because of Ryujinx.Tests.Unicorn 88 + doCheck = !stdenv.isDarwin; 89 + 90 + dotnetFlags = [ 91 + "/p:ExtraDefineConstants=DISABLE_UPDATER%2CFORCE_EXTERNAL_BASE_DIR" 92 + ]; 93 + 94 + executables = [ 95 + "Ryujinx.Headless.SDL2" 96 + "Ryujinx" 97 + ]; 98 + 99 + makeWrapperArgs = [ 100 + # Without this Ryujinx fails to start on wayland. See https://github.com/Ryujinx/Ryujinx/issues/2714 101 + "--set SDL_VIDEODRIVER x11" 102 + ]; 103 + 104 + preInstall = '' 105 + # workaround for https://github.com/Ryujinx/Ryujinx/issues/2349 106 + mkdir -p $out/lib/sndio-6 107 + ln -s ${sndio}/lib/libsndio.so $out/lib/sndio-6/libsndio.so.6 108 + ''; 109 + 110 + preFixup = '' 111 + ${lib.optionalString stdenv.isLinux '' 112 + mkdir -p $out/share/{applications,icons/hicolor/scalable/apps,mime/packages} 113 + 114 + pushd ${src}/distribution/linux 115 + 116 + install -D ./Ryujinx.desktop $out/share/applications/Ryujinx.desktop 117 + install -D ./Ryujinx.sh $out/bin/Ryujinx.sh 118 + install -D ./mime/Ryujinx.xml $out/share/mime/packages/Ryujinx.xml 119 + install -D ../misc/Logo.svg $out/share/icons/hicolor/scalable/apps/Ryujinx.svg 120 + 121 + popd 122 + ''} 123 + 124 + # Don't make a softlink on OSX because of its case insensitivity 125 + ${lib.optionalString (!stdenv.isDarwin) "ln -s $out/bin/Ryujinx $out/bin/ryujinx"} 126 + ''; 127 + 128 + passthru.updateScript = ./updater.sh; 129 + 130 + meta = with lib; { 131 + homepage = "https://github.com/GreemDev/Ryujinx"; 132 + changelog = "https://github.com/GreemDev/Ryujinx/wiki/Changelog"; 133 + description = "Experimental Nintendo Switch Emulator written in C# (QoL fork)"; 134 + longDescription = '' 135 + Ryujinx is an open-source Nintendo Switch emulator, created by gdkchan, 136 + written in C#. This emulator aims at providing excellent accuracy and 137 + performance, a user-friendly interface and consistent builds. It was 138 + written from scratch and development on the project began in September 139 + 2017. The project has since been abandoned on October 1st 2024 and QoL 140 + updates are now managed under a fork. 141 + ''; 142 + license = licenses.mit; 143 + maintainers = with maintainers; [ 144 + jk 145 + artemist 146 + kekschen 147 + ]; 148 + platforms = [ 149 + "x86_64-linux" 150 + "aarch64-linux" 151 + "aarch64-darwin" 152 + ]; 153 + mainProgram = "Ryujinx"; 154 + }; 155 + }
+57
pkgs/by-name/ry/ryujinx-greemdev/updater.sh
··· 1 + #! /usr/bin/env nix-shell 2 + #! nix-shell -I nixpkgs=./. -i bash -p coreutils gnused curl common-updater-scripts nix-prefetch-git jq 3 + # shellcheck shell=bash 4 + set -euo pipefail 5 + cd "$(dirname "${BASH_SOURCE[0]}")" 6 + 7 + # provide a github token so you don't get rate limited 8 + # if you use gh cli you can use: 9 + # `export GITHUB_TOKEN="$(cat ~/.config/gh/config.yml | yq '.hosts."github.com".oauth_token' -r)"` 10 + # or just set your token by hand: 11 + # `read -s -p "Enter your token: " GITHUB_TOKEN; export GITHUB_TOKEN` 12 + # (we use read so it doesn't show in our shell history and in secret mode so the token you paste isn't visible) 13 + if [ -z "${GITHUB_TOKEN:-}" ]; then 14 + echo "no GITHUB_TOKEN provided - you could meet API request limiting" >&2 15 + fi 16 + 17 + # or provide the new version manually 18 + # manually modify and uncomment or export these env vars in your shell so they're accessable within the script 19 + # make sure you don't commit your changes here 20 + # 21 + # NEW_VERSION="" 22 + # COMMIT="" 23 + 24 + if [ -z ${NEW_VERSION+x} ] && [ -z ${COMMIT+x} ]; then 25 + RELEASE_DATA=$( 26 + curl -s -H "Accept: application/vnd.github.v3+json" \ 27 + ${GITHUB_TOKEN:+ -H "Authorization: bearer $GITHUB_TOKEN"} \ 28 + https://api.github.com/repos/GreemDev/Ryujinx/releases 29 + ) 30 + if [ -z "$RELEASE_DATA" ] || [[ $RELEASE_DATA =~ "rate limit exceeded" ]]; then 31 + echo "failed to get release job data" >&2 32 + exit 1 33 + fi 34 + NEW_VERSION=$(echo "$RELEASE_DATA" | jq -r '.[0].name') 35 + fi 36 + 37 + OLD_VERSION="$(sed -nE 's/\s*version = "(.*)".*/\1/p' ./package.nix)" 38 + 39 + echo "comparing versions $OLD_VERSION -> $NEW_VERSION" 40 + if [[ "$OLD_VERSION" == "$NEW_VERSION" ]]; then 41 + echo "Already up to date!" 42 + if [[ "${1-default}" != "--deps-only" ]]; then 43 + exit 0 44 + fi 45 + fi 46 + 47 + cd ../../../.. 48 + 49 + if [[ "${1-default}" != "--deps-only" ]]; then 50 + SHA="$(nix-prefetch-git https://github.com/GreemDev/Ryujinx --rev "$NEW_VERSION" --quiet | jq -r '.sha256')" 51 + SRI=$(nix --experimental-features nix-command hash to-sri "sha256:$SHA") 52 + update-source-version ryujinx-greemdev "$NEW_VERSION" "$SRI" 53 + fi 54 + 55 + echo "building Nuget lockfile" 56 + 57 + eval "$(nix-build -A ryujinx-greemdev.fetch-deps --no-out-link)"
+4 -4
pkgs/by-name/ti/tigerbeetle/package.nix
··· 10 10 platform = 11 11 if stdenvNoCC.hostPlatform.isDarwin then "universal-macos" else stdenvNoCC.hostPlatform.system; 12 12 hash = builtins.getAttr platform { 13 - "universal-macos" = "sha256-glxTuuSfRkkBZE3OMflv2FM1yqamJXpRz3DnMt8baRU="; 14 - "x86_64-linux" = "sha256-xirnZUQxhvaJ0OpDF57rZ3Di7q0JfH3TXlAe2Ej9bwU="; 15 - "aarch64-linux" = "sha256-0lOpYlSOaX9CfQO9CdJ7xIanhf8G3KoUuGNbbPXmmow="; 13 + "universal-macos" = "sha256-acQPLcWGQE4dgI94ngTvKySK50rc9t/jpM42U0dFKFY="; 14 + "x86_64-linux" = "sha256-fAzu95N+6uS3VzqxdX76vC+CH61TsQrmW3/2ip4kIzo="; 15 + "aarch64-linux" = "sha256-jL2jEshjf6fd79kPFnei7VG3qjYFJke8A/3DG2jxE+Y="; 16 16 }; 17 17 in 18 18 stdenvNoCC.mkDerivation (finalAttrs: { 19 19 pname = "tigerbeetle"; 20 - version = "0.16.14"; 20 + version = "0.16.17"; 21 21 22 22 src = fetchzip { 23 23 url = "https://github.com/tigerbeetle/tigerbeetle/releases/download/${finalAttrs.version}/tigerbeetle-${platform}.zip";
+2 -2
pkgs/by-name/wi/wiremock/package.nix
··· 10 10 11 11 stdenvNoCC.mkDerivation (finalAttrs: { 12 12 pname = "wiremock"; 13 - version = "3.9.2"; 13 + version = "3.10.0"; 14 14 15 15 src = fetchurl { 16 16 url = "mirror://maven/org/wiremock/wiremock-standalone/${finalAttrs.version}/wiremock-standalone-${finalAttrs.version}.jar"; 17 - hash = "sha256-d7iNxBwyaOPOOR8/7yIrDNBpbyhtP8NahLoi/8uHcBI="; 17 + hash = "sha256-MnACoA2dXdV4ObCsRPIxBoxiSu5aGmw4bhjnCXQ0Ghk="; 18 18 }; 19 19 20 20 dontUnpack = true;
+2 -2
pkgs/by-name/xf/xfsdump/package.nix
··· 14 14 15 15 stdenv.mkDerivation rec { 16 16 pname = "xfsdump"; 17 - version = "3.1.12"; 17 + version = "3.2.0"; 18 18 19 19 src = fetchurl { 20 20 url = "mirror://kernel/linux/utils/fs/xfs/${pname}/${pname}-${version}.tar.xz"; 21 - sha256 = "sha256-85xMGzBrLdfsl5wOlNYP5pCD0uz5rwUcrF7zvtdyx0o="; 21 + sha256 = "sha256-KRTbvh68iMfZOtiOIgqlfavEPSFuEfBiIcAe3zzBBzI="; 22 22 }; 23 23 24 24 nativeBuildInputs = [
+1 -1
pkgs/development/python-modules/fastcore/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "fastcore"; 12 - version = "1.7.25"; 12 + version = "1.7.26"; 13 13 pyproject = true; 14 14 15 15 disabled = pythonOlder "3.8";
+2 -2
pkgs/development/python-modules/google-cloud-shell/default.nix
··· 15 15 16 16 buildPythonPackage rec { 17 17 pname = "google-cloud-shell"; 18 - version = "1.10.1"; 18 + version = "1.11.0"; 19 19 pyproject = true; 20 20 21 21 disabled = pythonOlder "3.7"; ··· 23 23 src = fetchPypi { 24 24 pname = "google_cloud_shell"; 25 25 inherit version; 26 - hash = "sha256-JgKBwyQ/KlLqtQtvpjal7+3IT7oS6HHmIsZ/amIEFRk="; 26 + hash = "sha256-3afGvjHYLw5zSjBDdd3TjxJHippIhA8ITQNeSgpz/DU="; 27 27 }; 28 28 29 29 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/google-cloud-vpc-access/default.nix
··· 15 15 16 16 buildPythonPackage rec { 17 17 pname = "google-cloud-vpc-access"; 18 - version = "1.11.1"; 18 + version = "1.12.0"; 19 19 pyproject = true; 20 20 21 21 disabled = pythonOlder "3.8"; ··· 23 23 src = fetchPypi { 24 24 pname = "google_cloud_vpc_access"; 25 25 inherit version; 26 - hash = "sha256-V7sTx337AT3e6rCmC2gdLpGgEWh5RxdoFMWL47LSq5E="; 26 + hash = "sha256-SmtqD6b5VnHMrL8kmWeFZZTt/WMRzMEc4VxX9FYmUiE="; 27 27 }; 28 28 29 29 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/google-cloud-webrisk/default.nix
··· 15 15 16 16 buildPythonPackage rec { 17 17 pname = "google-cloud-webrisk"; 18 - version = "1.15.1"; 18 + version = "1.16.0"; 19 19 pyproject = true; 20 20 21 21 disabled = pythonOlder "3.7"; ··· 23 23 src = fetchPypi { 24 24 pname = "google_cloud_webrisk"; 25 25 inherit version; 26 - hash = "sha256-x6UVAIaJkuUtRvuj7yVa3dCnqbzfTcOiX+U/oywuyGA="; 26 + hash = "sha256-pF0iqlwXq7wevsmnzkO76I1DlcQdOegmmVo2uF0QAho="; 27 27 }; 28 28 29 29 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/google-cloud-workflows/default.nix
··· 14 14 15 15 buildPythonPackage rec { 16 16 pname = "google-cloud-workflows"; 17 - version = "1.15.1"; 17 + version = "1.16.0"; 18 18 pyproject = true; 19 19 20 20 disabled = pythonOlder "3.7"; ··· 22 22 src = fetchPypi { 23 23 pname = "google_cloud_workflows"; 24 24 inherit version; 25 - hash = "sha256-FrYsxhvLIFb8+b1LdlB9xs0mMoKKbTDBW5paeEim9Wk="; 25 + hash = "sha256-R53c1m6VYhkLlWl1jTR++R5ahWUTvEvtsRUPQ1F3Das="; 26 26 }; 27 27 28 28 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/google-cloud-workstations/default.nix
··· 16 16 17 17 buildPythonPackage rec { 18 18 pname = "google-cloud-workstations"; 19 - version = "0.5.10"; 19 + version = "0.5.11"; 20 20 pyproject = true; 21 21 22 22 disabled = pythonOlder "3.8"; ··· 24 24 src = fetchPypi { 25 25 pname = "google_cloud_workstations"; 26 26 inherit version; 27 - hash = "sha256-EKrD1erP904vC/OljY9jm2KMvA3IhL3puxxcPJPPzvg="; 27 + hash = "sha256-nJ19hGiBvoNz820kdvHd9pCCy9VRQDouG0cWcnELIDE="; 28 28 }; 29 29 30 30 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/jupyter-docprovider/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "jupyter-docprovider"; 12 - version = "1.0.1"; 12 + version = "1.1.0"; 13 13 pyproject = true; 14 14 15 15 src = fetchPypi { 16 16 pname = "jupyter_docprovider"; 17 17 inherit version; 18 - hash = "sha256-0MG81KLpeBrNFD8osbhGhZIVc7NHlp9UI4j8QIwfjc4="; 18 + hash = "sha256-wt3I2agjKf/wqVJhzIJ7ZpNZh2r3+y8rr6jb34OasXI="; 19 19 }; 20 20 21 21 postPatch = ''
+2 -2
pkgs/development/python-modules/llama-cpp-python/default.nix
··· 38 38 }: 39 39 buildPythonPackage rec { 40 40 pname = "llama-cpp-python"; 41 - version = "0.3.2"; 41 + version = "0.3.5"; 42 42 pyproject = true; 43 43 44 44 src = fetchFromGitHub { 45 45 owner = "abetlen"; 46 46 repo = "llama-cpp-python"; 47 47 tag = "v${version}"; 48 - hash = "sha256-RtM5acaflUkPOZ/VS3afcMLbsnu6z7D8nXqpN8SR7v8="; 48 + hash = "sha256-+LBq+rCqOsvGnhTL1UoCcAwvDt8Zo9hlaa4KibFFDag="; 49 49 fetchSubmodules = true; 50 50 }; 51 51 # src = /home/gaetan/llama-cpp-python;
+4 -2
pkgs/development/python-modules/nibe/default.nix
··· 19 19 20 20 buildPythonPackage rec { 21 21 pname = "nibe"; 22 - version = "2.13.0"; 22 + version = "2.14.0"; 23 23 pyproject = true; 24 24 25 25 disabled = pythonOlder "3.9"; ··· 28 28 owner = "yozik04"; 29 29 repo = "nibe"; 30 30 rev = "refs/tags/${version}"; 31 - hash = "sha256-azAVvVAlG74wgH/96+sc6S9XQLRFZgR4aU6d4gy43PQ="; 31 + hash = "sha256-qk2RUGutzxpoEriTa08W2aDQ1c4y2DzNHMx4K1IW5RQ="; 32 32 }; 33 + 34 + pythonRelaxDeps = [ "async-modbus" ]; 33 35 34 36 build-system = [ setuptools ]; 35 37
+2 -2
pkgs/development/python-modules/open-meteo/default.nix
··· 15 15 16 16 buildPythonPackage rec { 17 17 pname = "open-meteo"; 18 - version = "0.3.1"; 18 + version = "0.3.2"; 19 19 format = "pyproject"; 20 20 21 21 disabled = pythonOlder "3.11"; ··· 24 24 owner = "frenck"; 25 25 repo = "python-open-meteo"; 26 26 rev = "v${version}"; 27 - hash = "sha256-IB+dfQ4bb4dMYYQUVH9YbP3arvfgt4SooPlOKP3AVI8="; 27 + hash = "sha256-PddQyCCYbI9DjTvlJ4F3IQB6VichwcNhC04DJMULYZM="; 28 28 }; 29 29 30 30 postPatch = ''
+2 -2
pkgs/development/python-modules/pylamarzocco/default.nix
··· 14 14 15 15 buildPythonPackage rec { 16 16 pname = "pylamarzocco"; 17 - version = "1.3.3"; 17 + version = "1.4.0"; 18 18 pyproject = true; 19 19 20 20 disabled = pythonOlder "3.11"; ··· 23 23 owner = "zweckj"; 24 24 repo = "pylamarzocco"; 25 25 rev = "refs/tags/v${version}"; 26 - hash = "sha256-sGjO1DuCYomYSWymtR4R49e1zwd0IM3WJwowoqvAApM="; 26 + hash = "sha256-l9k8cYfYW+4+USDmIAEmXX+6wyDe6tqrjSgQnT8MUKo="; 27 27 }; 28 28 29 29 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/pysuezv2/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "pysuezv2"; 12 - version = "1.3.2"; 12 + version = "1.3.5"; 13 13 pyproject = true; 14 14 15 15 disabled = pythonOlder "3.8"; ··· 18 18 owner = "jb101010-2"; 19 19 repo = "pySuez"; 20 20 rev = "refs/tags/${version}"; 21 - hash = "sha256-aThZN5Ece9zzEICjLj2HmYoLwDhd7rft3Il3kM73h7M="; 21 + hash = "sha256-BG5nX2S+WV0Bdwm/cvm+mGO1RUd+F312tZ4jws6A/d8="; 22 22 }; 23 23 24 24 build-system = [ hatchling ];
+2 -2
pkgs/development/python-modules/strawberry-graphql/default.nix
··· 44 44 45 45 buildPythonPackage rec { 46 46 pname = "strawberry-graphql"; 47 - version = "0.251.0"; 47 + version = "0.253.1"; 48 48 pyproject = true; 49 49 50 50 disabled = pythonOlder "3.10"; ··· 53 53 owner = "strawberry-graphql"; 54 54 repo = "strawberry"; 55 55 rev = "refs/tags/${version}"; 56 - hash = "sha256-khr4uwbRaO/7gw7N17qBRN1qnoMKw13lLzxEzBoB8TY="; 56 + hash = "sha256-lerQynV/c0fLX+Du1j9bX0i2kvuWKmtH7RIBZxuDkK8="; 57 57 }; 58 58 59 59 postPatch = ''
+3 -3
pkgs/development/python-modules/timetagger/default.nix
··· 19 19 20 20 buildPythonPackage rec { 21 21 pname = "timetagger"; 22 - version = "24.07.1"; 22 + version = "24.12.1"; 23 23 format = "setuptools"; 24 24 25 25 disabled = pythonOlder "3.6"; ··· 27 27 src = fetchFromGitHub { 28 28 owner = "almarklein"; 29 29 repo = pname; 30 - rev = "refs/tags/v${version}"; 31 - hash = "sha256-zm+3vk2ZeaZjciANNVSVxDT5S2LhOAl3B4AE2RgA5Tw="; 30 + tag = "v${version}"; 31 + hash = "sha256-d8O4wmY3eJ2HrHq6SKEoaXYAh+A+hWpN72Zfw6WyC1g="; 32 32 }; 33 33 34 34 propagatedBuildInputs = [
+2 -1
pkgs/os-specific/darwin/apple-source-releases/libpcap/package.nix
··· 3 3 apple-sdk_15, 4 4 bison, 5 5 bluez, 6 - fetchFromGitHub, 7 6 flex, 8 7 mkAppleDerivation, 9 8 stdenv, ··· 91 90 postPatch = '' 92 91 substituteInPlace libpcap/Makefile.in \ 93 92 --replace-fail '@PLATFORM_C_SRC@' '@PLATFORM_C_SRC@ pcap-darwin.c pcap-util.c pcapng.c' 93 + substituteInPlace libpcap/pcap/pcap.h \ 94 + --replace-fail '#if PRIVATE' '#if 1' 94 95 ''; 95 96 96 97 configureFlags = [
+5
pkgs/os-specific/windows/mingw-w64/headers.nix
··· 2 2 lib, 3 3 stdenvNoCC, 4 4 fetchurl, 5 + crt ? stdenvNoCC.hostPlatform.libc, 5 6 }: 6 7 7 8 stdenvNoCC.mkDerivation (finalAttrs: { ··· 12 13 url = "mirror://sourceforge/mingw-w64/mingw-w64-v${finalAttrs.version}.tar.bz2"; 13 14 hash = "sha256-zEGJiqxLbo3Vz/1zMbnZUVuRLfRCCjphK16ilVu+7S8="; 14 15 }; 16 + 17 + configureFlags = [ 18 + (lib.withFeatureAs true "default-msvcrt" crt) 19 + ]; 15 20 16 21 preConfigure = '' 17 22 cd mingw-w64-headers
+2 -2
pkgs/tools/admin/procs/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, rustPlatform, installShellFiles, Security, libiconv, Libsystem }: 1 + { lib, stdenv, buildPackages, fetchFromGitHub, rustPlatform, installShellFiles, Security, libiconv, Libsystem }: 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "procs"; ··· 18 18 19 19 postInstall = '' 20 20 for shell in bash fish zsh; do 21 - $out/bin/procs --gen-completion $shell 21 + ${stdenv.hostPlatform.emulator buildPackages} $out/bin/procs --gen-completion $shell 22 22 done 23 23 installShellCompletion procs.{bash,fish} --zsh _procs 24 24 '';
+2 -2
pkgs/tools/misc/moreutils/default.nix
··· 15 15 16 16 stdenv.mkDerivation rec { 17 17 pname = "moreutils"; 18 - version = "0.69"; 18 + version = "0.70"; 19 19 20 20 src = fetchgit { 21 21 url = "git://git.joeyh.name/moreutils"; 22 22 rev = "refs/tags/${version}"; 23 - hash = "sha256-hVvRAIXlG8+pAD2v/Ma9Z6EUL/1xIRz7Gx1fOxoQyi0="; 23 + hash = "sha256-71ACHzzk258U4q2L7GJ59mrMZG99M7nQkcH4gHafGP0="; 24 24 }; 25 25 26 26 strictDeps = true;