Merge staging-next into staging

authored by nixpkgs-ci[bot] and committed by GitHub ce179bc5 482a6cc2

+1453 -1158
+12 -2
.github/workflows/manual-nixos-v2.yml
··· 34 with: 35 # This cache is for the nixpkgs repo checks and should not be trusted or used elsewhere. 36 name: nixpkgs-ci 37 - authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' 38 39 - name: Building NixOS manual 40 - run: NIX_PATH=nixpkgs=$(pwd) nix-build --option restrict-eval true nixos/release.nix -A manual.x86_64-linux
··· 34 with: 35 # This cache is for the nixpkgs repo checks and should not be trusted or used elsewhere. 36 name: nixpkgs-ci 37 + authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}" 38 39 - name: Building NixOS manual 40 + run: | 41 + export NIX_PATH=nixpkgs=$(pwd) 42 + nix-build --option restrict-eval true nixos/release.nix -A manual.x86_64-linux -o result-x86_64-linux 43 + nix-build --option restrict-eval true nixos/release.nix -A manual.aarch64-linux -o result-aarch64-linux 44 + 45 + - name: Upload NixOS manual 46 + uses: actions/upload-artifact@3850ca5b6c832f17a0f754f6293181ebbf4e161d # v3.2.5 47 + with: 48 + name: nixos-manual-result 49 + path: result-** 50 + if-no-files-found: error
+1 -1
nixos/doc/manual/release-notes/rl-2505.section.md
··· 38 - The `nixos-generate-config` command now supports a optional `--flake` option, which will generate a flake.nix file alongside the `configuration.nix` and `hardware-configuration.nix`, providing an easy instroduction into flake-based system configurations. 39 40 - A `nixos-rebuild build-image` sub-command has been added. 41 - It allows users to build platform-specific (disk) images from their NixOS configurations. `nixos-rebuild build-image` works similar to the popular [nix-community/nixos-generators](https://github.com/nix-community/nixos-generators) project. See new [section on image building in the nixpkgs manual](https://nixos.org/manual/nixpkgs/unstable/#sec-image-nixos-rebuild-build-image). It is also available for `nixos-rebuild-ng`. 42 43 - `nixos-option` has been rewritten to a Nix expression called by a simple bash script. This lowers our maintenance threshold, makes eval errors less verbose, adds support for flake-based configurations, descending into `attrsOf` and `listOf` submodule options, and `--show-trace`. 44
··· 38 - The `nixos-generate-config` command now supports a optional `--flake` option, which will generate a flake.nix file alongside the `configuration.nix` and `hardware-configuration.nix`, providing an easy instroduction into flake-based system configurations. 39 40 - A `nixos-rebuild build-image` sub-command has been added. 41 + It allows users to build platform-specific (disk) images from their NixOS configurations. `nixos-rebuild build-image` works similar to the popular [nix-community/nixos-generators](https://github.com/nix-community/nixos-generators) project. See new [section on image building in the NixOS manual](https://nixos.org/manual/nixos/unstable/#sec-image-nixos-rebuild-build-image). It is also available for `nixos-rebuild-ng`. 42 43 - `nixos-option` has been rewritten to a Nix expression called by a simple bash script. This lowers our maintenance threshold, makes eval errors less verbose, adds support for flake-based configurations, descending into `attrsOf` and `listOf` submodule options, and `--show-trace`. 44
+1
nixos/modules/module-list.nix
··· 560 ./services/desktops/system76-scheduler.nix 561 ./services/desktops/telepathy.nix 562 ./services/desktops/tumbler.nix 563 ./services/desktops/zeitgeist.nix 564 ./services/development/athens.nix 565 ./services/development/blackfire.nix
··· 560 ./services/desktops/system76-scheduler.nix 561 ./services/desktops/telepathy.nix 562 ./services/desktops/tumbler.nix 563 + ./services/desktops/wlock.nix 564 ./services/desktops/zeitgeist.nix 565 ./services/development/athens.nix 566 ./services/development/blackfire.nix
+7
nixos/modules/programs/firefox.nix
··· 118 Some of these might be able to be configured more ergonomically 119 using policies. 120 121 ${organisationInfo} 122 ''; 123 }; 124
··· 118 Some of these might be able to be configured more ergonomically 119 using policies. 120 121 + See [here](https://mozilla.github.io/policy-templates/#preferences) for allowed preferences. 122 + 123 ${organisationInfo} 124 + ''; 125 + example = lib.literalExpression '' 126 + { 127 + "browser.tabs.tabmanager.enabled" = false; 128 + } 129 ''; 130 }; 131
+31
nixos/modules/services/desktops/wlock.nix
···
··· 1 + { 2 + config, 3 + lib, 4 + pkgs, 5 + ... 6 + }: 7 + let 8 + cfg = config.services.wlock; 9 + in 10 + { 11 + options = { 12 + services.wlock = { 13 + enable = lib.mkEnableOption "wlock, a Wayland sessionlocker using the ext-session-lock-v1 protocol"; 14 + 15 + package = lib.mkPackageOption pkgs "wlock" { }; 16 + }; 17 + }; 18 + 19 + config = lib.mkIf cfg.enable { 20 + security.wrappers.wlock = { 21 + owner = "root"; 22 + group = "root"; 23 + # mirror upstream chmod of 4755 24 + setuid = true; 25 + setgid = false; 26 + source = lib.getExe cfg.package; 27 + }; 28 + }; 29 + 30 + meta.maintainers = [ lib.maintainers.fliegendewurst ]; 31 + }
+41 -71
nixos/modules/services/misc/homepage-dashboard.nix
··· 192 }; 193 }; 194 195 - config = 196 - let 197 - # If homepage-dashboard is enabled, but none of the configuration values have been updated, 198 - # then default to "unmanaged" configuration which is manually updated in 199 - # var/lib/homepage-dashboard. This is to maintain backwards compatibility, and should be 200 - # deprecated in a future release. 201 - managedConfig = 202 - !( 203 - cfg.bookmarks == [ ] 204 - && cfg.customCSS == "" 205 - && cfg.customJS == "" 206 - && cfg.docker == { } 207 - && cfg.kubernetes == { } 208 - && cfg.services == [ ] 209 - && cfg.settings == { } 210 - && cfg.widgets == [ ] 211 - ); 212 - 213 - configDir = if managedConfig then "/etc/homepage-dashboard" else "/var/lib/homepage-dashboard"; 214 - 215 - msg = 216 - "using unmanaged configuration for homepage-dashboard is deprecated and will be removed" 217 - + " in 24.05. please see the NixOS documentation for `services.homepage-dashboard' and add" 218 - + " your bookmarks, services, widgets, and other configuration using the options provided."; 219 - in 220 - lib.mkIf cfg.enable { 221 - warnings = lib.optional (!managedConfig) msg; 222 223 - environment.etc = lib.mkIf managedConfig { 224 - "homepage-dashboard/custom.css".text = cfg.customCSS; 225 - "homepage-dashboard/custom.js".text = cfg.customJS; 226 227 - "homepage-dashboard/bookmarks.yaml".source = settingsFormat.generate "bookmarks.yaml" cfg.bookmarks; 228 - "homepage-dashboard/docker.yaml".source = settingsFormat.generate "docker.yaml" cfg.docker; 229 - "homepage-dashboard/kubernetes.yaml".source = 230 - settingsFormat.generate "kubernetes.yaml" cfg.kubernetes; 231 - "homepage-dashboard/services.yaml".source = settingsFormat.generate "services.yaml" cfg.services; 232 - "homepage-dashboard/settings.yaml".source = settingsFormat.generate "settings.yaml" cfg.settings; 233 - "homepage-dashboard/widgets.yaml".source = settingsFormat.generate "widgets.yaml" cfg.widgets; 234 }; 235 236 - systemd.services.homepage-dashboard = { 237 - description = "Homepage Dashboard"; 238 - after = [ "network.target" ]; 239 - wantedBy = [ "multi-user.target" ]; 240 - 241 - environment = { 242 - HOMEPAGE_CONFIG_DIR = configDir; 243 - NIXPKGS_HOMEPAGE_CACHE_DIR = "/var/cache/homepage-dashboard"; 244 - PORT = toString cfg.listenPort; 245 - LOG_TARGETS = lib.mkIf managedConfig "stdout"; 246 - }; 247 - 248 - serviceConfig = { 249 - Type = "simple"; 250 - DynamicUser = true; 251 - EnvironmentFile = lib.mkIf (cfg.environmentFile != null) cfg.environmentFile; 252 - StateDirectory = lib.mkIf (!managedConfig) "homepage-dashboard"; 253 - CacheDirectory = "homepage-dashboard"; 254 - ExecStart = lib.getExe cfg.package; 255 - Restart = "on-failure"; 256 - }; 257 - 258 - enableStrictShellChecks = true; 259 - 260 - preStart = '' 261 - # Related: 262 - # * https://github.com/NixOS/nixpkgs/issues/346016 ("homepage-dashboard: cache dir is not cleared upon version upgrade") 263 - # * https://github.com/gethomepage/homepage/discussions/4560 ("homepage NixOS package does not clear cache on upgrade leaving broken state") 264 - # * https://github.com/vercel/next.js/discussions/58864 ("Feature Request: Allow configuration of cache dir") 265 - rm -rf "''${NIXPKGS_HOMEPAGE_CACHE_DIR:?}"/* 266 - ''; 267 }; 268 269 - networking.firewall = lib.mkIf cfg.openFirewall { 270 - allowedTCPPorts = [ cfg.listenPort ]; 271 - }; 272 }; 273 }
··· 192 }; 193 }; 194 195 + config = lib.mkIf cfg.enable { 196 + environment.etc = { 197 + "homepage-dashboard/custom.css".text = cfg.customCSS; 198 + "homepage-dashboard/custom.js".text = cfg.customJS; 199 + "homepage-dashboard/bookmarks.yaml".source = settingsFormat.generate "bookmarks.yaml" cfg.bookmarks; 200 + "homepage-dashboard/docker.yaml".source = settingsFormat.generate "docker.yaml" cfg.docker; 201 + "homepage-dashboard/kubernetes.yaml".source = 202 + settingsFormat.generate "kubernetes.yaml" cfg.kubernetes; 203 + "homepage-dashboard/services.yaml".source = settingsFormat.generate "services.yaml" cfg.services; 204 + "homepage-dashboard/settings.yaml".source = settingsFormat.generate "settings.yaml" cfg.settings; 205 + "homepage-dashboard/widgets.yaml".source = settingsFormat.generate "widgets.yaml" cfg.widgets; 206 + }; 207 208 + systemd.services.homepage-dashboard = { 209 + description = "Homepage Dashboard"; 210 + after = [ "network.target" ]; 211 + wantedBy = [ "multi-user.target" ]; 212 213 + environment = { 214 + HOMEPAGE_CONFIG_DIR = "/etc/homepage-dashboard"; 215 + NIXPKGS_HOMEPAGE_CACHE_DIR = "/var/cache/homepage-dashboard"; 216 + PORT = toString cfg.listenPort; 217 + LOG_TARGETS = "stdout"; 218 }; 219 220 + serviceConfig = { 221 + Type = "simple"; 222 + DynamicUser = true; 223 + EnvironmentFile = lib.mkIf (cfg.environmentFile != null) cfg.environmentFile; 224 + StateDirectory = "homepage-dashboard"; 225 + CacheDirectory = "homepage-dashboard"; 226 + ExecStart = lib.getExe cfg.package; 227 + Restart = "on-failure"; 228 }; 229 230 + # Related: 231 + # * https://github.com/NixOS/nixpkgs/issues/346016 ("homepage-dashboard: cache dir is not cleared upon version upgrade") 232 + # * https://github.com/gethomepage/homepage/discussions/4560 ("homepage NixOS package does not clear cache on upgrade leaving broken state") 233 + # * https://github.com/vercel/next.js/discussions/58864 ("Feature Request: Allow configuration of cache dir") 234 + preStart = '' 235 + rm -rf "$NIXPKGS_HOMEPAGE_CACHE_DIR"/* 236 + ''; 237 }; 238 + 239 + networking.firewall = lib.mkIf cfg.openFirewall { 240 + allowedTCPPorts = [ cfg.listenPort ]; 241 + }; 242 + }; 243 }
+1
nixos/modules/services/security/kanidm.nix
··· 51 cfg.provision.idmAdminPasswordFile 52 cfg.provision.adminPasswordFile 53 ] 54 ++ mapAttrsToList (_: x: x.basicSecretFile) cfg.provision.systems.oauth2 55 ); 56 secretDirectories = unique (
··· 51 cfg.provision.idmAdminPasswordFile 52 cfg.provision.adminPasswordFile 53 ] 54 + ++ optional (cfg.provision.extraJsonFile != null) cfg.provision.extraJsonFile 55 ++ mapAttrsToList (_: x: x.basicSecretFile) cfg.provision.systems.oauth2 56 ); 57 secretDirectories = unique (
+11 -32
nixos/tests/homepage-dashboard.nix
··· 4 name = "homepage-dashboard"; 5 meta.maintainers = with lib.maintainers; [ jnsgruk ]; 6 7 - nodes.unmanaged_conf = 8 - { pkgs, ... }: 9 - { 10 - services.homepage-dashboard.enable = true; 11 - }; 12 - 13 - nodes.managed_conf = 14 - { pkgs, ... }: 15 - { 16 - services.homepage-dashboard = { 17 - enable = true; 18 - settings.title = "test title rodUsEagid"; # something random/unique 19 - }; 20 }; 21 22 testScript = '' 23 - # Ensure the services are started on unmanaged machine 24 - unmanaged_conf.wait_for_unit("homepage-dashboard.service") 25 - unmanaged_conf.wait_for_open_port(8082) 26 - unmanaged_conf.succeed("curl --fail http://localhost:8082/") 27 - 28 - # Ensure that /etc/homepage-dashboard doesn't exist, and boilerplate 29 - # configs are copied into place. 30 - unmanaged_conf.fail("test -d /etc/homepage-dashboard") 31 - unmanaged_conf.succeed("test -f /var/lib/private/homepage-dashboard/settings.yaml") 32 - 33 # Ensure the services are started on managed machine 34 - managed_conf.wait_for_unit("homepage-dashboard.service") 35 - managed_conf.wait_for_open_port(8082) 36 - managed_conf.succeed("curl --fail http://localhost:8082/") 37 38 - # Ensure /etc/homepage-dashboard is created and unmanaged conf location isn't. 39 - managed_conf.succeed("test -d /etc/homepage-dashboard") 40 - managed_conf.fail("test -f /var/lib/private/homepage-dashboard/settings.yaml") 41 42 # Ensure that we see the custom title *only in the managed config* 43 - page = managed_conf.succeed("curl --fail http://localhost:8082/") 44 assert "test title rodUsEagid" in page, "Custom title not found" 45 - page = unmanaged_conf.succeed("curl --fail http://localhost:8082/") 46 - assert "test title rodUsEagid" not in page, "Custom title found where it shouldn't be" 47 ''; 48 } 49 )
··· 4 name = "homepage-dashboard"; 5 meta.maintainers = with lib.maintainers; [ jnsgruk ]; 6 7 + nodes.machine = _: { 8 + services.homepage-dashboard = { 9 + enable = true; 10 + settings.title = "test title rodUsEagid"; # something random/unique 11 }; 12 + }; 13 14 testScript = '' 15 # Ensure the services are started on managed machine 16 + machine.wait_for_unit("homepage-dashboard.service") 17 + machine.wait_for_open_port(8082) 18 + machine.succeed("curl --fail http://localhost:8082/") 19 20 + # Ensure /etc/homepage-dashboard is created. 21 + machine.succeed("test -d /etc/homepage-dashboard") 22 23 # Ensure that we see the custom title *only in the managed config* 24 + page = machine.succeed("curl --fail http://localhost:8082/") 25 assert "test title rodUsEagid" in page, "Custom title not found" 26 ''; 27 } 28 )
+4
nixos/tests/kanidm-provisioning.nix
··· 306 provision.succeed('${specialisations}/credentialProvision/bin/switch-to-configuration test') 307 provision_login("${provisionIdmAdminPassword}") 308 309 # Test provisioned admin pw 310 out = provision.succeed("KANIDM_PASSWORD=${provisionAdminPassword} kanidm login -D admin") 311 assert_contains(out, "Login Success for admin")
··· 306 provision.succeed('${specialisations}/credentialProvision/bin/switch-to-configuration test') 307 provision_login("${provisionIdmAdminPassword}") 308 309 + # Make sure neither password is logged 310 + provision.fail("journalctl --since -10m --unit kanidm.service --grep '${provisionAdminPassword}'") 311 + provision.fail("journalctl --since -10m --unit kanidm.service --grep '${provisionIdmAdminPassword}'") 312 + 313 # Test provisioned admin pw 314 out = provision.succeed("KANIDM_PASSWORD=${provisionAdminPassword} kanidm login -D admin") 315 assert_contains(out, "Login Success for admin")
+144 -144
pkgs/applications/editors/jetbrains/bin/versions.json
··· 43 "goland": { 44 "update-channel": "GoLand RELEASE", 45 "url-template": "https://download.jetbrains.com/go/goland-{version}.tar.gz", 46 - "version": "2024.3.4", 47 - "sha256": "f474f1f19fb04f7de73596c51b49f2675b3fc11df6a7aaba325c3ad98477d1df", 48 - "url": "https://download.jetbrains.com/go/goland-2024.3.4.tar.gz", 49 - "build_number": "243.25659.52" 50 }, 51 "idea-community": { 52 "update-channel": "IntelliJ IDEA RELEASE", 53 "url-template": "https://download.jetbrains.com/idea/ideaIC-{version}.tar.gz", 54 - "version": "2024.3.4.1", 55 - "sha256": "3eefea10391fdeaaf19ba6d00ee8c7f174a4feb5261394c4d3454d1cf0f5826b", 56 - "url": "https://download.jetbrains.com/idea/ideaIC-2024.3.4.1.tar.gz", 57 - "build_number": "243.25659.59" 58 }, 59 "idea-ultimate": { 60 "update-channel": "IntelliJ IDEA RELEASE", 61 "url-template": "https://download.jetbrains.com/idea/ideaIU-{version}.tar.gz", 62 - "version": "2024.3.4.1", 63 - "sha256": "e9b5b868e425aa1255d75f85028e7ba6275bb8aab88781e960c2c7c34f2173e8", 64 - "url": "https://download.jetbrains.com/idea/ideaIU-2024.3.4.1.tar.gz", 65 - "build_number": "243.25659.59" 66 }, 67 "mps": { 68 "update-channel": "MPS RELEASE", ··· 75 "phpstorm": { 76 "update-channel": "PhpStorm RELEASE", 77 "url-template": "https://download.jetbrains.com/webide/PhpStorm-{version}.tar.gz", 78 - "version": "2024.3.4", 79 - "sha256": "9344d68dda2c0062d9f6f03e27e959346f2f2bba2bce9f1c108653090d2dfb85", 80 - "url": "https://download.jetbrains.com/webide/PhpStorm-2024.3.4.tar.gz", 81 - "build_number": "243.25659.45", 82 "version-major-minor": "2022.3" 83 }, 84 "pycharm-community": { 85 "update-channel": "PyCharm RELEASE", 86 "url-template": "https://download.jetbrains.com/python/pycharm-community-{version}.tar.gz", 87 - "version": "2024.3.4", 88 - "sha256": "c61dd7aa1b5f9c6f7a0943aeec79c56d0aa0f5ed29591b7eb3007169e2545621", 89 - "url": "https://download.jetbrains.com/python/pycharm-community-2024.3.4.tar.gz", 90 - "build_number": "243.25659.43" 91 }, 92 "pycharm-professional": { 93 "update-channel": "PyCharm RELEASE", 94 "url-template": "https://download.jetbrains.com/python/pycharm-professional-{version}.tar.gz", 95 - "version": "2024.3.4", 96 - "sha256": "793bfdcbe38251678bc2fe07a026a594efa5af459137fb70dd786edb340c6430", 97 - "url": "https://download.jetbrains.com/python/pycharm-professional-2024.3.4.tar.gz", 98 - "build_number": "243.25659.43" 99 }, 100 "rider": { 101 "update-channel": "Rider RELEASE", ··· 108 "ruby-mine": { 109 "update-channel": "RubyMine RELEASE", 110 "url-template": "https://download.jetbrains.com/ruby/RubyMine-{version}.tar.gz", 111 - "version": "2024.3.4", 112 - "sha256": "9454aaf0877516b2047bc21517b5459860bdb4cbc797d66612760a336c011ee3", 113 - "url": "https://download.jetbrains.com/ruby/RubyMine-2024.3.4.tar.gz", 114 - "build_number": "243.25659.41" 115 }, 116 "rust-rover": { 117 "update-channel": "RustRover RELEASE", 118 "url-template": "https://download.jetbrains.com/rustrover/RustRover-{version}.tar.gz", 119 - "version": "2024.3.6", 120 - "sha256": "c4373d591eabcfdca4e8e5f635d9007855ac8a32baf4aac26e189d6415f6df9f", 121 - "url": "https://download.jetbrains.com/rustrover/RustRover-2024.3.6.tar.gz", 122 - "build_number": "243.25659.54" 123 }, 124 "webstorm": { 125 "update-channel": "WebStorm RELEASE", 126 "url-template": "https://download.jetbrains.com/webstorm/WebStorm-{version}.tar.gz", 127 - "version": "2024.3.4", 128 - "sha256": "206a5e6b6fd3e603d62a7bbb26b0bf3b7ff7939b3e0cd136d360cdb80ec455f8", 129 - "url": "https://download.jetbrains.com/webstorm/WebStorm-2024.3.4.tar.gz", 130 - "build_number": "243.25659.40" 131 }, 132 "writerside": { 133 "update-channel": "Writerside EAP", ··· 182 "goland": { 183 "update-channel": "GoLand RELEASE", 184 "url-template": "https://download.jetbrains.com/go/goland-{version}-aarch64.tar.gz", 185 - "version": "2024.3.4", 186 - "sha256": "9e1a8921c92e3cd396d81f9a8011ed279d303565fe69b8c2322dedf9a6164643", 187 - "url": "https://download.jetbrains.com/go/goland-2024.3.4-aarch64.tar.gz", 188 - "build_number": "243.25659.52" 189 }, 190 "idea-community": { 191 "update-channel": "IntelliJ IDEA RELEASE", 192 "url-template": "https://download.jetbrains.com/idea/ideaIC-{version}-aarch64.tar.gz", 193 - "version": "2024.3.4.1", 194 - "sha256": "8b6a175a671295fe5095904e4aab5e9b91ff699cb691c5d6f3faadb8b9fd1037", 195 - "url": "https://download.jetbrains.com/idea/ideaIC-2024.3.4.1-aarch64.tar.gz", 196 - "build_number": "243.25659.59" 197 }, 198 "idea-ultimate": { 199 "update-channel": "IntelliJ IDEA RELEASE", 200 "url-template": "https://download.jetbrains.com/idea/ideaIU-{version}-aarch64.tar.gz", 201 - "version": "2024.3.4.1", 202 - "sha256": "a6245e6e1bef3062be5b06cf61bd2eb489e64c6c26f86040cb9c28e4c65e780b", 203 - "url": "https://download.jetbrains.com/idea/ideaIU-2024.3.4.1-aarch64.tar.gz", 204 - "build_number": "243.25659.59" 205 }, 206 "mps": { 207 "update-channel": "MPS RELEASE", ··· 214 "phpstorm": { 215 "update-channel": "PhpStorm RELEASE", 216 "url-template": "https://download.jetbrains.com/webide/PhpStorm-{version}-aarch64.tar.gz", 217 - "version": "2024.3.4", 218 - "sha256": "061dcd7f2972d4d9efc74cce29950929e1fdd02531e1f6365551649c8a254b1a", 219 - "url": "https://download.jetbrains.com/webide/PhpStorm-2024.3.4-aarch64.tar.gz", 220 - "build_number": "243.25659.45", 221 "version-major-minor": "2022.3" 222 }, 223 "pycharm-community": { 224 "update-channel": "PyCharm RELEASE", 225 "url-template": "https://download.jetbrains.com/python/pycharm-community-{version}-aarch64.tar.gz", 226 - "version": "2024.3.4", 227 - "sha256": "6cd540a586692f8784e0889ad83ce497eaf3052a3a319b9d53fa9594572409ee", 228 - "url": "https://download.jetbrains.com/python/pycharm-community-2024.3.4-aarch64.tar.gz", 229 - "build_number": "243.25659.43" 230 }, 231 "pycharm-professional": { 232 "update-channel": "PyCharm RELEASE", 233 "url-template": "https://download.jetbrains.com/python/pycharm-professional-{version}-aarch64.tar.gz", 234 - "version": "2024.3.4", 235 - "sha256": "d4755118db79ff68be149619a2e0b8d480dd56694de131228a7d5ebbd0f82240", 236 - "url": "https://download.jetbrains.com/python/pycharm-professional-2024.3.4-aarch64.tar.gz", 237 - "build_number": "243.25659.43" 238 }, 239 "rider": { 240 "update-channel": "Rider RELEASE", ··· 247 "ruby-mine": { 248 "update-channel": "RubyMine RELEASE", 249 "url-template": "https://download.jetbrains.com/ruby/RubyMine-{version}-aarch64.tar.gz", 250 - "version": "2024.3.4", 251 - "sha256": "c63ca3230cecd887e9810500f466c51ee9d7430193f4feda315a6fdfc60c0447", 252 - "url": "https://download.jetbrains.com/ruby/RubyMine-2024.3.4-aarch64.tar.gz", 253 - "build_number": "243.25659.41" 254 }, 255 "rust-rover": { 256 "update-channel": "RustRover RELEASE", 257 "url-template": "https://download.jetbrains.com/rustrover/RustRover-{version}-aarch64.tar.gz", 258 - "version": "2024.3.6", 259 - "sha256": "e6ad574015ffc7f6392434634a5f3172e1ce94d96f10e8e94e9012f2ee770933", 260 - "url": "https://download.jetbrains.com/rustrover/RustRover-2024.3.6-aarch64.tar.gz", 261 - "build_number": "243.25659.54" 262 }, 263 "webstorm": { 264 "update-channel": "WebStorm RELEASE", 265 "url-template": "https://download.jetbrains.com/webstorm/WebStorm-{version}-aarch64.tar.gz", 266 - "version": "2024.3.4", 267 - "sha256": "498efb5b3e79a0f71dc7f44f54a2155a17b5d53d8b7a71ae6aaef87abc59bfce", 268 - "url": "https://download.jetbrains.com/webstorm/WebStorm-2024.3.4-aarch64.tar.gz", 269 - "build_number": "243.25659.40" 270 }, 271 "writerside": { 272 "update-channel": "Writerside EAP", ··· 321 "goland": { 322 "update-channel": "GoLand RELEASE", 323 "url-template": "https://download.jetbrains.com/go/goland-{version}.dmg", 324 - "version": "2024.3.4", 325 - "sha256": "d621d2130f2f4b602c69a1d62c68112fcea189405ce1d7f6cbd75c7584ccf96c", 326 - "url": "https://download.jetbrains.com/go/goland-2024.3.4.dmg", 327 - "build_number": "243.25659.52" 328 }, 329 "idea-community": { 330 "update-channel": "IntelliJ IDEA RELEASE", 331 "url-template": "https://download.jetbrains.com/idea/ideaIC-{version}.dmg", 332 - "version": "2024.3.4.1", 333 - "sha256": "bf4d88befcd445db19732d9c02d2db864196bbd6554fe4b54f80f8e1936e3993", 334 - "url": "https://download.jetbrains.com/idea/ideaIC-2024.3.4.1.dmg", 335 - "build_number": "243.25659.59" 336 }, 337 "idea-ultimate": { 338 "update-channel": "IntelliJ IDEA RELEASE", 339 "url-template": "https://download.jetbrains.com/idea/ideaIU-{version}.dmg", 340 - "version": "2024.3.4.1", 341 - "sha256": "f4bf75679314b88aa6fe1c892175178498e3bc13583cb1380fa2cc12fab8acf1", 342 - "url": "https://download.jetbrains.com/idea/ideaIU-2024.3.4.1.dmg", 343 - "build_number": "243.25659.59" 344 }, 345 "mps": { 346 "update-channel": "MPS RELEASE", ··· 353 "phpstorm": { 354 "update-channel": "PhpStorm RELEASE", 355 "url-template": "https://download.jetbrains.com/webide/PhpStorm-{version}.dmg", 356 - "version": "2024.3.4", 357 - "sha256": "32c0e7faaeb6c90c25192688d9f03c888f7bb957c91796713783b41805c65956", 358 - "url": "https://download.jetbrains.com/webide/PhpStorm-2024.3.4.dmg", 359 - "build_number": "243.25659.45", 360 "version-major-minor": "2022.3" 361 }, 362 "pycharm-community": { 363 "update-channel": "PyCharm RELEASE", 364 "url-template": "https://download.jetbrains.com/python/pycharm-community-{version}.dmg", 365 - "version": "2024.3.4", 366 - "sha256": "468914b3f03f8df651a9ac48df163b1fdee2b7f33ab64a71bed899da5427feab", 367 - "url": "https://download.jetbrains.com/python/pycharm-community-2024.3.4.dmg", 368 - "build_number": "243.25659.43" 369 }, 370 "pycharm-professional": { 371 "update-channel": "PyCharm RELEASE", 372 "url-template": "https://download.jetbrains.com/python/pycharm-professional-{version}.dmg", 373 - "version": "2024.3.4", 374 - "sha256": "7441c8878953c6e46177d9a99d09b328f7c2d493b4f1967ea67276f2f8f9f025", 375 - "url": "https://download.jetbrains.com/python/pycharm-professional-2024.3.4.dmg", 376 - "build_number": "243.25659.43" 377 }, 378 "rider": { 379 "update-channel": "Rider RELEASE", ··· 386 "ruby-mine": { 387 "update-channel": "RubyMine RELEASE", 388 "url-template": "https://download.jetbrains.com/ruby/RubyMine-{version}.dmg", 389 - "version": "2024.3.4", 390 - "sha256": "8cb255a6b66f77c5233cb2dd4c47cd4c8564c48cee3b1bb40128677a93cc39c8", 391 - "url": "https://download.jetbrains.com/ruby/RubyMine-2024.3.4.dmg", 392 - "build_number": "243.25659.41" 393 }, 394 "rust-rover": { 395 "update-channel": "RustRover RELEASE", 396 "url-template": "https://download.jetbrains.com/rustrover/RustRover-{version}.dmg", 397 - "version": "2024.3.6", 398 - "sha256": "ebcec89bbb05a3c6d2626bd5692bd1a45732f28108c9a0eaad0a19bbf463acc6", 399 - "url": "https://download.jetbrains.com/rustrover/RustRover-2024.3.6.dmg", 400 - "build_number": "243.25659.54" 401 }, 402 "webstorm": { 403 "update-channel": "WebStorm RELEASE", 404 "url-template": "https://download.jetbrains.com/webstorm/WebStorm-{version}.dmg", 405 - "version": "2024.3.4", 406 - "sha256": "337f80f0a5a9179b64ac4552a89ffc93a1e3f1b5c8a1b94a04a9cad9d0d18808", 407 - "url": "https://download.jetbrains.com/webstorm/WebStorm-2024.3.4.dmg", 408 - "build_number": "243.25659.40" 409 }, 410 "writerside": { 411 "update-channel": "Writerside EAP", ··· 460 "goland": { 461 "update-channel": "GoLand RELEASE", 462 "url-template": "https://download.jetbrains.com/go/goland-{version}-aarch64.dmg", 463 - "version": "2024.3.4", 464 - "sha256": "4c5e5f50b9209f673ed165c4c1fcb1bc88f4fd3ab2f4ad9740bc8855bb6f4e22", 465 - "url": "https://download.jetbrains.com/go/goland-2024.3.4-aarch64.dmg", 466 - "build_number": "243.25659.52" 467 }, 468 "idea-community": { 469 "update-channel": "IntelliJ IDEA RELEASE", 470 "url-template": "https://download.jetbrains.com/idea/ideaIC-{version}-aarch64.dmg", 471 - "version": "2024.3.4.1", 472 - "sha256": "5b8681be2c39c2bbbff143aea27161a5f69c72daf6e88d6f320867bbf7c51659", 473 - "url": "https://download.jetbrains.com/idea/ideaIC-2024.3.4.1-aarch64.dmg", 474 - "build_number": "243.25659.59" 475 }, 476 "idea-ultimate": { 477 "update-channel": "IntelliJ IDEA RELEASE", 478 "url-template": "https://download.jetbrains.com/idea/ideaIU-{version}-aarch64.dmg", 479 - "version": "2024.3.4.1", 480 - "sha256": "ac323f3d011e826cc37d88d99585d28092703abfc464cabc3c033bb85ae86c65", 481 - "url": "https://download.jetbrains.com/idea/ideaIU-2024.3.4.1-aarch64.dmg", 482 - "build_number": "243.25659.59" 483 }, 484 "mps": { 485 "update-channel": "MPS RELEASE", ··· 492 "phpstorm": { 493 "update-channel": "PhpStorm RELEASE", 494 "url-template": "https://download.jetbrains.com/webide/PhpStorm-{version}-aarch64.dmg", 495 - "version": "2024.3.4", 496 - "sha256": "9f5586b202165002f8ecbb6b6ffa332d6116c605eb487e49d50ba4d6b68b8785", 497 - "url": "https://download.jetbrains.com/webide/PhpStorm-2024.3.4-aarch64.dmg", 498 - "build_number": "243.25659.45", 499 "version-major-minor": "2022.3" 500 }, 501 "pycharm-community": { 502 "update-channel": "PyCharm RELEASE", 503 "url-template": "https://download.jetbrains.com/python/pycharm-community-{version}-aarch64.dmg", 504 - "version": "2024.3.4", 505 - "sha256": "b8f585ff95cfa31a97db3ba98ff84843455b0a89790ea4abbcc8da05c6fa6f4d", 506 - "url": "https://download.jetbrains.com/python/pycharm-community-2024.3.4-aarch64.dmg", 507 - "build_number": "243.25659.43" 508 }, 509 "pycharm-professional": { 510 "update-channel": "PyCharm RELEASE", 511 "url-template": "https://download.jetbrains.com/python/pycharm-professional-{version}-aarch64.dmg", 512 - "version": "2024.3.4", 513 - "sha256": "243d94467cfaeccbfcb21976d2bcf262beb31a9d52bb2cf8c6ab998987e4e49c", 514 - "url": "https://download.jetbrains.com/python/pycharm-professional-2024.3.4-aarch64.dmg", 515 - "build_number": "243.25659.43" 516 }, 517 "rider": { 518 "update-channel": "Rider RELEASE", ··· 525 "ruby-mine": { 526 "update-channel": "RubyMine RELEASE", 527 "url-template": "https://download.jetbrains.com/ruby/RubyMine-{version}-aarch64.dmg", 528 - "version": "2024.3.4", 529 - "sha256": "7d93ff5df263a1526c0cb901e6df2abee547f9e9116f355cfc13a93a20b8ea4a", 530 - "url": "https://download.jetbrains.com/ruby/RubyMine-2024.3.4-aarch64.dmg", 531 - "build_number": "243.25659.41" 532 }, 533 "rust-rover": { 534 "update-channel": "RustRover RELEASE", 535 "url-template": "https://download.jetbrains.com/rustrover/RustRover-{version}-aarch64.dmg", 536 - "version": "2024.3.6", 537 - "sha256": "f45da1a104b972697808d93508645269229c52fe7561ef79f2865459c259ebf8", 538 - "url": "https://download.jetbrains.com/rustrover/RustRover-2024.3.6-aarch64.dmg", 539 - "build_number": "243.25659.54" 540 }, 541 "webstorm": { 542 "update-channel": "WebStorm RELEASE", 543 "url-template": "https://download.jetbrains.com/webstorm/WebStorm-{version}-aarch64.dmg", 544 - "version": "2024.3.4", 545 - "sha256": "7e7745429e3541bd6cfaffda84aba4bcfe252db5cf93c7b2e2c75205217af57a", 546 - "url": "https://download.jetbrains.com/webstorm/WebStorm-2024.3.4-aarch64.dmg", 547 - "build_number": "243.25659.40" 548 }, 549 "writerside": { 550 "update-channel": "Writerside EAP",
··· 43 "goland": { 44 "update-channel": "GoLand RELEASE", 45 "url-template": "https://download.jetbrains.com/go/goland-{version}.tar.gz", 46 + "version": "2024.3.5", 47 + "sha256": "d59f537fb8d9c741a704605ec00c4b4230211301cd0609c73c66d5edb4eb9340", 48 + "url": "https://download.jetbrains.com/go/goland-2024.3.5.tar.gz", 49 + "build_number": "243.26053.20" 50 }, 51 "idea-community": { 52 "update-channel": "IntelliJ IDEA RELEASE", 53 "url-template": "https://download.jetbrains.com/idea/ideaIC-{version}.tar.gz", 54 + "version": "2024.3.5", 55 + "sha256": "8a287528d830e6cdec2ded13c974c39a35b7555243c22d8b83113c96c26630aa", 56 + "url": "https://download.jetbrains.com/idea/ideaIC-2024.3.5.tar.gz", 57 + "build_number": "243.26053.27" 58 }, 59 "idea-ultimate": { 60 "update-channel": "IntelliJ IDEA RELEASE", 61 "url-template": "https://download.jetbrains.com/idea/ideaIU-{version}.tar.gz", 62 + "version": "2024.3.5", 63 + "sha256": "f8e8e864f4fedddf1d366a7db23fc4132192c3a6029c614a382186ff564a78a1", 64 + "url": "https://download.jetbrains.com/idea/ideaIU-2024.3.5.tar.gz", 65 + "build_number": "243.26053.27" 66 }, 67 "mps": { 68 "update-channel": "MPS RELEASE", ··· 75 "phpstorm": { 76 "update-channel": "PhpStorm RELEASE", 77 "url-template": "https://download.jetbrains.com/webide/PhpStorm-{version}.tar.gz", 78 + "version": "2024.3.5", 79 + "sha256": "e12efb584eb9b632703d1bee9986d95ac09aceaf76ca40e9188d82b713ff0fc1", 80 + "url": "https://download.jetbrains.com/webide/PhpStorm-2024.3.5.tar.gz", 81 + "build_number": "243.26053.13", 82 "version-major-minor": "2022.3" 83 }, 84 "pycharm-community": { 85 "update-channel": "PyCharm RELEASE", 86 "url-template": "https://download.jetbrains.com/python/pycharm-community-{version}.tar.gz", 87 + "version": "2024.3.5", 88 + "sha256": "e8d5aa2a05d35e3cb3cd186d446242c191d03b3d0556b160b6875a830c91cc2b", 89 + "url": "https://download.jetbrains.com/python/pycharm-community-2024.3.5.tar.gz", 90 + "build_number": "243.26053.29" 91 }, 92 "pycharm-professional": { 93 "update-channel": "PyCharm RELEASE", 94 "url-template": "https://download.jetbrains.com/python/pycharm-professional-{version}.tar.gz", 95 + "version": "2024.3.5", 96 + "sha256": "dbfbdbd2627bcf5de85673151f3d3b79b12fa373d8c0d7942f40bba3aa397ea3", 97 + "url": "https://download.jetbrains.com/python/pycharm-professional-2024.3.5.tar.gz", 98 + "build_number": "243.26053.29" 99 }, 100 "rider": { 101 "update-channel": "Rider RELEASE", ··· 108 "ruby-mine": { 109 "update-channel": "RubyMine RELEASE", 110 "url-template": "https://download.jetbrains.com/ruby/RubyMine-{version}.tar.gz", 111 + "version": "2024.3.5", 112 + "sha256": "e5fb7daa24307927cfd329340956b4cae1e0f3bb011841834519c4342428d38b", 113 + "url": "https://download.jetbrains.com/ruby/RubyMine-2024.3.5.tar.gz", 114 + "build_number": "243.26053.19" 115 }, 116 "rust-rover": { 117 "update-channel": "RustRover RELEASE", 118 "url-template": "https://download.jetbrains.com/rustrover/RustRover-{version}.tar.gz", 119 + "version": "2024.3.7", 120 + "sha256": "aec79e12c16082d364617dab83ec63980fddbd66c5734573499b000733c508ad", 121 + "url": "https://download.jetbrains.com/rustrover/RustRover-2024.3.7.tar.gz", 122 + "build_number": "243.26053.17" 123 }, 124 "webstorm": { 125 "update-channel": "WebStorm RELEASE", 126 "url-template": "https://download.jetbrains.com/webstorm/WebStorm-{version}.tar.gz", 127 + "version": "2024.3.5", 128 + "sha256": "da587d7ca3ebb08f067143e4a6b35f1aa133aa10af7fc365496838006fcd1aed", 129 + "url": "https://download.jetbrains.com/webstorm/WebStorm-2024.3.5.tar.gz", 130 + "build_number": "243.26053.12" 131 }, 132 "writerside": { 133 "update-channel": "Writerside EAP", ··· 182 "goland": { 183 "update-channel": "GoLand RELEASE", 184 "url-template": "https://download.jetbrains.com/go/goland-{version}-aarch64.tar.gz", 185 + "version": "2024.3.5", 186 + "sha256": "12236e5b82e99ce27925567afe049e3ce298b083b764b75ffb67b5b7b8072e61", 187 + "url": "https://download.jetbrains.com/go/goland-2024.3.5-aarch64.tar.gz", 188 + "build_number": "243.26053.20" 189 }, 190 "idea-community": { 191 "update-channel": "IntelliJ IDEA RELEASE", 192 "url-template": "https://download.jetbrains.com/idea/ideaIC-{version}-aarch64.tar.gz", 193 + "version": "2024.3.5", 194 + "sha256": "43b3ac68c07b611baa12bd70adc188b7be81d79b0b3a232aad582df2ffeb2598", 195 + "url": "https://download.jetbrains.com/idea/ideaIC-2024.3.5-aarch64.tar.gz", 196 + "build_number": "243.26053.27" 197 }, 198 "idea-ultimate": { 199 "update-channel": "IntelliJ IDEA RELEASE", 200 "url-template": "https://download.jetbrains.com/idea/ideaIU-{version}-aarch64.tar.gz", 201 + "version": "2024.3.5", 202 + "sha256": "0f072350137540672fd4de19768175164a2497290098321dfefaaaff0097f524", 203 + "url": "https://download.jetbrains.com/idea/ideaIU-2024.3.5-aarch64.tar.gz", 204 + "build_number": "243.26053.27" 205 }, 206 "mps": { 207 "update-channel": "MPS RELEASE", ··· 214 "phpstorm": { 215 "update-channel": "PhpStorm RELEASE", 216 "url-template": "https://download.jetbrains.com/webide/PhpStorm-{version}-aarch64.tar.gz", 217 + "version": "2024.3.5", 218 + "sha256": "a55b112177db464081139f6b9aec2a7c22b0f069dd70fdb1bfe56fa1a7f33aa4", 219 + "url": "https://download.jetbrains.com/webide/PhpStorm-2024.3.5-aarch64.tar.gz", 220 + "build_number": "243.26053.13", 221 "version-major-minor": "2022.3" 222 }, 223 "pycharm-community": { 224 "update-channel": "PyCharm RELEASE", 225 "url-template": "https://download.jetbrains.com/python/pycharm-community-{version}-aarch64.tar.gz", 226 + "version": "2024.3.5", 227 + "sha256": "08fbe137d0153b92a639351e866c2218744517b6cfcf412abedfe1d6c9ad1bc4", 228 + "url": "https://download.jetbrains.com/python/pycharm-community-2024.3.5-aarch64.tar.gz", 229 + "build_number": "243.26053.29" 230 }, 231 "pycharm-professional": { 232 "update-channel": "PyCharm RELEASE", 233 "url-template": "https://download.jetbrains.com/python/pycharm-professional-{version}-aarch64.tar.gz", 234 + "version": "2024.3.5", 235 + "sha256": "53ce650a41fefb260a13cb96462857fc5abd98d7a02adf794cde7248e3cefbbb", 236 + "url": "https://download.jetbrains.com/python/pycharm-professional-2024.3.5-aarch64.tar.gz", 237 + "build_number": "243.26053.29" 238 }, 239 "rider": { 240 "update-channel": "Rider RELEASE", ··· 247 "ruby-mine": { 248 "update-channel": "RubyMine RELEASE", 249 "url-template": "https://download.jetbrains.com/ruby/RubyMine-{version}-aarch64.tar.gz", 250 + "version": "2024.3.5", 251 + "sha256": "72a331a3c04a3d9f8bf30ad0b5009d4634f0fdcf5becd6a9a5cd00a5728cd9d1", 252 + "url": "https://download.jetbrains.com/ruby/RubyMine-2024.3.5-aarch64.tar.gz", 253 + "build_number": "243.26053.19" 254 }, 255 "rust-rover": { 256 "update-channel": "RustRover RELEASE", 257 "url-template": "https://download.jetbrains.com/rustrover/RustRover-{version}-aarch64.tar.gz", 258 + "version": "2024.3.7", 259 + "sha256": "537cb7c23cf03a467d311ae00c07b9830f8a7e09807366488d75f84c573ac460", 260 + "url": "https://download.jetbrains.com/rustrover/RustRover-2024.3.7-aarch64.tar.gz", 261 + "build_number": "243.26053.17" 262 }, 263 "webstorm": { 264 "update-channel": "WebStorm RELEASE", 265 "url-template": "https://download.jetbrains.com/webstorm/WebStorm-{version}-aarch64.tar.gz", 266 + "version": "2024.3.5", 267 + "sha256": "fce5d5c2b8c5aacfabac60ff93b93d7c9a3239adcf8347b3deabd472ac1c1288", 268 + "url": "https://download.jetbrains.com/webstorm/WebStorm-2024.3.5-aarch64.tar.gz", 269 + "build_number": "243.26053.12" 270 }, 271 "writerside": { 272 "update-channel": "Writerside EAP", ··· 321 "goland": { 322 "update-channel": "GoLand RELEASE", 323 "url-template": "https://download.jetbrains.com/go/goland-{version}.dmg", 324 + "version": "2024.3.5", 325 + "sha256": "08739696b428ee2964f314884edbabd6614e5b4ce1ec9021e9d336ee947bb944", 326 + "url": "https://download.jetbrains.com/go/goland-2024.3.5.dmg", 327 + "build_number": "243.26053.20" 328 }, 329 "idea-community": { 330 "update-channel": "IntelliJ IDEA RELEASE", 331 "url-template": "https://download.jetbrains.com/idea/ideaIC-{version}.dmg", 332 + "version": "2024.3.5", 333 + "sha256": "94640287fb84238d766a52681083807a087ef28b5c9b66d31f4a7ae06f2bcb8a", 334 + "url": "https://download.jetbrains.com/idea/ideaIC-2024.3.5.dmg", 335 + "build_number": "243.26053.27" 336 }, 337 "idea-ultimate": { 338 "update-channel": "IntelliJ IDEA RELEASE", 339 "url-template": "https://download.jetbrains.com/idea/ideaIU-{version}.dmg", 340 + "version": "2024.3.5", 341 + "sha256": "8b50dd9783c6f8dde229606a4e2d1d0e4ce95f0db33502053ed957fd532bcc35", 342 + "url": "https://download.jetbrains.com/idea/ideaIU-2024.3.5.dmg", 343 + "build_number": "243.26053.27" 344 }, 345 "mps": { 346 "update-channel": "MPS RELEASE", ··· 353 "phpstorm": { 354 "update-channel": "PhpStorm RELEASE", 355 "url-template": "https://download.jetbrains.com/webide/PhpStorm-{version}.dmg", 356 + "version": "2024.3.5", 357 + "sha256": "edb7d1ff3aa653f6f73ea2e6f907b026de8613cea3bdc2cb90c79257f387c2a6", 358 + "url": "https://download.jetbrains.com/webide/PhpStorm-2024.3.5.dmg", 359 + "build_number": "243.26053.13", 360 "version-major-minor": "2022.3" 361 }, 362 "pycharm-community": { 363 "update-channel": "PyCharm RELEASE", 364 "url-template": "https://download.jetbrains.com/python/pycharm-community-{version}.dmg", 365 + "version": "2024.3.5", 366 + "sha256": "25d01d39d7e5f1d658548dadee4cd4972f25d60a8c10da3cb482a99c8e3181d3", 367 + "url": "https://download.jetbrains.com/python/pycharm-community-2024.3.5.dmg", 368 + "build_number": "243.26053.29" 369 }, 370 "pycharm-professional": { 371 "update-channel": "PyCharm RELEASE", 372 "url-template": "https://download.jetbrains.com/python/pycharm-professional-{version}.dmg", 373 + "version": "2024.3.5", 374 + "sha256": "d98e90eccec085c467a547a7ee31ab6611479ea991fe7b99e41e81f491cfeeff", 375 + "url": "https://download.jetbrains.com/python/pycharm-professional-2024.3.5.dmg", 376 + "build_number": "243.26053.29" 377 }, 378 "rider": { 379 "update-channel": "Rider RELEASE", ··· 386 "ruby-mine": { 387 "update-channel": "RubyMine RELEASE", 388 "url-template": "https://download.jetbrains.com/ruby/RubyMine-{version}.dmg", 389 + "version": "2024.3.5", 390 + "sha256": "fb9f10ef6c0e5741bcd35abf148133002d92865899e4a98a276be64ff88b9688", 391 + "url": "https://download.jetbrains.com/ruby/RubyMine-2024.3.5.dmg", 392 + "build_number": "243.26053.19" 393 }, 394 "rust-rover": { 395 "update-channel": "RustRover RELEASE", 396 "url-template": "https://download.jetbrains.com/rustrover/RustRover-{version}.dmg", 397 + "version": "2024.3.7", 398 + "sha256": "1326cfb150170e69c2fe62c4f7ff131d90117da3ee07b5e6134e46d44822fba0", 399 + "url": "https://download.jetbrains.com/rustrover/RustRover-2024.3.7.dmg", 400 + "build_number": "243.26053.17" 401 }, 402 "webstorm": { 403 "update-channel": "WebStorm RELEASE", 404 "url-template": "https://download.jetbrains.com/webstorm/WebStorm-{version}.dmg", 405 + "version": "2024.3.5", 406 + "sha256": "6d7d3c7883f1344a08d39c4060dcd32c28039d7217549c88d703e65517be7898", 407 + "url": "https://download.jetbrains.com/webstorm/WebStorm-2024.3.5.dmg", 408 + "build_number": "243.26053.12" 409 }, 410 "writerside": { 411 "update-channel": "Writerside EAP", ··· 460 "goland": { 461 "update-channel": "GoLand RELEASE", 462 "url-template": "https://download.jetbrains.com/go/goland-{version}-aarch64.dmg", 463 + "version": "2024.3.5", 464 + "sha256": "7f3503352d47551c68818b288938fdb01ebd35d56153f6ed560058b19397796c", 465 + "url": "https://download.jetbrains.com/go/goland-2024.3.5-aarch64.dmg", 466 + "build_number": "243.26053.20" 467 }, 468 "idea-community": { 469 "update-channel": "IntelliJ IDEA RELEASE", 470 "url-template": "https://download.jetbrains.com/idea/ideaIC-{version}-aarch64.dmg", 471 + "version": "2024.3.5", 472 + "sha256": "b96b9fa3de829f0d5e98aa73766b3da4909186a464e3f8e7b8b3c975f1b0978b", 473 + "url": "https://download.jetbrains.com/idea/ideaIC-2024.3.5-aarch64.dmg", 474 + "build_number": "243.26053.27" 475 }, 476 "idea-ultimate": { 477 "update-channel": "IntelliJ IDEA RELEASE", 478 "url-template": "https://download.jetbrains.com/idea/ideaIU-{version}-aarch64.dmg", 479 + "version": "2024.3.5", 480 + "sha256": "8cf632fbb89e6dfbd2a536643450e6ae6671001348461260fe0132ed14ef3d0c", 481 + "url": "https://download.jetbrains.com/idea/ideaIU-2024.3.5-aarch64.dmg", 482 + "build_number": "243.26053.27" 483 }, 484 "mps": { 485 "update-channel": "MPS RELEASE", ··· 492 "phpstorm": { 493 "update-channel": "PhpStorm RELEASE", 494 "url-template": "https://download.jetbrains.com/webide/PhpStorm-{version}-aarch64.dmg", 495 + "version": "2024.3.5", 496 + "sha256": "439aea4e8f919701b058f619dc545ac5207bd2b340b9f1925281a7fe0747fbd6", 497 + "url": "https://download.jetbrains.com/webide/PhpStorm-2024.3.5-aarch64.dmg", 498 + "build_number": "243.26053.13", 499 "version-major-minor": "2022.3" 500 }, 501 "pycharm-community": { 502 "update-channel": "PyCharm RELEASE", 503 "url-template": "https://download.jetbrains.com/python/pycharm-community-{version}-aarch64.dmg", 504 + "version": "2024.3.5", 505 + "sha256": "444edd06334a6b35964995b9af8ba998514eb1355f6035b905ec57e1a0ff7320", 506 + "url": "https://download.jetbrains.com/python/pycharm-community-2024.3.5-aarch64.dmg", 507 + "build_number": "243.26053.29" 508 }, 509 "pycharm-professional": { 510 "update-channel": "PyCharm RELEASE", 511 "url-template": "https://download.jetbrains.com/python/pycharm-professional-{version}-aarch64.dmg", 512 + "version": "2024.3.5", 513 + "sha256": "d92332e6b120669f7f9aded84b82b6c7a64c2512537faf623122e7f2505bbab1", 514 + "url": "https://download.jetbrains.com/python/pycharm-professional-2024.3.5-aarch64.dmg", 515 + "build_number": "243.26053.29" 516 }, 517 "rider": { 518 "update-channel": "Rider RELEASE", ··· 525 "ruby-mine": { 526 "update-channel": "RubyMine RELEASE", 527 "url-template": "https://download.jetbrains.com/ruby/RubyMine-{version}-aarch64.dmg", 528 + "version": "2024.3.5", 529 + "sha256": "e7f12eeb72b3421108b8aafb03c4603b74e6ac8922dc192f2a2d5bb5811d4d48", 530 + "url": "https://download.jetbrains.com/ruby/RubyMine-2024.3.5-aarch64.dmg", 531 + "build_number": "243.26053.19" 532 }, 533 "rust-rover": { 534 "update-channel": "RustRover RELEASE", 535 "url-template": "https://download.jetbrains.com/rustrover/RustRover-{version}-aarch64.dmg", 536 + "version": "2024.3.7", 537 + "sha256": "e7d1f13d54637202dcf7a54a2f273b7d9fdc251ae6573df6316fc23dcc8611f2", 538 + "url": "https://download.jetbrains.com/rustrover/RustRover-2024.3.7-aarch64.dmg", 539 + "build_number": "243.26053.17" 540 }, 541 "webstorm": { 542 "update-channel": "WebStorm RELEASE", 543 "url-template": "https://download.jetbrains.com/webstorm/WebStorm-{version}-aarch64.dmg", 544 + "version": "2024.3.5", 545 + "sha256": "67f1898fcf936f22842a669ebe1cc746d8ae9069086dcf66efa2d86d73e78d5c", 546 + "url": "https://download.jetbrains.com/webstorm/WebStorm-2024.3.5-aarch64.dmg", 547 + "build_number": "243.26053.12" 548 }, 549 "writerside": { 550 "update-channel": "Writerside EAP",
+470 -468
pkgs/applications/editors/jetbrains/plugins/plugins.json
··· 22 "243.24978.546": "https://plugins.jetbrains.com/files/164/676777/IdeaVIM-2.19.0.zip", 23 "243.24978.79": "https://plugins.jetbrains.com/files/164/676777/IdeaVIM-2.19.0.zip", 24 "243.25659.34": "https://plugins.jetbrains.com/files/164/676777/IdeaVIM-2.19.0.zip", 25 - "243.25659.40": "https://plugins.jetbrains.com/files/164/676777/IdeaVIM-2.19.0.zip", 26 - "243.25659.41": "https://plugins.jetbrains.com/files/164/676777/IdeaVIM-2.19.0.zip", 27 "243.25659.42": "https://plugins.jetbrains.com/files/164/676777/IdeaVIM-2.19.0.zip", 28 - "243.25659.43": "https://plugins.jetbrains.com/files/164/676777/IdeaVIM-2.19.0.zip", 29 - "243.25659.45": "https://plugins.jetbrains.com/files/164/676777/IdeaVIM-2.19.0.zip", 30 - "243.25659.52": "https://plugins.jetbrains.com/files/164/676777/IdeaVIM-2.19.0.zip", 31 - "243.25659.54": "https://plugins.jetbrains.com/files/164/676777/IdeaVIM-2.19.0.zip", 32 - "243.25659.59": "https://plugins.jetbrains.com/files/164/676777/IdeaVIM-2.19.0.zip" 33 }, 34 "name": "ideavim" 35 }, ··· 38 "idea-ultimate" 39 ], 40 "builds": { 41 - "243.25659.59": "https://plugins.jetbrains.com/files/631/692278/python-243.25659.59.zip" 42 }, 43 "name": "python" 44 }, ··· 49 ], 50 "builds": { 51 "243.22562.218": "https://plugins.jetbrains.com/files/1347/667258/scala-intellij-bin-2024.3.35.zip", 52 - "243.25659.59": "https://plugins.jetbrains.com/files/1347/696516/scala-intellij-bin-2024.3.42.zip" 53 }, 54 "name": "scala" 55 }, ··· 75 "243.24978.546": "https://plugins.jetbrains.com/files/2162/640476/StringManipulation-9.15.0.zip", 76 "243.24978.79": "https://plugins.jetbrains.com/files/2162/640476/StringManipulation-9.15.0.zip", 77 "243.25659.34": "https://plugins.jetbrains.com/files/2162/640476/StringManipulation-9.15.0.zip", 78 - "243.25659.40": "https://plugins.jetbrains.com/files/2162/640476/StringManipulation-9.15.0.zip", 79 - "243.25659.41": "https://plugins.jetbrains.com/files/2162/640476/StringManipulation-9.15.0.zip", 80 "243.25659.42": "https://plugins.jetbrains.com/files/2162/640476/StringManipulation-9.15.0.zip", 81 - "243.25659.43": "https://plugins.jetbrains.com/files/2162/640476/StringManipulation-9.15.0.zip", 82 - "243.25659.45": "https://plugins.jetbrains.com/files/2162/640476/StringManipulation-9.15.0.zip", 83 - "243.25659.52": "https://plugins.jetbrains.com/files/2162/640476/StringManipulation-9.15.0.zip", 84 - "243.25659.54": "https://plugins.jetbrains.com/files/2162/640476/StringManipulation-9.15.0.zip", 85 - "243.25659.59": "https://plugins.jetbrains.com/files/2162/640476/StringManipulation-9.15.0.zip" 86 }, 87 "name": "string-manipulation" 88 }, ··· 108 "243.24978.546": "https://plugins.jetbrains.com/files/6884/630038/handlebars-243.21565.122.zip", 109 "243.24978.79": "https://plugins.jetbrains.com/files/6884/630038/handlebars-243.21565.122.zip", 110 "243.25659.34": "https://plugins.jetbrains.com/files/6884/630038/handlebars-243.21565.122.zip", 111 - "243.25659.40": "https://plugins.jetbrains.com/files/6884/630038/handlebars-243.21565.122.zip", 112 - "243.25659.41": "https://plugins.jetbrains.com/files/6884/630038/handlebars-243.21565.122.zip", 113 "243.25659.42": "https://plugins.jetbrains.com/files/6884/630038/handlebars-243.21565.122.zip", 114 - "243.25659.43": "https://plugins.jetbrains.com/files/6884/630038/handlebars-243.21565.122.zip", 115 - "243.25659.45": "https://plugins.jetbrains.com/files/6884/630038/handlebars-243.21565.122.zip", 116 - "243.25659.52": "https://plugins.jetbrains.com/files/6884/630038/handlebars-243.21565.122.zip", 117 - "243.25659.54": "https://plugins.jetbrains.com/files/6884/630038/handlebars-243.21565.122.zip", 118 - "243.25659.59": "https://plugins.jetbrains.com/files/6884/630038/handlebars-243.21565.122.zip" 119 }, 120 "name": "handlebars-mustache" 121 }, ··· 141 "243.24978.546": null, 142 "243.24978.79": null, 143 "243.25659.34": null, 144 - "243.25659.40": null, 145 - "243.25659.41": null, 146 "243.25659.42": null, 147 - "243.25659.43": null, 148 - "243.25659.45": null, 149 - "243.25659.52": null, 150 - "243.25659.54": null, 151 - "243.25659.59": null 152 }, 153 "name": "kotlin" 154 }, ··· 174 "243.24978.546": "https://plugins.jetbrains.com/files/6981/680778/ini-243.24978.60.zip", 175 "243.24978.79": "https://plugins.jetbrains.com/files/6981/680778/ini-243.24978.60.zip", 176 "243.25659.34": "https://plugins.jetbrains.com/files/6981/690635/ini-243.25659.54.zip", 177 - "243.25659.40": "https://plugins.jetbrains.com/files/6981/690635/ini-243.25659.54.zip", 178 - "243.25659.41": "https://plugins.jetbrains.com/files/6981/690635/ini-243.25659.54.zip", 179 "243.25659.42": "https://plugins.jetbrains.com/files/6981/690635/ini-243.25659.54.zip", 180 - "243.25659.43": "https://plugins.jetbrains.com/files/6981/690635/ini-243.25659.54.zip", 181 - "243.25659.45": "https://plugins.jetbrains.com/files/6981/690635/ini-243.25659.54.zip", 182 - "243.25659.52": "https://plugins.jetbrains.com/files/6981/690635/ini-243.25659.54.zip", 183 - "243.25659.54": "https://plugins.jetbrains.com/files/6981/690635/ini-243.25659.54.zip", 184 - "243.25659.59": "https://plugins.jetbrains.com/files/6981/690635/ini-243.25659.54.zip" 185 }, 186 "name": "ini" 187 }, ··· 207 "243.24978.546": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip", 208 "243.24978.79": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip", 209 "243.25659.34": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip", 210 - "243.25659.40": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip", 211 - "243.25659.41": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip", 212 "243.25659.42": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip", 213 - "243.25659.43": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip", 214 - "243.25659.45": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip", 215 - "243.25659.52": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip", 216 - "243.25659.54": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip", 217 - "243.25659.59": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip" 218 }, 219 "name": "acejump" 220 }, ··· 240 "243.24978.546": "https://plugins.jetbrains.com/files/7125/627704/GrepConsole-13.2.0-IJ2023.3.zip", 241 "243.24978.79": "https://plugins.jetbrains.com/files/7125/627704/GrepConsole-13.2.0-IJ2023.3.zip", 242 "243.25659.34": "https://plugins.jetbrains.com/files/7125/627704/GrepConsole-13.2.0-IJ2023.3.zip", 243 - "243.25659.40": "https://plugins.jetbrains.com/files/7125/627704/GrepConsole-13.2.0-IJ2023.3.zip", 244 - "243.25659.41": "https://plugins.jetbrains.com/files/7125/627704/GrepConsole-13.2.0-IJ2023.3.zip", 245 "243.25659.42": "https://plugins.jetbrains.com/files/7125/627704/GrepConsole-13.2.0-IJ2023.3.zip", 246 - "243.25659.43": "https://plugins.jetbrains.com/files/7125/627704/GrepConsole-13.2.0-IJ2023.3.zip", 247 - "243.25659.45": "https://plugins.jetbrains.com/files/7125/627704/GrepConsole-13.2.0-IJ2023.3.zip", 248 - "243.25659.52": "https://plugins.jetbrains.com/files/7125/627704/GrepConsole-13.2.0-IJ2023.3.zip", 249 - "243.25659.54": "https://plugins.jetbrains.com/files/7125/627704/GrepConsole-13.2.0-IJ2023.3.zip", 250 - "243.25659.59": "https://plugins.jetbrains.com/files/7125/627704/GrepConsole-13.2.0-IJ2023.3.zip" 251 }, 252 "name": "grep-console" 253 }, ··· 273 "243.24978.546": "https://plugins.jetbrains.com/files/7177/654841/fileWatcher-243.23654.19.zip", 274 "243.24978.79": "https://plugins.jetbrains.com/files/7177/654841/fileWatcher-243.23654.19.zip", 275 "243.25659.34": "https://plugins.jetbrains.com/files/7177/654841/fileWatcher-243.23654.19.zip", 276 - "243.25659.40": "https://plugins.jetbrains.com/files/7177/654841/fileWatcher-243.23654.19.zip", 277 - "243.25659.41": "https://plugins.jetbrains.com/files/7177/654841/fileWatcher-243.23654.19.zip", 278 "243.25659.42": "https://plugins.jetbrains.com/files/7177/654841/fileWatcher-243.23654.19.zip", 279 - "243.25659.43": "https://plugins.jetbrains.com/files/7177/654841/fileWatcher-243.23654.19.zip", 280 - "243.25659.45": "https://plugins.jetbrains.com/files/7177/654841/fileWatcher-243.23654.19.zip", 281 - "243.25659.52": "https://plugins.jetbrains.com/files/7177/654841/fileWatcher-243.23654.19.zip", 282 - "243.25659.54": "https://plugins.jetbrains.com/files/7177/654841/fileWatcher-243.23654.19.zip", 283 - "243.25659.59": "https://plugins.jetbrains.com/files/7177/654841/fileWatcher-243.23654.19.zip" 284 }, 285 "name": "file-watchers" 286 }, ··· 290 "phpstorm" 291 ], 292 "builds": { 293 - "243.25659.45": "https://plugins.jetbrains.com/files/7219/605730/Symfony_Plugin-2024.1.276.zip", 294 - "243.25659.59": "https://plugins.jetbrains.com/files/7219/605730/Symfony_Plugin-2024.1.276.zip" 295 }, 296 "name": "symfony-support" 297 }, ··· 301 "phpstorm" 302 ], 303 "builds": { 304 - "243.25659.45": "https://plugins.jetbrains.com/files/7320/630497/PHP_Annotations-11.1.1.zip", 305 - "243.25659.59": "https://plugins.jetbrains.com/files/7320/630497/PHP_Annotations-11.1.1.zip" 306 }, 307 "name": "php-annotations" 308 }, ··· 323 "243.22562.220": "https://plugins.jetbrains.com/files/7322/646590/python-ce-243.22562.145.zip", 324 "243.24978.79": "https://plugins.jetbrains.com/files/7322/680217/python-ce-243.24978.46.zip", 325 "243.25659.34": "https://plugins.jetbrains.com/files/7322/680217/python-ce-243.24978.46.zip", 326 - "243.25659.40": "https://plugins.jetbrains.com/files/7322/680217/python-ce-243.24978.46.zip", 327 "243.25659.42": "https://plugins.jetbrains.com/files/7322/680217/python-ce-243.24978.46.zip", 328 - "243.25659.43": "https://plugins.jetbrains.com/files/7322/680217/python-ce-243.24978.46.zip", 329 - "243.25659.52": "https://plugins.jetbrains.com/files/7322/680217/python-ce-243.24978.46.zip", 330 - "243.25659.54": "https://plugins.jetbrains.com/files/7322/680217/python-ce-243.24978.46.zip", 331 - "243.25659.59": "https://plugins.jetbrains.com/files/7322/680217/python-ce-243.24978.46.zip" 332 }, 333 "name": "python-community-edition" 334 }, ··· 354 "243.24978.546": "https://plugins.jetbrains.com/files/7391/658997/asciidoctor-intellij-plugin-0.43.6.zip", 355 "243.24978.79": "https://plugins.jetbrains.com/files/7391/658997/asciidoctor-intellij-plugin-0.43.6.zip", 356 "243.25659.34": "https://plugins.jetbrains.com/files/7391/658997/asciidoctor-intellij-plugin-0.43.6.zip", 357 - "243.25659.40": "https://plugins.jetbrains.com/files/7391/658997/asciidoctor-intellij-plugin-0.43.6.zip", 358 - "243.25659.41": "https://plugins.jetbrains.com/files/7391/658997/asciidoctor-intellij-plugin-0.43.6.zip", 359 "243.25659.42": "https://plugins.jetbrains.com/files/7391/658997/asciidoctor-intellij-plugin-0.43.6.zip", 360 - "243.25659.43": "https://plugins.jetbrains.com/files/7391/658997/asciidoctor-intellij-plugin-0.43.6.zip", 361 - "243.25659.45": "https://plugins.jetbrains.com/files/7391/658997/asciidoctor-intellij-plugin-0.43.6.zip", 362 - "243.25659.52": "https://plugins.jetbrains.com/files/7391/658997/asciidoctor-intellij-plugin-0.43.6.zip", 363 - "243.25659.54": "https://plugins.jetbrains.com/files/7391/658997/asciidoctor-intellij-plugin-0.43.6.zip", 364 - "243.25659.59": "https://plugins.jetbrains.com/files/7391/658997/asciidoctor-intellij-plugin-0.43.6.zip" 365 }, 366 "name": "asciidoc" 367 }, ··· 387 "243.24978.546": "https://plugins.jetbrains.com/files/7425/603907/WakaTime.jar", 388 "243.24978.79": "https://plugins.jetbrains.com/files/7425/603907/WakaTime.jar", 389 "243.25659.34": "https://plugins.jetbrains.com/files/7425/603907/WakaTime.jar", 390 - "243.25659.40": "https://plugins.jetbrains.com/files/7425/603907/WakaTime.jar", 391 - "243.25659.41": "https://plugins.jetbrains.com/files/7425/603907/WakaTime.jar", 392 "243.25659.42": "https://plugins.jetbrains.com/files/7425/603907/WakaTime.jar", 393 - "243.25659.43": "https://plugins.jetbrains.com/files/7425/603907/WakaTime.jar", 394 - "243.25659.45": "https://plugins.jetbrains.com/files/7425/603907/WakaTime.jar", 395 - "243.25659.52": "https://plugins.jetbrains.com/files/7425/603907/WakaTime.jar", 396 - "243.25659.54": "https://plugins.jetbrains.com/files/7425/603907/WakaTime.jar", 397 - "243.25659.59": "https://plugins.jetbrains.com/files/7425/603907/WakaTime.jar" 398 }, 399 "name": "wakatime" 400 }, ··· 420 "243.24978.546": "https://plugins.jetbrains.com/files/7499/690185/gittoolbox-600.0.19_243-signed.zip", 421 "243.24978.79": "https://plugins.jetbrains.com/files/7499/690185/gittoolbox-600.0.19_243-signed.zip", 422 "243.25659.34": "https://plugins.jetbrains.com/files/7499/690185/gittoolbox-600.0.19_243-signed.zip", 423 - "243.25659.40": "https://plugins.jetbrains.com/files/7499/690185/gittoolbox-600.0.19_243-signed.zip", 424 - "243.25659.41": "https://plugins.jetbrains.com/files/7499/690185/gittoolbox-600.0.19_243-signed.zip", 425 "243.25659.42": "https://plugins.jetbrains.com/files/7499/690185/gittoolbox-600.0.19_243-signed.zip", 426 - "243.25659.43": "https://plugins.jetbrains.com/files/7499/690185/gittoolbox-600.0.19_243-signed.zip", 427 - "243.25659.45": "https://plugins.jetbrains.com/files/7499/690185/gittoolbox-600.0.19_243-signed.zip", 428 - "243.25659.52": "https://plugins.jetbrains.com/files/7499/690185/gittoolbox-600.0.19_243-signed.zip", 429 - "243.25659.54": "https://plugins.jetbrains.com/files/7499/690185/gittoolbox-600.0.19_243-signed.zip", 430 - "243.25659.59": "https://plugins.jetbrains.com/files/7499/690185/gittoolbox-600.0.19_243-signed.zip" 431 }, 432 "name": "gittoolbox" 433 }, ··· 448 "webstorm" 449 ], 450 "builds": { 451 - "243.22562.218": "https://plugins.jetbrains.com/files/7724/654910/clouds-docker-impl-243.22562.236.zip", 452 - "243.22562.220": "https://plugins.jetbrains.com/files/7724/654910/clouds-docker-impl-243.22562.236.zip", 453 "243.24978.546": "https://plugins.jetbrains.com/files/7724/680796/clouds-docker-impl-243.24978.54.zip", 454 "243.24978.79": "https://plugins.jetbrains.com/files/7724/680796/clouds-docker-impl-243.24978.54.zip", 455 "243.25659.34": "https://plugins.jetbrains.com/files/7724/692258/clouds-docker-impl-243.25659.59.zip", 456 - "243.25659.40": "https://plugins.jetbrains.com/files/7724/692258/clouds-docker-impl-243.25659.59.zip", 457 - "243.25659.41": "https://plugins.jetbrains.com/files/7724/692258/clouds-docker-impl-243.25659.59.zip", 458 "243.25659.42": "https://plugins.jetbrains.com/files/7724/692258/clouds-docker-impl-243.25659.59.zip", 459 - "243.25659.43": "https://plugins.jetbrains.com/files/7724/692258/clouds-docker-impl-243.25659.59.zip", 460 - "243.25659.45": "https://plugins.jetbrains.com/files/7724/692258/clouds-docker-impl-243.25659.59.zip", 461 - "243.25659.52": "https://plugins.jetbrains.com/files/7724/692258/clouds-docker-impl-243.25659.59.zip", 462 - "243.25659.54": "https://plugins.jetbrains.com/files/7724/692258/clouds-docker-impl-243.25659.59.zip", 463 - "243.25659.59": "https://plugins.jetbrains.com/files/7724/692258/clouds-docker-impl-243.25659.59.zip" 464 }, 465 "name": "docker" 466 }, ··· 486 "243.24978.546": "https://plugins.jetbrains.com/files/8097/680200/graphql-243.24978.46.zip", 487 "243.24978.79": "https://plugins.jetbrains.com/files/8097/680200/graphql-243.24978.46.zip", 488 "243.25659.34": "https://plugins.jetbrains.com/files/8097/688195/graphql-243.25659.42.zip", 489 - "243.25659.40": "https://plugins.jetbrains.com/files/8097/688195/graphql-243.25659.42.zip", 490 - "243.25659.41": "https://plugins.jetbrains.com/files/8097/688195/graphql-243.25659.42.zip", 491 "243.25659.42": "https://plugins.jetbrains.com/files/8097/688195/graphql-243.25659.42.zip", 492 - "243.25659.43": "https://plugins.jetbrains.com/files/8097/688195/graphql-243.25659.42.zip", 493 - "243.25659.45": "https://plugins.jetbrains.com/files/8097/688195/graphql-243.25659.42.zip", 494 - "243.25659.52": "https://plugins.jetbrains.com/files/8097/688195/graphql-243.25659.42.zip", 495 - "243.25659.54": "https://plugins.jetbrains.com/files/8097/688195/graphql-243.25659.42.zip", 496 - "243.25659.59": "https://plugins.jetbrains.com/files/8097/688195/graphql-243.25659.42.zip" 497 }, 498 "name": "graphql" 499 }, ··· 518 "243.24978.546": null, 519 "243.24978.79": null, 520 "243.25659.34": null, 521 - "243.25659.40": null, 522 - "243.25659.41": null, 523 "243.25659.42": null, 524 - "243.25659.43": null, 525 - "243.25659.45": null, 526 - "243.25659.52": null, 527 - "243.25659.59": null 528 }, 529 "name": "-deprecated-rust" 530 }, ··· 549 "243.24978.546": null, 550 "243.24978.79": null, 551 "243.25659.34": null, 552 - "243.25659.40": null, 553 - "243.25659.41": null, 554 "243.25659.42": null, 555 - "243.25659.43": null, 556 - "243.25659.45": null, 557 - "243.25659.52": null, 558 - "243.25659.59": null 559 }, 560 "name": "-deprecated-rust-beta" 561 }, ··· 581 "243.24978.546": "https://plugins.jetbrains.com/files/8195/672659/toml-243.23654.183.zip", 582 "243.24978.79": "https://plugins.jetbrains.com/files/8195/672659/toml-243.23654.183.zip", 583 "243.25659.34": "https://plugins.jetbrains.com/files/8195/672659/toml-243.23654.183.zip", 584 - "243.25659.40": "https://plugins.jetbrains.com/files/8195/672659/toml-243.23654.183.zip", 585 - "243.25659.41": "https://plugins.jetbrains.com/files/8195/672659/toml-243.23654.183.zip", 586 "243.25659.42": "https://plugins.jetbrains.com/files/8195/672659/toml-243.23654.183.zip", 587 - "243.25659.43": "https://plugins.jetbrains.com/files/8195/672659/toml-243.23654.183.zip", 588 - "243.25659.45": "https://plugins.jetbrains.com/files/8195/672659/toml-243.23654.183.zip", 589 - "243.25659.52": "https://plugins.jetbrains.com/files/8195/672659/toml-243.23654.183.zip", 590 - "243.25659.54": "https://plugins.jetbrains.com/files/8195/672659/toml-243.23654.183.zip", 591 - "243.25659.59": "https://plugins.jetbrains.com/files/8195/672659/toml-243.23654.183.zip" 592 }, 593 "name": "toml" 594 }, ··· 599 ], 600 "builds": { 601 "243.22562.218": "https://plugins.jetbrains.com/files/8327/615097/Minecraft_Development-2024.3-1.8.2.zip", 602 - "243.25659.59": "https://plugins.jetbrains.com/files/8327/615097/Minecraft_Development-2024.3-1.8.2.zip" 603 }, 604 "name": "minecraft-development" 605 }, ··· 625 "243.24978.546": "https://plugins.jetbrains.com/files/8554/684425/featuresTrainer-243.24978.79.zip", 626 "243.24978.79": "https://plugins.jetbrains.com/files/8554/684425/featuresTrainer-243.24978.79.zip", 627 "243.25659.34": "https://plugins.jetbrains.com/files/8554/690630/featuresTrainer-243.25659.54.zip", 628 - "243.25659.40": "https://plugins.jetbrains.com/files/8554/690630/featuresTrainer-243.25659.54.zip", 629 - "243.25659.41": "https://plugins.jetbrains.com/files/8554/690630/featuresTrainer-243.25659.54.zip", 630 "243.25659.42": "https://plugins.jetbrains.com/files/8554/690630/featuresTrainer-243.25659.54.zip", 631 - "243.25659.43": "https://plugins.jetbrains.com/files/8554/690630/featuresTrainer-243.25659.54.zip", 632 - "243.25659.45": "https://plugins.jetbrains.com/files/8554/690630/featuresTrainer-243.25659.54.zip", 633 - "243.25659.52": "https://plugins.jetbrains.com/files/8554/690630/featuresTrainer-243.25659.54.zip", 634 - "243.25659.54": "https://plugins.jetbrains.com/files/8554/690630/featuresTrainer-243.25659.54.zip", 635 - "243.25659.59": "https://plugins.jetbrains.com/files/8554/690630/featuresTrainer-243.25659.54.zip" 636 }, 637 "name": "ide-features-trainer" 638 }, ··· 658 "243.24978.546": "https://plugins.jetbrains.com/files/8607/673303/NixIDEA-0.4.0.17.zip", 659 "243.24978.79": "https://plugins.jetbrains.com/files/8607/673303/NixIDEA-0.4.0.17.zip", 660 "243.25659.34": "https://plugins.jetbrains.com/files/8607/673303/NixIDEA-0.4.0.17.zip", 661 - "243.25659.40": "https://plugins.jetbrains.com/files/8607/673303/NixIDEA-0.4.0.17.zip", 662 - "243.25659.41": "https://plugins.jetbrains.com/files/8607/673303/NixIDEA-0.4.0.17.zip", 663 "243.25659.42": "https://plugins.jetbrains.com/files/8607/673303/NixIDEA-0.4.0.17.zip", 664 - "243.25659.43": "https://plugins.jetbrains.com/files/8607/673303/NixIDEA-0.4.0.17.zip", 665 - "243.25659.45": "https://plugins.jetbrains.com/files/8607/673303/NixIDEA-0.4.0.17.zip", 666 - "243.25659.52": "https://plugins.jetbrains.com/files/8607/673303/NixIDEA-0.4.0.17.zip", 667 - "243.25659.54": "https://plugins.jetbrains.com/files/8607/673303/NixIDEA-0.4.0.17.zip", 668 - "243.25659.59": "https://plugins.jetbrains.com/files/8607/673303/NixIDEA-0.4.0.17.zip" 669 }, 670 "name": "nixidea" 671 }, ··· 691 "243.24978.546": "https://plugins.jetbrains.com/files/9525/603167/idea-php-dotenv-plugin-2024.3.zip", 692 "243.24978.79": "https://plugins.jetbrains.com/files/9525/603167/idea-php-dotenv-plugin-2024.3.zip", 693 "243.25659.34": "https://plugins.jetbrains.com/files/9525/603167/idea-php-dotenv-plugin-2024.3.zip", 694 - "243.25659.40": "https://plugins.jetbrains.com/files/9525/603167/idea-php-dotenv-plugin-2024.3.zip", 695 - "243.25659.41": "https://plugins.jetbrains.com/files/9525/603167/idea-php-dotenv-plugin-2024.3.zip", 696 "243.25659.42": "https://plugins.jetbrains.com/files/9525/603167/idea-php-dotenv-plugin-2024.3.zip", 697 - "243.25659.43": "https://plugins.jetbrains.com/files/9525/603167/idea-php-dotenv-plugin-2024.3.zip", 698 - "243.25659.45": "https://plugins.jetbrains.com/files/9525/603167/idea-php-dotenv-plugin-2024.3.zip", 699 - "243.25659.52": "https://plugins.jetbrains.com/files/9525/603167/idea-php-dotenv-plugin-2024.3.zip", 700 - "243.25659.54": "https://plugins.jetbrains.com/files/9525/603167/idea-php-dotenv-plugin-2024.3.zip", 701 - "243.25659.59": "https://plugins.jetbrains.com/files/9525/603167/idea-php-dotenv-plugin-2024.3.zip" 702 }, 703 "name": "-env-files" 704 }, ··· 708 "idea-ultimate" 709 ], 710 "builds": { 711 - "243.25659.52": "https://plugins.jetbrains.com/files/9568/680198/go-plugin-243.24978.46.zip", 712 - "243.25659.59": "https://plugins.jetbrains.com/files/9568/680198/go-plugin-243.24978.46.zip" 713 }, 714 "name": "go" 715 }, ··· 730 "webstorm" 731 ], 732 "builds": { 733 - "243.22562.218": "https://plugins.jetbrains.com/files/9707/690054/ansi-highlighter-premium-24.3.2.jar", 734 - "243.22562.220": "https://plugins.jetbrains.com/files/9707/690054/ansi-highlighter-premium-24.3.2.jar", 735 - "243.24978.546": "https://plugins.jetbrains.com/files/9707/690054/ansi-highlighter-premium-24.3.2.jar", 736 - "243.24978.79": "https://plugins.jetbrains.com/files/9707/690054/ansi-highlighter-premium-24.3.2.jar", 737 - "243.25659.34": "https://plugins.jetbrains.com/files/9707/690054/ansi-highlighter-premium-24.3.2.jar", 738 - "243.25659.40": "https://plugins.jetbrains.com/files/9707/690054/ansi-highlighter-premium-24.3.2.jar", 739 - "243.25659.41": "https://plugins.jetbrains.com/files/9707/690054/ansi-highlighter-premium-24.3.2.jar", 740 - "243.25659.42": "https://plugins.jetbrains.com/files/9707/690054/ansi-highlighter-premium-24.3.2.jar", 741 - "243.25659.43": "https://plugins.jetbrains.com/files/9707/690054/ansi-highlighter-premium-24.3.2.jar", 742 - "243.25659.45": "https://plugins.jetbrains.com/files/9707/690054/ansi-highlighter-premium-24.3.2.jar", 743 - "243.25659.52": "https://plugins.jetbrains.com/files/9707/690054/ansi-highlighter-premium-24.3.2.jar", 744 - "243.25659.54": "https://plugins.jetbrains.com/files/9707/690054/ansi-highlighter-premium-24.3.2.jar", 745 - "243.25659.59": "https://plugins.jetbrains.com/files/9707/690054/ansi-highlighter-premium-24.3.2.jar" 746 }, 747 "name": "ansi-highlighter-premium" 748 }, ··· 768 "243.24978.546": "https://plugins.jetbrains.com/files/9792/633158/Key_Promoter_X-2024.2.2.zip", 769 "243.24978.79": "https://plugins.jetbrains.com/files/9792/633158/Key_Promoter_X-2024.2.2.zip", 770 "243.25659.34": "https://plugins.jetbrains.com/files/9792/633158/Key_Promoter_X-2024.2.2.zip", 771 - "243.25659.40": "https://plugins.jetbrains.com/files/9792/633158/Key_Promoter_X-2024.2.2.zip", 772 - "243.25659.41": "https://plugins.jetbrains.com/files/9792/633158/Key_Promoter_X-2024.2.2.zip", 773 "243.25659.42": "https://plugins.jetbrains.com/files/9792/633158/Key_Promoter_X-2024.2.2.zip", 774 - "243.25659.43": "https://plugins.jetbrains.com/files/9792/633158/Key_Promoter_X-2024.2.2.zip", 775 - "243.25659.45": "https://plugins.jetbrains.com/files/9792/633158/Key_Promoter_X-2024.2.2.zip", 776 - "243.25659.52": "https://plugins.jetbrains.com/files/9792/633158/Key_Promoter_X-2024.2.2.zip", 777 - "243.25659.54": "https://plugins.jetbrains.com/files/9792/633158/Key_Promoter_X-2024.2.2.zip", 778 - "243.25659.59": "https://plugins.jetbrains.com/files/9792/633158/Key_Promoter_X-2024.2.2.zip" 779 }, 780 "name": "key-promoter-x" 781 }, ··· 801 "243.24978.546": "https://plugins.jetbrains.com/files/9836/681714/intellij-randomness-3.3.6-signed.zip", 802 "243.24978.79": "https://plugins.jetbrains.com/files/9836/681714/intellij-randomness-3.3.6-signed.zip", 803 "243.25659.34": "https://plugins.jetbrains.com/files/9836/681714/intellij-randomness-3.3.6-signed.zip", 804 - "243.25659.40": "https://plugins.jetbrains.com/files/9836/681714/intellij-randomness-3.3.6-signed.zip", 805 - "243.25659.41": "https://plugins.jetbrains.com/files/9836/681714/intellij-randomness-3.3.6-signed.zip", 806 "243.25659.42": "https://plugins.jetbrains.com/files/9836/681714/intellij-randomness-3.3.6-signed.zip", 807 - "243.25659.43": "https://plugins.jetbrains.com/files/9836/681714/intellij-randomness-3.3.6-signed.zip", 808 - "243.25659.45": "https://plugins.jetbrains.com/files/9836/681714/intellij-randomness-3.3.6-signed.zip", 809 - "243.25659.52": "https://plugins.jetbrains.com/files/9836/681714/intellij-randomness-3.3.6-signed.zip", 810 - "243.25659.54": "https://plugins.jetbrains.com/files/9836/681714/intellij-randomness-3.3.6-signed.zip", 811 - "243.25659.59": "https://plugins.jetbrains.com/files/9836/681714/intellij-randomness-3.3.6-signed.zip" 812 }, 813 "name": "randomness" 814 }, ··· 834 "243.24978.546": "https://plugins.jetbrains.com/files/10037/658496/intellij-csv-validator-4.0.2.zip", 835 "243.24978.79": "https://plugins.jetbrains.com/files/10037/658496/intellij-csv-validator-4.0.2.zip", 836 "243.25659.34": "https://plugins.jetbrains.com/files/10037/658496/intellij-csv-validator-4.0.2.zip", 837 - "243.25659.40": "https://plugins.jetbrains.com/files/10037/658496/intellij-csv-validator-4.0.2.zip", 838 - "243.25659.41": "https://plugins.jetbrains.com/files/10037/658496/intellij-csv-validator-4.0.2.zip", 839 "243.25659.42": "https://plugins.jetbrains.com/files/10037/658496/intellij-csv-validator-4.0.2.zip", 840 - "243.25659.43": "https://plugins.jetbrains.com/files/10037/658496/intellij-csv-validator-4.0.2.zip", 841 - "243.25659.45": "https://plugins.jetbrains.com/files/10037/658496/intellij-csv-validator-4.0.2.zip", 842 - "243.25659.52": "https://plugins.jetbrains.com/files/10037/658496/intellij-csv-validator-4.0.2.zip", 843 - "243.25659.54": "https://plugins.jetbrains.com/files/10037/658496/intellij-csv-validator-4.0.2.zip", 844 - "243.25659.59": "https://plugins.jetbrains.com/files/10037/658496/intellij-csv-validator-4.0.2.zip" 845 }, 846 "name": "csv-editor" 847 }, ··· 867 "243.24978.546": "https://plugins.jetbrains.com/files/10080/689210/intellij-rainbow-brackets-2024.2.9-241.zip", 868 "243.24978.79": "https://plugins.jetbrains.com/files/10080/689210/intellij-rainbow-brackets-2024.2.9-241.zip", 869 "243.25659.34": "https://plugins.jetbrains.com/files/10080/689210/intellij-rainbow-brackets-2024.2.9-241.zip", 870 - "243.25659.40": "https://plugins.jetbrains.com/files/10080/689210/intellij-rainbow-brackets-2024.2.9-241.zip", 871 - "243.25659.41": "https://plugins.jetbrains.com/files/10080/689210/intellij-rainbow-brackets-2024.2.9-241.zip", 872 "243.25659.42": "https://plugins.jetbrains.com/files/10080/689210/intellij-rainbow-brackets-2024.2.9-241.zip", 873 - "243.25659.43": "https://plugins.jetbrains.com/files/10080/689210/intellij-rainbow-brackets-2024.2.9-241.zip", 874 - "243.25659.45": "https://plugins.jetbrains.com/files/10080/689210/intellij-rainbow-brackets-2024.2.9-241.zip", 875 - "243.25659.52": "https://plugins.jetbrains.com/files/10080/689210/intellij-rainbow-brackets-2024.2.9-241.zip", 876 - "243.25659.54": "https://plugins.jetbrains.com/files/10080/689210/intellij-rainbow-brackets-2024.2.9-241.zip", 877 - "243.25659.59": "https://plugins.jetbrains.com/files/10080/689210/intellij-rainbow-brackets-2024.2.9-241.zip" 878 }, 879 "name": "rainbow-brackets" 880 }, ··· 900 "243.24978.546": "https://plugins.jetbrains.com/files/10312/581013/dotplugin-1.5.4.zip", 901 "243.24978.79": "https://plugins.jetbrains.com/files/10312/581013/dotplugin-1.5.4.zip", 902 "243.25659.34": "https://plugins.jetbrains.com/files/10312/581013/dotplugin-1.5.4.zip", 903 - "243.25659.40": "https://plugins.jetbrains.com/files/10312/581013/dotplugin-1.5.4.zip", 904 - "243.25659.41": "https://plugins.jetbrains.com/files/10312/581013/dotplugin-1.5.4.zip", 905 "243.25659.42": "https://plugins.jetbrains.com/files/10312/581013/dotplugin-1.5.4.zip", 906 - "243.25659.43": "https://plugins.jetbrains.com/files/10312/581013/dotplugin-1.5.4.zip", 907 - "243.25659.45": "https://plugins.jetbrains.com/files/10312/581013/dotplugin-1.5.4.zip", 908 - "243.25659.52": "https://plugins.jetbrains.com/files/10312/581013/dotplugin-1.5.4.zip", 909 - "243.25659.54": "https://plugins.jetbrains.com/files/10312/581013/dotplugin-1.5.4.zip", 910 - "243.25659.59": "https://plugins.jetbrains.com/files/10312/581013/dotplugin-1.5.4.zip" 911 }, 912 "name": "dot-language" 913 }, ··· 933 "243.24978.546": "https://plugins.jetbrains.com/files/10481/583591/intellij-hocon-2024.2.0.zip", 934 "243.24978.79": "https://plugins.jetbrains.com/files/10481/583591/intellij-hocon-2024.2.0.zip", 935 "243.25659.34": "https://plugins.jetbrains.com/files/10481/583591/intellij-hocon-2024.2.0.zip", 936 - "243.25659.40": "https://plugins.jetbrains.com/files/10481/583591/intellij-hocon-2024.2.0.zip", 937 - "243.25659.41": "https://plugins.jetbrains.com/files/10481/583591/intellij-hocon-2024.2.0.zip", 938 "243.25659.42": "https://plugins.jetbrains.com/files/10481/583591/intellij-hocon-2024.2.0.zip", 939 - "243.25659.43": "https://plugins.jetbrains.com/files/10481/583591/intellij-hocon-2024.2.0.zip", 940 - "243.25659.45": "https://plugins.jetbrains.com/files/10481/583591/intellij-hocon-2024.2.0.zip", 941 - "243.25659.52": "https://plugins.jetbrains.com/files/10481/583591/intellij-hocon-2024.2.0.zip", 942 - "243.25659.54": "https://plugins.jetbrains.com/files/10481/583591/intellij-hocon-2024.2.0.zip", 943 - "243.25659.59": "https://plugins.jetbrains.com/files/10481/583591/intellij-hocon-2024.2.0.zip" 944 }, 945 "name": "hocon" 946 }, ··· 961 "webstorm" 962 ], 963 "builds": { 964 - "243.22562.218": "https://plugins.jetbrains.com/files/11058/686929/Extra_Icons-2025.1.2.zip", 965 - "243.22562.220": "https://plugins.jetbrains.com/files/11058/686929/Extra_Icons-2025.1.2.zip", 966 - "243.24978.546": "https://plugins.jetbrains.com/files/11058/686929/Extra_Icons-2025.1.2.zip", 967 - "243.24978.79": "https://plugins.jetbrains.com/files/11058/686929/Extra_Icons-2025.1.2.zip", 968 - "243.25659.34": "https://plugins.jetbrains.com/files/11058/686929/Extra_Icons-2025.1.2.zip", 969 - "243.25659.40": "https://plugins.jetbrains.com/files/11058/686929/Extra_Icons-2025.1.2.zip", 970 - "243.25659.41": "https://plugins.jetbrains.com/files/11058/686929/Extra_Icons-2025.1.2.zip", 971 - "243.25659.42": "https://plugins.jetbrains.com/files/11058/686929/Extra_Icons-2025.1.2.zip", 972 - "243.25659.43": "https://plugins.jetbrains.com/files/11058/686929/Extra_Icons-2025.1.2.zip", 973 - "243.25659.45": "https://plugins.jetbrains.com/files/11058/686929/Extra_Icons-2025.1.2.zip", 974 - "243.25659.52": "https://plugins.jetbrains.com/files/11058/686929/Extra_Icons-2025.1.2.zip", 975 - "243.25659.54": "https://plugins.jetbrains.com/files/11058/686929/Extra_Icons-2025.1.2.zip", 976 - "243.25659.59": "https://plugins.jetbrains.com/files/11058/686929/Extra_Icons-2025.1.2.zip" 977 }, 978 "name": "extra-icons" 979 }, ··· 994 "webstorm" 995 ], 996 "builds": { 997 - "243.22562.218": "https://plugins.jetbrains.com/files/11349/693441/aws-toolkit-jetbrains-standalone-3.58-243.zip", 998 - "243.22562.220": "https://plugins.jetbrains.com/files/11349/693441/aws-toolkit-jetbrains-standalone-3.58-243.zip", 999 - "243.24978.546": "https://plugins.jetbrains.com/files/11349/693441/aws-toolkit-jetbrains-standalone-3.58-243.zip", 1000 - "243.24978.79": "https://plugins.jetbrains.com/files/11349/693441/aws-toolkit-jetbrains-standalone-3.58-243.zip", 1001 - "243.25659.34": "https://plugins.jetbrains.com/files/11349/693441/aws-toolkit-jetbrains-standalone-3.58-243.zip", 1002 - "243.25659.40": "https://plugins.jetbrains.com/files/11349/693441/aws-toolkit-jetbrains-standalone-3.58-243.zip", 1003 - "243.25659.41": "https://plugins.jetbrains.com/files/11349/693441/aws-toolkit-jetbrains-standalone-3.58-243.zip", 1004 - "243.25659.42": "https://plugins.jetbrains.com/files/11349/693441/aws-toolkit-jetbrains-standalone-3.58-243.zip", 1005 - "243.25659.43": "https://plugins.jetbrains.com/files/11349/693441/aws-toolkit-jetbrains-standalone-3.58-243.zip", 1006 - "243.25659.45": "https://plugins.jetbrains.com/files/11349/693441/aws-toolkit-jetbrains-standalone-3.58-243.zip", 1007 - "243.25659.52": "https://plugins.jetbrains.com/files/11349/693441/aws-toolkit-jetbrains-standalone-3.58-243.zip", 1008 - "243.25659.54": "https://plugins.jetbrains.com/files/11349/693441/aws-toolkit-jetbrains-standalone-3.58-243.zip", 1009 - "243.25659.59": "https://plugins.jetbrains.com/files/11349/693441/aws-toolkit-jetbrains-standalone-3.58-243.zip" 1010 }, 1011 "name": "aws-toolkit" 1012 }, ··· 1041 "243.24978.546": "https://plugins.jetbrains.com/files/12062/630060/keymap-vscode-243.21565.122.zip", 1042 "243.24978.79": "https://plugins.jetbrains.com/files/12062/630060/keymap-vscode-243.21565.122.zip", 1043 "243.25659.34": "https://plugins.jetbrains.com/files/12062/630060/keymap-vscode-243.21565.122.zip", 1044 - "243.25659.40": "https://plugins.jetbrains.com/files/12062/630060/keymap-vscode-243.21565.122.zip", 1045 - "243.25659.41": "https://plugins.jetbrains.com/files/12062/630060/keymap-vscode-243.21565.122.zip", 1046 "243.25659.42": "https://plugins.jetbrains.com/files/12062/630060/keymap-vscode-243.21565.122.zip", 1047 - "243.25659.43": "https://plugins.jetbrains.com/files/12062/630060/keymap-vscode-243.21565.122.zip", 1048 - "243.25659.45": "https://plugins.jetbrains.com/files/12062/630060/keymap-vscode-243.21565.122.zip", 1049 - "243.25659.52": "https://plugins.jetbrains.com/files/12062/630060/keymap-vscode-243.21565.122.zip", 1050 - "243.25659.54": "https://plugins.jetbrains.com/files/12062/630060/keymap-vscode-243.21565.122.zip", 1051 - "243.25659.59": "https://plugins.jetbrains.com/files/12062/630060/keymap-vscode-243.21565.122.zip" 1052 }, 1053 "name": "vscode-keymap" 1054 }, ··· 1074 "243.24978.546": "https://plugins.jetbrains.com/files/12559/629985/keymap-eclipse-243.21565.122.zip", 1075 "243.24978.79": "https://plugins.jetbrains.com/files/12559/629985/keymap-eclipse-243.21565.122.zip", 1076 "243.25659.34": "https://plugins.jetbrains.com/files/12559/629985/keymap-eclipse-243.21565.122.zip", 1077 - "243.25659.40": "https://plugins.jetbrains.com/files/12559/629985/keymap-eclipse-243.21565.122.zip", 1078 - "243.25659.41": "https://plugins.jetbrains.com/files/12559/629985/keymap-eclipse-243.21565.122.zip", 1079 "243.25659.42": "https://plugins.jetbrains.com/files/12559/629985/keymap-eclipse-243.21565.122.zip", 1080 - "243.25659.43": "https://plugins.jetbrains.com/files/12559/629985/keymap-eclipse-243.21565.122.zip", 1081 - "243.25659.45": "https://plugins.jetbrains.com/files/12559/629985/keymap-eclipse-243.21565.122.zip", 1082 - "243.25659.52": "https://plugins.jetbrains.com/files/12559/629985/keymap-eclipse-243.21565.122.zip", 1083 - "243.25659.54": "https://plugins.jetbrains.com/files/12559/629985/keymap-eclipse-243.21565.122.zip", 1084 - "243.25659.59": "https://plugins.jetbrains.com/files/12559/629985/keymap-eclipse-243.21565.122.zip" 1085 }, 1086 "name": "eclipse-keymap" 1087 }, ··· 1107 "243.24978.546": "https://plugins.jetbrains.com/files/12896/173977/RainbowCSV.zip", 1108 "243.24978.79": "https://plugins.jetbrains.com/files/12896/173977/RainbowCSV.zip", 1109 "243.25659.34": "https://plugins.jetbrains.com/files/12896/173977/RainbowCSV.zip", 1110 - "243.25659.40": "https://plugins.jetbrains.com/files/12896/173977/RainbowCSV.zip", 1111 - "243.25659.41": "https://plugins.jetbrains.com/files/12896/173977/RainbowCSV.zip", 1112 "243.25659.42": "https://plugins.jetbrains.com/files/12896/173977/RainbowCSV.zip", 1113 - "243.25659.43": "https://plugins.jetbrains.com/files/12896/173977/RainbowCSV.zip", 1114 - "243.25659.45": "https://plugins.jetbrains.com/files/12896/173977/RainbowCSV.zip", 1115 - "243.25659.52": "https://plugins.jetbrains.com/files/12896/173977/RainbowCSV.zip", 1116 - "243.25659.54": "https://plugins.jetbrains.com/files/12896/173977/RainbowCSV.zip", 1117 - "243.25659.59": "https://plugins.jetbrains.com/files/12896/173977/RainbowCSV.zip" 1118 }, 1119 "name": "rainbow-csv" 1120 }, ··· 1140 "243.24978.546": "https://plugins.jetbrains.com/files/13017/630016/keymap-visualStudio-243.21565.122.zip", 1141 "243.24978.79": "https://plugins.jetbrains.com/files/13017/630016/keymap-visualStudio-243.21565.122.zip", 1142 "243.25659.34": "https://plugins.jetbrains.com/files/13017/630016/keymap-visualStudio-243.21565.122.zip", 1143 - "243.25659.40": "https://plugins.jetbrains.com/files/13017/630016/keymap-visualStudio-243.21565.122.zip", 1144 - "243.25659.41": "https://plugins.jetbrains.com/files/13017/630016/keymap-visualStudio-243.21565.122.zip", 1145 "243.25659.42": "https://plugins.jetbrains.com/files/13017/630016/keymap-visualStudio-243.21565.122.zip", 1146 - "243.25659.43": "https://plugins.jetbrains.com/files/13017/630016/keymap-visualStudio-243.21565.122.zip", 1147 - "243.25659.45": "https://plugins.jetbrains.com/files/13017/630016/keymap-visualStudio-243.21565.122.zip", 1148 - "243.25659.52": "https://plugins.jetbrains.com/files/13017/630016/keymap-visualStudio-243.21565.122.zip", 1149 - "243.25659.54": "https://plugins.jetbrains.com/files/13017/630016/keymap-visualStudio-243.21565.122.zip", 1150 - "243.25659.59": "https://plugins.jetbrains.com/files/13017/630016/keymap-visualStudio-243.21565.122.zip" 1151 }, 1152 "name": "visual-studio-keymap" 1153 }, ··· 1173 "243.24978.546": "https://plugins.jetbrains.com/files/13308/370912/Indent_Rainbow-2.2.0-signed.zip", 1174 "243.24978.79": "https://plugins.jetbrains.com/files/13308/370912/Indent_Rainbow-2.2.0-signed.zip", 1175 "243.25659.34": "https://plugins.jetbrains.com/files/13308/370912/Indent_Rainbow-2.2.0-signed.zip", 1176 - "243.25659.40": "https://plugins.jetbrains.com/files/13308/370912/Indent_Rainbow-2.2.0-signed.zip", 1177 - "243.25659.41": "https://plugins.jetbrains.com/files/13308/370912/Indent_Rainbow-2.2.0-signed.zip", 1178 "243.25659.42": "https://plugins.jetbrains.com/files/13308/370912/Indent_Rainbow-2.2.0-signed.zip", 1179 - "243.25659.43": "https://plugins.jetbrains.com/files/13308/370912/Indent_Rainbow-2.2.0-signed.zip", 1180 - "243.25659.45": "https://plugins.jetbrains.com/files/13308/370912/Indent_Rainbow-2.2.0-signed.zip", 1181 - "243.25659.52": "https://plugins.jetbrains.com/files/13308/370912/Indent_Rainbow-2.2.0-signed.zip", 1182 - "243.25659.54": "https://plugins.jetbrains.com/files/13308/370912/Indent_Rainbow-2.2.0-signed.zip", 1183 - "243.25659.59": "https://plugins.jetbrains.com/files/13308/370912/Indent_Rainbow-2.2.0-signed.zip" 1184 }, 1185 "name": "indent-rainbow" 1186 }, ··· 1206 "243.24978.546": "https://plugins.jetbrains.com/files/14004/636643/protoeditor-243.22562.13.zip", 1207 "243.24978.79": "https://plugins.jetbrains.com/files/14004/636643/protoeditor-243.22562.13.zip", 1208 "243.25659.34": "https://plugins.jetbrains.com/files/14004/636643/protoeditor-243.22562.13.zip", 1209 - "243.25659.40": "https://plugins.jetbrains.com/files/14004/636643/protoeditor-243.22562.13.zip", 1210 - "243.25659.41": "https://plugins.jetbrains.com/files/14004/636643/protoeditor-243.22562.13.zip", 1211 "243.25659.42": "https://plugins.jetbrains.com/files/14004/636643/protoeditor-243.22562.13.zip", 1212 - "243.25659.43": "https://plugins.jetbrains.com/files/14004/636643/protoeditor-243.22562.13.zip", 1213 - "243.25659.45": "https://plugins.jetbrains.com/files/14004/636643/protoeditor-243.22562.13.zip", 1214 - "243.25659.52": "https://plugins.jetbrains.com/files/14004/636643/protoeditor-243.22562.13.zip", 1215 - "243.25659.54": "https://plugins.jetbrains.com/files/14004/636643/protoeditor-243.22562.13.zip", 1216 - "243.25659.59": "https://plugins.jetbrains.com/files/14004/636643/protoeditor-243.22562.13.zip" 1217 }, 1218 "name": "protocol-buffers" 1219 }, ··· 1239 "243.24978.546": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", 1240 "243.24978.79": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", 1241 "243.25659.34": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", 1242 - "243.25659.40": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", 1243 - "243.25659.41": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", 1244 "243.25659.42": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", 1245 - "243.25659.43": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", 1246 - "243.25659.45": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", 1247 - "243.25659.52": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", 1248 - "243.25659.54": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", 1249 - "243.25659.59": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar" 1250 }, 1251 "name": "darcula-pitch-black" 1252 }, ··· 1272 "243.24978.546": "https://plugins.jetbrains.com/files/14708/475401/MarioProgressBar-1.9.jar", 1273 "243.24978.79": "https://plugins.jetbrains.com/files/14708/475401/MarioProgressBar-1.9.jar", 1274 "243.25659.34": "https://plugins.jetbrains.com/files/14708/475401/MarioProgressBar-1.9.jar", 1275 - "243.25659.40": "https://plugins.jetbrains.com/files/14708/475401/MarioProgressBar-1.9.jar", 1276 - "243.25659.41": "https://plugins.jetbrains.com/files/14708/475401/MarioProgressBar-1.9.jar", 1277 "243.25659.42": "https://plugins.jetbrains.com/files/14708/475401/MarioProgressBar-1.9.jar", 1278 - "243.25659.43": "https://plugins.jetbrains.com/files/14708/475401/MarioProgressBar-1.9.jar", 1279 - "243.25659.45": "https://plugins.jetbrains.com/files/14708/475401/MarioProgressBar-1.9.jar", 1280 - "243.25659.52": "https://plugins.jetbrains.com/files/14708/475401/MarioProgressBar-1.9.jar", 1281 - "243.25659.54": "https://plugins.jetbrains.com/files/14708/475401/MarioProgressBar-1.9.jar", 1282 - "243.25659.59": "https://plugins.jetbrains.com/files/14708/475401/MarioProgressBar-1.9.jar" 1283 }, 1284 "name": "mario-progress-bar" 1285 }, ··· 1305 "243.24978.546": "https://plugins.jetbrains.com/files/15976/593529/IDEA_Which-Key-0.10.3.jar", 1306 "243.24978.79": "https://plugins.jetbrains.com/files/15976/593529/IDEA_Which-Key-0.10.3.jar", 1307 "243.25659.34": "https://plugins.jetbrains.com/files/15976/593529/IDEA_Which-Key-0.10.3.jar", 1308 - "243.25659.40": "https://plugins.jetbrains.com/files/15976/593529/IDEA_Which-Key-0.10.3.jar", 1309 - "243.25659.41": "https://plugins.jetbrains.com/files/15976/593529/IDEA_Which-Key-0.10.3.jar", 1310 "243.25659.42": "https://plugins.jetbrains.com/files/15976/593529/IDEA_Which-Key-0.10.3.jar", 1311 - "243.25659.43": "https://plugins.jetbrains.com/files/15976/593529/IDEA_Which-Key-0.10.3.jar", 1312 - "243.25659.45": "https://plugins.jetbrains.com/files/15976/593529/IDEA_Which-Key-0.10.3.jar", 1313 - "243.25659.52": "https://plugins.jetbrains.com/files/15976/593529/IDEA_Which-Key-0.10.3.jar", 1314 - "243.25659.54": "https://plugins.jetbrains.com/files/15976/593529/IDEA_Which-Key-0.10.3.jar", 1315 - "243.25659.59": "https://plugins.jetbrains.com/files/15976/593529/IDEA_Which-Key-0.10.3.jar" 1316 }, 1317 "name": "which-key" 1318 }, ··· 1333 "webstorm" 1334 ], 1335 "builds": { 1336 - "243.22562.218": "https://plugins.jetbrains.com/files/16604/686930/Extra_ToolWindow_Colorful_Icons_Subscription-2025.1.4.zip", 1337 - "243.22562.220": "https://plugins.jetbrains.com/files/16604/686930/Extra_ToolWindow_Colorful_Icons_Subscription-2025.1.4.zip", 1338 - "243.24978.546": "https://plugins.jetbrains.com/files/16604/686930/Extra_ToolWindow_Colorful_Icons_Subscription-2025.1.4.zip", 1339 - "243.24978.79": "https://plugins.jetbrains.com/files/16604/686930/Extra_ToolWindow_Colorful_Icons_Subscription-2025.1.4.zip", 1340 - "243.25659.34": "https://plugins.jetbrains.com/files/16604/686930/Extra_ToolWindow_Colorful_Icons_Subscription-2025.1.4.zip", 1341 - "243.25659.40": "https://plugins.jetbrains.com/files/16604/686930/Extra_ToolWindow_Colorful_Icons_Subscription-2025.1.4.zip", 1342 - "243.25659.41": "https://plugins.jetbrains.com/files/16604/686930/Extra_ToolWindow_Colorful_Icons_Subscription-2025.1.4.zip", 1343 - "243.25659.42": "https://plugins.jetbrains.com/files/16604/686930/Extra_ToolWindow_Colorful_Icons_Subscription-2025.1.4.zip", 1344 - "243.25659.43": "https://plugins.jetbrains.com/files/16604/686930/Extra_ToolWindow_Colorful_Icons_Subscription-2025.1.4.zip", 1345 - "243.25659.45": "https://plugins.jetbrains.com/files/16604/686930/Extra_ToolWindow_Colorful_Icons_Subscription-2025.1.4.zip", 1346 - "243.25659.52": "https://plugins.jetbrains.com/files/16604/686930/Extra_ToolWindow_Colorful_Icons_Subscription-2025.1.4.zip", 1347 - "243.25659.54": "https://plugins.jetbrains.com/files/16604/686930/Extra_ToolWindow_Colorful_Icons_Subscription-2025.1.4.zip", 1348 - "243.25659.59": "https://plugins.jetbrains.com/files/16604/686930/Extra_ToolWindow_Colorful_Icons_Subscription-2025.1.4.zip" 1349 }, 1350 "name": "extra-toolwindow-colorful-icons" 1351 }, ··· 1371 "243.24978.546": "https://plugins.jetbrains.com/files/17718/694875/github-copilot-intellij-1.5.38-243.zip", 1372 "243.24978.79": "https://plugins.jetbrains.com/files/17718/694875/github-copilot-intellij-1.5.38-243.zip", 1373 "243.25659.34": "https://plugins.jetbrains.com/files/17718/694875/github-copilot-intellij-1.5.38-243.zip", 1374 - "243.25659.40": "https://plugins.jetbrains.com/files/17718/694875/github-copilot-intellij-1.5.38-243.zip", 1375 - "243.25659.41": "https://plugins.jetbrains.com/files/17718/694875/github-copilot-intellij-1.5.38-243.zip", 1376 "243.25659.42": "https://plugins.jetbrains.com/files/17718/694875/github-copilot-intellij-1.5.38-243.zip", 1377 - "243.25659.43": "https://plugins.jetbrains.com/files/17718/694875/github-copilot-intellij-1.5.38-243.zip", 1378 - "243.25659.45": "https://plugins.jetbrains.com/files/17718/694875/github-copilot-intellij-1.5.38-243.zip", 1379 - "243.25659.52": "https://plugins.jetbrains.com/files/17718/694875/github-copilot-intellij-1.5.38-243.zip", 1380 - "243.25659.54": "https://plugins.jetbrains.com/files/17718/694875/github-copilot-intellij-1.5.38-243.zip", 1381 - "243.25659.59": "https://plugins.jetbrains.com/files/17718/694875/github-copilot-intellij-1.5.38-243.zip" 1382 }, 1383 "name": "github-copilot" 1384 }, ··· 1404 "243.24978.546": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", 1405 "243.24978.79": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", 1406 "243.25659.34": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", 1407 - "243.25659.40": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", 1408 - "243.25659.41": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", 1409 "243.25659.42": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", 1410 - "243.25659.43": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", 1411 - "243.25659.45": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", 1412 - "243.25659.52": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", 1413 - "243.25659.54": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", 1414 - "243.25659.59": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip" 1415 }, 1416 "name": "netbeans-6-5-keymap" 1417 }, ··· 1437 "243.24978.546": "https://plugins.jetbrains.com/files/18682/680233/Catppuccin_Theme-3.4.1.zip", 1438 "243.24978.79": "https://plugins.jetbrains.com/files/18682/680233/Catppuccin_Theme-3.4.1.zip", 1439 "243.25659.34": "https://plugins.jetbrains.com/files/18682/680233/Catppuccin_Theme-3.4.1.zip", 1440 - "243.25659.40": "https://plugins.jetbrains.com/files/18682/680233/Catppuccin_Theme-3.4.1.zip", 1441 - "243.25659.41": "https://plugins.jetbrains.com/files/18682/680233/Catppuccin_Theme-3.4.1.zip", 1442 "243.25659.42": "https://plugins.jetbrains.com/files/18682/680233/Catppuccin_Theme-3.4.1.zip", 1443 - "243.25659.43": "https://plugins.jetbrains.com/files/18682/680233/Catppuccin_Theme-3.4.1.zip", 1444 - "243.25659.45": "https://plugins.jetbrains.com/files/18682/680233/Catppuccin_Theme-3.4.1.zip", 1445 - "243.25659.52": "https://plugins.jetbrains.com/files/18682/680233/Catppuccin_Theme-3.4.1.zip", 1446 - "243.25659.54": "https://plugins.jetbrains.com/files/18682/680233/Catppuccin_Theme-3.4.1.zip", 1447 - "243.25659.59": "https://plugins.jetbrains.com/files/18682/680233/Catppuccin_Theme-3.4.1.zip" 1448 }, 1449 "name": "catppuccin-theme" 1450 }, ··· 1470 "243.24978.546": "https://plugins.jetbrains.com/files/18824/694222/CodeGlancePro-1.9.7-signed.zip", 1471 "243.24978.79": "https://plugins.jetbrains.com/files/18824/694222/CodeGlancePro-1.9.7-signed.zip", 1472 "243.25659.34": "https://plugins.jetbrains.com/files/18824/694222/CodeGlancePro-1.9.7-signed.zip", 1473 - "243.25659.40": "https://plugins.jetbrains.com/files/18824/694222/CodeGlancePro-1.9.7-signed.zip", 1474 - "243.25659.41": "https://plugins.jetbrains.com/files/18824/694222/CodeGlancePro-1.9.7-signed.zip", 1475 "243.25659.42": "https://plugins.jetbrains.com/files/18824/694222/CodeGlancePro-1.9.7-signed.zip", 1476 - "243.25659.43": "https://plugins.jetbrains.com/files/18824/694222/CodeGlancePro-1.9.7-signed.zip", 1477 - "243.25659.45": "https://plugins.jetbrains.com/files/18824/694222/CodeGlancePro-1.9.7-signed.zip", 1478 - "243.25659.52": "https://plugins.jetbrains.com/files/18824/694222/CodeGlancePro-1.9.7-signed.zip", 1479 - "243.25659.54": "https://plugins.jetbrains.com/files/18824/694222/CodeGlancePro-1.9.7-signed.zip", 1480 - "243.25659.59": "https://plugins.jetbrains.com/files/18824/694222/CodeGlancePro-1.9.7-signed.zip" 1481 }, 1482 "name": "codeglance-pro" 1483 }, ··· 1503 "243.24978.546": "https://plugins.jetbrains.com/files/18922/694217/GerryThemes.jar", 1504 "243.24978.79": "https://plugins.jetbrains.com/files/18922/694217/GerryThemes.jar", 1505 "243.25659.34": "https://plugins.jetbrains.com/files/18922/694217/GerryThemes.jar", 1506 - "243.25659.40": "https://plugins.jetbrains.com/files/18922/694217/GerryThemes.jar", 1507 - "243.25659.41": "https://plugins.jetbrains.com/files/18922/694217/GerryThemes.jar", 1508 "243.25659.42": "https://plugins.jetbrains.com/files/18922/694217/GerryThemes.jar", 1509 - "243.25659.43": "https://plugins.jetbrains.com/files/18922/694217/GerryThemes.jar", 1510 - "243.25659.45": "https://plugins.jetbrains.com/files/18922/694217/GerryThemes.jar", 1511 - "243.25659.52": "https://plugins.jetbrains.com/files/18922/694217/GerryThemes.jar", 1512 - "243.25659.54": "https://plugins.jetbrains.com/files/18922/694217/GerryThemes.jar", 1513 - "243.25659.59": "https://plugins.jetbrains.com/files/18922/694217/GerryThemes.jar" 1514 }, 1515 "name": "gerry-themes" 1516 }, ··· 1536 "243.24978.546": "https://plugins.jetbrains.com/files/19275/355572/better_direnv-1.2.2-signed.zip", 1537 "243.24978.79": "https://plugins.jetbrains.com/files/19275/355572/better_direnv-1.2.2-signed.zip", 1538 "243.25659.34": "https://plugins.jetbrains.com/files/19275/355572/better_direnv-1.2.2-signed.zip", 1539 - "243.25659.40": "https://plugins.jetbrains.com/files/19275/355572/better_direnv-1.2.2-signed.zip", 1540 - "243.25659.41": "https://plugins.jetbrains.com/files/19275/355572/better_direnv-1.2.2-signed.zip", 1541 "243.25659.42": "https://plugins.jetbrains.com/files/19275/355572/better_direnv-1.2.2-signed.zip", 1542 - "243.25659.43": "https://plugins.jetbrains.com/files/19275/355572/better_direnv-1.2.2-signed.zip", 1543 - "243.25659.45": "https://plugins.jetbrains.com/files/19275/355572/better_direnv-1.2.2-signed.zip", 1544 - "243.25659.52": "https://plugins.jetbrains.com/files/19275/355572/better_direnv-1.2.2-signed.zip", 1545 - "243.25659.54": "https://plugins.jetbrains.com/files/19275/355572/better_direnv-1.2.2-signed.zip", 1546 - "243.25659.59": "https://plugins.jetbrains.com/files/19275/355572/better_direnv-1.2.2-signed.zip" 1547 }, 1548 "name": "better-direnv" 1549 }, ··· 1569 "243.24978.546": "https://plugins.jetbrains.com/files/20146/633971/Mermaid-0.0.24_IJ.243.zip", 1570 "243.24978.79": "https://plugins.jetbrains.com/files/20146/633971/Mermaid-0.0.24_IJ.243.zip", 1571 "243.25659.34": "https://plugins.jetbrains.com/files/20146/633971/Mermaid-0.0.24_IJ.243.zip", 1572 - "243.25659.40": "https://plugins.jetbrains.com/files/20146/633971/Mermaid-0.0.24_IJ.243.zip", 1573 - "243.25659.41": "https://plugins.jetbrains.com/files/20146/633971/Mermaid-0.0.24_IJ.243.zip", 1574 "243.25659.42": "https://plugins.jetbrains.com/files/20146/633971/Mermaid-0.0.24_IJ.243.zip", 1575 - "243.25659.43": "https://plugins.jetbrains.com/files/20146/633971/Mermaid-0.0.24_IJ.243.zip", 1576 - "243.25659.45": "https://plugins.jetbrains.com/files/20146/633971/Mermaid-0.0.24_IJ.243.zip", 1577 - "243.25659.52": "https://plugins.jetbrains.com/files/20146/633971/Mermaid-0.0.24_IJ.243.zip", 1578 - "243.25659.54": "https://plugins.jetbrains.com/files/20146/633971/Mermaid-0.0.24_IJ.243.zip", 1579 - "243.25659.59": "https://plugins.jetbrains.com/files/20146/633971/Mermaid-0.0.24_IJ.243.zip" 1580 }, 1581 "name": "mermaid" 1582 }, ··· 1602 "243.24978.546": "https://plugins.jetbrains.com/files/21551/323564/ferris-2021.1.zip", 1603 "243.24978.79": "https://plugins.jetbrains.com/files/21551/323564/ferris-2021.1.zip", 1604 "243.25659.34": "https://plugins.jetbrains.com/files/21551/323564/ferris-2021.1.zip", 1605 - "243.25659.40": "https://plugins.jetbrains.com/files/21551/323564/ferris-2021.1.zip", 1606 - "243.25659.41": "https://plugins.jetbrains.com/files/21551/323564/ferris-2021.1.zip", 1607 "243.25659.42": "https://plugins.jetbrains.com/files/21551/323564/ferris-2021.1.zip", 1608 - "243.25659.43": "https://plugins.jetbrains.com/files/21551/323564/ferris-2021.1.zip", 1609 - "243.25659.45": "https://plugins.jetbrains.com/files/21551/323564/ferris-2021.1.zip", 1610 - "243.25659.52": "https://plugins.jetbrains.com/files/21551/323564/ferris-2021.1.zip", 1611 - "243.25659.54": "https://plugins.jetbrains.com/files/21551/323564/ferris-2021.1.zip", 1612 - "243.25659.59": "https://plugins.jetbrains.com/files/21551/323564/ferris-2021.1.zip" 1613 }, 1614 "name": "ferris" 1615 }, ··· 1635 "243.24978.546": "https://plugins.jetbrains.com/files/21667/693656/code-complexity-plugin-1.6.2.zip", 1636 "243.24978.79": "https://plugins.jetbrains.com/files/21667/693656/code-complexity-plugin-1.6.2.zip", 1637 "243.25659.34": "https://plugins.jetbrains.com/files/21667/693656/code-complexity-plugin-1.6.2.zip", 1638 - "243.25659.40": "https://plugins.jetbrains.com/files/21667/693656/code-complexity-plugin-1.6.2.zip", 1639 - "243.25659.41": "https://plugins.jetbrains.com/files/21667/693656/code-complexity-plugin-1.6.2.zip", 1640 "243.25659.42": "https://plugins.jetbrains.com/files/21667/693656/code-complexity-plugin-1.6.2.zip", 1641 - "243.25659.43": "https://plugins.jetbrains.com/files/21667/693656/code-complexity-plugin-1.6.2.zip", 1642 - "243.25659.45": "https://plugins.jetbrains.com/files/21667/693656/code-complexity-plugin-1.6.2.zip", 1643 - "243.25659.52": "https://plugins.jetbrains.com/files/21667/693656/code-complexity-plugin-1.6.2.zip", 1644 - "243.25659.54": "https://plugins.jetbrains.com/files/21667/693656/code-complexity-plugin-1.6.2.zip", 1645 - "243.25659.59": "https://plugins.jetbrains.com/files/21667/693656/code-complexity-plugin-1.6.2.zip" 1646 }, 1647 "name": "code-complexity" 1648 }, ··· 1668 "243.24978.546": "https://plugins.jetbrains.com/files/21904/665427/intellij-developer-tools-plugin-6.3.0-signed.zip", 1669 "243.24978.79": "https://plugins.jetbrains.com/files/21904/665427/intellij-developer-tools-plugin-6.3.0-signed.zip", 1670 "243.25659.34": "https://plugins.jetbrains.com/files/21904/665427/intellij-developer-tools-plugin-6.3.0-signed.zip", 1671 - "243.25659.40": "https://plugins.jetbrains.com/files/21904/665427/intellij-developer-tools-plugin-6.3.0-signed.zip", 1672 - "243.25659.41": "https://plugins.jetbrains.com/files/21904/665427/intellij-developer-tools-plugin-6.3.0-signed.zip", 1673 "243.25659.42": "https://plugins.jetbrains.com/files/21904/665427/intellij-developer-tools-plugin-6.3.0-signed.zip", 1674 - "243.25659.43": "https://plugins.jetbrains.com/files/21904/665427/intellij-developer-tools-plugin-6.3.0-signed.zip", 1675 - "243.25659.45": "https://plugins.jetbrains.com/files/21904/665427/intellij-developer-tools-plugin-6.3.0-signed.zip", 1676 - "243.25659.52": "https://plugins.jetbrains.com/files/21904/665427/intellij-developer-tools-plugin-6.3.0-signed.zip", 1677 - "243.25659.54": "https://plugins.jetbrains.com/files/21904/665427/intellij-developer-tools-plugin-6.3.0-signed.zip", 1678 - "243.25659.59": "https://plugins.jetbrains.com/files/21904/665427/intellij-developer-tools-plugin-6.3.0-signed.zip" 1679 }, 1680 "name": "developer-tools" 1681 }, ··· 1693 ], 1694 "builds": { 1695 "243.25659.34": "https://plugins.jetbrains.com/files/21962/684422/clouds-docker-gateway-243.24978.79.zip", 1696 - "243.25659.40": "https://plugins.jetbrains.com/files/21962/684422/clouds-docker-gateway-243.24978.79.zip", 1697 - "243.25659.41": "https://plugins.jetbrains.com/files/21962/684422/clouds-docker-gateway-243.24978.79.zip", 1698 "243.25659.42": "https://plugins.jetbrains.com/files/21962/684422/clouds-docker-gateway-243.24978.79.zip", 1699 - "243.25659.43": "https://plugins.jetbrains.com/files/21962/684422/clouds-docker-gateway-243.24978.79.zip", 1700 - "243.25659.45": "https://plugins.jetbrains.com/files/21962/684422/clouds-docker-gateway-243.24978.79.zip", 1701 - "243.25659.52": "https://plugins.jetbrains.com/files/21962/684422/clouds-docker-gateway-243.24978.79.zip", 1702 - "243.25659.54": "https://plugins.jetbrains.com/files/21962/684422/clouds-docker-gateway-243.24978.79.zip", 1703 - "243.25659.59": "https://plugins.jetbrains.com/files/21962/684422/clouds-docker-gateway-243.24978.79.zip" 1704 }, 1705 "name": "dev-containers" 1706 }, ··· 1712 ], 1713 "builds": { 1714 "243.25659.42": "https://plugins.jetbrains.com/files/22407/697137/intellij-rust-243.26053.17__1_.zip", 1715 - "243.25659.54": "https://plugins.jetbrains.com/files/22407/697137/intellij-rust-243.26053.17__1_.zip", 1716 - "243.25659.59": "https://plugins.jetbrains.com/files/22407/697137/intellij-rust-243.26053.17__1_.zip" 1717 }, 1718 "name": "rust" 1719 }, ··· 1739 "243.24978.546": "https://plugins.jetbrains.com/files/22707/689483/continue-intellij-extension-1.0.2.zip", 1740 "243.24978.79": "https://plugins.jetbrains.com/files/22707/689483/continue-intellij-extension-1.0.2.zip", 1741 "243.25659.34": "https://plugins.jetbrains.com/files/22707/689483/continue-intellij-extension-1.0.2.zip", 1742 - "243.25659.40": "https://plugins.jetbrains.com/files/22707/689483/continue-intellij-extension-1.0.2.zip", 1743 - "243.25659.41": "https://plugins.jetbrains.com/files/22707/689483/continue-intellij-extension-1.0.2.zip", 1744 "243.25659.42": "https://plugins.jetbrains.com/files/22707/689483/continue-intellij-extension-1.0.2.zip", 1745 - "243.25659.43": "https://plugins.jetbrains.com/files/22707/689483/continue-intellij-extension-1.0.2.zip", 1746 - "243.25659.45": "https://plugins.jetbrains.com/files/22707/689483/continue-intellij-extension-1.0.2.zip", 1747 - "243.25659.52": "https://plugins.jetbrains.com/files/22707/689483/continue-intellij-extension-1.0.2.zip", 1748 - "243.25659.54": "https://plugins.jetbrains.com/files/22707/689483/continue-intellij-extension-1.0.2.zip", 1749 - "243.25659.59": "https://plugins.jetbrains.com/files/22707/689483/continue-intellij-extension-1.0.2.zip" 1750 }, 1751 "name": "continue" 1752 }, ··· 1772 "243.24978.546": "https://plugins.jetbrains.com/files/22857/654839/vcs-gitlab-243.23654.19.zip", 1773 "243.24978.79": "https://plugins.jetbrains.com/files/22857/654839/vcs-gitlab-243.23654.19.zip", 1774 "243.25659.34": "https://plugins.jetbrains.com/files/22857/654839/vcs-gitlab-243.23654.19.zip", 1775 - "243.25659.40": "https://plugins.jetbrains.com/files/22857/654839/vcs-gitlab-243.23654.19.zip", 1776 - "243.25659.41": "https://plugins.jetbrains.com/files/22857/654839/vcs-gitlab-243.23654.19.zip", 1777 "243.25659.42": "https://plugins.jetbrains.com/files/22857/654839/vcs-gitlab-243.23654.19.zip", 1778 - "243.25659.43": "https://plugins.jetbrains.com/files/22857/654839/vcs-gitlab-243.23654.19.zip", 1779 - "243.25659.45": "https://plugins.jetbrains.com/files/22857/654839/vcs-gitlab-243.23654.19.zip", 1780 - "243.25659.52": "https://plugins.jetbrains.com/files/22857/654839/vcs-gitlab-243.23654.19.zip", 1781 - "243.25659.54": "https://plugins.jetbrains.com/files/22857/654839/vcs-gitlab-243.23654.19.zip", 1782 - "243.25659.59": "https://plugins.jetbrains.com/files/22857/654839/vcs-gitlab-243.23654.19.zip" 1783 }, 1784 "name": "gitlab" 1785 }, ··· 1805 "243.24978.546": "https://plugins.jetbrains.com/files/23029/684999/Catppuccin_Icons-1.10.2.zip", 1806 "243.24978.79": "https://plugins.jetbrains.com/files/23029/684999/Catppuccin_Icons-1.10.2.zip", 1807 "243.25659.34": "https://plugins.jetbrains.com/files/23029/684999/Catppuccin_Icons-1.10.2.zip", 1808 - "243.25659.40": "https://plugins.jetbrains.com/files/23029/684999/Catppuccin_Icons-1.10.2.zip", 1809 - "243.25659.41": "https://plugins.jetbrains.com/files/23029/684999/Catppuccin_Icons-1.10.2.zip", 1810 "243.25659.42": "https://plugins.jetbrains.com/files/23029/684999/Catppuccin_Icons-1.10.2.zip", 1811 - "243.25659.43": "https://plugins.jetbrains.com/files/23029/684999/Catppuccin_Icons-1.10.2.zip", 1812 - "243.25659.45": "https://plugins.jetbrains.com/files/23029/684999/Catppuccin_Icons-1.10.2.zip", 1813 - "243.25659.52": "https://plugins.jetbrains.com/files/23029/684999/Catppuccin_Icons-1.10.2.zip", 1814 - "243.25659.54": "https://plugins.jetbrains.com/files/23029/684999/Catppuccin_Icons-1.10.2.zip", 1815 - "243.25659.59": "https://plugins.jetbrains.com/files/23029/684999/Catppuccin_Icons-1.10.2.zip" 1816 }, 1817 "name": "catppuccin-icons" 1818 }, ··· 1838 "243.24978.546": "https://plugins.jetbrains.com/files/23043/635877/MermaidChart-1.1.8.zip", 1839 "243.24978.79": "https://plugins.jetbrains.com/files/23043/635877/MermaidChart-1.1.8.zip", 1840 "243.25659.34": "https://plugins.jetbrains.com/files/23043/635877/MermaidChart-1.1.8.zip", 1841 - "243.25659.40": "https://plugins.jetbrains.com/files/23043/635877/MermaidChart-1.1.8.zip", 1842 - "243.25659.41": "https://plugins.jetbrains.com/files/23043/635877/MermaidChart-1.1.8.zip", 1843 "243.25659.42": "https://plugins.jetbrains.com/files/23043/635877/MermaidChart-1.1.8.zip", 1844 - "243.25659.43": "https://plugins.jetbrains.com/files/23043/635877/MermaidChart-1.1.8.zip", 1845 - "243.25659.45": "https://plugins.jetbrains.com/files/23043/635877/MermaidChart-1.1.8.zip", 1846 - "243.25659.52": "https://plugins.jetbrains.com/files/23043/635877/MermaidChart-1.1.8.zip", 1847 - "243.25659.54": "https://plugins.jetbrains.com/files/23043/635877/MermaidChart-1.1.8.zip", 1848 - "243.25659.59": "https://plugins.jetbrains.com/files/23043/635877/MermaidChart-1.1.8.zip" 1849 }, 1850 "name": "mermaid-chart" 1851 }, ··· 1871 "243.24978.546": "https://plugins.jetbrains.com/files/23806/664310/Oxocarbon-1.4.5.zip", 1872 "243.24978.79": "https://plugins.jetbrains.com/files/23806/664310/Oxocarbon-1.4.5.zip", 1873 "243.25659.34": "https://plugins.jetbrains.com/files/23806/664310/Oxocarbon-1.4.5.zip", 1874 - "243.25659.40": "https://plugins.jetbrains.com/files/23806/664310/Oxocarbon-1.4.5.zip", 1875 - "243.25659.41": "https://plugins.jetbrains.com/files/23806/664310/Oxocarbon-1.4.5.zip", 1876 "243.25659.42": "https://plugins.jetbrains.com/files/23806/664310/Oxocarbon-1.4.5.zip", 1877 - "243.25659.43": "https://plugins.jetbrains.com/files/23806/664310/Oxocarbon-1.4.5.zip", 1878 - "243.25659.45": "https://plugins.jetbrains.com/files/23806/664310/Oxocarbon-1.4.5.zip", 1879 - "243.25659.52": "https://plugins.jetbrains.com/files/23806/664310/Oxocarbon-1.4.5.zip", 1880 - "243.25659.54": "https://plugins.jetbrains.com/files/23806/664310/Oxocarbon-1.4.5.zip", 1881 - "243.25659.59": "https://plugins.jetbrains.com/files/23806/664310/Oxocarbon-1.4.5.zip" 1882 }, 1883 "name": "oxocarbon" 1884 }, ··· 1899 "webstorm" 1900 ], 1901 "builds": { 1902 - "243.22562.218": "https://plugins.jetbrains.com/files/23927/686932/Extra_IDE_Tweaks-2025.1.2.zip", 1903 - "243.22562.220": "https://plugins.jetbrains.com/files/23927/686932/Extra_IDE_Tweaks-2025.1.2.zip", 1904 - "243.24978.546": "https://plugins.jetbrains.com/files/23927/686932/Extra_IDE_Tweaks-2025.1.2.zip", 1905 - "243.24978.79": "https://plugins.jetbrains.com/files/23927/686932/Extra_IDE_Tweaks-2025.1.2.zip", 1906 - "243.25659.34": "https://plugins.jetbrains.com/files/23927/686932/Extra_IDE_Tweaks-2025.1.2.zip", 1907 - "243.25659.40": "https://plugins.jetbrains.com/files/23927/686932/Extra_IDE_Tweaks-2025.1.2.zip", 1908 - "243.25659.41": "https://plugins.jetbrains.com/files/23927/686932/Extra_IDE_Tweaks-2025.1.2.zip", 1909 - "243.25659.42": "https://plugins.jetbrains.com/files/23927/686932/Extra_IDE_Tweaks-2025.1.2.zip", 1910 - "243.25659.43": "https://plugins.jetbrains.com/files/23927/686932/Extra_IDE_Tweaks-2025.1.2.zip", 1911 - "243.25659.45": "https://plugins.jetbrains.com/files/23927/686932/Extra_IDE_Tweaks-2025.1.2.zip", 1912 - "243.25659.52": "https://plugins.jetbrains.com/files/23927/686932/Extra_IDE_Tweaks-2025.1.2.zip", 1913 - "243.25659.54": "https://plugins.jetbrains.com/files/23927/686932/Extra_IDE_Tweaks-2025.1.2.zip", 1914 - "243.25659.59": "https://plugins.jetbrains.com/files/23927/686932/Extra_IDE_Tweaks-2025.1.2.zip" 1915 }, 1916 "name": "extra-ide-tweaks" 1917 }, ··· 1932 "webstorm" 1933 ], 1934 "builds": { 1935 - "243.22562.218": "https://plugins.jetbrains.com/files/24559/686931/Extra_Tools_Pack-2025.1.3.zip", 1936 - "243.22562.220": "https://plugins.jetbrains.com/files/24559/686931/Extra_Tools_Pack-2025.1.3.zip", 1937 - "243.24978.546": "https://plugins.jetbrains.com/files/24559/686931/Extra_Tools_Pack-2025.1.3.zip", 1938 - "243.24978.79": "https://plugins.jetbrains.com/files/24559/686931/Extra_Tools_Pack-2025.1.3.zip", 1939 - "243.25659.34": "https://plugins.jetbrains.com/files/24559/686931/Extra_Tools_Pack-2025.1.3.zip", 1940 - "243.25659.40": "https://plugins.jetbrains.com/files/24559/686931/Extra_Tools_Pack-2025.1.3.zip", 1941 - "243.25659.41": "https://plugins.jetbrains.com/files/24559/686931/Extra_Tools_Pack-2025.1.3.zip", 1942 - "243.25659.42": "https://plugins.jetbrains.com/files/24559/686931/Extra_Tools_Pack-2025.1.3.zip", 1943 - "243.25659.43": "https://plugins.jetbrains.com/files/24559/686931/Extra_Tools_Pack-2025.1.3.zip", 1944 - "243.25659.45": "https://plugins.jetbrains.com/files/24559/686931/Extra_Tools_Pack-2025.1.3.zip", 1945 - "243.25659.52": "https://plugins.jetbrains.com/files/24559/686931/Extra_Tools_Pack-2025.1.3.zip", 1946 - "243.25659.54": "https://plugins.jetbrains.com/files/24559/686931/Extra_Tools_Pack-2025.1.3.zip", 1947 - "243.25659.59": "https://plugins.jetbrains.com/files/24559/686931/Extra_Tools_Pack-2025.1.3.zip" 1948 }, 1949 "name": "extra-tools-pack" 1950 }, ··· 1964 "builds": { 1965 "243.24978.79": "https://plugins.jetbrains.com/files/25594/623962/Nix_LSP-0.1.1.zip", 1966 "243.25659.34": "https://plugins.jetbrains.com/files/25594/623962/Nix_LSP-0.1.1.zip", 1967 - "243.25659.40": "https://plugins.jetbrains.com/files/25594/623962/Nix_LSP-0.1.1.zip", 1968 - "243.25659.41": "https://plugins.jetbrains.com/files/25594/623962/Nix_LSP-0.1.1.zip", 1969 "243.25659.42": "https://plugins.jetbrains.com/files/25594/623962/Nix_LSP-0.1.1.zip", 1970 - "243.25659.43": "https://plugins.jetbrains.com/files/25594/623962/Nix_LSP-0.1.1.zip", 1971 - "243.25659.45": "https://plugins.jetbrains.com/files/25594/623962/Nix_LSP-0.1.1.zip", 1972 - "243.25659.52": "https://plugins.jetbrains.com/files/25594/623962/Nix_LSP-0.1.1.zip", 1973 - "243.25659.54": "https://plugins.jetbrains.com/files/25594/623962/Nix_LSP-0.1.1.zip", 1974 - "243.25659.59": "https://plugins.jetbrains.com/files/25594/623962/Nix_LSP-0.1.1.zip" 1975 }, 1976 "name": "nix-lsp" 1977 }, ··· 1995 "243.22562.220": "https://plugins.jetbrains.com/files/26084/680234/markdtask-2025.1.1.zip", 1996 "243.24978.79": "https://plugins.jetbrains.com/files/26084/680234/markdtask-2025.1.1.zip", 1997 "243.25659.34": "https://plugins.jetbrains.com/files/26084/680234/markdtask-2025.1.1.zip", 1998 - "243.25659.40": "https://plugins.jetbrains.com/files/26084/680234/markdtask-2025.1.1.zip", 1999 - "243.25659.41": "https://plugins.jetbrains.com/files/26084/680234/markdtask-2025.1.1.zip", 2000 "243.25659.42": "https://plugins.jetbrains.com/files/26084/680234/markdtask-2025.1.1.zip", 2001 - "243.25659.43": "https://plugins.jetbrains.com/files/26084/680234/markdtask-2025.1.1.zip", 2002 - "243.25659.45": "https://plugins.jetbrains.com/files/26084/680234/markdtask-2025.1.1.zip", 2003 - "243.25659.52": "https://plugins.jetbrains.com/files/26084/680234/markdtask-2025.1.1.zip", 2004 - "243.25659.54": "https://plugins.jetbrains.com/files/26084/680234/markdtask-2025.1.1.zip", 2005 - "243.25659.59": "https://plugins.jetbrains.com/files/26084/680234/markdtask-2025.1.1.zip" 2006 }, 2007 "name": "markdtask" 2008 } ··· 2012 "https://plugins.jetbrains.com/files/10080/689210/intellij-rainbow-brackets-2024.2.9-241.zip": "sha256-QfJAfpKaHeKo9xQwFd+3pVRxYGTO60puORrZ0rdpaZY=", 2013 "https://plugins.jetbrains.com/files/10312/581013/dotplugin-1.5.4.zip": "sha256-25vtwXuBNiYL9E0pKG4dqJDkwX1FckAErdqRPKXybQA=", 2014 "https://plugins.jetbrains.com/files/10481/583591/intellij-hocon-2024.2.0.zip": "sha256-Bnnvy+HDNkx2DQM7N+JUa8hQzIA3H/5Y0WpWAjPmhUI=", 2015 - "https://plugins.jetbrains.com/files/11058/686929/Extra_Icons-2025.1.2.zip": "sha256-wJgDPYDCCzehOOaXLVnHSBgpPfaNeh+uNoNHe9BBNn0=", 2016 - "https://plugins.jetbrains.com/files/11349/693441/aws-toolkit-jetbrains-standalone-3.58-243.zip": "sha256-d57NJ/A7pUnzwiDVQ4CKiYC/npp1FN9wAnDBtEHDptk=", 2017 "https://plugins.jetbrains.com/files/12024/622380/ReSharperPlugin.CognitiveComplexity-2024.3.0-eap04.zip": "sha256-X2x7uyWoV4aBI8E5bw35QfzmySWzbEAZ2nvdo5i+t+s=", 2018 "https://plugins.jetbrains.com/files/12062/630060/keymap-vscode-243.21565.122.zip": "sha256-phv8MTGKNGzRviKzX+nIVTbkX4WkU82QVO5zXUQLtAo=", 2019 "https://plugins.jetbrains.com/files/12559/629985/keymap-eclipse-243.21565.122.zip": "sha256-/g1ucT18ywVJnCePH7WyMWKgM9umowBz5wFObmO7cws=", ··· 2027 "https://plugins.jetbrains.com/files/14708/475401/MarioProgressBar-1.9.jar": "sha256-mB09zvUg1hLXl9lgW1NEU+DyVel1utZv6s+mFykckYY=", 2028 "https://plugins.jetbrains.com/files/15976/593529/IDEA_Which-Key-0.10.3.jar": "sha256-2FlEaHf2rO6xgG3LnZIPt/XKgRGjpLSiEXCncfAf3bI=", 2029 "https://plugins.jetbrains.com/files/164/676777/IdeaVIM-2.19.0.zip": "sha256-yKpWQZGxfsKwPVTJLHpF4KGJ5ANCd73uxHlfdFE4Qf4=", 2030 - "https://plugins.jetbrains.com/files/16604/686930/Extra_ToolWindow_Colorful_Icons_Subscription-2025.1.4.zip": "sha256-W/oeD2vRxxyrjHuw+4hGcPEER6K1kzkDGRkxvEotOaw=", 2031 "https://plugins.jetbrains.com/files/17718/694875/github-copilot-intellij-1.5.38-243.zip": "sha256-lq5JmR8gPsrZ9rT+byit98KZSzFsl4UppwYAaE9Kjiw=", 2032 "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip": "sha256-KrzZTKZMQqoEMw+vDUv2jjs0EX0leaPBkU8H/ecq/oI=", 2033 "https://plugins.jetbrains.com/files/18682/680233/Catppuccin_Theme-3.4.1.zip": "sha256-QOF3nAXOfYhNl3YUK1fc9z5H2uXTPm2X+6fVZ5QP8ZQ=", ··· 2047 "https://plugins.jetbrains.com/files/23029/684999/Catppuccin_Icons-1.10.2.zip": "sha256-qkwfEpC2f4vgVsesSiUvd6kK6XnG9DTN4gXUR+rLlK0=", 2048 "https://plugins.jetbrains.com/files/23043/635877/MermaidChart-1.1.8.zip": "sha256-ssaSY1I6FopLBgVKHUyjBrqzxHLSuI/swtDfQWJ7gxU=", 2049 "https://plugins.jetbrains.com/files/23806/664310/Oxocarbon-1.4.5.zip": "sha256-zF89Q1LE6xwBeDKv4FSQ6H6cbABjz74Z/qGwddRWp7M=", 2050 - "https://plugins.jetbrains.com/files/23927/686932/Extra_IDE_Tweaks-2025.1.2.zip": "sha256-S9XvXtNadkb5geuar40+y5cARMgWp+vJELj7hk3Y4EY=", 2051 - "https://plugins.jetbrains.com/files/24559/686931/Extra_Tools_Pack-2025.1.3.zip": "sha256-r5oFljG92OTPbXRXqbXDI4KD2dyMp2onKTWQcdftU2k=", 2052 "https://plugins.jetbrains.com/files/25594/623962/Nix_LSP-0.1.1.zip": "sha256-Uq5RdVQTyqRMsEwDZT6Kldv2alt0EVMCABEt/xQUHow=", 2053 "https://plugins.jetbrains.com/files/26084/680234/markdtask-2025.1.1.zip": "sha256-NFHB5zWH8pUwz6OT8F7eIiapeEvHX24fj0Eo1qH45Aw=", 2054 - "https://plugins.jetbrains.com/files/631/692278/python-243.25659.59.zip": "sha256-yB0Hak9H/HRy7GJPbGHur6yHk67nHqkxeKkktKcKmyE=", 2055 "https://plugins.jetbrains.com/files/6884/630038/handlebars-243.21565.122.zip": "sha256-pFKAZ8xFNfUh7/Hi4NYPDQAhRRYm4WKTpCQELqBfb40=", 2056 "https://plugins.jetbrains.com/files/6981/654905/ini-243.22562.236.zip": "sha256-kL/A2R8j2JKMU61T/xJahPwKPYmwFCFy55NPSoBh/Xc=", 2057 "https://plugins.jetbrains.com/files/6981/680778/ini-243.24978.60.zip": "sha256-m2iKdm4f1h+k1XdQvJCd8T83jEKip+H1E1p8XMfrGcg=", 2058 "https://plugins.jetbrains.com/files/6981/690635/ini-243.25659.54.zip": "sha256-TiVoHX56uEAsSWqE7n0jrePiabN3gcNRFNuSeBhvul4=", 2059 "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip": "sha256-kVUEgfEKUupV/qlB4Dpzi5pFHjhVvX74XIPetKtjysM=", 2060 "https://plugins.jetbrains.com/files/7125/627704/GrepConsole-13.2.0-IJ2023.3.zip": "sha256-KY5VRiLJJwa9OVVog1W3MboZjwVboYwYm+i4eqooo44=", 2061 "https://plugins.jetbrains.com/files/7177/636663/fileWatcher-243.22562.13.zip": "sha256-8IHS3kmmbL8uQYnaMW7NgBIpBKT+XDJ4QDiiPZa5pzo=", 2062 "https://plugins.jetbrains.com/files/7177/654841/fileWatcher-243.23654.19.zip": "sha256-mlCow96mI2k7c/oGe064DqjUViOFhNgwNjF6DVyak4E=", 2063 "https://plugins.jetbrains.com/files/7219/605730/Symfony_Plugin-2024.1.276.zip": "sha256-drNmhJMe+kuY2fcHjY+SQmkACvFk0rVI4vAhyZ/bgLc=", 2064 - "https://plugins.jetbrains.com/files/7320/630497/PHP_Annotations-11.1.1.zip": "sha256-05aBYbqNIuwe/JTwntFdIqML8NHbTOwVusl1P9FzuYY=", 2065 "https://plugins.jetbrains.com/files/7322/646590/python-ce-243.22562.145.zip": "sha256-45UtQRZMtKF6addrrB3A+goeyICMfcZ2FKcJvJSqgg4=", 2066 "https://plugins.jetbrains.com/files/7322/680217/python-ce-243.24978.46.zip": "sha256-4KkUOSN9KnBjpo92LvkN/7ZtDG/gSAFHgDf5ESSsgoY=", 2067 "https://plugins.jetbrains.com/files/7391/658997/asciidoctor-intellij-plugin-0.43.6.zip": "sha256-3RJ7YVFtynyqeLIzdrirCMbWNZmUkJ+DT/9my71H0Dk=", 2068 "https://plugins.jetbrains.com/files/7425/603907/WakaTime.jar": "sha256-Z7ZWDomXnTdHFKOElMkt53imef6aT7H5XeD6lOOFxfQ=", 2069 "https://plugins.jetbrains.com/files/7499/690185/gittoolbox-600.0.19_243-signed.zip": "sha256-ZbjLwXY+AocK1OtlyPd+wcObiArWSOWMXjtWaLWMbDo=", 2070 - "https://plugins.jetbrains.com/files/7724/654910/clouds-docker-impl-243.22562.236.zip": "sha256-3F25CTNLfQcUFklNXovLVXQ8cfOr/6Y5yetPc3jTFQM=", 2071 "https://plugins.jetbrains.com/files/7724/680796/clouds-docker-impl-243.24978.54.zip": "sha256-pGAUljrRizCer076iM1oKrNj54tN3VxSvYldfKAsqRE=", 2072 "https://plugins.jetbrains.com/files/7724/692258/clouds-docker-impl-243.25659.59.zip": "sha256-fJatpg7WzrStvABSeIayeFF4bjv059VW6ZTTKQxLNV8=", 2073 "https://plugins.jetbrains.com/files/8097/636616/graphql-243.22562.13.zip": "sha256-rr2pO0mIsqWXYZgwEhcQJlk0lQabxnIPxqRCGdTFaTw=", 2074 "https://plugins.jetbrains.com/files/8097/680200/graphql-243.24978.46.zip": "sha256-RJELd6KPzlRu+UwWBPW1fN33Zj0PcgQ0hGCJ6+ii/fI=", 2075 "https://plugins.jetbrains.com/files/8097/688195/graphql-243.25659.42.zip": "sha256-p52AGXhfldRiT7FoWeDQuP38+/9J1KuPDyhM4VUwQTc=", ··· 2079 "https://plugins.jetbrains.com/files/8554/654690/featuresTrainer-243.22562.233.zip": "sha256-JugbJM8Lr2kbhP9hdLE3kUStl2vOMUB5wGTwNLxAZd0=", 2080 "https://plugins.jetbrains.com/files/8554/684425/featuresTrainer-243.24978.79.zip": "sha256-1oI8hw6YYhUzhfv5RjtlBFG0OvucqVs/XUXMioRIuzA=", 2081 "https://plugins.jetbrains.com/files/8554/690630/featuresTrainer-243.25659.54.zip": "sha256-xmjPvJVe27gL1DEwtzvKvzEkF80ZGHUCKjLOY2nO+T0=", 2082 "https://plugins.jetbrains.com/files/8607/673303/NixIDEA-0.4.0.17.zip": "sha256-OFisV6Vs/xlbDvchxfrREDVgVh7wcfGnot+zUrgQU6M=", 2083 "https://plugins.jetbrains.com/files/9525/603167/idea-php-dotenv-plugin-2024.3.zip": "sha256-hR7hC2phDJnHXxPy80WlEDFAhZHtMCu7nqYvAb0VeTI=", 2084 - "https://plugins.jetbrains.com/files/9568/680198/go-plugin-243.24978.46.zip": "sha256-H2zxIwMN/m7s7Ewhy55QO45lQcUOhG/xD29wj6V/vIM=", 2085 - "https://plugins.jetbrains.com/files/9707/690054/ansi-highlighter-premium-24.3.2.jar": "sha256-Gzpy9LHOsqomHWx64miDR2lLWrB+VgLdUty25IKWMUQ=", 2086 "https://plugins.jetbrains.com/files/9792/633158/Key_Promoter_X-2024.2.2.zip": "sha256-Mzmmq0RzMKZeKfBSo7FHvzeEtPGIrwqEDLAONQEsR1M=", 2087 "https://plugins.jetbrains.com/files/9836/681714/intellij-randomness-3.3.6-signed.zip": "sha256-ArwC2HO2cHlTcFKXQBuKzZTuOiiIDEc/SGDsDQUCZmI=" 2088 }
··· 22 "243.24978.546": "https://plugins.jetbrains.com/files/164/676777/IdeaVIM-2.19.0.zip", 23 "243.24978.79": "https://plugins.jetbrains.com/files/164/676777/IdeaVIM-2.19.0.zip", 24 "243.25659.34": "https://plugins.jetbrains.com/files/164/676777/IdeaVIM-2.19.0.zip", 25 "243.25659.42": "https://plugins.jetbrains.com/files/164/676777/IdeaVIM-2.19.0.zip", 26 + "243.26053.12": "https://plugins.jetbrains.com/files/164/676777/IdeaVIM-2.19.0.zip", 27 + "243.26053.13": "https://plugins.jetbrains.com/files/164/676777/IdeaVIM-2.19.0.zip", 28 + "243.26053.17": "https://plugins.jetbrains.com/files/164/676777/IdeaVIM-2.19.0.zip", 29 + "243.26053.19": "https://plugins.jetbrains.com/files/164/676777/IdeaVIM-2.19.0.zip", 30 + "243.26053.20": "https://plugins.jetbrains.com/files/164/676777/IdeaVIM-2.19.0.zip", 31 + "243.26053.27": "https://plugins.jetbrains.com/files/164/676777/IdeaVIM-2.19.0.zip", 32 + "243.26053.29": "https://plugins.jetbrains.com/files/164/676777/IdeaVIM-2.19.0.zip" 33 }, 34 "name": "ideavim" 35 }, ··· 38 "idea-ultimate" 39 ], 40 "builds": { 41 + "243.26053.27": "https://plugins.jetbrains.com/files/631/700118/python-243.26053.27.zip" 42 }, 43 "name": "python" 44 }, ··· 49 ], 50 "builds": { 51 "243.22562.218": "https://plugins.jetbrains.com/files/1347/667258/scala-intellij-bin-2024.3.35.zip", 52 + "243.26053.27": "https://plugins.jetbrains.com/files/1347/696516/scala-intellij-bin-2024.3.42.zip" 53 }, 54 "name": "scala" 55 }, ··· 75 "243.24978.546": "https://plugins.jetbrains.com/files/2162/640476/StringManipulation-9.15.0.zip", 76 "243.24978.79": "https://plugins.jetbrains.com/files/2162/640476/StringManipulation-9.15.0.zip", 77 "243.25659.34": "https://plugins.jetbrains.com/files/2162/640476/StringManipulation-9.15.0.zip", 78 "243.25659.42": "https://plugins.jetbrains.com/files/2162/640476/StringManipulation-9.15.0.zip", 79 + "243.26053.12": "https://plugins.jetbrains.com/files/2162/640476/StringManipulation-9.15.0.zip", 80 + "243.26053.13": "https://plugins.jetbrains.com/files/2162/640476/StringManipulation-9.15.0.zip", 81 + "243.26053.17": "https://plugins.jetbrains.com/files/2162/640476/StringManipulation-9.15.0.zip", 82 + "243.26053.19": "https://plugins.jetbrains.com/files/2162/640476/StringManipulation-9.15.0.zip", 83 + "243.26053.20": "https://plugins.jetbrains.com/files/2162/640476/StringManipulation-9.15.0.zip", 84 + "243.26053.27": "https://plugins.jetbrains.com/files/2162/640476/StringManipulation-9.15.0.zip", 85 + "243.26053.29": "https://plugins.jetbrains.com/files/2162/640476/StringManipulation-9.15.0.zip" 86 }, 87 "name": "string-manipulation" 88 }, ··· 108 "243.24978.546": "https://plugins.jetbrains.com/files/6884/630038/handlebars-243.21565.122.zip", 109 "243.24978.79": "https://plugins.jetbrains.com/files/6884/630038/handlebars-243.21565.122.zip", 110 "243.25659.34": "https://plugins.jetbrains.com/files/6884/630038/handlebars-243.21565.122.zip", 111 "243.25659.42": "https://plugins.jetbrains.com/files/6884/630038/handlebars-243.21565.122.zip", 112 + "243.26053.12": "https://plugins.jetbrains.com/files/6884/630038/handlebars-243.21565.122.zip", 113 + "243.26053.13": "https://plugins.jetbrains.com/files/6884/630038/handlebars-243.21565.122.zip", 114 + "243.26053.17": "https://plugins.jetbrains.com/files/6884/630038/handlebars-243.21565.122.zip", 115 + "243.26053.19": "https://plugins.jetbrains.com/files/6884/630038/handlebars-243.21565.122.zip", 116 + "243.26053.20": "https://plugins.jetbrains.com/files/6884/630038/handlebars-243.21565.122.zip", 117 + "243.26053.27": "https://plugins.jetbrains.com/files/6884/630038/handlebars-243.21565.122.zip", 118 + "243.26053.29": "https://plugins.jetbrains.com/files/6884/630038/handlebars-243.21565.122.zip" 119 }, 120 "name": "handlebars-mustache" 121 }, ··· 141 "243.24978.546": null, 142 "243.24978.79": null, 143 "243.25659.34": null, 144 "243.25659.42": null, 145 + "243.26053.12": null, 146 + "243.26053.13": null, 147 + "243.26053.17": null, 148 + "243.26053.19": null, 149 + "243.26053.20": null, 150 + "243.26053.27": null, 151 + "243.26053.29": null 152 }, 153 "name": "kotlin" 154 }, ··· 174 "243.24978.546": "https://plugins.jetbrains.com/files/6981/680778/ini-243.24978.60.zip", 175 "243.24978.79": "https://plugins.jetbrains.com/files/6981/680778/ini-243.24978.60.zip", 176 "243.25659.34": "https://plugins.jetbrains.com/files/6981/690635/ini-243.25659.54.zip", 177 "243.25659.42": "https://plugins.jetbrains.com/files/6981/690635/ini-243.25659.54.zip", 178 + "243.26053.12": "https://plugins.jetbrains.com/files/6981/697705/ini-243.26053.20.zip", 179 + "243.26053.13": "https://plugins.jetbrains.com/files/6981/697705/ini-243.26053.20.zip", 180 + "243.26053.17": "https://plugins.jetbrains.com/files/6981/697705/ini-243.26053.20.zip", 181 + "243.26053.19": "https://plugins.jetbrains.com/files/6981/697705/ini-243.26053.20.zip", 182 + "243.26053.20": "https://plugins.jetbrains.com/files/6981/697705/ini-243.26053.20.zip", 183 + "243.26053.27": "https://plugins.jetbrains.com/files/6981/697705/ini-243.26053.20.zip", 184 + "243.26053.29": "https://plugins.jetbrains.com/files/6981/697705/ini-243.26053.20.zip" 185 }, 186 "name": "ini" 187 }, ··· 207 "243.24978.546": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip", 208 "243.24978.79": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip", 209 "243.25659.34": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip", 210 "243.25659.42": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip", 211 + "243.26053.12": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip", 212 + "243.26053.13": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip", 213 + "243.26053.17": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip", 214 + "243.26053.19": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip", 215 + "243.26053.20": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip", 216 + "243.26053.27": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip", 217 + "243.26053.29": "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip" 218 }, 219 "name": "acejump" 220 }, ··· 240 "243.24978.546": "https://plugins.jetbrains.com/files/7125/627704/GrepConsole-13.2.0-IJ2023.3.zip", 241 "243.24978.79": "https://plugins.jetbrains.com/files/7125/627704/GrepConsole-13.2.0-IJ2023.3.zip", 242 "243.25659.34": "https://plugins.jetbrains.com/files/7125/627704/GrepConsole-13.2.0-IJ2023.3.zip", 243 "243.25659.42": "https://plugins.jetbrains.com/files/7125/627704/GrepConsole-13.2.0-IJ2023.3.zip", 244 + "243.26053.12": "https://plugins.jetbrains.com/files/7125/627704/GrepConsole-13.2.0-IJ2023.3.zip", 245 + "243.26053.13": "https://plugins.jetbrains.com/files/7125/627704/GrepConsole-13.2.0-IJ2023.3.zip", 246 + "243.26053.17": "https://plugins.jetbrains.com/files/7125/627704/GrepConsole-13.2.0-IJ2023.3.zip", 247 + "243.26053.19": "https://plugins.jetbrains.com/files/7125/627704/GrepConsole-13.2.0-IJ2023.3.zip", 248 + "243.26053.20": "https://plugins.jetbrains.com/files/7125/627704/GrepConsole-13.2.0-IJ2023.3.zip", 249 + "243.26053.27": "https://plugins.jetbrains.com/files/7125/627704/GrepConsole-13.2.0-IJ2023.3.zip", 250 + "243.26053.29": "https://plugins.jetbrains.com/files/7125/627704/GrepConsole-13.2.0-IJ2023.3.zip" 251 }, 252 "name": "grep-console" 253 }, ··· 273 "243.24978.546": "https://plugins.jetbrains.com/files/7177/654841/fileWatcher-243.23654.19.zip", 274 "243.24978.79": "https://plugins.jetbrains.com/files/7177/654841/fileWatcher-243.23654.19.zip", 275 "243.25659.34": "https://plugins.jetbrains.com/files/7177/654841/fileWatcher-243.23654.19.zip", 276 "243.25659.42": "https://plugins.jetbrains.com/files/7177/654841/fileWatcher-243.23654.19.zip", 277 + "243.26053.12": "https://plugins.jetbrains.com/files/7177/654841/fileWatcher-243.23654.19.zip", 278 + "243.26053.13": "https://plugins.jetbrains.com/files/7177/654841/fileWatcher-243.23654.19.zip", 279 + "243.26053.17": "https://plugins.jetbrains.com/files/7177/654841/fileWatcher-243.23654.19.zip", 280 + "243.26053.19": "https://plugins.jetbrains.com/files/7177/654841/fileWatcher-243.23654.19.zip", 281 + "243.26053.20": "https://plugins.jetbrains.com/files/7177/654841/fileWatcher-243.23654.19.zip", 282 + "243.26053.27": "https://plugins.jetbrains.com/files/7177/654841/fileWatcher-243.23654.19.zip", 283 + "243.26053.29": "https://plugins.jetbrains.com/files/7177/654841/fileWatcher-243.23654.19.zip" 284 }, 285 "name": "file-watchers" 286 }, ··· 290 "phpstorm" 291 ], 292 "builds": { 293 + "243.26053.13": "https://plugins.jetbrains.com/files/7219/605730/Symfony_Plugin-2024.1.276.zip", 294 + "243.26053.27": "https://plugins.jetbrains.com/files/7219/605730/Symfony_Plugin-2024.1.276.zip" 295 }, 296 "name": "symfony-support" 297 }, ··· 301 "phpstorm" 302 ], 303 "builds": { 304 + "243.26053.13": "https://plugins.jetbrains.com/files/7320/701175/PHP_Annotations-11.2.0.zip", 305 + "243.26053.27": "https://plugins.jetbrains.com/files/7320/701175/PHP_Annotations-11.2.0.zip" 306 }, 307 "name": "php-annotations" 308 }, ··· 323 "243.22562.220": "https://plugins.jetbrains.com/files/7322/646590/python-ce-243.22562.145.zip", 324 "243.24978.79": "https://plugins.jetbrains.com/files/7322/680217/python-ce-243.24978.46.zip", 325 "243.25659.34": "https://plugins.jetbrains.com/files/7322/680217/python-ce-243.24978.46.zip", 326 "243.25659.42": "https://plugins.jetbrains.com/files/7322/680217/python-ce-243.24978.46.zip", 327 + "243.26053.12": "https://plugins.jetbrains.com/files/7322/680217/python-ce-243.24978.46.zip", 328 + "243.26053.17": "https://plugins.jetbrains.com/files/7322/680217/python-ce-243.24978.46.zip", 329 + "243.26053.20": "https://plugins.jetbrains.com/files/7322/680217/python-ce-243.24978.46.zip", 330 + "243.26053.27": "https://plugins.jetbrains.com/files/7322/680217/python-ce-243.24978.46.zip", 331 + "243.26053.29": "https://plugins.jetbrains.com/files/7322/680217/python-ce-243.24978.46.zip" 332 }, 333 "name": "python-community-edition" 334 }, ··· 354 "243.24978.546": "https://plugins.jetbrains.com/files/7391/658997/asciidoctor-intellij-plugin-0.43.6.zip", 355 "243.24978.79": "https://plugins.jetbrains.com/files/7391/658997/asciidoctor-intellij-plugin-0.43.6.zip", 356 "243.25659.34": "https://plugins.jetbrains.com/files/7391/658997/asciidoctor-intellij-plugin-0.43.6.zip", 357 "243.25659.42": "https://plugins.jetbrains.com/files/7391/658997/asciidoctor-intellij-plugin-0.43.6.zip", 358 + "243.26053.12": "https://plugins.jetbrains.com/files/7391/658997/asciidoctor-intellij-plugin-0.43.6.zip", 359 + "243.26053.13": "https://plugins.jetbrains.com/files/7391/658997/asciidoctor-intellij-plugin-0.43.6.zip", 360 + "243.26053.17": "https://plugins.jetbrains.com/files/7391/658997/asciidoctor-intellij-plugin-0.43.6.zip", 361 + "243.26053.19": "https://plugins.jetbrains.com/files/7391/658997/asciidoctor-intellij-plugin-0.43.6.zip", 362 + "243.26053.20": "https://plugins.jetbrains.com/files/7391/658997/asciidoctor-intellij-plugin-0.43.6.zip", 363 + "243.26053.27": "https://plugins.jetbrains.com/files/7391/658997/asciidoctor-intellij-plugin-0.43.6.zip", 364 + "243.26053.29": "https://plugins.jetbrains.com/files/7391/658997/asciidoctor-intellij-plugin-0.43.6.zip" 365 }, 366 "name": "asciidoc" 367 }, ··· 387 "243.24978.546": "https://plugins.jetbrains.com/files/7425/603907/WakaTime.jar", 388 "243.24978.79": "https://plugins.jetbrains.com/files/7425/603907/WakaTime.jar", 389 "243.25659.34": "https://plugins.jetbrains.com/files/7425/603907/WakaTime.jar", 390 "243.25659.42": "https://plugins.jetbrains.com/files/7425/603907/WakaTime.jar", 391 + "243.26053.12": "https://plugins.jetbrains.com/files/7425/603907/WakaTime.jar", 392 + "243.26053.13": "https://plugins.jetbrains.com/files/7425/603907/WakaTime.jar", 393 + "243.26053.17": "https://plugins.jetbrains.com/files/7425/603907/WakaTime.jar", 394 + "243.26053.19": "https://plugins.jetbrains.com/files/7425/603907/WakaTime.jar", 395 + "243.26053.20": "https://plugins.jetbrains.com/files/7425/603907/WakaTime.jar", 396 + "243.26053.27": "https://plugins.jetbrains.com/files/7425/603907/WakaTime.jar", 397 + "243.26053.29": "https://plugins.jetbrains.com/files/7425/603907/WakaTime.jar" 398 }, 399 "name": "wakatime" 400 }, ··· 420 "243.24978.546": "https://plugins.jetbrains.com/files/7499/690185/gittoolbox-600.0.19_243-signed.zip", 421 "243.24978.79": "https://plugins.jetbrains.com/files/7499/690185/gittoolbox-600.0.19_243-signed.zip", 422 "243.25659.34": "https://plugins.jetbrains.com/files/7499/690185/gittoolbox-600.0.19_243-signed.zip", 423 "243.25659.42": "https://plugins.jetbrains.com/files/7499/690185/gittoolbox-600.0.19_243-signed.zip", 424 + "243.26053.12": "https://plugins.jetbrains.com/files/7499/690185/gittoolbox-600.0.19_243-signed.zip", 425 + "243.26053.13": "https://plugins.jetbrains.com/files/7499/690185/gittoolbox-600.0.19_243-signed.zip", 426 + "243.26053.17": "https://plugins.jetbrains.com/files/7499/690185/gittoolbox-600.0.19_243-signed.zip", 427 + "243.26053.19": "https://plugins.jetbrains.com/files/7499/690185/gittoolbox-600.0.19_243-signed.zip", 428 + "243.26053.20": "https://plugins.jetbrains.com/files/7499/690185/gittoolbox-600.0.19_243-signed.zip", 429 + "243.26053.27": "https://plugins.jetbrains.com/files/7499/690185/gittoolbox-600.0.19_243-signed.zip", 430 + "243.26053.29": "https://plugins.jetbrains.com/files/7499/690185/gittoolbox-600.0.19_243-signed.zip" 431 }, 432 "name": "gittoolbox" 433 }, ··· 448 "webstorm" 449 ], 450 "builds": { 451 + "243.22562.218": null, 452 + "243.22562.220": null, 453 "243.24978.546": "https://plugins.jetbrains.com/files/7724/680796/clouds-docker-impl-243.24978.54.zip", 454 "243.24978.79": "https://plugins.jetbrains.com/files/7724/680796/clouds-docker-impl-243.24978.54.zip", 455 "243.25659.34": "https://plugins.jetbrains.com/files/7724/692258/clouds-docker-impl-243.25659.59.zip", 456 "243.25659.42": "https://plugins.jetbrains.com/files/7724/692258/clouds-docker-impl-243.25659.59.zip", 457 + "243.26053.12": "https://plugins.jetbrains.com/files/7724/700105/clouds-docker-impl-243.26053.27.zip", 458 + "243.26053.13": "https://plugins.jetbrains.com/files/7724/700105/clouds-docker-impl-243.26053.27.zip", 459 + "243.26053.17": "https://plugins.jetbrains.com/files/7724/700105/clouds-docker-impl-243.26053.27.zip", 460 + "243.26053.19": "https://plugins.jetbrains.com/files/7724/700105/clouds-docker-impl-243.26053.27.zip", 461 + "243.26053.20": "https://plugins.jetbrains.com/files/7724/700105/clouds-docker-impl-243.26053.27.zip", 462 + "243.26053.27": "https://plugins.jetbrains.com/files/7724/700105/clouds-docker-impl-243.26053.27.zip", 463 + "243.26053.29": "https://plugins.jetbrains.com/files/7724/700105/clouds-docker-impl-243.26053.27.zip" 464 }, 465 "name": "docker" 466 }, ··· 486 "243.24978.546": "https://plugins.jetbrains.com/files/8097/680200/graphql-243.24978.46.zip", 487 "243.24978.79": "https://plugins.jetbrains.com/files/8097/680200/graphql-243.24978.46.zip", 488 "243.25659.34": "https://plugins.jetbrains.com/files/8097/688195/graphql-243.25659.42.zip", 489 "243.25659.42": "https://plugins.jetbrains.com/files/8097/688195/graphql-243.25659.42.zip", 490 + "243.26053.12": "https://plugins.jetbrains.com/files/8097/688195/graphql-243.25659.42.zip", 491 + "243.26053.13": "https://plugins.jetbrains.com/files/8097/688195/graphql-243.25659.42.zip", 492 + "243.26053.17": "https://plugins.jetbrains.com/files/8097/688195/graphql-243.25659.42.zip", 493 + "243.26053.19": "https://plugins.jetbrains.com/files/8097/688195/graphql-243.25659.42.zip", 494 + "243.26053.20": "https://plugins.jetbrains.com/files/8097/688195/graphql-243.25659.42.zip", 495 + "243.26053.27": "https://plugins.jetbrains.com/files/8097/688195/graphql-243.25659.42.zip", 496 + "243.26053.29": "https://plugins.jetbrains.com/files/8097/688195/graphql-243.25659.42.zip" 497 }, 498 "name": "graphql" 499 }, ··· 518 "243.24978.546": null, 519 "243.24978.79": null, 520 "243.25659.34": null, 521 "243.25659.42": null, 522 + "243.26053.12": null, 523 + "243.26053.13": null, 524 + "243.26053.19": null, 525 + "243.26053.20": null, 526 + "243.26053.27": null, 527 + "243.26053.29": null 528 }, 529 "name": "-deprecated-rust" 530 }, ··· 549 "243.24978.546": null, 550 "243.24978.79": null, 551 "243.25659.34": null, 552 "243.25659.42": null, 553 + "243.26053.12": null, 554 + "243.26053.13": null, 555 + "243.26053.19": null, 556 + "243.26053.20": null, 557 + "243.26053.27": null, 558 + "243.26053.29": null 559 }, 560 "name": "-deprecated-rust-beta" 561 }, ··· 581 "243.24978.546": "https://plugins.jetbrains.com/files/8195/672659/toml-243.23654.183.zip", 582 "243.24978.79": "https://plugins.jetbrains.com/files/8195/672659/toml-243.23654.183.zip", 583 "243.25659.34": "https://plugins.jetbrains.com/files/8195/672659/toml-243.23654.183.zip", 584 "243.25659.42": "https://plugins.jetbrains.com/files/8195/672659/toml-243.23654.183.zip", 585 + "243.26053.12": "https://plugins.jetbrains.com/files/8195/672659/toml-243.23654.183.zip", 586 + "243.26053.13": "https://plugins.jetbrains.com/files/8195/672659/toml-243.23654.183.zip", 587 + "243.26053.17": "https://plugins.jetbrains.com/files/8195/672659/toml-243.23654.183.zip", 588 + "243.26053.19": "https://plugins.jetbrains.com/files/8195/672659/toml-243.23654.183.zip", 589 + "243.26053.20": "https://plugins.jetbrains.com/files/8195/672659/toml-243.23654.183.zip", 590 + "243.26053.27": "https://plugins.jetbrains.com/files/8195/672659/toml-243.23654.183.zip", 591 + "243.26053.29": "https://plugins.jetbrains.com/files/8195/672659/toml-243.23654.183.zip" 592 }, 593 "name": "toml" 594 }, ··· 599 ], 600 "builds": { 601 "243.22562.218": "https://plugins.jetbrains.com/files/8327/615097/Minecraft_Development-2024.3-1.8.2.zip", 602 + "243.26053.27": "https://plugins.jetbrains.com/files/8327/615097/Minecraft_Development-2024.3-1.8.2.zip" 603 }, 604 "name": "minecraft-development" 605 }, ··· 625 "243.24978.546": "https://plugins.jetbrains.com/files/8554/684425/featuresTrainer-243.24978.79.zip", 626 "243.24978.79": "https://plugins.jetbrains.com/files/8554/684425/featuresTrainer-243.24978.79.zip", 627 "243.25659.34": "https://plugins.jetbrains.com/files/8554/690630/featuresTrainer-243.25659.54.zip", 628 "243.25659.42": "https://plugins.jetbrains.com/files/8554/690630/featuresTrainer-243.25659.54.zip", 629 + "243.26053.12": "https://plugins.jetbrains.com/files/8554/697631/featuresTrainer-243.26053.13.zip", 630 + "243.26053.13": "https://plugins.jetbrains.com/files/8554/697631/featuresTrainer-243.26053.13.zip", 631 + "243.26053.17": "https://plugins.jetbrains.com/files/8554/697631/featuresTrainer-243.26053.13.zip", 632 + "243.26053.19": "https://plugins.jetbrains.com/files/8554/697631/featuresTrainer-243.26053.13.zip", 633 + "243.26053.20": "https://plugins.jetbrains.com/files/8554/697631/featuresTrainer-243.26053.13.zip", 634 + "243.26053.27": "https://plugins.jetbrains.com/files/8554/697631/featuresTrainer-243.26053.13.zip", 635 + "243.26053.29": "https://plugins.jetbrains.com/files/8554/697631/featuresTrainer-243.26053.13.zip" 636 }, 637 "name": "ide-features-trainer" 638 }, ··· 658 "243.24978.546": "https://plugins.jetbrains.com/files/8607/673303/NixIDEA-0.4.0.17.zip", 659 "243.24978.79": "https://plugins.jetbrains.com/files/8607/673303/NixIDEA-0.4.0.17.zip", 660 "243.25659.34": "https://plugins.jetbrains.com/files/8607/673303/NixIDEA-0.4.0.17.zip", 661 "243.25659.42": "https://plugins.jetbrains.com/files/8607/673303/NixIDEA-0.4.0.17.zip", 662 + "243.26053.12": "https://plugins.jetbrains.com/files/8607/673303/NixIDEA-0.4.0.17.zip", 663 + "243.26053.13": "https://plugins.jetbrains.com/files/8607/673303/NixIDEA-0.4.0.17.zip", 664 + "243.26053.17": "https://plugins.jetbrains.com/files/8607/673303/NixIDEA-0.4.0.17.zip", 665 + "243.26053.19": "https://plugins.jetbrains.com/files/8607/673303/NixIDEA-0.4.0.17.zip", 666 + "243.26053.20": "https://plugins.jetbrains.com/files/8607/673303/NixIDEA-0.4.0.17.zip", 667 + "243.26053.27": "https://plugins.jetbrains.com/files/8607/673303/NixIDEA-0.4.0.17.zip", 668 + "243.26053.29": "https://plugins.jetbrains.com/files/8607/673303/NixIDEA-0.4.0.17.zip" 669 }, 670 "name": "nixidea" 671 }, ··· 691 "243.24978.546": "https://plugins.jetbrains.com/files/9525/603167/idea-php-dotenv-plugin-2024.3.zip", 692 "243.24978.79": "https://plugins.jetbrains.com/files/9525/603167/idea-php-dotenv-plugin-2024.3.zip", 693 "243.25659.34": "https://plugins.jetbrains.com/files/9525/603167/idea-php-dotenv-plugin-2024.3.zip", 694 "243.25659.42": "https://plugins.jetbrains.com/files/9525/603167/idea-php-dotenv-plugin-2024.3.zip", 695 + "243.26053.12": "https://plugins.jetbrains.com/files/9525/603167/idea-php-dotenv-plugin-2024.3.zip", 696 + "243.26053.13": "https://plugins.jetbrains.com/files/9525/603167/idea-php-dotenv-plugin-2024.3.zip", 697 + "243.26053.17": "https://plugins.jetbrains.com/files/9525/603167/idea-php-dotenv-plugin-2024.3.zip", 698 + "243.26053.19": "https://plugins.jetbrains.com/files/9525/603167/idea-php-dotenv-plugin-2024.3.zip", 699 + "243.26053.20": "https://plugins.jetbrains.com/files/9525/603167/idea-php-dotenv-plugin-2024.3.zip", 700 + "243.26053.27": "https://plugins.jetbrains.com/files/9525/603167/idea-php-dotenv-plugin-2024.3.zip", 701 + "243.26053.29": "https://plugins.jetbrains.com/files/9525/603167/idea-php-dotenv-plugin-2024.3.zip" 702 }, 703 "name": "-env-files" 704 }, ··· 708 "idea-ultimate" 709 ], 710 "builds": { 711 + "243.26053.20": "https://plugins.jetbrains.com/files/9568/700127/go-plugin-243.26053.27.zip", 712 + "243.26053.27": "https://plugins.jetbrains.com/files/9568/700127/go-plugin-243.26053.27.zip" 713 }, 714 "name": "go" 715 }, ··· 730 "webstorm" 731 ], 732 "builds": { 733 + "243.22562.218": "https://plugins.jetbrains.com/files/9707/698971/ansi-highlighter-premium-24.3.3.jar", 734 + "243.22562.220": "https://plugins.jetbrains.com/files/9707/698971/ansi-highlighter-premium-24.3.3.jar", 735 + "243.24978.546": "https://plugins.jetbrains.com/files/9707/698971/ansi-highlighter-premium-24.3.3.jar", 736 + "243.24978.79": "https://plugins.jetbrains.com/files/9707/698971/ansi-highlighter-premium-24.3.3.jar", 737 + "243.25659.34": "https://plugins.jetbrains.com/files/9707/698971/ansi-highlighter-premium-24.3.3.jar", 738 + "243.25659.42": "https://plugins.jetbrains.com/files/9707/698971/ansi-highlighter-premium-24.3.3.jar", 739 + "243.26053.12": "https://plugins.jetbrains.com/files/9707/698971/ansi-highlighter-premium-24.3.3.jar", 740 + "243.26053.13": "https://plugins.jetbrains.com/files/9707/698971/ansi-highlighter-premium-24.3.3.jar", 741 + "243.26053.17": "https://plugins.jetbrains.com/files/9707/698971/ansi-highlighter-premium-24.3.3.jar", 742 + "243.26053.19": "https://plugins.jetbrains.com/files/9707/698971/ansi-highlighter-premium-24.3.3.jar", 743 + "243.26053.20": "https://plugins.jetbrains.com/files/9707/698971/ansi-highlighter-premium-24.3.3.jar", 744 + "243.26053.27": "https://plugins.jetbrains.com/files/9707/698971/ansi-highlighter-premium-24.3.3.jar", 745 + "243.26053.29": "https://plugins.jetbrains.com/files/9707/698971/ansi-highlighter-premium-24.3.3.jar" 746 }, 747 "name": "ansi-highlighter-premium" 748 }, ··· 768 "243.24978.546": "https://plugins.jetbrains.com/files/9792/633158/Key_Promoter_X-2024.2.2.zip", 769 "243.24978.79": "https://plugins.jetbrains.com/files/9792/633158/Key_Promoter_X-2024.2.2.zip", 770 "243.25659.34": "https://plugins.jetbrains.com/files/9792/633158/Key_Promoter_X-2024.2.2.zip", 771 "243.25659.42": "https://plugins.jetbrains.com/files/9792/633158/Key_Promoter_X-2024.2.2.zip", 772 + "243.26053.12": "https://plugins.jetbrains.com/files/9792/633158/Key_Promoter_X-2024.2.2.zip", 773 + "243.26053.13": "https://plugins.jetbrains.com/files/9792/633158/Key_Promoter_X-2024.2.2.zip", 774 + "243.26053.17": "https://plugins.jetbrains.com/files/9792/633158/Key_Promoter_X-2024.2.2.zip", 775 + "243.26053.19": "https://plugins.jetbrains.com/files/9792/633158/Key_Promoter_X-2024.2.2.zip", 776 + "243.26053.20": "https://plugins.jetbrains.com/files/9792/633158/Key_Promoter_X-2024.2.2.zip", 777 + "243.26053.27": "https://plugins.jetbrains.com/files/9792/633158/Key_Promoter_X-2024.2.2.zip", 778 + "243.26053.29": "https://plugins.jetbrains.com/files/9792/633158/Key_Promoter_X-2024.2.2.zip" 779 }, 780 "name": "key-promoter-x" 781 }, ··· 801 "243.24978.546": "https://plugins.jetbrains.com/files/9836/681714/intellij-randomness-3.3.6-signed.zip", 802 "243.24978.79": "https://plugins.jetbrains.com/files/9836/681714/intellij-randomness-3.3.6-signed.zip", 803 "243.25659.34": "https://plugins.jetbrains.com/files/9836/681714/intellij-randomness-3.3.6-signed.zip", 804 "243.25659.42": "https://plugins.jetbrains.com/files/9836/681714/intellij-randomness-3.3.6-signed.zip", 805 + "243.26053.12": "https://plugins.jetbrains.com/files/9836/681714/intellij-randomness-3.3.6-signed.zip", 806 + "243.26053.13": "https://plugins.jetbrains.com/files/9836/681714/intellij-randomness-3.3.6-signed.zip", 807 + "243.26053.17": "https://plugins.jetbrains.com/files/9836/681714/intellij-randomness-3.3.6-signed.zip", 808 + "243.26053.19": "https://plugins.jetbrains.com/files/9836/681714/intellij-randomness-3.3.6-signed.zip", 809 + "243.26053.20": "https://plugins.jetbrains.com/files/9836/681714/intellij-randomness-3.3.6-signed.zip", 810 + "243.26053.27": "https://plugins.jetbrains.com/files/9836/681714/intellij-randomness-3.3.6-signed.zip", 811 + "243.26053.29": "https://plugins.jetbrains.com/files/9836/681714/intellij-randomness-3.3.6-signed.zip" 812 }, 813 "name": "randomness" 814 }, ··· 834 "243.24978.546": "https://plugins.jetbrains.com/files/10037/658496/intellij-csv-validator-4.0.2.zip", 835 "243.24978.79": "https://plugins.jetbrains.com/files/10037/658496/intellij-csv-validator-4.0.2.zip", 836 "243.25659.34": "https://plugins.jetbrains.com/files/10037/658496/intellij-csv-validator-4.0.2.zip", 837 "243.25659.42": "https://plugins.jetbrains.com/files/10037/658496/intellij-csv-validator-4.0.2.zip", 838 + "243.26053.12": "https://plugins.jetbrains.com/files/10037/658496/intellij-csv-validator-4.0.2.zip", 839 + "243.26053.13": "https://plugins.jetbrains.com/files/10037/658496/intellij-csv-validator-4.0.2.zip", 840 + "243.26053.17": "https://plugins.jetbrains.com/files/10037/658496/intellij-csv-validator-4.0.2.zip", 841 + "243.26053.19": "https://plugins.jetbrains.com/files/10037/658496/intellij-csv-validator-4.0.2.zip", 842 + "243.26053.20": "https://plugins.jetbrains.com/files/10037/658496/intellij-csv-validator-4.0.2.zip", 843 + "243.26053.27": "https://plugins.jetbrains.com/files/10037/658496/intellij-csv-validator-4.0.2.zip", 844 + "243.26053.29": "https://plugins.jetbrains.com/files/10037/658496/intellij-csv-validator-4.0.2.zip" 845 }, 846 "name": "csv-editor" 847 }, ··· 867 "243.24978.546": "https://plugins.jetbrains.com/files/10080/689210/intellij-rainbow-brackets-2024.2.9-241.zip", 868 "243.24978.79": "https://plugins.jetbrains.com/files/10080/689210/intellij-rainbow-brackets-2024.2.9-241.zip", 869 "243.25659.34": "https://plugins.jetbrains.com/files/10080/689210/intellij-rainbow-brackets-2024.2.9-241.zip", 870 "243.25659.42": "https://plugins.jetbrains.com/files/10080/689210/intellij-rainbow-brackets-2024.2.9-241.zip", 871 + "243.26053.12": "https://plugins.jetbrains.com/files/10080/689210/intellij-rainbow-brackets-2024.2.9-241.zip", 872 + "243.26053.13": "https://plugins.jetbrains.com/files/10080/689210/intellij-rainbow-brackets-2024.2.9-241.zip", 873 + "243.26053.17": "https://plugins.jetbrains.com/files/10080/689210/intellij-rainbow-brackets-2024.2.9-241.zip", 874 + "243.26053.19": "https://plugins.jetbrains.com/files/10080/689210/intellij-rainbow-brackets-2024.2.9-241.zip", 875 + "243.26053.20": "https://plugins.jetbrains.com/files/10080/689210/intellij-rainbow-brackets-2024.2.9-241.zip", 876 + "243.26053.27": "https://plugins.jetbrains.com/files/10080/689210/intellij-rainbow-brackets-2024.2.9-241.zip", 877 + "243.26053.29": "https://plugins.jetbrains.com/files/10080/689210/intellij-rainbow-brackets-2024.2.9-241.zip" 878 }, 879 "name": "rainbow-brackets" 880 }, ··· 900 "243.24978.546": "https://plugins.jetbrains.com/files/10312/581013/dotplugin-1.5.4.zip", 901 "243.24978.79": "https://plugins.jetbrains.com/files/10312/581013/dotplugin-1.5.4.zip", 902 "243.25659.34": "https://plugins.jetbrains.com/files/10312/581013/dotplugin-1.5.4.zip", 903 "243.25659.42": "https://plugins.jetbrains.com/files/10312/581013/dotplugin-1.5.4.zip", 904 + "243.26053.12": "https://plugins.jetbrains.com/files/10312/581013/dotplugin-1.5.4.zip", 905 + "243.26053.13": "https://plugins.jetbrains.com/files/10312/581013/dotplugin-1.5.4.zip", 906 + "243.26053.17": "https://plugins.jetbrains.com/files/10312/581013/dotplugin-1.5.4.zip", 907 + "243.26053.19": "https://plugins.jetbrains.com/files/10312/581013/dotplugin-1.5.4.zip", 908 + "243.26053.20": "https://plugins.jetbrains.com/files/10312/581013/dotplugin-1.5.4.zip", 909 + "243.26053.27": "https://plugins.jetbrains.com/files/10312/581013/dotplugin-1.5.4.zip", 910 + "243.26053.29": "https://plugins.jetbrains.com/files/10312/581013/dotplugin-1.5.4.zip" 911 }, 912 "name": "dot-language" 913 }, ··· 933 "243.24978.546": "https://plugins.jetbrains.com/files/10481/583591/intellij-hocon-2024.2.0.zip", 934 "243.24978.79": "https://plugins.jetbrains.com/files/10481/583591/intellij-hocon-2024.2.0.zip", 935 "243.25659.34": "https://plugins.jetbrains.com/files/10481/583591/intellij-hocon-2024.2.0.zip", 936 "243.25659.42": "https://plugins.jetbrains.com/files/10481/583591/intellij-hocon-2024.2.0.zip", 937 + "243.26053.12": "https://plugins.jetbrains.com/files/10481/583591/intellij-hocon-2024.2.0.zip", 938 + "243.26053.13": "https://plugins.jetbrains.com/files/10481/583591/intellij-hocon-2024.2.0.zip", 939 + "243.26053.17": "https://plugins.jetbrains.com/files/10481/583591/intellij-hocon-2024.2.0.zip", 940 + "243.26053.19": "https://plugins.jetbrains.com/files/10481/583591/intellij-hocon-2024.2.0.zip", 941 + "243.26053.20": "https://plugins.jetbrains.com/files/10481/583591/intellij-hocon-2024.2.0.zip", 942 + "243.26053.27": "https://plugins.jetbrains.com/files/10481/583591/intellij-hocon-2024.2.0.zip", 943 + "243.26053.29": "https://plugins.jetbrains.com/files/10481/583591/intellij-hocon-2024.2.0.zip" 944 }, 945 "name": "hocon" 946 }, ··· 961 "webstorm" 962 ], 963 "builds": { 964 + "243.22562.218": "https://plugins.jetbrains.com/files/11058/699177/Extra_Icons-2025.1.3.zip", 965 + "243.22562.220": "https://plugins.jetbrains.com/files/11058/699177/Extra_Icons-2025.1.3.zip", 966 + "243.24978.546": "https://plugins.jetbrains.com/files/11058/699177/Extra_Icons-2025.1.3.zip", 967 + "243.24978.79": "https://plugins.jetbrains.com/files/11058/699177/Extra_Icons-2025.1.3.zip", 968 + "243.25659.34": "https://plugins.jetbrains.com/files/11058/699177/Extra_Icons-2025.1.3.zip", 969 + "243.25659.42": "https://plugins.jetbrains.com/files/11058/699177/Extra_Icons-2025.1.3.zip", 970 + "243.26053.12": "https://plugins.jetbrains.com/files/11058/699177/Extra_Icons-2025.1.3.zip", 971 + "243.26053.13": "https://plugins.jetbrains.com/files/11058/699177/Extra_Icons-2025.1.3.zip", 972 + "243.26053.17": "https://plugins.jetbrains.com/files/11058/699177/Extra_Icons-2025.1.3.zip", 973 + "243.26053.19": "https://plugins.jetbrains.com/files/11058/699177/Extra_Icons-2025.1.3.zip", 974 + "243.26053.20": "https://plugins.jetbrains.com/files/11058/699177/Extra_Icons-2025.1.3.zip", 975 + "243.26053.27": "https://plugins.jetbrains.com/files/11058/699177/Extra_Icons-2025.1.3.zip", 976 + "243.26053.29": "https://plugins.jetbrains.com/files/11058/699177/Extra_Icons-2025.1.3.zip" 977 }, 978 "name": "extra-icons" 979 }, ··· 994 "webstorm" 995 ], 996 "builds": { 997 + "243.22562.218": "https://plugins.jetbrains.com/files/11349/697687/aws-toolkit-jetbrains-standalone-3.59-243.zip", 998 + "243.22562.220": "https://plugins.jetbrains.com/files/11349/697687/aws-toolkit-jetbrains-standalone-3.59-243.zip", 999 + "243.24978.546": "https://plugins.jetbrains.com/files/11349/697687/aws-toolkit-jetbrains-standalone-3.59-243.zip", 1000 + "243.24978.79": "https://plugins.jetbrains.com/files/11349/697687/aws-toolkit-jetbrains-standalone-3.59-243.zip", 1001 + "243.25659.34": "https://plugins.jetbrains.com/files/11349/697687/aws-toolkit-jetbrains-standalone-3.59-243.zip", 1002 + "243.25659.42": "https://plugins.jetbrains.com/files/11349/697687/aws-toolkit-jetbrains-standalone-3.59-243.zip", 1003 + "243.26053.12": "https://plugins.jetbrains.com/files/11349/697687/aws-toolkit-jetbrains-standalone-3.59-243.zip", 1004 + "243.26053.13": "https://plugins.jetbrains.com/files/11349/697687/aws-toolkit-jetbrains-standalone-3.59-243.zip", 1005 + "243.26053.17": "https://plugins.jetbrains.com/files/11349/697687/aws-toolkit-jetbrains-standalone-3.59-243.zip", 1006 + "243.26053.19": "https://plugins.jetbrains.com/files/11349/697687/aws-toolkit-jetbrains-standalone-3.59-243.zip", 1007 + "243.26053.20": "https://plugins.jetbrains.com/files/11349/697687/aws-toolkit-jetbrains-standalone-3.59-243.zip", 1008 + "243.26053.27": "https://plugins.jetbrains.com/files/11349/697687/aws-toolkit-jetbrains-standalone-3.59-243.zip", 1009 + "243.26053.29": "https://plugins.jetbrains.com/files/11349/697687/aws-toolkit-jetbrains-standalone-3.59-243.zip" 1010 }, 1011 "name": "aws-toolkit" 1012 }, ··· 1041 "243.24978.546": "https://plugins.jetbrains.com/files/12062/630060/keymap-vscode-243.21565.122.zip", 1042 "243.24978.79": "https://plugins.jetbrains.com/files/12062/630060/keymap-vscode-243.21565.122.zip", 1043 "243.25659.34": "https://plugins.jetbrains.com/files/12062/630060/keymap-vscode-243.21565.122.zip", 1044 "243.25659.42": "https://plugins.jetbrains.com/files/12062/630060/keymap-vscode-243.21565.122.zip", 1045 + "243.26053.12": "https://plugins.jetbrains.com/files/12062/630060/keymap-vscode-243.21565.122.zip", 1046 + "243.26053.13": "https://plugins.jetbrains.com/files/12062/630060/keymap-vscode-243.21565.122.zip", 1047 + "243.26053.17": "https://plugins.jetbrains.com/files/12062/630060/keymap-vscode-243.21565.122.zip", 1048 + "243.26053.19": "https://plugins.jetbrains.com/files/12062/630060/keymap-vscode-243.21565.122.zip", 1049 + "243.26053.20": "https://plugins.jetbrains.com/files/12062/630060/keymap-vscode-243.21565.122.zip", 1050 + "243.26053.27": "https://plugins.jetbrains.com/files/12062/630060/keymap-vscode-243.21565.122.zip", 1051 + "243.26053.29": "https://plugins.jetbrains.com/files/12062/630060/keymap-vscode-243.21565.122.zip" 1052 }, 1053 "name": "vscode-keymap" 1054 }, ··· 1074 "243.24978.546": "https://plugins.jetbrains.com/files/12559/629985/keymap-eclipse-243.21565.122.zip", 1075 "243.24978.79": "https://plugins.jetbrains.com/files/12559/629985/keymap-eclipse-243.21565.122.zip", 1076 "243.25659.34": "https://plugins.jetbrains.com/files/12559/629985/keymap-eclipse-243.21565.122.zip", 1077 "243.25659.42": "https://plugins.jetbrains.com/files/12559/629985/keymap-eclipse-243.21565.122.zip", 1078 + "243.26053.12": "https://plugins.jetbrains.com/files/12559/629985/keymap-eclipse-243.21565.122.zip", 1079 + "243.26053.13": "https://plugins.jetbrains.com/files/12559/629985/keymap-eclipse-243.21565.122.zip", 1080 + "243.26053.17": "https://plugins.jetbrains.com/files/12559/629985/keymap-eclipse-243.21565.122.zip", 1081 + "243.26053.19": "https://plugins.jetbrains.com/files/12559/629985/keymap-eclipse-243.21565.122.zip", 1082 + "243.26053.20": "https://plugins.jetbrains.com/files/12559/629985/keymap-eclipse-243.21565.122.zip", 1083 + "243.26053.27": "https://plugins.jetbrains.com/files/12559/629985/keymap-eclipse-243.21565.122.zip", 1084 + "243.26053.29": "https://plugins.jetbrains.com/files/12559/629985/keymap-eclipse-243.21565.122.zip" 1085 }, 1086 "name": "eclipse-keymap" 1087 }, ··· 1107 "243.24978.546": "https://plugins.jetbrains.com/files/12896/173977/RainbowCSV.zip", 1108 "243.24978.79": "https://plugins.jetbrains.com/files/12896/173977/RainbowCSV.zip", 1109 "243.25659.34": "https://plugins.jetbrains.com/files/12896/173977/RainbowCSV.zip", 1110 "243.25659.42": "https://plugins.jetbrains.com/files/12896/173977/RainbowCSV.zip", 1111 + "243.26053.12": "https://plugins.jetbrains.com/files/12896/173977/RainbowCSV.zip", 1112 + "243.26053.13": "https://plugins.jetbrains.com/files/12896/173977/RainbowCSV.zip", 1113 + "243.26053.17": "https://plugins.jetbrains.com/files/12896/173977/RainbowCSV.zip", 1114 + "243.26053.19": "https://plugins.jetbrains.com/files/12896/173977/RainbowCSV.zip", 1115 + "243.26053.20": "https://plugins.jetbrains.com/files/12896/173977/RainbowCSV.zip", 1116 + "243.26053.27": "https://plugins.jetbrains.com/files/12896/173977/RainbowCSV.zip", 1117 + "243.26053.29": "https://plugins.jetbrains.com/files/12896/173977/RainbowCSV.zip" 1118 }, 1119 "name": "rainbow-csv" 1120 }, ··· 1140 "243.24978.546": "https://plugins.jetbrains.com/files/13017/630016/keymap-visualStudio-243.21565.122.zip", 1141 "243.24978.79": "https://plugins.jetbrains.com/files/13017/630016/keymap-visualStudio-243.21565.122.zip", 1142 "243.25659.34": "https://plugins.jetbrains.com/files/13017/630016/keymap-visualStudio-243.21565.122.zip", 1143 "243.25659.42": "https://plugins.jetbrains.com/files/13017/630016/keymap-visualStudio-243.21565.122.zip", 1144 + "243.26053.12": "https://plugins.jetbrains.com/files/13017/630016/keymap-visualStudio-243.21565.122.zip", 1145 + "243.26053.13": "https://plugins.jetbrains.com/files/13017/630016/keymap-visualStudio-243.21565.122.zip", 1146 + "243.26053.17": "https://plugins.jetbrains.com/files/13017/630016/keymap-visualStudio-243.21565.122.zip", 1147 + "243.26053.19": "https://plugins.jetbrains.com/files/13017/630016/keymap-visualStudio-243.21565.122.zip", 1148 + "243.26053.20": "https://plugins.jetbrains.com/files/13017/630016/keymap-visualStudio-243.21565.122.zip", 1149 + "243.26053.27": "https://plugins.jetbrains.com/files/13017/630016/keymap-visualStudio-243.21565.122.zip", 1150 + "243.26053.29": "https://plugins.jetbrains.com/files/13017/630016/keymap-visualStudio-243.21565.122.zip" 1151 }, 1152 "name": "visual-studio-keymap" 1153 }, ··· 1173 "243.24978.546": "https://plugins.jetbrains.com/files/13308/370912/Indent_Rainbow-2.2.0-signed.zip", 1174 "243.24978.79": "https://plugins.jetbrains.com/files/13308/370912/Indent_Rainbow-2.2.0-signed.zip", 1175 "243.25659.34": "https://plugins.jetbrains.com/files/13308/370912/Indent_Rainbow-2.2.0-signed.zip", 1176 "243.25659.42": "https://plugins.jetbrains.com/files/13308/370912/Indent_Rainbow-2.2.0-signed.zip", 1177 + "243.26053.12": "https://plugins.jetbrains.com/files/13308/370912/Indent_Rainbow-2.2.0-signed.zip", 1178 + "243.26053.13": "https://plugins.jetbrains.com/files/13308/370912/Indent_Rainbow-2.2.0-signed.zip", 1179 + "243.26053.17": "https://plugins.jetbrains.com/files/13308/370912/Indent_Rainbow-2.2.0-signed.zip", 1180 + "243.26053.19": "https://plugins.jetbrains.com/files/13308/370912/Indent_Rainbow-2.2.0-signed.zip", 1181 + "243.26053.20": "https://plugins.jetbrains.com/files/13308/370912/Indent_Rainbow-2.2.0-signed.zip", 1182 + "243.26053.27": "https://plugins.jetbrains.com/files/13308/370912/Indent_Rainbow-2.2.0-signed.zip", 1183 + "243.26053.29": "https://plugins.jetbrains.com/files/13308/370912/Indent_Rainbow-2.2.0-signed.zip" 1184 }, 1185 "name": "indent-rainbow" 1186 }, ··· 1206 "243.24978.546": "https://plugins.jetbrains.com/files/14004/636643/protoeditor-243.22562.13.zip", 1207 "243.24978.79": "https://plugins.jetbrains.com/files/14004/636643/protoeditor-243.22562.13.zip", 1208 "243.25659.34": "https://plugins.jetbrains.com/files/14004/636643/protoeditor-243.22562.13.zip", 1209 "243.25659.42": "https://plugins.jetbrains.com/files/14004/636643/protoeditor-243.22562.13.zip", 1210 + "243.26053.12": "https://plugins.jetbrains.com/files/14004/636643/protoeditor-243.22562.13.zip", 1211 + "243.26053.13": "https://plugins.jetbrains.com/files/14004/636643/protoeditor-243.22562.13.zip", 1212 + "243.26053.17": "https://plugins.jetbrains.com/files/14004/636643/protoeditor-243.22562.13.zip", 1213 + "243.26053.19": "https://plugins.jetbrains.com/files/14004/636643/protoeditor-243.22562.13.zip", 1214 + "243.26053.20": "https://plugins.jetbrains.com/files/14004/636643/protoeditor-243.22562.13.zip", 1215 + "243.26053.27": "https://plugins.jetbrains.com/files/14004/636643/protoeditor-243.22562.13.zip", 1216 + "243.26053.29": "https://plugins.jetbrains.com/files/14004/636643/protoeditor-243.22562.13.zip" 1217 }, 1218 "name": "protocol-buffers" 1219 }, ··· 1239 "243.24978.546": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", 1240 "243.24978.79": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", 1241 "243.25659.34": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", 1242 "243.25659.42": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", 1243 + "243.26053.12": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", 1244 + "243.26053.13": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", 1245 + "243.26053.17": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", 1246 + "243.26053.19": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", 1247 + "243.26053.20": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", 1248 + "243.26053.27": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", 1249 + "243.26053.29": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar" 1250 }, 1251 "name": "darcula-pitch-black" 1252 }, ··· 1272 "243.24978.546": "https://plugins.jetbrains.com/files/14708/475401/MarioProgressBar-1.9.jar", 1273 "243.24978.79": "https://plugins.jetbrains.com/files/14708/475401/MarioProgressBar-1.9.jar", 1274 "243.25659.34": "https://plugins.jetbrains.com/files/14708/475401/MarioProgressBar-1.9.jar", 1275 "243.25659.42": "https://plugins.jetbrains.com/files/14708/475401/MarioProgressBar-1.9.jar", 1276 + "243.26053.12": "https://plugins.jetbrains.com/files/14708/475401/MarioProgressBar-1.9.jar", 1277 + "243.26053.13": "https://plugins.jetbrains.com/files/14708/475401/MarioProgressBar-1.9.jar", 1278 + "243.26053.17": "https://plugins.jetbrains.com/files/14708/475401/MarioProgressBar-1.9.jar", 1279 + "243.26053.19": "https://plugins.jetbrains.com/files/14708/475401/MarioProgressBar-1.9.jar", 1280 + "243.26053.20": "https://plugins.jetbrains.com/files/14708/475401/MarioProgressBar-1.9.jar", 1281 + "243.26053.27": "https://plugins.jetbrains.com/files/14708/475401/MarioProgressBar-1.9.jar", 1282 + "243.26053.29": "https://plugins.jetbrains.com/files/14708/475401/MarioProgressBar-1.9.jar" 1283 }, 1284 "name": "mario-progress-bar" 1285 }, ··· 1305 "243.24978.546": "https://plugins.jetbrains.com/files/15976/593529/IDEA_Which-Key-0.10.3.jar", 1306 "243.24978.79": "https://plugins.jetbrains.com/files/15976/593529/IDEA_Which-Key-0.10.3.jar", 1307 "243.25659.34": "https://plugins.jetbrains.com/files/15976/593529/IDEA_Which-Key-0.10.3.jar", 1308 "243.25659.42": "https://plugins.jetbrains.com/files/15976/593529/IDEA_Which-Key-0.10.3.jar", 1309 + "243.26053.12": "https://plugins.jetbrains.com/files/15976/593529/IDEA_Which-Key-0.10.3.jar", 1310 + "243.26053.13": "https://plugins.jetbrains.com/files/15976/593529/IDEA_Which-Key-0.10.3.jar", 1311 + "243.26053.17": "https://plugins.jetbrains.com/files/15976/593529/IDEA_Which-Key-0.10.3.jar", 1312 + "243.26053.19": "https://plugins.jetbrains.com/files/15976/593529/IDEA_Which-Key-0.10.3.jar", 1313 + "243.26053.20": "https://plugins.jetbrains.com/files/15976/593529/IDEA_Which-Key-0.10.3.jar", 1314 + "243.26053.27": "https://plugins.jetbrains.com/files/15976/593529/IDEA_Which-Key-0.10.3.jar", 1315 + "243.26053.29": "https://plugins.jetbrains.com/files/15976/593529/IDEA_Which-Key-0.10.3.jar" 1316 }, 1317 "name": "which-key" 1318 }, ··· 1333 "webstorm" 1334 ], 1335 "builds": { 1336 + "243.22562.218": "https://plugins.jetbrains.com/files/16604/699178/Extra_ToolWindow_Colorful_Icons_Subscription-2025.1.5.zip", 1337 + "243.22562.220": "https://plugins.jetbrains.com/files/16604/699178/Extra_ToolWindow_Colorful_Icons_Subscription-2025.1.5.zip", 1338 + "243.24978.546": "https://plugins.jetbrains.com/files/16604/699178/Extra_ToolWindow_Colorful_Icons_Subscription-2025.1.5.zip", 1339 + "243.24978.79": "https://plugins.jetbrains.com/files/16604/699178/Extra_ToolWindow_Colorful_Icons_Subscription-2025.1.5.zip", 1340 + "243.25659.34": "https://plugins.jetbrains.com/files/16604/699178/Extra_ToolWindow_Colorful_Icons_Subscription-2025.1.5.zip", 1341 + "243.25659.42": "https://plugins.jetbrains.com/files/16604/699178/Extra_ToolWindow_Colorful_Icons_Subscription-2025.1.5.zip", 1342 + "243.26053.12": "https://plugins.jetbrains.com/files/16604/699178/Extra_ToolWindow_Colorful_Icons_Subscription-2025.1.5.zip", 1343 + "243.26053.13": "https://plugins.jetbrains.com/files/16604/699178/Extra_ToolWindow_Colorful_Icons_Subscription-2025.1.5.zip", 1344 + "243.26053.17": "https://plugins.jetbrains.com/files/16604/699178/Extra_ToolWindow_Colorful_Icons_Subscription-2025.1.5.zip", 1345 + "243.26053.19": "https://plugins.jetbrains.com/files/16604/699178/Extra_ToolWindow_Colorful_Icons_Subscription-2025.1.5.zip", 1346 + "243.26053.20": "https://plugins.jetbrains.com/files/16604/699178/Extra_ToolWindow_Colorful_Icons_Subscription-2025.1.5.zip", 1347 + "243.26053.27": "https://plugins.jetbrains.com/files/16604/699178/Extra_ToolWindow_Colorful_Icons_Subscription-2025.1.5.zip", 1348 + "243.26053.29": "https://plugins.jetbrains.com/files/16604/699178/Extra_ToolWindow_Colorful_Icons_Subscription-2025.1.5.zip" 1349 }, 1350 "name": "extra-toolwindow-colorful-icons" 1351 }, ··· 1371 "243.24978.546": "https://plugins.jetbrains.com/files/17718/694875/github-copilot-intellij-1.5.38-243.zip", 1372 "243.24978.79": "https://plugins.jetbrains.com/files/17718/694875/github-copilot-intellij-1.5.38-243.zip", 1373 "243.25659.34": "https://plugins.jetbrains.com/files/17718/694875/github-copilot-intellij-1.5.38-243.zip", 1374 "243.25659.42": "https://plugins.jetbrains.com/files/17718/694875/github-copilot-intellij-1.5.38-243.zip", 1375 + "243.26053.12": "https://plugins.jetbrains.com/files/17718/694875/github-copilot-intellij-1.5.38-243.zip", 1376 + "243.26053.13": "https://plugins.jetbrains.com/files/17718/694875/github-copilot-intellij-1.5.38-243.zip", 1377 + "243.26053.17": "https://plugins.jetbrains.com/files/17718/694875/github-copilot-intellij-1.5.38-243.zip", 1378 + "243.26053.19": "https://plugins.jetbrains.com/files/17718/694875/github-copilot-intellij-1.5.38-243.zip", 1379 + "243.26053.20": "https://plugins.jetbrains.com/files/17718/694875/github-copilot-intellij-1.5.38-243.zip", 1380 + "243.26053.27": "https://plugins.jetbrains.com/files/17718/694875/github-copilot-intellij-1.5.38-243.zip", 1381 + "243.26053.29": "https://plugins.jetbrains.com/files/17718/694875/github-copilot-intellij-1.5.38-243.zip" 1382 }, 1383 "name": "github-copilot" 1384 }, ··· 1404 "243.24978.546": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", 1405 "243.24978.79": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", 1406 "243.25659.34": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", 1407 "243.25659.42": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", 1408 + "243.26053.12": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", 1409 + "243.26053.13": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", 1410 + "243.26053.17": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", 1411 + "243.26053.19": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", 1412 + "243.26053.20": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", 1413 + "243.26053.27": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", 1414 + "243.26053.29": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip" 1415 }, 1416 "name": "netbeans-6-5-keymap" 1417 }, ··· 1437 "243.24978.546": "https://plugins.jetbrains.com/files/18682/680233/Catppuccin_Theme-3.4.1.zip", 1438 "243.24978.79": "https://plugins.jetbrains.com/files/18682/680233/Catppuccin_Theme-3.4.1.zip", 1439 "243.25659.34": "https://plugins.jetbrains.com/files/18682/680233/Catppuccin_Theme-3.4.1.zip", 1440 "243.25659.42": "https://plugins.jetbrains.com/files/18682/680233/Catppuccin_Theme-3.4.1.zip", 1441 + "243.26053.12": "https://plugins.jetbrains.com/files/18682/680233/Catppuccin_Theme-3.4.1.zip", 1442 + "243.26053.13": "https://plugins.jetbrains.com/files/18682/680233/Catppuccin_Theme-3.4.1.zip", 1443 + "243.26053.17": "https://plugins.jetbrains.com/files/18682/680233/Catppuccin_Theme-3.4.1.zip", 1444 + "243.26053.19": "https://plugins.jetbrains.com/files/18682/680233/Catppuccin_Theme-3.4.1.zip", 1445 + "243.26053.20": "https://plugins.jetbrains.com/files/18682/680233/Catppuccin_Theme-3.4.1.zip", 1446 + "243.26053.27": "https://plugins.jetbrains.com/files/18682/680233/Catppuccin_Theme-3.4.1.zip", 1447 + "243.26053.29": "https://plugins.jetbrains.com/files/18682/680233/Catppuccin_Theme-3.4.1.zip" 1448 }, 1449 "name": "catppuccin-theme" 1450 }, ··· 1470 "243.24978.546": "https://plugins.jetbrains.com/files/18824/694222/CodeGlancePro-1.9.7-signed.zip", 1471 "243.24978.79": "https://plugins.jetbrains.com/files/18824/694222/CodeGlancePro-1.9.7-signed.zip", 1472 "243.25659.34": "https://plugins.jetbrains.com/files/18824/694222/CodeGlancePro-1.9.7-signed.zip", 1473 "243.25659.42": "https://plugins.jetbrains.com/files/18824/694222/CodeGlancePro-1.9.7-signed.zip", 1474 + "243.26053.12": "https://plugins.jetbrains.com/files/18824/694222/CodeGlancePro-1.9.7-signed.zip", 1475 + "243.26053.13": "https://plugins.jetbrains.com/files/18824/694222/CodeGlancePro-1.9.7-signed.zip", 1476 + "243.26053.17": "https://plugins.jetbrains.com/files/18824/694222/CodeGlancePro-1.9.7-signed.zip", 1477 + "243.26053.19": "https://plugins.jetbrains.com/files/18824/694222/CodeGlancePro-1.9.7-signed.zip", 1478 + "243.26053.20": "https://plugins.jetbrains.com/files/18824/694222/CodeGlancePro-1.9.7-signed.zip", 1479 + "243.26053.27": "https://plugins.jetbrains.com/files/18824/694222/CodeGlancePro-1.9.7-signed.zip", 1480 + "243.26053.29": "https://plugins.jetbrains.com/files/18824/694222/CodeGlancePro-1.9.7-signed.zip" 1481 }, 1482 "name": "codeglance-pro" 1483 }, ··· 1503 "243.24978.546": "https://plugins.jetbrains.com/files/18922/694217/GerryThemes.jar", 1504 "243.24978.79": "https://plugins.jetbrains.com/files/18922/694217/GerryThemes.jar", 1505 "243.25659.34": "https://plugins.jetbrains.com/files/18922/694217/GerryThemes.jar", 1506 "243.25659.42": "https://plugins.jetbrains.com/files/18922/694217/GerryThemes.jar", 1507 + "243.26053.12": "https://plugins.jetbrains.com/files/18922/694217/GerryThemes.jar", 1508 + "243.26053.13": "https://plugins.jetbrains.com/files/18922/694217/GerryThemes.jar", 1509 + "243.26053.17": "https://plugins.jetbrains.com/files/18922/694217/GerryThemes.jar", 1510 + "243.26053.19": "https://plugins.jetbrains.com/files/18922/694217/GerryThemes.jar", 1511 + "243.26053.20": "https://plugins.jetbrains.com/files/18922/694217/GerryThemes.jar", 1512 + "243.26053.27": "https://plugins.jetbrains.com/files/18922/694217/GerryThemes.jar", 1513 + "243.26053.29": "https://plugins.jetbrains.com/files/18922/694217/GerryThemes.jar" 1514 }, 1515 "name": "gerry-themes" 1516 }, ··· 1536 "243.24978.546": "https://plugins.jetbrains.com/files/19275/355572/better_direnv-1.2.2-signed.zip", 1537 "243.24978.79": "https://plugins.jetbrains.com/files/19275/355572/better_direnv-1.2.2-signed.zip", 1538 "243.25659.34": "https://plugins.jetbrains.com/files/19275/355572/better_direnv-1.2.2-signed.zip", 1539 "243.25659.42": "https://plugins.jetbrains.com/files/19275/355572/better_direnv-1.2.2-signed.zip", 1540 + "243.26053.12": "https://plugins.jetbrains.com/files/19275/355572/better_direnv-1.2.2-signed.zip", 1541 + "243.26053.13": "https://plugins.jetbrains.com/files/19275/355572/better_direnv-1.2.2-signed.zip", 1542 + "243.26053.17": "https://plugins.jetbrains.com/files/19275/355572/better_direnv-1.2.2-signed.zip", 1543 + "243.26053.19": "https://plugins.jetbrains.com/files/19275/355572/better_direnv-1.2.2-signed.zip", 1544 + "243.26053.20": "https://plugins.jetbrains.com/files/19275/355572/better_direnv-1.2.2-signed.zip", 1545 + "243.26053.27": "https://plugins.jetbrains.com/files/19275/355572/better_direnv-1.2.2-signed.zip", 1546 + "243.26053.29": "https://plugins.jetbrains.com/files/19275/355572/better_direnv-1.2.2-signed.zip" 1547 }, 1548 "name": "better-direnv" 1549 }, ··· 1569 "243.24978.546": "https://plugins.jetbrains.com/files/20146/633971/Mermaid-0.0.24_IJ.243.zip", 1570 "243.24978.79": "https://plugins.jetbrains.com/files/20146/633971/Mermaid-0.0.24_IJ.243.zip", 1571 "243.25659.34": "https://plugins.jetbrains.com/files/20146/633971/Mermaid-0.0.24_IJ.243.zip", 1572 "243.25659.42": "https://plugins.jetbrains.com/files/20146/633971/Mermaid-0.0.24_IJ.243.zip", 1573 + "243.26053.12": "https://plugins.jetbrains.com/files/20146/633971/Mermaid-0.0.24_IJ.243.zip", 1574 + "243.26053.13": "https://plugins.jetbrains.com/files/20146/633971/Mermaid-0.0.24_IJ.243.zip", 1575 + "243.26053.17": "https://plugins.jetbrains.com/files/20146/633971/Mermaid-0.0.24_IJ.243.zip", 1576 + "243.26053.19": "https://plugins.jetbrains.com/files/20146/633971/Mermaid-0.0.24_IJ.243.zip", 1577 + "243.26053.20": "https://plugins.jetbrains.com/files/20146/633971/Mermaid-0.0.24_IJ.243.zip", 1578 + "243.26053.27": "https://plugins.jetbrains.com/files/20146/633971/Mermaid-0.0.24_IJ.243.zip", 1579 + "243.26053.29": "https://plugins.jetbrains.com/files/20146/633971/Mermaid-0.0.24_IJ.243.zip" 1580 }, 1581 "name": "mermaid" 1582 }, ··· 1602 "243.24978.546": "https://plugins.jetbrains.com/files/21551/323564/ferris-2021.1.zip", 1603 "243.24978.79": "https://plugins.jetbrains.com/files/21551/323564/ferris-2021.1.zip", 1604 "243.25659.34": "https://plugins.jetbrains.com/files/21551/323564/ferris-2021.1.zip", 1605 "243.25659.42": "https://plugins.jetbrains.com/files/21551/323564/ferris-2021.1.zip", 1606 + "243.26053.12": "https://plugins.jetbrains.com/files/21551/323564/ferris-2021.1.zip", 1607 + "243.26053.13": "https://plugins.jetbrains.com/files/21551/323564/ferris-2021.1.zip", 1608 + "243.26053.17": "https://plugins.jetbrains.com/files/21551/323564/ferris-2021.1.zip", 1609 + "243.26053.19": "https://plugins.jetbrains.com/files/21551/323564/ferris-2021.1.zip", 1610 + "243.26053.20": "https://plugins.jetbrains.com/files/21551/323564/ferris-2021.1.zip", 1611 + "243.26053.27": "https://plugins.jetbrains.com/files/21551/323564/ferris-2021.1.zip", 1612 + "243.26053.29": "https://plugins.jetbrains.com/files/21551/323564/ferris-2021.1.zip" 1613 }, 1614 "name": "ferris" 1615 }, ··· 1635 "243.24978.546": "https://plugins.jetbrains.com/files/21667/693656/code-complexity-plugin-1.6.2.zip", 1636 "243.24978.79": "https://plugins.jetbrains.com/files/21667/693656/code-complexity-plugin-1.6.2.zip", 1637 "243.25659.34": "https://plugins.jetbrains.com/files/21667/693656/code-complexity-plugin-1.6.2.zip", 1638 "243.25659.42": "https://plugins.jetbrains.com/files/21667/693656/code-complexity-plugin-1.6.2.zip", 1639 + "243.26053.12": "https://plugins.jetbrains.com/files/21667/693656/code-complexity-plugin-1.6.2.zip", 1640 + "243.26053.13": "https://plugins.jetbrains.com/files/21667/693656/code-complexity-plugin-1.6.2.zip", 1641 + "243.26053.17": "https://plugins.jetbrains.com/files/21667/693656/code-complexity-plugin-1.6.2.zip", 1642 + "243.26053.19": "https://plugins.jetbrains.com/files/21667/693656/code-complexity-plugin-1.6.2.zip", 1643 + "243.26053.20": "https://plugins.jetbrains.com/files/21667/693656/code-complexity-plugin-1.6.2.zip", 1644 + "243.26053.27": "https://plugins.jetbrains.com/files/21667/693656/code-complexity-plugin-1.6.2.zip", 1645 + "243.26053.29": "https://plugins.jetbrains.com/files/21667/693656/code-complexity-plugin-1.6.2.zip" 1646 }, 1647 "name": "code-complexity" 1648 }, ··· 1668 "243.24978.546": "https://plugins.jetbrains.com/files/21904/665427/intellij-developer-tools-plugin-6.3.0-signed.zip", 1669 "243.24978.79": "https://plugins.jetbrains.com/files/21904/665427/intellij-developer-tools-plugin-6.3.0-signed.zip", 1670 "243.25659.34": "https://plugins.jetbrains.com/files/21904/665427/intellij-developer-tools-plugin-6.3.0-signed.zip", 1671 "243.25659.42": "https://plugins.jetbrains.com/files/21904/665427/intellij-developer-tools-plugin-6.3.0-signed.zip", 1672 + "243.26053.12": "https://plugins.jetbrains.com/files/21904/665427/intellij-developer-tools-plugin-6.3.0-signed.zip", 1673 + "243.26053.13": "https://plugins.jetbrains.com/files/21904/665427/intellij-developer-tools-plugin-6.3.0-signed.zip", 1674 + "243.26053.17": "https://plugins.jetbrains.com/files/21904/665427/intellij-developer-tools-plugin-6.3.0-signed.zip", 1675 + "243.26053.19": "https://plugins.jetbrains.com/files/21904/665427/intellij-developer-tools-plugin-6.3.0-signed.zip", 1676 + "243.26053.20": "https://plugins.jetbrains.com/files/21904/665427/intellij-developer-tools-plugin-6.3.0-signed.zip", 1677 + "243.26053.27": "https://plugins.jetbrains.com/files/21904/665427/intellij-developer-tools-plugin-6.3.0-signed.zip", 1678 + "243.26053.29": "https://plugins.jetbrains.com/files/21904/665427/intellij-developer-tools-plugin-6.3.0-signed.zip" 1679 }, 1680 "name": "developer-tools" 1681 }, ··· 1693 ], 1694 "builds": { 1695 "243.25659.34": "https://plugins.jetbrains.com/files/21962/684422/clouds-docker-gateway-243.24978.79.zip", 1696 "243.25659.42": "https://plugins.jetbrains.com/files/21962/684422/clouds-docker-gateway-243.24978.79.zip", 1697 + "243.26053.12": "https://plugins.jetbrains.com/files/21962/684422/clouds-docker-gateway-243.24978.79.zip", 1698 + "243.26053.13": "https://plugins.jetbrains.com/files/21962/684422/clouds-docker-gateway-243.24978.79.zip", 1699 + "243.26053.17": "https://plugins.jetbrains.com/files/21962/684422/clouds-docker-gateway-243.24978.79.zip", 1700 + "243.26053.19": "https://plugins.jetbrains.com/files/21962/684422/clouds-docker-gateway-243.24978.79.zip", 1701 + "243.26053.20": "https://plugins.jetbrains.com/files/21962/684422/clouds-docker-gateway-243.24978.79.zip", 1702 + "243.26053.27": "https://plugins.jetbrains.com/files/21962/684422/clouds-docker-gateway-243.24978.79.zip", 1703 + "243.26053.29": "https://plugins.jetbrains.com/files/21962/684422/clouds-docker-gateway-243.24978.79.zip" 1704 }, 1705 "name": "dev-containers" 1706 }, ··· 1712 ], 1713 "builds": { 1714 "243.25659.42": "https://plugins.jetbrains.com/files/22407/697137/intellij-rust-243.26053.17__1_.zip", 1715 + "243.26053.17": "https://plugins.jetbrains.com/files/22407/697137/intellij-rust-243.26053.17__1_.zip", 1716 + "243.26053.27": "https://plugins.jetbrains.com/files/22407/697137/intellij-rust-243.26053.17__1_.zip" 1717 }, 1718 "name": "rust" 1719 }, ··· 1739 "243.24978.546": "https://plugins.jetbrains.com/files/22707/689483/continue-intellij-extension-1.0.2.zip", 1740 "243.24978.79": "https://plugins.jetbrains.com/files/22707/689483/continue-intellij-extension-1.0.2.zip", 1741 "243.25659.34": "https://plugins.jetbrains.com/files/22707/689483/continue-intellij-extension-1.0.2.zip", 1742 "243.25659.42": "https://plugins.jetbrains.com/files/22707/689483/continue-intellij-extension-1.0.2.zip", 1743 + "243.26053.12": "https://plugins.jetbrains.com/files/22707/689483/continue-intellij-extension-1.0.2.zip", 1744 + "243.26053.13": "https://plugins.jetbrains.com/files/22707/689483/continue-intellij-extension-1.0.2.zip", 1745 + "243.26053.17": "https://plugins.jetbrains.com/files/22707/689483/continue-intellij-extension-1.0.2.zip", 1746 + "243.26053.19": "https://plugins.jetbrains.com/files/22707/689483/continue-intellij-extension-1.0.2.zip", 1747 + "243.26053.20": "https://plugins.jetbrains.com/files/22707/689483/continue-intellij-extension-1.0.2.zip", 1748 + "243.26053.27": "https://plugins.jetbrains.com/files/22707/689483/continue-intellij-extension-1.0.2.zip", 1749 + "243.26053.29": "https://plugins.jetbrains.com/files/22707/689483/continue-intellij-extension-1.0.2.zip" 1750 }, 1751 "name": "continue" 1752 }, ··· 1772 "243.24978.546": "https://plugins.jetbrains.com/files/22857/654839/vcs-gitlab-243.23654.19.zip", 1773 "243.24978.79": "https://plugins.jetbrains.com/files/22857/654839/vcs-gitlab-243.23654.19.zip", 1774 "243.25659.34": "https://plugins.jetbrains.com/files/22857/654839/vcs-gitlab-243.23654.19.zip", 1775 "243.25659.42": "https://plugins.jetbrains.com/files/22857/654839/vcs-gitlab-243.23654.19.zip", 1776 + "243.26053.12": "https://plugins.jetbrains.com/files/22857/654839/vcs-gitlab-243.23654.19.zip", 1777 + "243.26053.13": "https://plugins.jetbrains.com/files/22857/654839/vcs-gitlab-243.23654.19.zip", 1778 + "243.26053.17": "https://plugins.jetbrains.com/files/22857/654839/vcs-gitlab-243.23654.19.zip", 1779 + "243.26053.19": "https://plugins.jetbrains.com/files/22857/654839/vcs-gitlab-243.23654.19.zip", 1780 + "243.26053.20": "https://plugins.jetbrains.com/files/22857/654839/vcs-gitlab-243.23654.19.zip", 1781 + "243.26053.27": "https://plugins.jetbrains.com/files/22857/654839/vcs-gitlab-243.23654.19.zip", 1782 + "243.26053.29": "https://plugins.jetbrains.com/files/22857/654839/vcs-gitlab-243.23654.19.zip" 1783 }, 1784 "name": "gitlab" 1785 }, ··· 1805 "243.24978.546": "https://plugins.jetbrains.com/files/23029/684999/Catppuccin_Icons-1.10.2.zip", 1806 "243.24978.79": "https://plugins.jetbrains.com/files/23029/684999/Catppuccin_Icons-1.10.2.zip", 1807 "243.25659.34": "https://plugins.jetbrains.com/files/23029/684999/Catppuccin_Icons-1.10.2.zip", 1808 "243.25659.42": "https://plugins.jetbrains.com/files/23029/684999/Catppuccin_Icons-1.10.2.zip", 1809 + "243.26053.12": "https://plugins.jetbrains.com/files/23029/684999/Catppuccin_Icons-1.10.2.zip", 1810 + "243.26053.13": "https://plugins.jetbrains.com/files/23029/684999/Catppuccin_Icons-1.10.2.zip", 1811 + "243.26053.17": "https://plugins.jetbrains.com/files/23029/684999/Catppuccin_Icons-1.10.2.zip", 1812 + "243.26053.19": "https://plugins.jetbrains.com/files/23029/684999/Catppuccin_Icons-1.10.2.zip", 1813 + "243.26053.20": "https://plugins.jetbrains.com/files/23029/684999/Catppuccin_Icons-1.10.2.zip", 1814 + "243.26053.27": "https://plugins.jetbrains.com/files/23029/684999/Catppuccin_Icons-1.10.2.zip", 1815 + "243.26053.29": "https://plugins.jetbrains.com/files/23029/684999/Catppuccin_Icons-1.10.2.zip" 1816 }, 1817 "name": "catppuccin-icons" 1818 }, ··· 1838 "243.24978.546": "https://plugins.jetbrains.com/files/23043/635877/MermaidChart-1.1.8.zip", 1839 "243.24978.79": "https://plugins.jetbrains.com/files/23043/635877/MermaidChart-1.1.8.zip", 1840 "243.25659.34": "https://plugins.jetbrains.com/files/23043/635877/MermaidChart-1.1.8.zip", 1841 "243.25659.42": "https://plugins.jetbrains.com/files/23043/635877/MermaidChart-1.1.8.zip", 1842 + "243.26053.12": "https://plugins.jetbrains.com/files/23043/635877/MermaidChart-1.1.8.zip", 1843 + "243.26053.13": "https://plugins.jetbrains.com/files/23043/635877/MermaidChart-1.1.8.zip", 1844 + "243.26053.17": "https://plugins.jetbrains.com/files/23043/635877/MermaidChart-1.1.8.zip", 1845 + "243.26053.19": "https://plugins.jetbrains.com/files/23043/635877/MermaidChart-1.1.8.zip", 1846 + "243.26053.20": "https://plugins.jetbrains.com/files/23043/635877/MermaidChart-1.1.8.zip", 1847 + "243.26053.27": "https://plugins.jetbrains.com/files/23043/635877/MermaidChart-1.1.8.zip", 1848 + "243.26053.29": "https://plugins.jetbrains.com/files/23043/635877/MermaidChart-1.1.8.zip" 1849 }, 1850 "name": "mermaid-chart" 1851 }, ··· 1871 "243.24978.546": "https://plugins.jetbrains.com/files/23806/664310/Oxocarbon-1.4.5.zip", 1872 "243.24978.79": "https://plugins.jetbrains.com/files/23806/664310/Oxocarbon-1.4.5.zip", 1873 "243.25659.34": "https://plugins.jetbrains.com/files/23806/664310/Oxocarbon-1.4.5.zip", 1874 "243.25659.42": "https://plugins.jetbrains.com/files/23806/664310/Oxocarbon-1.4.5.zip", 1875 + "243.26053.12": "https://plugins.jetbrains.com/files/23806/664310/Oxocarbon-1.4.5.zip", 1876 + "243.26053.13": "https://plugins.jetbrains.com/files/23806/664310/Oxocarbon-1.4.5.zip", 1877 + "243.26053.17": "https://plugins.jetbrains.com/files/23806/664310/Oxocarbon-1.4.5.zip", 1878 + "243.26053.19": "https://plugins.jetbrains.com/files/23806/664310/Oxocarbon-1.4.5.zip", 1879 + "243.26053.20": "https://plugins.jetbrains.com/files/23806/664310/Oxocarbon-1.4.5.zip", 1880 + "243.26053.27": "https://plugins.jetbrains.com/files/23806/664310/Oxocarbon-1.4.5.zip", 1881 + "243.26053.29": "https://plugins.jetbrains.com/files/23806/664310/Oxocarbon-1.4.5.zip" 1882 }, 1883 "name": "oxocarbon" 1884 }, ··· 1899 "webstorm" 1900 ], 1901 "builds": { 1902 + "243.22562.218": "https://plugins.jetbrains.com/files/23927/699176/Extra_IDE_Tweaks-2025.1.3.zip", 1903 + "243.22562.220": "https://plugins.jetbrains.com/files/23927/699176/Extra_IDE_Tweaks-2025.1.3.zip", 1904 + "243.24978.546": "https://plugins.jetbrains.com/files/23927/699176/Extra_IDE_Tweaks-2025.1.3.zip", 1905 + "243.24978.79": "https://plugins.jetbrains.com/files/23927/699176/Extra_IDE_Tweaks-2025.1.3.zip", 1906 + "243.25659.34": "https://plugins.jetbrains.com/files/23927/699176/Extra_IDE_Tweaks-2025.1.3.zip", 1907 + "243.25659.42": "https://plugins.jetbrains.com/files/23927/699176/Extra_IDE_Tweaks-2025.1.3.zip", 1908 + "243.26053.12": "https://plugins.jetbrains.com/files/23927/699176/Extra_IDE_Tweaks-2025.1.3.zip", 1909 + "243.26053.13": "https://plugins.jetbrains.com/files/23927/699176/Extra_IDE_Tweaks-2025.1.3.zip", 1910 + "243.26053.17": "https://plugins.jetbrains.com/files/23927/699176/Extra_IDE_Tweaks-2025.1.3.zip", 1911 + "243.26053.19": "https://plugins.jetbrains.com/files/23927/699176/Extra_IDE_Tweaks-2025.1.3.zip", 1912 + "243.26053.20": "https://plugins.jetbrains.com/files/23927/699176/Extra_IDE_Tweaks-2025.1.3.zip", 1913 + "243.26053.27": "https://plugins.jetbrains.com/files/23927/699176/Extra_IDE_Tweaks-2025.1.3.zip", 1914 + "243.26053.29": "https://plugins.jetbrains.com/files/23927/699176/Extra_IDE_Tweaks-2025.1.3.zip" 1915 }, 1916 "name": "extra-ide-tweaks" 1917 }, ··· 1932 "webstorm" 1933 ], 1934 "builds": { 1935 + "243.22562.218": "https://plugins.jetbrains.com/files/24559/699180/Extra_Tools_Pack-2025.1.4.zip", 1936 + "243.22562.220": "https://plugins.jetbrains.com/files/24559/699180/Extra_Tools_Pack-2025.1.4.zip", 1937 + "243.24978.546": "https://plugins.jetbrains.com/files/24559/699180/Extra_Tools_Pack-2025.1.4.zip", 1938 + "243.24978.79": "https://plugins.jetbrains.com/files/24559/699180/Extra_Tools_Pack-2025.1.4.zip", 1939 + "243.25659.34": "https://plugins.jetbrains.com/files/24559/699180/Extra_Tools_Pack-2025.1.4.zip", 1940 + "243.25659.42": "https://plugins.jetbrains.com/files/24559/699180/Extra_Tools_Pack-2025.1.4.zip", 1941 + "243.26053.12": "https://plugins.jetbrains.com/files/24559/699180/Extra_Tools_Pack-2025.1.4.zip", 1942 + "243.26053.13": "https://plugins.jetbrains.com/files/24559/699180/Extra_Tools_Pack-2025.1.4.zip", 1943 + "243.26053.17": "https://plugins.jetbrains.com/files/24559/699180/Extra_Tools_Pack-2025.1.4.zip", 1944 + "243.26053.19": "https://plugins.jetbrains.com/files/24559/699180/Extra_Tools_Pack-2025.1.4.zip", 1945 + "243.26053.20": "https://plugins.jetbrains.com/files/24559/699180/Extra_Tools_Pack-2025.1.4.zip", 1946 + "243.26053.27": "https://plugins.jetbrains.com/files/24559/699180/Extra_Tools_Pack-2025.1.4.zip", 1947 + "243.26053.29": "https://plugins.jetbrains.com/files/24559/699180/Extra_Tools_Pack-2025.1.4.zip" 1948 }, 1949 "name": "extra-tools-pack" 1950 }, ··· 1964 "builds": { 1965 "243.24978.79": "https://plugins.jetbrains.com/files/25594/623962/Nix_LSP-0.1.1.zip", 1966 "243.25659.34": "https://plugins.jetbrains.com/files/25594/623962/Nix_LSP-0.1.1.zip", 1967 "243.25659.42": "https://plugins.jetbrains.com/files/25594/623962/Nix_LSP-0.1.1.zip", 1968 + "243.26053.12": "https://plugins.jetbrains.com/files/25594/623962/Nix_LSP-0.1.1.zip", 1969 + "243.26053.13": "https://plugins.jetbrains.com/files/25594/623962/Nix_LSP-0.1.1.zip", 1970 + "243.26053.17": "https://plugins.jetbrains.com/files/25594/623962/Nix_LSP-0.1.1.zip", 1971 + "243.26053.19": "https://plugins.jetbrains.com/files/25594/623962/Nix_LSP-0.1.1.zip", 1972 + "243.26053.20": "https://plugins.jetbrains.com/files/25594/623962/Nix_LSP-0.1.1.zip", 1973 + "243.26053.27": "https://plugins.jetbrains.com/files/25594/623962/Nix_LSP-0.1.1.zip", 1974 + "243.26053.29": "https://plugins.jetbrains.com/files/25594/623962/Nix_LSP-0.1.1.zip" 1975 }, 1976 "name": "nix-lsp" 1977 }, ··· 1995 "243.22562.220": "https://plugins.jetbrains.com/files/26084/680234/markdtask-2025.1.1.zip", 1996 "243.24978.79": "https://plugins.jetbrains.com/files/26084/680234/markdtask-2025.1.1.zip", 1997 "243.25659.34": "https://plugins.jetbrains.com/files/26084/680234/markdtask-2025.1.1.zip", 1998 "243.25659.42": "https://plugins.jetbrains.com/files/26084/680234/markdtask-2025.1.1.zip", 1999 + "243.26053.12": "https://plugins.jetbrains.com/files/26084/680234/markdtask-2025.1.1.zip", 2000 + "243.26053.13": "https://plugins.jetbrains.com/files/26084/680234/markdtask-2025.1.1.zip", 2001 + "243.26053.17": "https://plugins.jetbrains.com/files/26084/680234/markdtask-2025.1.1.zip", 2002 + "243.26053.19": "https://plugins.jetbrains.com/files/26084/680234/markdtask-2025.1.1.zip", 2003 + "243.26053.20": "https://plugins.jetbrains.com/files/26084/680234/markdtask-2025.1.1.zip", 2004 + "243.26053.27": "https://plugins.jetbrains.com/files/26084/680234/markdtask-2025.1.1.zip", 2005 + "243.26053.29": "https://plugins.jetbrains.com/files/26084/680234/markdtask-2025.1.1.zip" 2006 }, 2007 "name": "markdtask" 2008 } ··· 2012 "https://plugins.jetbrains.com/files/10080/689210/intellij-rainbow-brackets-2024.2.9-241.zip": "sha256-QfJAfpKaHeKo9xQwFd+3pVRxYGTO60puORrZ0rdpaZY=", 2013 "https://plugins.jetbrains.com/files/10312/581013/dotplugin-1.5.4.zip": "sha256-25vtwXuBNiYL9E0pKG4dqJDkwX1FckAErdqRPKXybQA=", 2014 "https://plugins.jetbrains.com/files/10481/583591/intellij-hocon-2024.2.0.zip": "sha256-Bnnvy+HDNkx2DQM7N+JUa8hQzIA3H/5Y0WpWAjPmhUI=", 2015 + "https://plugins.jetbrains.com/files/11058/699177/Extra_Icons-2025.1.3.zip": "sha256-suQxHLMgY0x/XHI1EikPI1mBpsTn4bkKO6HgCBb+OmA=", 2016 + "https://plugins.jetbrains.com/files/11349/697687/aws-toolkit-jetbrains-standalone-3.59-243.zip": "sha256-+CeHk1yCPPGP8Vn9irjDqszprqmDTtjqUGuzKk+rJpI=", 2017 "https://plugins.jetbrains.com/files/12024/622380/ReSharperPlugin.CognitiveComplexity-2024.3.0-eap04.zip": "sha256-X2x7uyWoV4aBI8E5bw35QfzmySWzbEAZ2nvdo5i+t+s=", 2018 "https://plugins.jetbrains.com/files/12062/630060/keymap-vscode-243.21565.122.zip": "sha256-phv8MTGKNGzRviKzX+nIVTbkX4WkU82QVO5zXUQLtAo=", 2019 "https://plugins.jetbrains.com/files/12559/629985/keymap-eclipse-243.21565.122.zip": "sha256-/g1ucT18ywVJnCePH7WyMWKgM9umowBz5wFObmO7cws=", ··· 2027 "https://plugins.jetbrains.com/files/14708/475401/MarioProgressBar-1.9.jar": "sha256-mB09zvUg1hLXl9lgW1NEU+DyVel1utZv6s+mFykckYY=", 2028 "https://plugins.jetbrains.com/files/15976/593529/IDEA_Which-Key-0.10.3.jar": "sha256-2FlEaHf2rO6xgG3LnZIPt/XKgRGjpLSiEXCncfAf3bI=", 2029 "https://plugins.jetbrains.com/files/164/676777/IdeaVIM-2.19.0.zip": "sha256-yKpWQZGxfsKwPVTJLHpF4KGJ5ANCd73uxHlfdFE4Qf4=", 2030 + "https://plugins.jetbrains.com/files/16604/699178/Extra_ToolWindow_Colorful_Icons_Subscription-2025.1.5.zip": "sha256-ycstNSciTV1LAsvJ3fTXN3NmQ259nkrAeX6MASjdmag=", 2031 "https://plugins.jetbrains.com/files/17718/694875/github-copilot-intellij-1.5.38-243.zip": "sha256-lq5JmR8gPsrZ9rT+byit98KZSzFsl4UppwYAaE9Kjiw=", 2032 "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip": "sha256-KrzZTKZMQqoEMw+vDUv2jjs0EX0leaPBkU8H/ecq/oI=", 2033 "https://plugins.jetbrains.com/files/18682/680233/Catppuccin_Theme-3.4.1.zip": "sha256-QOF3nAXOfYhNl3YUK1fc9z5H2uXTPm2X+6fVZ5QP8ZQ=", ··· 2047 "https://plugins.jetbrains.com/files/23029/684999/Catppuccin_Icons-1.10.2.zip": "sha256-qkwfEpC2f4vgVsesSiUvd6kK6XnG9DTN4gXUR+rLlK0=", 2048 "https://plugins.jetbrains.com/files/23043/635877/MermaidChart-1.1.8.zip": "sha256-ssaSY1I6FopLBgVKHUyjBrqzxHLSuI/swtDfQWJ7gxU=", 2049 "https://plugins.jetbrains.com/files/23806/664310/Oxocarbon-1.4.5.zip": "sha256-zF89Q1LE6xwBeDKv4FSQ6H6cbABjz74Z/qGwddRWp7M=", 2050 + "https://plugins.jetbrains.com/files/23927/699176/Extra_IDE_Tweaks-2025.1.3.zip": "sha256-8Q0S6Iqv880JKscoiNfdYnKHFcwQV0raOpOsNe6tgO4=", 2051 + "https://plugins.jetbrains.com/files/24559/699180/Extra_Tools_Pack-2025.1.4.zip": "sha256-avn3oqi6KgMQ73Q7rj7AUKzytD0dxtW2k772OWtW/mM=", 2052 "https://plugins.jetbrains.com/files/25594/623962/Nix_LSP-0.1.1.zip": "sha256-Uq5RdVQTyqRMsEwDZT6Kldv2alt0EVMCABEt/xQUHow=", 2053 "https://plugins.jetbrains.com/files/26084/680234/markdtask-2025.1.1.zip": "sha256-NFHB5zWH8pUwz6OT8F7eIiapeEvHX24fj0Eo1qH45Aw=", 2054 + "https://plugins.jetbrains.com/files/631/700118/python-243.26053.27.zip": "sha256-/Ceycp+iCxN7nrSg7L1xNqlOY1hzij/ADEvHUWBwTfE=", 2055 "https://plugins.jetbrains.com/files/6884/630038/handlebars-243.21565.122.zip": "sha256-pFKAZ8xFNfUh7/Hi4NYPDQAhRRYm4WKTpCQELqBfb40=", 2056 "https://plugins.jetbrains.com/files/6981/654905/ini-243.22562.236.zip": "sha256-kL/A2R8j2JKMU61T/xJahPwKPYmwFCFy55NPSoBh/Xc=", 2057 "https://plugins.jetbrains.com/files/6981/680778/ini-243.24978.60.zip": "sha256-m2iKdm4f1h+k1XdQvJCd8T83jEKip+H1E1p8XMfrGcg=", 2058 "https://plugins.jetbrains.com/files/6981/690635/ini-243.25659.54.zip": "sha256-TiVoHX56uEAsSWqE7n0jrePiabN3gcNRFNuSeBhvul4=", 2059 + "https://plugins.jetbrains.com/files/6981/697705/ini-243.26053.20.zip": "sha256-s4bSXVqrhy3VMQQd2sT+Xv9v0hQwGGIYk0H+wjonFO4=", 2060 "https://plugins.jetbrains.com/files/7086/518678/AceJump.zip": "sha256-kVUEgfEKUupV/qlB4Dpzi5pFHjhVvX74XIPetKtjysM=", 2061 "https://plugins.jetbrains.com/files/7125/627704/GrepConsole-13.2.0-IJ2023.3.zip": "sha256-KY5VRiLJJwa9OVVog1W3MboZjwVboYwYm+i4eqooo44=", 2062 "https://plugins.jetbrains.com/files/7177/636663/fileWatcher-243.22562.13.zip": "sha256-8IHS3kmmbL8uQYnaMW7NgBIpBKT+XDJ4QDiiPZa5pzo=", 2063 "https://plugins.jetbrains.com/files/7177/654841/fileWatcher-243.23654.19.zip": "sha256-mlCow96mI2k7c/oGe064DqjUViOFhNgwNjF6DVyak4E=", 2064 "https://plugins.jetbrains.com/files/7219/605730/Symfony_Plugin-2024.1.276.zip": "sha256-drNmhJMe+kuY2fcHjY+SQmkACvFk0rVI4vAhyZ/bgLc=", 2065 + "https://plugins.jetbrains.com/files/7320/701175/PHP_Annotations-11.2.0.zip": "sha256-qUgbbG+S7RVt7zLU8ngnp7NzJUb23AuKM7KLAWYQLUs=", 2066 "https://plugins.jetbrains.com/files/7322/646590/python-ce-243.22562.145.zip": "sha256-45UtQRZMtKF6addrrB3A+goeyICMfcZ2FKcJvJSqgg4=", 2067 "https://plugins.jetbrains.com/files/7322/680217/python-ce-243.24978.46.zip": "sha256-4KkUOSN9KnBjpo92LvkN/7ZtDG/gSAFHgDf5ESSsgoY=", 2068 "https://plugins.jetbrains.com/files/7391/658997/asciidoctor-intellij-plugin-0.43.6.zip": "sha256-3RJ7YVFtynyqeLIzdrirCMbWNZmUkJ+DT/9my71H0Dk=", 2069 "https://plugins.jetbrains.com/files/7425/603907/WakaTime.jar": "sha256-Z7ZWDomXnTdHFKOElMkt53imef6aT7H5XeD6lOOFxfQ=", 2070 "https://plugins.jetbrains.com/files/7499/690185/gittoolbox-600.0.19_243-signed.zip": "sha256-ZbjLwXY+AocK1OtlyPd+wcObiArWSOWMXjtWaLWMbDo=", 2071 "https://plugins.jetbrains.com/files/7724/680796/clouds-docker-impl-243.24978.54.zip": "sha256-pGAUljrRizCer076iM1oKrNj54tN3VxSvYldfKAsqRE=", 2072 "https://plugins.jetbrains.com/files/7724/692258/clouds-docker-impl-243.25659.59.zip": "sha256-fJatpg7WzrStvABSeIayeFF4bjv059VW6ZTTKQxLNV8=", 2073 + "https://plugins.jetbrains.com/files/7724/700105/clouds-docker-impl-243.26053.27.zip": "sha256-WL6AQuo1zE4x2b3M2rjTa7T9AbGKc2urTZBa6PU1i3w=", 2074 "https://plugins.jetbrains.com/files/8097/636616/graphql-243.22562.13.zip": "sha256-rr2pO0mIsqWXYZgwEhcQJlk0lQabxnIPxqRCGdTFaTw=", 2075 "https://plugins.jetbrains.com/files/8097/680200/graphql-243.24978.46.zip": "sha256-RJELd6KPzlRu+UwWBPW1fN33Zj0PcgQ0hGCJ6+ii/fI=", 2076 "https://plugins.jetbrains.com/files/8097/688195/graphql-243.25659.42.zip": "sha256-p52AGXhfldRiT7FoWeDQuP38+/9J1KuPDyhM4VUwQTc=", ··· 2080 "https://plugins.jetbrains.com/files/8554/654690/featuresTrainer-243.22562.233.zip": "sha256-JugbJM8Lr2kbhP9hdLE3kUStl2vOMUB5wGTwNLxAZd0=", 2081 "https://plugins.jetbrains.com/files/8554/684425/featuresTrainer-243.24978.79.zip": "sha256-1oI8hw6YYhUzhfv5RjtlBFG0OvucqVs/XUXMioRIuzA=", 2082 "https://plugins.jetbrains.com/files/8554/690630/featuresTrainer-243.25659.54.zip": "sha256-xmjPvJVe27gL1DEwtzvKvzEkF80ZGHUCKjLOY2nO+T0=", 2083 + "https://plugins.jetbrains.com/files/8554/697631/featuresTrainer-243.26053.13.zip": "sha256-LMoWgp7perGOFj6d32cQTfo+TLFeupgn53ZRLVON0JA=", 2084 "https://plugins.jetbrains.com/files/8607/673303/NixIDEA-0.4.0.17.zip": "sha256-OFisV6Vs/xlbDvchxfrREDVgVh7wcfGnot+zUrgQU6M=", 2085 "https://plugins.jetbrains.com/files/9525/603167/idea-php-dotenv-plugin-2024.3.zip": "sha256-hR7hC2phDJnHXxPy80WlEDFAhZHtMCu7nqYvAb0VeTI=", 2086 + "https://plugins.jetbrains.com/files/9568/700127/go-plugin-243.26053.27.zip": "sha256-SqFl1ArPLi/Bc43n0u+pMCAw+8hyqM/D41w4k1DJQcA=", 2087 + "https://plugins.jetbrains.com/files/9707/698971/ansi-highlighter-premium-24.3.3.jar": "sha256-TEF4rtS04kQ/h+SKXnbqLjrMGm3jHk0MJ7ffe0lvbs4=", 2088 "https://plugins.jetbrains.com/files/9792/633158/Key_Promoter_X-2024.2.2.zip": "sha256-Mzmmq0RzMKZeKfBSo7FHvzeEtPGIrwqEDLAONQEsR1M=", 2089 "https://plugins.jetbrains.com/files/9836/681714/intellij-randomness-3.3.6-signed.zip": "sha256-ArwC2HO2cHlTcFKXQBuKzZTuOiiIDEc/SGDsDQUCZmI=" 2090 }
+1 -1
pkgs/applications/editors/vscode/extensions/myriad-dreamin.tinymist/default.nix
··· 11 name = "tinymist"; 12 publisher = "myriad-dreamin"; 13 inherit (tinymist) version; 14 - hash = "sha256-OB+e4lerPONs7QDqHJO3pqU1yQ3BvM2k+Tz998ibmHo="; 15 }; 16 17 nativeBuildInputs = [
··· 11 name = "tinymist"; 12 publisher = "myriad-dreamin"; 13 inherit (tinymist) version; 14 + hash = "sha256-7GoFmflHaHXpw0ijX7YGBKewV+HmRhcm4eTYVgCYLHY="; 15 }; 16 17 nativeBuildInputs = [
+2 -3
pkgs/applications/networking/instant-messengers/discord/linux.nix
··· 65 withMoonlight ? false, 66 moonlight, 67 withTTS ? true, 68 }: 69 - 70 assert lib.assertMsg ( 71 !(withMoonlight && withVencord) 72 ) "discord: Moonlight and Vencord can not be enabled at the same time"; 73 - 74 let 75 disableBreakingUpdates = 76 runCommand "disable-breaking-updates.py" ··· 86 chmod +x $out/bin/disable-breaking-updates.py 87 ''; 88 in 89 - 90 stdenv.mkDerivation rec { 91 inherit 92 pname ··· 176 "''${gappsWrapperArgs[@]}" \ 177 --add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--ozone-platform=wayland --enable-features=WaylandWindowDecorations --enable-wayland-ime=true}}" \ 178 ${lib.strings.optionalString withTTS "--add-flags \"--enable-speech-dispatcher\""} \ 179 --prefix XDG_DATA_DIRS : "${gtk3}/share/gsettings-schemas/${gtk3.name}/" \ 180 --prefix LD_LIBRARY_PATH : ${libPath}:$out/opt/${binaryName} \ 181 --run "${lib.getExe disableBreakingUpdates}"
··· 65 withMoonlight ? false, 66 moonlight, 67 withTTS ? true, 68 + enableAutoscroll ? false, 69 }: 70 assert lib.assertMsg ( 71 !(withMoonlight && withVencord) 72 ) "discord: Moonlight and Vencord can not be enabled at the same time"; 73 let 74 disableBreakingUpdates = 75 runCommand "disable-breaking-updates.py" ··· 85 chmod +x $out/bin/disable-breaking-updates.py 86 ''; 87 in 88 stdenv.mkDerivation rec { 89 inherit 90 pname ··· 174 "''${gappsWrapperArgs[@]}" \ 175 --add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--ozone-platform=wayland --enable-features=WaylandWindowDecorations --enable-wayland-ime=true}}" \ 176 ${lib.strings.optionalString withTTS "--add-flags \"--enable-speech-dispatcher\""} \ 177 + ${lib.strings.optionalString enableAutoscroll "--add-flags \"--enable-blink-features=MiddleClickAutoscroll\""} \ 178 --prefix XDG_DATA_DIRS : "${gtk3}/share/gsettings-schemas/${gtk3.name}/" \ 179 --prefix LD_LIBRARY_PATH : ${libPath}:$out/opt/${binaryName} \ 180 --run "${lib.getExe disableBreakingUpdates}"
+3 -3
pkgs/applications/video/mpv/scripts/videoclip.nix
··· 10 }: 11 buildLua { 12 pname = "videoclip"; 13 - version = "0-unstable-2024-08-20"; 14 15 src = fetchFromGitHub { 16 owner = "Ajatt-Tools"; 17 repo = "videoclip"; 18 - rev = "249122d245bc5ec2a0687346af730b1cc2273b21"; 19 - hash = "sha256-VSMFddi8Lvmipo8Un79v+LXGNiKeaSxHQ44HddJgTkE="; 20 }; 21 22 patchPhase =
··· 10 }: 11 buildLua { 12 pname = "videoclip"; 13 + version = "0-unstable-2025-03-10"; 14 15 src = fetchFromGitHub { 16 owner = "Ajatt-Tools"; 17 repo = "videoclip"; 18 + rev = "785eb86bc080c445e8feb947d7caa8f3a097bf2b"; 19 + hash = "sha256-oanc9MggMjVDrSW42XrQwwWw2YTrifiCVrg/r42oGx8="; 20 }; 21 22 patchPhase =
+12
pkgs/by-name/ae/aewan/package.nix
··· 28 # patch is in CVS diff format, add 'a/' prefix 29 extraPrefix = ""; 30 }) 31 ]; 32 33 buildInputs = [
··· 28 # patch is in CVS diff format, add 'a/' prefix 29 extraPrefix = ""; 30 }) 31 + # https://sourceforge.net/p/aewan/bugs/14/ 32 + (fetchpatch { 33 + url = "https://sourceforge.net/p/aewan/bugs/14/attachment/aewan-1.0.01-fix-incompatible-function-pointer-types.patch"; 34 + sha256 = "sha256-NlnsOe/OCMXCrehBq20e0KOMcWt5rUv9fIvu9eoOMqw="; 35 + }) 36 + # https://sourceforge.net/p/aewan/bugs/16/ 37 + (fetchpatch { 38 + url = "https://sourceforge.net/p/aewan/bugs/16/attachment/implicit-function-declaration.patch"; 39 + sha256 = "sha256-RWFJRDaYoiQySkB2L09JHSX90zgIJ9q16IrPhg03Ruc="; 40 + # patch is in CVS diff format, add 'a/' prefix 41 + extraPrefix = ""; 42 + }) 43 ]; 44 45 buildInputs = [
+3 -3
pkgs/by-name/bu/burpsuite/package.nix
··· 9 }: 10 11 let 12 - version = "2025.1.4"; 13 14 product = 15 if proEdition then 16 { 17 productName = "pro"; 18 productDesktop = "Burp Suite Professional Edition"; 19 - hash = "sha256-NpWqrdUaxPvU4O2MplLTRfnqOB2yC/zQJx7o9stjKCU="; 20 } 21 else 22 { 23 productName = "community"; 24 productDesktop = "Burp Suite Community Edition"; 25 - hash = "sha256-jLwI9r1l/bf2R7BOImEnbW3iLgsF+/1n0/N55Jx8Lzw="; 26 }; 27 28 src = fetchurl {
··· 9 }: 10 11 let 12 + version = "2025.1.5"; 13 14 product = 15 if proEdition then 16 { 17 productName = "pro"; 18 productDesktop = "Burp Suite Professional Edition"; 19 + hash = "sha256-QTYeiM2hyZpvSu5oE2wrNrF3qFkp4JJnQftOg3BJqZA="; 20 } 21 else 22 { 23 productName = "community"; 24 productDesktop = "Burp Suite Community Edition"; 25 + hash = "sha256-vIcBRsylS+ftSq5x0HDe6Zb8dtVUtWw6hENBITYmzyQ="; 26 }; 27 28 src = fetchurl {
+2 -2
pkgs/by-name/cd/cdncheck/package.nix
··· 6 7 buildGoModule rec { 8 pname = "cdncheck"; 9 - version = "1.1.9"; 10 11 src = fetchFromGitHub { 12 owner = "projectdiscovery"; 13 repo = "cdncheck"; 14 tag = "v${version}"; 15 - hash = "sha256-p03OQAA/6WX2RJfnpFi9PYvVTBwBJX2bWxbDg+anybI="; 16 }; 17 18 vendorHash = "sha256-/1REkZ5+sz/H4T4lXhloz7fu5cLv1GoaD3dlttN+Qd4=";
··· 6 7 buildGoModule rec { 8 pname = "cdncheck"; 9 + version = "1.1.11"; 10 11 src = fetchFromGitHub { 12 owner = "projectdiscovery"; 13 repo = "cdncheck"; 14 tag = "v${version}"; 15 + hash = "sha256-sCTVDz9dqlTJ7MoJfFYmEnA2KkpWzu6qune90SXmgN4="; 16 }; 17 18 vendorHash = "sha256-/1REkZ5+sz/H4T4lXhloz7fu5cLv1GoaD3dlttN+Qd4=";
+2 -2
pkgs/by-name/cl/cli11/package.nix
··· 10 11 stdenv.mkDerivation (finalAttrs: { 12 pname = "cli11"; 13 - version = "2.4.2"; 14 15 src = fetchFromGitHub { 16 owner = "CLIUtils"; 17 repo = "CLI11"; 18 rev = "v${finalAttrs.version}"; 19 - hash = "sha256-BLjGKN/UQIPVFlZaJ2VxTLFfY6otpJZ6HqfLtt5+r88="; 20 }; 21 22 buildInputs = [ catch2 ];
··· 10 11 stdenv.mkDerivation (finalAttrs: { 12 pname = "cli11"; 13 + version = "2.5.0"; 14 15 src = fetchFromGitHub { 16 owner = "CLIUtils"; 17 repo = "CLI11"; 18 rev = "v${finalAttrs.version}"; 19 + hash = "sha256-73dfpZDnKl0cADM4LTP3/eDFhwCdiHbEaGRF7ZyWsdQ="; 20 }; 21 22 buildInputs = [ catch2 ];
+3 -3
pkgs/by-name/cl/clorinde/package.nix
··· 8 9 rustPlatform.buildRustPackage (finalAttrs: { 10 pname = "clorinde"; 11 - version = "0.13.2"; 12 13 src = fetchFromGitHub { 14 owner = "halcyonnouveau"; 15 repo = "clorinde"; 16 tag = "clorinde-v${finalAttrs.version}"; 17 - hash = "sha256-rjpNeRrRiLIWcKvkmnyGF6hhm1CLBEKovvLaMKwtKmk="; 18 }; 19 20 useFetchCargoVendor = true; 21 - cargoHash = "sha256-kyRhBDG4QRC6UcDqn+yzCLGuZHbNpKhl9QegTma6qDI="; 22 23 cargoBuildFlags = [ "--package=clorinde" ]; 24
··· 8 9 rustPlatform.buildRustPackage (finalAttrs: { 10 pname = "clorinde"; 11 + version = "0.14.0"; 12 13 src = fetchFromGitHub { 14 owner = "halcyonnouveau"; 15 repo = "clorinde"; 16 tag = "clorinde-v${finalAttrs.version}"; 17 + hash = "sha256-C9oxdvZKQTZQYQmMpcyxRH9+o2pv3gVpSEmwxYn2E+g="; 18 }; 19 20 useFetchCargoVendor = true; 21 + cargoHash = "sha256-Arp/5lgccSNblrRrK7oVrsQe3h6sQz3sHITMoN8Ehzc="; 22 23 cargoBuildFlags = [ "--package=clorinde" ]; 24
+33 -23
pkgs/by-name/co/cosmic-applets/package.nix
··· 3 stdenv, 4 fetchFromGitHub, 5 rustPlatform, 6 just, 7 pkg-config, 8 - udev, 9 util-linuxMinimal, 10 dbus, 11 glib, 12 libinput, 13 - libxkbcommon, 14 pulseaudio, 15 - wayland, 16 }: 17 18 - rustPlatform.buildRustPackage rec { 19 pname = "cosmic-applets"; 20 - version = "1.0.0-alpha.1"; 21 22 src = fetchFromGitHub { 23 owner = "pop-os"; 24 repo = "cosmic-applets"; 25 - rev = "epoch-${version}"; 26 - hash = "sha256-4KaMG7sKaiJDIlP101/6YDHDwKRqJXHdqotNZlPhv8Q="; 27 }; 28 29 useFetchCargoVendor = true; 30 - cargoHash = "sha256-f5OV//qzWQqIvq8BNtd2H1dWl7aqR0WJwmdimL4wcKQ="; 31 32 nativeBuildInputs = [ 33 just 34 pkg-config 35 util-linuxMinimal 36 ]; 37 buildInputs = [ 38 dbus 39 glib 40 libinput 41 - libxkbcommon 42 pulseaudio 43 - wayland 44 udev 45 ]; 46 47 dontUseJustBuild = true; 48 49 justFlags = [ 50 "--set" ··· 55 "${stdenv.hostPlatform.rust.cargoShortTarget}/release" 56 ]; 57 58 - # Force linking to libwayland-client, which is always dlopen()ed. 59 - "CARGO_TARGET_${stdenv.hostPlatform.rust.cargoEnvVarTarget}_RUSTFLAGS" = 60 - map (a: "-C link-arg=${a}") 61 - [ 62 - "-Wl,--push-state,--no-as-needed" 63 - "-lwayland-client" 64 - "-Wl,--pop-state" 65 - ]; 66 67 - meta = with lib; { 68 homepage = "https://github.com/pop-os/cosmic-applets"; 69 description = "Applets for the COSMIC Desktop Environment"; 70 - license = licenses.gpl3Only; 71 - maintainers = with maintainers; [ 72 qyliss 73 nyabinary 74 ]; 75 - platforms = platforms.linux; 76 }; 77 - }
··· 3 stdenv, 4 fetchFromGitHub, 5 rustPlatform, 6 + libcosmicAppHook, 7 just, 8 pkg-config, 9 util-linuxMinimal, 10 dbus, 11 glib, 12 libinput, 13 pulseaudio, 14 + udev, 15 + xkeyboard_config, 16 + nix-update-script, 17 }: 18 19 + rustPlatform.buildRustPackage (finalAttrs: { 20 pname = "cosmic-applets"; 21 + version = "1.0.0-alpha.6"; 22 23 src = fetchFromGitHub { 24 owner = "pop-os"; 25 repo = "cosmic-applets"; 26 + tag = "epoch-${finalAttrs.version}"; 27 + hash = "sha256-kRj2hEtE8FYky9Fn8hgHBo+UwWjOoS7/ROh9qz/0Vzs="; 28 }; 29 30 useFetchCargoVendor = true; 31 + cargoHash = "sha256-jADtvhMzWdJydT1T14PSk4ggZpWIcXiOK0TW2llKeos="; 32 33 nativeBuildInputs = [ 34 just 35 pkg-config 36 util-linuxMinimal 37 + libcosmicAppHook 38 ]; 39 + 40 buildInputs = [ 41 dbus 42 glib 43 libinput 44 pulseaudio 45 udev 46 ]; 47 48 dontUseJustBuild = true; 49 + dontUseJustCheck = true; 50 51 justFlags = [ 52 "--set" ··· 57 "${stdenv.hostPlatform.rust.cargoShortTarget}/release" 58 ]; 59 60 + preFixup = '' 61 + libcosmicAppWrapperArgs+=( 62 + --set-default X11_BASE_RULES_XML ${xkeyboard_config}/share/X11/xkb/rules/base.xml 63 + --set-default X11_EXTRA_RULES_XML ${xkeyboard_config}/share/X11/xkb/rules/base.extras.xml 64 + ) 65 + ''; 66 67 + passthru.updateScript = nix-update-script { 68 + extraArgs = [ 69 + "--version" 70 + "unstable" 71 + "--version-regex" 72 + "epoch-(.*)" 73 + ]; 74 + }; 75 + 76 + meta = { 77 homepage = "https://github.com/pop-os/cosmic-applets"; 78 description = "Applets for the COSMIC Desktop Environment"; 79 + license = lib.licenses.gpl3Only; 80 + maintainers = with lib.maintainers; [ 81 qyliss 82 nyabinary 83 + HeitorAugustoLN 84 ]; 85 + platforms = lib.platforms.linux; 86 }; 87 + })
+21 -10
pkgs/by-name/co/cosmic-protocols/package.nix
··· 1 { 2 lib, 3 - fetchFromGitHub, 4 stdenv, 5 wayland-scanner, 6 }: 7 8 stdenv.mkDerivation { 9 pname = "cosmic-protocols"; 10 - version = "0-unstable-2024-07-31"; 11 12 src = fetchFromGitHub { 13 owner = "pop-os"; 14 repo = "cosmic-protocols"; 15 - rev = "de2fead49d6af3a221db153642e4d7c2235aafc4"; 16 - hash = "sha256-qgo8FMKo/uCbhUjfykRRN8KSavbyhZpu82M8npLcIPI="; 17 }; 18 19 makeFlags = [ "PREFIX=${placeholder "out"}" ]; 20 nativeBuildInputs = [ wayland-scanner ]; 21 22 - meta = with lib; { 23 homepage = "https://github.com/pop-os/cosmic-protocols"; 24 description = "Additional wayland-protocols used by the COSMIC desktop environment"; 25 - license = [ 26 - licenses.mit 27 - licenses.gpl3Only 28 ]; 29 - maintainers = with maintainers; [ nyabinary ]; 30 - platforms = platforms.linux; 31 }; 32 }
··· 1 { 2 lib, 3 stdenv, 4 + fetchFromGitHub, 5 wayland-scanner, 6 + nix-update-script, 7 }: 8 9 stdenv.mkDerivation { 10 pname = "cosmic-protocols"; 11 + version = "0-unstable-2025-03-05"; 12 13 src = fetchFromGitHub { 14 owner = "pop-os"; 15 repo = "cosmic-protocols"; 16 + rev = "6b05c2a157118979cb472a38455ba78ca9729196"; 17 + hash = "sha256-ozyReur1jjMl8fDUrdWbgcKedf+RDH5xCRsmEcnPQ9U="; 18 }; 19 20 makeFlags = [ "PREFIX=${placeholder "out"}" ]; 21 nativeBuildInputs = [ wayland-scanner ]; 22 23 + passthru.updateScript = nix-update-script { 24 + extraArgs = [ 25 + "--version" 26 + "branch=HEAD" 27 + ]; 28 + }; 29 + 30 + meta = { 31 homepage = "https://github.com/pop-os/cosmic-protocols"; 32 description = "Additional wayland-protocols used by the COSMIC desktop environment"; 33 + license = with lib.licenses; [ 34 + mit 35 + gpl3Only 36 + ]; 37 + maintainers = with lib.maintainers; [ 38 + nyabinary 39 + HeitorAugustoLN 40 ]; 41 + platforms = lib.platforms.linux; 42 }; 43 }
+34 -30
pkgs/by-name/co/cosmic-workspaces-epoch/package.nix
··· 1 { 2 lib, 3 rustPlatform, 4 fetchFromGitHub, 5 pkg-config, 6 - libxkbcommon, 7 libinput, 8 - libglvnd, 9 libgbm, 10 udev, 11 - wayland, 12 }: 13 14 - rustPlatform.buildRustPackage rec { 15 pname = "cosmic-workspaces-epoch"; 16 - version = "1.0.0-alpha.5.1"; 17 18 src = fetchFromGitHub { 19 owner = "pop-os"; 20 repo = "cosmic-workspaces-epoch"; 21 - rev = "epoch-${version}"; 22 - hash = "sha256-lAK7DZWwNMr30u6Uopew9O/6FIG6e2SgcdA+cD/K5Ok="; 23 }; 24 25 useFetchCargoVendor = true; 26 - cargoHash = "sha256-w1lQdzy2mJ5NfqngvOLqFCxyhWgvIySDDXCCtCCtTjg="; 27 28 separateDebugInfo = true; 29 30 - nativeBuildInputs = [ pkg-config ]; 31 buildInputs = [ 32 - libxkbcommon 33 libinput 34 - libglvnd 35 libgbm 36 udev 37 - wayland 38 ]; 39 40 - postInstall = '' 41 - mkdir -p $out/share/{applications,icons/hicolor/scalable/apps} 42 - cp data/*.desktop $out/share/applications/ 43 - cp data/*.svg $out/share/icons/hicolor/scalable/apps/ 44 - ''; 45 46 - # Force linking to libEGL, which is always dlopen()ed, and to 47 - # libwayland-client, which is always dlopen()ed except by the 48 - # obscure winit backend. 49 - RUSTFLAGS = map (a: "-C link-arg=${a}") [ 50 - "-Wl,--push-state,--no-as-needed" 51 - "-lEGL" 52 - "-lwayland-client" 53 - "-Wl,--pop-state" 54 ]; 55 56 - meta = with lib; { 57 homepage = "https://github.com/pop-os/cosmic-workspaces-epoch"; 58 description = "Workspaces Epoch for the COSMIC Desktop Environment"; 59 mainProgram = "cosmic-workspaces"; 60 - license = licenses.gpl3Only; 61 - maintainers = with maintainers; [ nyabinary ]; 62 - platforms = platforms.linux; 63 }; 64 - }
··· 1 { 2 lib, 3 + stdenv, 4 rustPlatform, 5 fetchFromGitHub, 6 + libcosmicAppHook, 7 pkg-config, 8 libinput, 9 libgbm, 10 udev, 11 + nix-update-script, 12 }: 13 14 + rustPlatform.buildRustPackage (finalAttrs: { 15 pname = "cosmic-workspaces-epoch"; 16 + version = "1.0.0-alpha.6"; 17 18 src = fetchFromGitHub { 19 owner = "pop-os"; 20 repo = "cosmic-workspaces-epoch"; 21 + tag = "epoch-${finalAttrs.version}"; 22 + hash = "sha256-3jivE0EaSddPxMYn9DDaYUMafPf60XeCwVeQegbt++c="; 23 }; 24 25 useFetchCargoVendor = true; 26 + cargoHash = "sha256-l5y9bOG/h24EfiAFfVKjtzYCzjxU2TI8wh6HBUwoVcE="; 27 28 separateDebugInfo = true; 29 30 + nativeBuildInputs = [ 31 + pkg-config 32 + libcosmicAppHook 33 + ]; 34 + 35 buildInputs = [ 36 libinput 37 libgbm 38 udev 39 ]; 40 41 + dontCargoInstall = true; 42 43 + makeFlags = [ 44 + "prefix=${placeholder "out"}" 45 + "CARGO_TARGET_DIR=target/${stdenv.hostPlatform.rust.cargoShortTarget}" 46 ]; 47 48 + passthru.updateScript = nix-update-script { 49 + extraArgs = [ 50 + "--version" 51 + "unstable" 52 + "--version-regex" 53 + "epoch-(.*)" 54 + ]; 55 + }; 56 + 57 + meta = { 58 homepage = "https://github.com/pop-os/cosmic-workspaces-epoch"; 59 description = "Workspaces Epoch for the COSMIC Desktop Environment"; 60 mainProgram = "cosmic-workspaces"; 61 + license = lib.licenses.gpl3Only; 62 + maintainers = with lib.maintainers; [ 63 + nyabinary 64 + HeitorAugustoLN 65 + ]; 66 + platforms = lib.platforms.linux; 67 }; 68 + })
+2 -2
pkgs/by-name/dx/dxvk_2/package.nix
··· 37 in 38 stdenv.mkDerivation (finalAttrs: { 39 pname = "dxvk"; 40 - version = "2.5.3"; 41 42 src = fetchFromGitHub { 43 owner = "doitsujin"; 44 repo = "dxvk"; 45 rev = "v${finalAttrs.version}"; 46 - hash = "sha256-/dXU5x+YdOHF2mpUy5wykibShQuIfo3OHS4DzXUymIs="; 47 fetchSubmodules = true; # Needed for the DirectX headers and libdisplay-info 48 }; 49
··· 37 in 38 stdenv.mkDerivation (finalAttrs: { 39 pname = "dxvk"; 40 + version = "2.6"; 41 42 src = fetchFromGitHub { 43 owner = "doitsujin"; 44 repo = "dxvk"; 45 rev = "v${finalAttrs.version}"; 46 + hash = "sha256-1/9XFqVGW5izlP3rggfB+PK3ewFiOQoGcB/Vjn9MYOQ="; 47 fetchSubmodules = true; # Needed for the DirectX headers and libdisplay-info 48 }; 49
+3 -3
pkgs/by-name/en/ente-web/package.nix
··· 12 13 stdenv.mkDerivation (finalAttrs: { 14 pname = "ente-web"; 15 - version = "0.9.98"; 16 17 src = fetchFromGitHub { 18 owner = "ente-io"; ··· 20 sparseCheckout = [ "web" ]; 21 tag = "photos-v${finalAttrs.version}"; 22 fetchSubmodules = true; 23 - hash = "sha256-JEVz02FfPRhTolZMXOSmYzvLJTm0ImCuf912MAk2EmM="; 24 }; 25 sourceRoot = "${finalAttrs.src.name}/web"; 26 27 offlineCache = fetchYarnDeps { 28 yarnLock = "${finalAttrs.src}/web/yarn.lock"; 29 - hash = "sha256-GIgvHfQc9qz06267lfiDo/WQhxBgS7vMCocMf6PWCHc="; 30 }; 31 32 nativeBuildInputs = [
··· 12 13 stdenv.mkDerivation (finalAttrs: { 14 pname = "ente-web"; 15 + version = "0.9.99"; 16 17 src = fetchFromGitHub { 18 owner = "ente-io"; ··· 20 sparseCheckout = [ "web" ]; 21 tag = "photos-v${finalAttrs.version}"; 22 fetchSubmodules = true; 23 + hash = "sha256-/dWnaVll/kaKHTJ5gH18BR6JG5E6pF7/j+SgvE66b7M="; 24 }; 25 sourceRoot = "${finalAttrs.src.name}/web"; 26 27 offlineCache = fetchYarnDeps { 28 yarnLock = "${finalAttrs.src}/web/yarn.lock"; 29 + hash = "sha256-Wu0/YHqkqzrmA5hpVk0CX/W1wJUh8uZSjABuc+DPxMA="; 30 }; 31 32 nativeBuildInputs = [
+2 -2
pkgs/by-name/ex/exploitdb/package.nix
··· 7 8 stdenv.mkDerivation rec { 9 pname = "exploitdb"; 10 - version = "2025-03-20"; 11 12 src = fetchFromGitLab { 13 owner = "exploit-database"; 14 repo = "exploitdb"; 15 rev = "refs/tags/${version}"; 16 - hash = "sha256-fOzUtl+V029SXky0LzGFJ6yh6Nx5nv9wel5eiaE3l/k="; 17 }; 18 19 nativeBuildInputs = [ makeWrapper ];
··· 7 8 stdenv.mkDerivation rec { 9 pname = "exploitdb"; 10 + version = "2025-03-22"; 11 12 src = fetchFromGitLab { 13 owner = "exploit-database"; 14 repo = "exploitdb"; 15 rev = "refs/tags/${version}"; 16 + hash = "sha256-Ce7mKyJbf0T620wQCX2IVmgdqT7QXq/y2t1HwpSAhF4="; 17 }; 18 19 nativeBuildInputs = [ makeWrapper ];
+2 -2
pkgs/by-name/fe/feedbackd/package.nix
··· 34 in 35 stdenv.mkDerivation (finalAttrs: { 36 pname = "feedbackd"; 37 - version = "0.7.0"; 38 39 outputs = [ 40 "out" ··· 47 owner = "Librem5"; 48 repo = "feedbackd"; 49 rev = "v${finalAttrs.version}"; 50 - hash = "sha256-qwyq1v+20Gotpk0CbUe6MdDJ5bmKmTHOen+rxWljjeA="; 51 }; 52 53 depsBuildBuild = [
··· 34 in 35 stdenv.mkDerivation (finalAttrs: { 36 pname = "feedbackd"; 37 + version = "0.8.0"; 38 39 outputs = [ 40 "out" ··· 47 owner = "Librem5"; 48 repo = "feedbackd"; 49 rev = "v${finalAttrs.version}"; 50 + hash = "sha256-Hn850+bRSNDe8ZgDRu52N7AR/yLNbV6zGROBYtetOZg="; 51 }; 52 53 depsBuildBuild = [
+2 -2
pkgs/by-name/ff/fflogs/package.nix
··· 6 7 let 8 pname = "fflogs"; 9 - version = "8.16.11"; 10 src = fetchurl { 11 url = "https://github.com/RPGLogs/Uploaders-fflogs/releases/download/v${version}/fflogs-v${version}.AppImage"; 12 - hash = "sha256-a+d9rLGJZCjrNH+Q7Vi2W26kh5xZJWMRGqB4Heg7qZE="; 13 }; 14 extracted = appimageTools.extractType2 { inherit pname version src; }; 15 in
··· 6 7 let 8 pname = "fflogs"; 9 + version = "8.16.19"; 10 src = fetchurl { 11 url = "https://github.com/RPGLogs/Uploaders-fflogs/releases/download/v${version}/fflogs-v${version}.AppImage"; 12 + hash = "sha256-qP/WpW1AYKrB0Cx/LpUlV1gw06mcFutxfGJybsAw1EQ="; 13 }; 14 extracted = appimageTools.extractType2 { inherit pname version src; }; 15 in
+2 -2
pkgs/by-name/fl/fluent-bit/package.nix
··· 28 29 stdenv.mkDerivation (finalAttrs: { 30 pname = "fluent-bit"; 31 - version = "3.2.8"; 32 33 src = fetchFromGitHub { 34 owner = "fluent"; 35 repo = "fluent-bit"; 36 tag = "v${finalAttrs.version}"; 37 - hash = "sha256-E+y8lZ5fgJORFkig6aSVMYGk0US1b4xwjO9qnGu4R/Y="; 38 }; 39 40 # The source build documentation covers some dependencies and CMake options.
··· 28 29 stdenv.mkDerivation (finalAttrs: { 30 pname = "fluent-bit"; 31 + version = "3.2.9"; 32 33 src = fetchFromGitHub { 34 owner = "fluent"; 35 repo = "fluent-bit"; 36 tag = "v${finalAttrs.version}"; 37 + hash = "sha256-10L+w9SLfblE9Ok9lvZdU1i63NRtw/pT5ePk+zJwvHQ="; 38 }; 39 40 # The source build documentation covers some dependencies and CMake options.
+5 -5
pkgs/by-name/gi/git-spice/package.nix
··· 1 { 2 lib, 3 stdenv, 4 - buildGo123Module, 5 fetchFromGitHub, 6 git, 7 nix-update-script, 8 installShellFiles, 9 }: 10 11 - buildGo123Module rec { 12 pname = "git-spice"; 13 - version = "0.10.0"; 14 15 src = fetchFromGitHub { 16 owner = "abhinav"; 17 repo = "git-spice"; 18 tag = "v${version}"; 19 - hash = "sha256-1EWuKjvDeOV6W+nntdevUI/SO68ssYgoxJ5QIy5jkFM="; 20 }; 21 22 - vendorHash = "sha256-F9CyhUtdkwvEsmQ+T5zt2n+TBRhVgyr2CEOvIzcXpug="; 23 24 subPackages = [ "." ]; 25
··· 1 { 2 lib, 3 stdenv, 4 + buildGo124Module, 5 fetchFromGitHub, 6 git, 7 nix-update-script, 8 installShellFiles, 9 }: 10 11 + buildGo124Module rec { 12 pname = "git-spice"; 13 + version = "0.12.0"; 14 15 src = fetchFromGitHub { 16 owner = "abhinav"; 17 repo = "git-spice"; 18 tag = "v${version}"; 19 + hash = "sha256-ew0ehaYXJgc1ePdQCxxfahBdTs5zsiHDfB4SdS2WZ8A="; 20 }; 21 22 + vendorHash = "sha256-jlCNcjACtms9kI4Lo8AtUfxqODyv4U2nJITGpBNxk9I="; 23 24 subPackages = [ "." ]; 25
+4 -4
pkgs/by-name/go/gol/package.nix
··· 8 9 maven.buildMavenPackage rec { 10 pname = "gol"; 11 - version = "0.2.0"; 12 13 src = fetchFromGitHub { 14 owner = "clarisma"; 15 repo = "gol-tool"; 16 - rev = version; 17 - hash = "sha256-F/tMRD+nWn/fRPX7cTan371zlOTxh7oR98wREmokULo="; 18 }; 19 20 - mvnHash = "sha256-6EX+y7/lGdB5LgW9MIER+KgvtPjvMCDjgq89f1g2GlY="; 21 mvnParameters = "compile assembly:single -Dmaven.test.skip=true"; 22 23 nativeBuildInputs = [ makeWrapper ];
··· 8 9 maven.buildMavenPackage rec { 10 pname = "gol"; 11 + version = "0.2.1"; 12 13 src = fetchFromGitHub { 14 owner = "clarisma"; 15 repo = "gol-tool"; 16 + tag = version; 17 + hash = "sha256-jAkBFrtdVsK67n8Oo+/MGPL/JKRsu/6tbqy711exlwo="; 18 }; 19 20 + mvnHash = "sha256-GCyTk/Lmh41qpCeex/qrN7cgPoNCsmmOKeBYllbtTZk"; 21 mvnParameters = "compile assembly:single -Dmaven.test.skip=true"; 22 23 nativeBuildInputs = [ makeWrapper ];
+89
pkgs/by-name/ho/homepage-dashboard/prerender_cache_path.patch
···
··· 1 + diff --git c/package.json i/package.json 2 + index 44fc1b35..4164abf3 100644 3 + --- c/package.json 4 + +++ i/package.json 5 + @@ -62,5 +62,10 @@ 6 + }, 7 + "optionalDependencies": { 8 + "osx-temperature-sensor": "^1.0.8" 9 + + }, 10 + + "pnpm": { 11 + + "patchedDependencies": { 12 + + "next": "patches/next.patch" 13 + + } 14 + } 15 + } 16 + diff --git c/patches/next.patch i/patches/next.patch 17 + new file mode 100644 18 + index 00000000..6280dbfa 19 + --- /dev/null 20 + +++ i/patches/next.patch 21 + @@ -0,0 +1,13 @@ 22 + +diff --git a/dist/server/lib/incremental-cache/file-system-cache.js b/dist/server/lib/incremental-cache/file-system-cache.js 23 + +index ac711f168d85032d43cfa2b6872655d571596a7b..ee1f79868d38ae623b0599e8cc3b9e03697833e5 100644 24 + +--- a/dist/server/lib/incremental-cache/file-system-cache.js 25 + ++++ b/dist/server/lib/incremental-cache/file-system-cache.js 26 + +@@ -23,7 +23,7 @@ class FileSystemCache { 27 + + constructor(ctx){ 28 + + this.fs = ctx.fs; 29 + + this.flushToDisk = ctx.flushToDisk; 30 + +- this.serverDistDir = ctx.serverDistDir; 31 + ++ this.serverDistDir = require("path").join((process.env.NIXPKGS_HOMEPAGE_CACHE_DIR || "/var/cache/homepage-dashboard"), "homepage"); 32 + + this.revalidatedTags = ctx.revalidatedTags; 33 + + this.debug = !!process.env.NEXT_PRIVATE_DEBUG_CACHE; 34 + + if (ctx.maxMemoryCacheSize) { 35 + diff --git c/pnpm-lock.yaml i/pnpm-lock.yaml 36 + index 6b5c5910..84712cd2 100644 37 + --- c/pnpm-lock.yaml 38 + +++ i/pnpm-lock.yaml 39 + @@ -4,6 +4,11 @@ settings: 40 + autoInstallPeers: true 41 + excludeLinksFromLockfile: false 42 + 43 + +patchedDependencies: 44 + + next: 45 + + hash: 2cf73b70a6661c14b83ebd01d193260f13fcc654e74e5658ffc191f538863a49 46 + + path: patches/next.patch 47 + + 48 + importers: 49 + 50 + .: 51 + @@ -52,10 +57,10 @@ importers: 52 + version: 1.2.2 53 + next: 54 + specifier: ^15.1.7 55 + - version: 15.1.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 56 + + version: 15.1.7(patch_hash=2cf73b70a6661c14b83ebd01d193260f13fcc654e74e5658ffc191f538863a49)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 57 + next-i18next: 58 + specifier: ^12.1.0 59 + - version: 12.1.0(next@15.1.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 60 + + version: 12.1.0(next@15.1.7(patch_hash=2cf73b70a6661c14b83ebd01d193260f13fcc654e74e5658ffc191f538863a49)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 61 + ping: 62 + specifier: ^0.4.4 63 + version: 0.4.4 64 + @@ -4688,7 +4693,7 @@ snapshots: 65 + 66 + natural-compare@1.4.0: {} 67 + 68 + - next-i18next@12.1.0(next@15.1.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1): 69 + + next-i18next@12.1.0(next@15.1.7(patch_hash=2cf73b70a6661c14b83ebd01d193260f13fcc654e74e5658ffc191f538863a49)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1): 70 + dependencies: 71 + '@babel/runtime': 7.26.9 72 + '@types/hoist-non-react-statics': 3.3.6 73 + @@ -4696,14 +4701,14 @@ snapshots: 74 + hoist-non-react-statics: 3.3.2 75 + i18next: 21.10.0 76 + i18next-fs-backend: 1.2.0 77 + - next: 15.1.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 78 + + next: 15.1.7(patch_hash=2cf73b70a6661c14b83ebd01d193260f13fcc654e74e5658ffc191f538863a49)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 79 + react: 18.3.1 80 + react-i18next: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 81 + transitivePeerDependencies: 82 + - react-dom 83 + - react-native 84 + 85 + - next@15.1.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1): 86 + + next@15.1.7(patch_hash=2cf73b70a6661c14b83ebd01d193260f13fcc654e74e5658ffc191f538863a49)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): 87 + dependencies: 88 + '@next/env': 15.1.7 89 + '@swc/counter': 0.1.3
+66
pkgs/by-name/ho/homepage-dashboard/update.sh
···
··· 1 + #!/usr/bin/env nix-shell 2 + #!nix-shell -I nixpkgs=./. -i bash -p curl jq git pnpm_10 sd 3 + # shellcheck shell=bash 4 + set -euo pipefail 5 + nixpkgs="$(pwd)" 6 + cd $(readlink -e $(dirname "${BASH_SOURCE[0]}")) 7 + 8 + # Generate the patch file that makes homepage-dashboard aware of the NIXPKGS_HOMEPAGE_CACHE_DIR environment variable. 9 + # Generating the patch this way ensures that both the patch is included, and the lock file is updated. 10 + generate_patch() { 11 + local version; version="$1" 12 + echo "Generating homepage-dashboard patch" 13 + 14 + git clone -b "v$version" https://github.com/gethomepage/homepage.git src 15 + pushd src 16 + 17 + pnpm install 18 + pnpm patch next 19 + sd \ 20 + 'this.serverDistDir = ctx.serverDistDir;' \ 21 + 'this.serverDistDir = require("path").join((process.env.NIXPKGS_HOMEPAGE_CACHE_DIR || "/var/cache/homepage-dashboard"), "homepage");' \ 22 + node_modules/.pnpm_patches/next*/dist/server/lib/incremental-cache/file-system-cache.js 23 + pnpm patch-commit node_modules/.pnpm_patches/next* 24 + 25 + git add -A . 26 + git diff -p --staged > ../prerender_cache_path.patch 27 + 28 + popd 29 + rm -rf src 30 + } 31 + 32 + # Update the hash of the homepage-dashboard source code in the Nix expression. 33 + update_homepage_dashboard_source() { 34 + local version; version="$1" 35 + echo "Updating homepage-dashboard source" 36 + 37 + old_hash="$(nix eval --json --impure --expr "(import $nixpkgs/default.nix {}).homepage-dashboard.src.outputHash" | jq -r)" 38 + old_version="$(nix eval --json --impure --expr "(import $nixpkgs/default.nix {}).homepage-dashboard.version" | jq -r)" 39 + new_hash="$(nix-build --impure --expr "let src = (import $nixpkgs/default.nix {}).homepage-dashboard.src; in (src.overrideAttrs or (f: src // f src)) (_: { version = \"$version\"; outputHash = \"\"; outputHashAlgo = \"sha256\"; })" 2>&1 | tr -s ' ' | grep -Po "got: \K.+$")" || true 40 + 41 + sed -i "s|${old_hash}|${new_hash}|g" package.nix 42 + sed -i "s|${old_version}|${version}|g" package.nix 43 + } 44 + 45 + # Update the hash of the homepage-dashboard pnpm dependencies in the Nix expression. 46 + update_pnpm_deps_hash() { 47 + echo "Updating homepage-dashboard pnpm deps hash" 48 + 49 + old_hash="$(nix eval --json --impure --expr "(import $nixpkgs/default.nix {}).homepage-dashboard.pnpmDeps.outputHash" | jq -r)" 50 + new_hash="$(nix-build --impure --expr "let src = (import $nixpkgs/default.nix {}).homepage-dashboard.pnpmDeps; in (src.overrideAttrs or (f: src // f src)) (_: { outputHash = \"\"; outputHashAlgo = \"sha256\"; })" 2>&1 | tr -s ' ' | grep -Po "got: \K.+$")" || true 51 + 52 + sed -i "s|${old_hash}|${new_hash}|g" package.nix 53 + } 54 + 55 + LATEST_TAG="$(curl -s ${GITHUB_TOKEN:+-u ":$GITHUB_TOKEN"} https://api.github.com/repos/gethomepage/homepage/releases/latest | jq -r '.tag_name')" 56 + LATEST_VERSION="$(expr "$LATEST_TAG" : 'v\(.*\)')" 57 + CURRENT_VERSION="$(nix eval --json --impure --expr "(import $nixpkgs/default.nix {}).homepage-dashboard.version" | jq -r)" 58 + 59 + if [[ "$CURRENT_VERSION" == "$LATEST_VERSION" ]]; then 60 + echo "homepage-dashboard is up to date: ${CURRENT_VERSION}" 61 + exit 0 62 + fi 63 + 64 + update_homepage_dashboard_source "$LATEST_VERSION" 65 + generate_patch "$LATEST_VERSION" 66 + update_pnpm_deps_hash
+3 -3
pkgs/by-name/hy/hydra-check/package.nix
··· 11 12 rustPlatform.buildRustPackage rec { 13 pname = "hydra-check"; 14 - version = "2.0.3"; 15 16 src = fetchFromGitHub { 17 owner = "nix-community"; 18 repo = "hydra-check"; 19 tag = "v${version}"; 20 - hash = "sha256-h8bs6oe8zkzEDCoC9F6IzTaTkNf4eAAjt663V0qn73I="; 21 }; 22 23 useFetchCargoVendor = true; 24 - cargoHash = "sha256-aV4URx9bGAOLWRh/kFDU67GiXk7RdCqfahG+fZPfdUo="; 25 26 nativeBuildInputs = [ 27 pkg-config
··· 11 12 rustPlatform.buildRustPackage rec { 13 pname = "hydra-check"; 14 + version = "2.0.4"; 15 16 src = fetchFromGitHub { 17 owner = "nix-community"; 18 repo = "hydra-check"; 19 tag = "v${version}"; 20 + hash = "sha256-TdMZC/EE52UiJ+gYQZHV4/ReRzMOdCGH+n7pg1vpCCQ="; 21 }; 22 23 useFetchCargoVendor = true; 24 + cargoHash = "sha256-G9M+1OWp2jlDeSDFagH/YOCdxGQbcru1KFyKEUcMe7g="; 25 26 nativeBuildInputs = [ 27 pkg-config
+2 -1
pkgs/by-name/ka/kanidm/patches/1_3/recover-account.patch
··· 19 20 #[instrument( 21 level = "info", 22 - skip(self, eventid), 23 fields(uuid = ?eventid) 24 )] 25 pub(crate) async fn handle_admin_recover_account(
··· 19 20 #[instrument( 21 level = "info", 22 + - skip(self, eventid), 23 + + skip(self, password, eventid), 24 fields(uuid = ?eventid) 25 )] 26 pub(crate) async fn handle_admin_recover_account(
+2 -1
pkgs/by-name/ka/kanidm/patches/1_4/recover-account.patch
··· 19 20 #[instrument( 21 level = "info", 22 - skip(self, eventid), 23 fields(uuid = ?eventid) 24 )] 25 pub(crate) async fn handle_admin_recover_account(
··· 19 20 #[instrument( 21 level = "info", 22 + - skip(self, eventid), 23 + + skip(self, password, eventid), 24 fields(uuid = ?eventid) 25 )] 26 pub(crate) async fn handle_admin_recover_account(
+2 -1
pkgs/by-name/ka/kanidm/patches/1_5/recover-account.patch
··· 19 20 #[instrument( 21 level = "info", 22 - skip(self, eventid), 23 fields(uuid = ?eventid) 24 )] 25 pub(crate) async fn handle_admin_recover_account(
··· 19 20 #[instrument( 21 level = "info", 22 + - skip(self, eventid), 23 + + skip(self, password, eventid), 24 fields(uuid = ?eventid) 25 )] 26 pub(crate) async fn handle_admin_recover_account(
+3 -3
pkgs/by-name/mu/museum/package.nix
··· 9 10 buildGoModule rec { 11 pname = "museum"; 12 - version = "0.9.98"; 13 14 src = fetchFromGitHub { 15 owner = "ente-io"; 16 repo = "ente"; 17 sparseCheckout = [ "server" ]; 18 rev = "photos-v${version}"; 19 - hash = "sha256-yC0bt7TUO4agvkWtd7Q0DuPlgFngQynSKaCZ4eaBWdE="; 20 }; 21 22 - vendorHash = "sha256-loq/YPf+oMWJ6FgtZsgJqkUQhCG8wL7F3kDblKbrc/c="; 23 24 sourceRoot = "${src.name}/server"; 25
··· 9 10 buildGoModule rec { 11 pname = "museum"; 12 + version = "0.9.99"; 13 14 src = fetchFromGitHub { 15 owner = "ente-io"; 16 repo = "ente"; 17 sparseCheckout = [ "server" ]; 18 rev = "photos-v${version}"; 19 + hash = "sha256-+EL81zSOjoBfew8LRl0awWXgc2r8KDBBCYBBtDU1s5g="; 20 }; 21 22 + vendorHash = "sha256-px4pMqeH73Fe06va4+n6hklIUDMbPmAQNKKRIhwv6ec="; 23 24 sourceRoot = "${src.name}/server"; 25
+7 -7
pkgs/by-name/nn/nnn/package.nix
··· 28 29 stdenv.mkDerivation (finalAttrs: { 30 pname = "nnn"; 31 - version = "5.0"; 32 33 src = fetchFromGitHub { 34 owner = "jarun"; 35 repo = "nnn"; 36 - rev = "v${finalAttrs.version}"; 37 - hash = "sha256-HShHSjqD0zeE1/St1Y2dUeHfac6HQnPFfjmFvSuEXUA="; 38 }; 39 40 patches = [ ··· 93 wrapProgram $out/bin/nnn --prefix PATH : "$binPath" 94 ''; 95 96 - meta = with lib; { 97 description = "Small ncurses-based file browser forked from noice"; 98 homepage = "https://github.com/jarun/nnn"; 99 changelog = "https://github.com/jarun/nnn/blob/v${finalAttrs.version}/CHANGELOG"; 100 - license = licenses.bsd2; 101 - platforms = platforms.all; 102 - maintainers = with maintainers; [ Br1ght0ne ]; 103 mainProgram = "nnn"; 104 }; 105 })
··· 28 29 stdenv.mkDerivation (finalAttrs: { 30 pname = "nnn"; 31 + version = "5.1"; 32 33 src = fetchFromGitHub { 34 owner = "jarun"; 35 repo = "nnn"; 36 + tag = "v${finalAttrs.version}"; 37 + hash = "sha256-+2lFFBtaqRPBkEspCFtKl9fllbSR5MBB+4ks3Xh7vp4="; 38 }; 39 40 patches = [ ··· 93 wrapProgram $out/bin/nnn --prefix PATH : "$binPath" 94 ''; 95 96 + meta = { 97 description = "Small ncurses-based file browser forked from noice"; 98 homepage = "https://github.com/jarun/nnn"; 99 changelog = "https://github.com/jarun/nnn/blob/v${finalAttrs.version}/CHANGELOG"; 100 + license = lib.licenses.bsd2; 101 + platforms = lib.platforms.all; 102 + maintainers = with lib.maintainers; [ Br1ght0ne ]; 103 mainProgram = "nnn"; 104 }; 105 })
+9 -6
pkgs/by-name/np/npins/package.nix
··· 1 { 2 lib, 3 rustPlatform, 4 makeWrapper, 5 stdenv, 6 darwin, 7 - callPackage, 8 9 # runtime dependencies 10 nix, # for nix-prefetch-url ··· 18 nix-prefetch-git 19 git 20 ]; 21 - sources = (lib.importJSON ./sources.json).pins; 22 in 23 rustPlatform.buildRustPackage rec { 24 pname = "npins"; 25 - version = src.version; 26 - src = passthru.mkSource sources.npins; 27 28 useFetchCargoVendor = true; 29 cargoHash = "sha256-HnX7dkWLxa3DARXG8y9OVBRwvwgxwRIs4mWK3VNblG0="; ··· 51 license = licenses.eupl12; 52 maintainers = with maintainers; [ piegames ]; 53 }; 54 - 55 - passthru.mkSource = callPackage ./source.nix { }; 56 }
··· 1 { 2 lib, 3 rustPlatform, 4 + fetchFromGitHub, 5 makeWrapper, 6 stdenv, 7 darwin, 8 9 # runtime dependencies 10 nix, # for nix-prefetch-url ··· 18 nix-prefetch-git 19 git 20 ]; 21 in 22 rustPlatform.buildRustPackage rec { 23 pname = "npins"; 24 + version = "0.3.0"; 25 + 26 + src = fetchFromGitHub { 27 + owner = "andir"; 28 + repo = "npins"; 29 + tag = version; 30 + sha256 = "sha256-nTm6IqCHNFQLU7WR7dJRP7ktBctpE/O2LHbUV25roJA="; 31 + }; 32 33 useFetchCargoVendor = true; 34 cargoHash = "sha256-HnX7dkWLxa3DARXG8y9OVBRwvwgxwRIs4mWK3VNblG0="; ··· 56 license = licenses.eupl12; 57 maintainers = with maintainers; [ piegames ]; 58 }; 59 }
-76
pkgs/by-name/np/npins/source.nix
··· 1 - # Not part of the public API – for use within nixpkgs only 2 - # 3 - # Usage: 4 - # ```nix 5 - # let 6 - # sources = lib.importJSON ./sources.json; 7 - # in mkMyDerivation rec { 8 - # version = src.version; # This obviously only works for releases 9 - # src = pkgs.npins.mkSource sources.mySource; 10 - # } 11 - # ``` 12 - 13 - { 14 - fetchgit, 15 - fetchzip, 16 - fetchurl, 17 - }: 18 - let 19 - mkSource = 20 - spec: 21 - assert spec ? type; 22 - let 23 - path = 24 - if spec.type == "Git" then 25 - mkGitSource spec 26 - else if spec.type == "GitRelease" then 27 - mkGitSource spec 28 - else if spec.type == "PyPi" then 29 - mkPyPiSource spec 30 - else if spec.type == "Channel" then 31 - mkChannelSource spec 32 - else 33 - throw "Unknown source type ${spec.type}"; 34 - in 35 - spec // { outPath = path; }; 36 - 37 - mkGitSource = 38 - { 39 - repository, 40 - revision, 41 - url ? null, 42 - hash, 43 - ... 44 - }: 45 - assert repository ? type; 46 - # At the moment, either it is a plain git repository (which has an url), or it is a GitHub/GitLab repository 47 - # In the latter case, there we will always be an url to the tarball 48 - if url != null then 49 - (fetchzip { 50 - inherit url; 51 - sha256 = hash; 52 - extension = "tar"; 53 - }) 54 - else 55 - assert repository.type == "Git"; 56 - fetchgit { 57 - url = repository.url; 58 - rev = revision; 59 - }; 60 - 61 - mkPyPiSource = 62 - { url, hash, ... }: 63 - fetchurl { 64 - inherit url; 65 - sha256 = hash; 66 - }; 67 - 68 - mkChannelSource = 69 - { url, hash, ... }: 70 - fetchzip { 71 - inherit url; 72 - sha256 = hash; 73 - extension = "tar"; 74 - }; 75 - in 76 - mkSource
···
-21
pkgs/by-name/np/npins/sources.json
··· 1 - { 2 - "pins": { 3 - "npins": { 4 - "type": "GitRelease", 5 - "repository": { 6 - "type": "GitHub", 7 - "owner": "andir", 8 - "repo": "npins" 9 - }, 10 - "pre_releases": false, 11 - "version_upper_bound": null, 12 - "release_prefix": null, 13 - "submodules": false, 14 - "version": "0.3.0", 15 - "revision": "6cc1930e703698487bd703258126435a536ca492", 16 - "url": "https://api.github.com/repos/andir/npins/tarball/0.3.0", 17 - "hash": "1450ddp5gm3n5jvg64v9rc2jvf9za79fv4dmac5m8d47l0iblfcx" 18 - } 19 - }, 20 - "version": 5 21 - }
···
+7 -2
pkgs/by-name/op/openlibm/package.nix
··· 2 lib, 3 stdenv, 4 fetchFromGitHub, 5 }: 6 7 stdenv.mkDerivation rec { 8 pname = "openlibm"; 9 - version = "0.8.5"; 10 11 src = fetchFromGitHub { 12 owner = "JuliaLang"; 13 repo = "openlibm"; 14 rev = "v${version}"; 15 - sha256 = "sha256-z2PMovHk9M4Wb5K4EWOrp0b+3RLRHDVUKDzIxHsKrXg="; 16 }; 17 18 makeFlags = [ 19 "prefix=$(out)"
··· 2 lib, 3 stdenv, 4 fetchFromGitHub, 5 + fixDarwinDylibNames, 6 }: 7 8 stdenv.mkDerivation rec { 9 pname = "openlibm"; 10 + version = "0.8.6"; 11 12 src = fetchFromGitHub { 13 owner = "JuliaLang"; 14 repo = "openlibm"; 15 rev = "v${version}"; 16 + sha256 = "sha256-HFSRrTdIhbbSyeU/FSo5e2ZI5tff2ZDEFgYcI412ATU="; 17 }; 18 + 19 + nativeBuildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ 20 + fixDarwinDylibNames 21 + ]; 22 23 makeFlags = [ 24 "prefix=$(out)"
+42
pkgs/by-name/pi/piday25/package.nix
···
··· 1 + { 2 + lib, 3 + rustPlatform, 4 + fetchFromGitHub, 5 + nix-update-script, 6 + }: 7 + 8 + rustPlatform.buildRustPackage { 9 + pname = "piday25"; 10 + version = "0-unstable-2025-03-13"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "elkasztano"; 14 + repo = "piday25"; 15 + rev = "68b417a3016c58a2948cb3b39c9bde985d82bdb8"; 16 + hash = "sha256-58ZBRmB990Tp+/nkuRZA+8cjCRFUBzdzu93Sk5uvKOE="; 17 + }; 18 + 19 + useFetchCargoVendor = true; 20 + cargoHash = "sha256-3uztB5/VevFyEz3S+VlAUPgDrNDJcwaTnHuXXYAX+MY="; 21 + 22 + # upstream does not have any tests 23 + doInstallCheck = true; 24 + installCheckPhase = '' 25 + runHook preInstallCheck 26 + 27 + $out/bin/piday25 > result 28 + diff -U3 --color=auto <(head -c12 result) <(echo -n 3.1415926535) 29 + 30 + runHook postInstallCheck 31 + ''; 32 + 33 + passthru.updateScript = nix-update-script { extraArgs = [ "--version=branch=main" ]; }; 34 + 35 + meta = { 36 + description = "Multithreaded implementation of the Chudnovsky algorithm to calculate Pi"; 37 + homepage = "https://github.com/elkasztano/piday25"; 38 + license = lib.licenses.mit; 39 + maintainers = with lib.maintainers; [ defelo ]; 40 + mainProgram = "piday25"; 41 + }; 42 + }
+6 -5
pkgs/by-name/ru/ruff/package.nix
··· 17 18 rustPlatform.buildRustPackage (finalAttrs: { 19 pname = "ruff"; 20 - version = "0.11.1"; 21 22 src = fetchFromGitHub { 23 owner = "astral-sh"; 24 repo = "ruff"; 25 tag = finalAttrs.version; 26 - hash = "sha256-uouy47Lzrrht3wBUiQePW7x6QJfpIce9ny/p6HNwCNY="; 27 }; 28 29 useFetchCargoVendor = true; 30 - cargoHash = "sha256-EaMNkliJmeKwxrnlK+aCFGvzbvVIjS0qHc9h9z9m47I="; 31 32 nativeBuildInputs = [ installShellFiles ]; 33 ··· 35 rust-jemalloc-sys 36 ]; 37 38 - postInstall = 39 let 40 emulator = stdenv.hostPlatform.emulator buildPackages; 41 in ··· 44 --bash <(${emulator} $out/bin/ruff generate-shell-completion bash) \ 45 --fish <(${emulator} $out/bin/ruff generate-shell-completion fish) \ 46 --zsh <(${emulator} $out/bin/ruff generate-shell-completion zsh) 47 - ''; 48 49 # Run cargo tests 50 checkType = "debug";
··· 17 18 rustPlatform.buildRustPackage (finalAttrs: { 19 pname = "ruff"; 20 + version = "0.11.2"; 21 22 src = fetchFromGitHub { 23 owner = "astral-sh"; 24 repo = "ruff"; 25 tag = finalAttrs.version; 26 + hash = "sha256-/K6+zze5d0RAE7/Nalnmx9qKHI1rPDeh3OkTatgP5Q4="; 27 }; 28 29 useFetchCargoVendor = true; 30 + cargoHash = "sha256-uDuR7GF3918V6ssx4p64pOzCRlLl2vJR0FEBSUnlFQ8="; 31 32 nativeBuildInputs = [ installShellFiles ]; 33 ··· 35 rust-jemalloc-sys 36 ]; 37 38 + postInstall = lib.optionalString (stdenv.hostPlatform.emulatorAvailable buildPackages) ( 39 let 40 emulator = stdenv.hostPlatform.emulator buildPackages; 41 in ··· 44 --bash <(${emulator} $out/bin/ruff generate-shell-completion bash) \ 45 --fish <(${emulator} $out/bin/ruff generate-shell-completion fish) \ 46 --zsh <(${emulator} $out/bin/ruff generate-shell-completion zsh) 47 + '' 48 + ); 49 50 # Run cargo tests 51 checkType = "debug";
+6 -5
pkgs/by-name/ti/tinymist/package.nix
··· 18 pname = "tinymist"; 19 # Please update the corresponding vscode extension when updating 20 # this derivation. 21 - version = "0.13.8"; 22 23 src = fetchFromGitHub { 24 owner = "Myriad-Dreamin"; 25 repo = "tinymist"; 26 tag = "v${finalAttrs.version}"; 27 - hash = "sha256-dKLHZyFkTo6iCw/s73asJqXoNBpYx7UC/r2qVp5dLjs="; 28 }; 29 30 useFetchCargoVendor = true; 31 - cargoHash = "sha256-XbPqddmVv5zubnbT5IewAcvPJWQMIumWgGI+q/r1Ip4="; 32 33 nativeBuildInputs = [ 34 installShellFiles ··· 65 "--skip=semantic_tokens_full::tests::test" 66 ]; 67 68 - postInstall = 69 let 70 emulator = stdenv.hostPlatform.emulator buildPackages; 71 in ··· 74 --bash <(${emulator} $out/bin/tinymist completion bash) \ 75 --fish <(${emulator} $out/bin/tinymist completion fish) \ 76 --zsh <(${emulator} $out/bin/tinymist completion zsh) 77 - ''; 78 79 nativeInstallCheckInputs = [ 80 versionCheckHook
··· 18 pname = "tinymist"; 19 # Please update the corresponding vscode extension when updating 20 # this derivation. 21 + version = "0.13.10"; 22 23 src = fetchFromGitHub { 24 owner = "Myriad-Dreamin"; 25 repo = "tinymist"; 26 tag = "v${finalAttrs.version}"; 27 + hash = "sha256-/mlocw9AYoaR3meGYbSJ/qCrusxIIC3Gtmz+doXTDXI="; 28 }; 29 30 useFetchCargoVendor = true; 31 + cargoHash = "sha256-L1Krw6dbH3M1SU1ei4GYEJVMkuv2OOk2QrAJpoSHeP4="; 32 33 nativeBuildInputs = [ 34 installShellFiles ··· 65 "--skip=semantic_tokens_full::tests::test" 66 ]; 67 68 + postInstall = lib.optionalString (stdenv.hostPlatform.emulatorAvailable buildPackages) ( 69 let 70 emulator = stdenv.hostPlatform.emulator buildPackages; 71 in ··· 74 --bash <(${emulator} $out/bin/tinymist completion bash) \ 75 --fish <(${emulator} $out/bin/tinymist completion fish) \ 76 --zsh <(${emulator} $out/bin/tinymist completion zsh) 77 + '' 78 + ); 79 80 nativeInstallCheckInputs = [ 81 versionCheckHook
+5 -5
pkgs/by-name/wh/whisparr/package.nix
··· 29 ."${system}" or (throw "Unsupported system: ${system}"); 30 hash = 31 { 32 - arm64-linux-hash = "sha256-CRZp8nUs35uM5VFhinR0IQcf/t624kIRvxuXuJ0eaE4="; 33 - arm64-osx-hash = "sha256-nrJxQg0Qzp1cJZttpX+e2CwsniXeDV7ow8JvJX0gi4c="; 34 - x64-linux-hash = "sha256-m3KyHPe+A3iO4MosFNeTYPWzyzXTFRU/0in+Tvxnamw="; 35 - x64-osx-hash = "sha256-zvx3PTcTvIT2l32AheY8SN419ewUdmhyQ1O9GgVs2zI="; 36 } 37 ."${arch}-${os}-hash"; 38 in 39 stdenv.mkDerivation rec { 40 pname = "whisparr"; 41 - version = "2.0.0.819"; 42 43 src = fetchurl { 44 name = "${pname}-${arch}-${os}-${version}.tar.gz";
··· 29 ."${system}" or (throw "Unsupported system: ${system}"); 30 hash = 31 { 32 + arm64-linux-hash = "sha256-GQSDButJqPmWbxhDIYqIZxhL2Bn4IpFP8Vinv6OsI9Q="; 33 + arm64-osx-hash = "sha256-6e2Pqb/V02I+9ZTxR2er+zMLEBE4ZnJcwkVEgqO04eU="; 34 + x64-linux-hash = "sha256-KZ24XPz1WwL4dK1wFT7x6jH2WU3NgFYLiSx2QfmstkA="; 35 + x64-osx-hash = "sha256-p749/sc7aAzuvwwlCOx+pNh4J7DIJIZlvsFRa/mIlMk="; 36 } 37 ."${arch}-${os}-hash"; 38 in 39 stdenv.mkDerivation rec { 40 pname = "whisparr"; 41 + version = "2.0.0.891"; 42 43 src = fetchurl { 44 name = "${pname}-${arch}-${os}-${version}.tar.gz";
+1
pkgs/by-name/wl/wlock/package.nix
··· 50 homepage = "https://codeberg.org/sewn/wlock"; 51 platforms = lib.platforms.linux; 52 maintainers = with lib.maintainers; [ fliegendewurst ]; 53 }; 54 }
··· 50 homepage = "https://codeberg.org/sewn/wlock"; 51 platforms = lib.platforms.linux; 52 maintainers = with lib.maintainers; [ fliegendewurst ]; 53 + mainProgram = "wlock"; 54 }; 55 }
+8 -6
pkgs/by-name/xx/xxh/package.nix
··· 5 openssh, 6 nixosTests, 7 }: 8 - 9 python3.pkgs.buildPythonApplication rec { 10 pname = "xxh"; 11 - version = "0.8.12"; 12 - format = "setuptools"; 13 - 14 disabled = python3.pkgs.pythonOlder "3.6"; 15 16 src = fetchFromGitHub { 17 owner = pname; 18 repo = pname; 19 tag = version; 20 - hash = "sha256-3/AU2o72X7FE11NSXC6m9fFhmjzEDZ+OpTXg8yvv62A="; 21 }; 22 23 - propagatedBuildInputs = [ 24 python3.pkgs.pexpect 25 python3.pkgs.pyyaml 26 openssh
··· 5 openssh, 6 nixosTests, 7 }: 8 python3.pkgs.buildPythonApplication rec { 9 pname = "xxh"; 10 + version = "0.8.14"; 11 + pyproject = true; 12 disabled = python3.pkgs.pythonOlder "3.6"; 13 14 src = fetchFromGitHub { 15 owner = pname; 16 repo = pname; 17 tag = version; 18 + hash = "sha256-Y1yTn0lZemQgWsW9wlW+aNndyTXGo46PCbCl0TGYspQ="; 19 }; 20 21 + build-system = [ 22 + python3.pkgs.setuptools 23 + ]; 24 + 25 + dependencies = [ 26 python3.pkgs.pexpect 27 python3.pkgs.pyyaml 28 openssh
+2 -2
pkgs/by-name/yu/yubikey-manager/package.nix
··· 9 10 python3Packages.buildPythonPackage rec { 11 pname = "yubikey-manager"; 12 - version = "5.5.1"; 13 pyproject = true; 14 15 src = fetchFromGitHub { 16 owner = "Yubico"; 17 repo = "yubikey-manager"; 18 rev = version; 19 - hash = "sha256-m/B5G83XZROoCNq/ZT0U0MUth2IC99e3LWc8FcOq1ig="; 20 }; 21 22 postPatch = ''
··· 9 10 python3Packages.buildPythonPackage rec { 11 pname = "yubikey-manager"; 12 + version = "5.6.1"; 13 pyproject = true; 14 15 src = fetchFromGitHub { 16 owner = "Yubico"; 17 repo = "yubikey-manager"; 18 rev = version; 19 + hash = "sha256-qEEAByg6Smn1Wk8U4VA6MIJDLWBtM+S+qTDIcgPUGA0="; 20 }; 21 22 postPatch = ''
+10
pkgs/desktops/mate/mate-sensors-applet/default.nix
··· 2 lib, 3 stdenv, 4 fetchurl, 5 pkg-config, 6 gettext, 7 itstool, ··· 24 url = "https://pub.mate-desktop.org/releases/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 25 sha256 = "1GU2ZoKvj+uGGCg8l4notw22/RfKj6lQrG9xAQIxWoE="; 26 }; 27 28 nativeBuildInputs = [ 29 pkg-config
··· 2 lib, 3 stdenv, 4 fetchurl, 5 + fetchpatch, 6 pkg-config, 7 gettext, 8 itstool, ··· 25 url = "https://pub.mate-desktop.org/releases/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; 26 sha256 = "1GU2ZoKvj+uGGCg8l4notw22/RfKj6lQrG9xAQIxWoE="; 27 }; 28 + 29 + patches = [ 30 + # Fix an invalid pointer crash with glib 2.83.2 31 + # https://github.com/mate-desktop/mate-sensors-applet/pull/137 32 + (fetchpatch { 33 + url = "https://github.com/mate-desktop/mate-sensors-applet/commit/9b74dc16d852a40d37f7ce6c236406959fd013e5.patch"; 34 + hash = "sha256-PjMc2uEFMljaiKOM5lf6MsdWztZkMfb2Vuxs9tgdaos="; 35 + }) 36 + ]; 37 38 nativeBuildInputs = [ 39 pkg-config
+2 -2
pkgs/development/compilers/reason/default.nix
··· 5 6 buildDunePackage rec { 7 pname = "reason"; 8 - version = "3.14.0"; 9 10 minimalOCamlVersion = "4.11"; 11 12 src = fetchurl { 13 url = "https://github.com/reasonml/reason/releases/download/${version}/reason-${version}.tbz"; 14 - hash = "sha256-HQm6JKBZR0Wrazi01fgerYVltzy2mtRq8cLCb40yTwA="; 15 }; 16 17 nativeBuildInputs = [
··· 5 6 buildDunePackage rec { 7 pname = "reason"; 8 + version = "3.15.0"; 9 10 minimalOCamlVersion = "4.11"; 11 12 src = fetchurl { 13 url = "https://github.com/reasonml/reason/releases/download/${version}/reason-${version}.tbz"; 14 + hash = "sha256-7D0gJfQ5Hw0riNIFPmJ6haoa3dnFEyDp5yxpDgX7ZqY="; 15 }; 16 17 nativeBuildInputs = [
+2 -2
pkgs/development/ocaml-modules/lem/default.nix
··· 16 stdenv.mkDerivation 17 rec { 18 pname = "ocaml${ocaml.version}-lem"; 19 - version = "2022-12-10"; 20 21 src = fetchFromGitHub { 22 owner = "rems-project"; 23 repo = "lem"; 24 rev = version; 25 - hash = "sha256-ZQgcuIVRkJS0KtpzjbO4OPHGg6B0TadWA6XpRir30y8="; 26 }; 27 28 nativeBuildInputs = [
··· 16 stdenv.mkDerivation 17 rec { 18 pname = "ocaml${ocaml.version}-lem"; 19 + version = "2025-03-13"; 20 21 src = fetchFromGitHub { 22 owner = "rems-project"; 23 repo = "lem"; 24 rev = version; 25 + hash = "sha256-ZV2OiFonMlNzqtsumMQ8jzY9/ATaZxiNHZ7JzOfGluY="; 26 }; 27 28 nativeBuildInputs = [
+2 -2
pkgs/development/ocaml-modules/mrmime/default.nix
··· 26 27 buildDunePackage rec { 28 pname = "mrmime"; 29 - version = "0.6.1"; 30 31 src = fetchurl { 32 url = "https://github.com/mirage/mrmime/releases/download/v${version}/mrmime-${version}.tbz"; 33 - hash = "sha256-Dzsr7xPzu5RIzIdubF4OAAjHJY7CdBVnHRZxQbcCsBY="; 34 }; 35 36 propagatedBuildInputs = [
··· 26 27 buildDunePackage rec { 28 pname = "mrmime"; 29 + version = "0.7.0"; 30 31 src = fetchurl { 32 url = "https://github.com/mirage/mrmime/releases/download/v${version}/mrmime-${version}.tbz"; 33 + hash = "sha256-w23xtro9WgyLLwqdwfqLMN/ZDqwpvFcEvurbsqnsJLc="; 34 }; 35 36 propagatedBuildInputs = [
+2 -2
pkgs/development/ocaml-modules/reactivedata/default.nix
··· 7 8 buildDunePackage rec { 9 pname = "reactiveData"; 10 - version = "0.3"; 11 duneVersion = "3"; 12 minimalOCamlVersion = "4.08"; 13 ··· 15 owner = "ocsigen"; 16 repo = "reactiveData"; 17 rev = version; 18 - sha256 = "sha256-imUphE1vMe3bYqHhgTuGT+B7uLn75acX6fAwBLh1tz4="; 19 }; 20 21 propagatedBuildInputs = [ react ];
··· 7 8 buildDunePackage rec { 9 pname = "reactiveData"; 10 + version = "0.3.1"; 11 duneVersion = "3"; 12 minimalOCamlVersion = "4.08"; 13 ··· 15 owner = "ocsigen"; 16 repo = "reactiveData"; 17 rev = version; 18 + sha256 = "sha256-MO9WMe1k2QcC5RynE6uZHohmu3QlpTHvAkvQNgu3P90="; 19 }; 20 21 propagatedBuildInputs = [ react ];
+2 -2
pkgs/development/ocaml-modules/sqlite3/default.nix
··· 9 10 buildDunePackage rec { 11 pname = "sqlite3"; 12 - version = "5.3.0"; 13 duneVersion = "3"; 14 minimalOCamlVersion = "4.12"; 15 16 src = fetchurl { 17 url = "https://github.com/mmottl/sqlite3-ocaml/releases/download/${version}/sqlite3-${version}.tbz"; 18 - hash = "sha256-+XuR3ovI5soNXMNgTxYcEbx26lV+3i7q8XaKCI6ueAo="; 19 }; 20 21 nativeBuildInputs = [ pkg-config ];
··· 9 10 buildDunePackage rec { 11 pname = "sqlite3"; 12 + version = "5.3.1"; 13 duneVersion = "3"; 14 minimalOCamlVersion = "4.12"; 15 16 src = fetchurl { 17 url = "https://github.com/mmottl/sqlite3-ocaml/releases/download/${version}/sqlite3-${version}.tbz"; 18 + hash = "sha256-Ox8eZS4r6PbJh8nei52ftUyf25SKwIUMi5UEv4L+6mE="; 19 }; 20 21 nativeBuildInputs = [ pkg-config ];
+2 -2
pkgs/development/ocaml-modules/uuidm/default.nix
··· 7 ocamlbuild, 8 topkg, 9 cmdliner, 10 - version ? if lib.versionAtLeast ocaml.version "4.14" then "0.9.9" else "0.9.8", 11 }: 12 13 lib.throwIfNot (lib.versionAtLeast ocaml.version "4.08") ··· 21 url = "https://erratique.ch/software/uuidm/releases/uuidm-${version}.tbz"; 22 hash = 23 { 24 - "0.9.9" = "sha256-jOgNF05dpoU/XQEefSZhn3zSlQ1BA1b/U4Ib9j2mvFo="; 25 "0.9.8" = "sha256-/GZbkJVDQu1UY8SliK282kUWAVMfOnpQadUlRT/tJrM="; 26 } 27 ."${version}";
··· 7 ocamlbuild, 8 topkg, 9 cmdliner, 10 + version ? if lib.versionAtLeast ocaml.version "4.14" then "0.9.10" else "0.9.8", 11 }: 12 13 lib.throwIfNot (lib.versionAtLeast ocaml.version "4.08") ··· 21 url = "https://erratique.ch/software/uuidm/releases/uuidm-${version}.tbz"; 22 hash = 23 { 24 + "0.9.10" = "sha256-kWVZSofWMyky5nAuxoh1xNhwMKZ2qUahL3Dh27J36Vc="; 25 "0.9.8" = "sha256-/GZbkJVDQu1UY8SliK282kUWAVMfOnpQadUlRT/tJrM="; 26 } 27 ."${version}";
+2 -2
pkgs/development/ocaml-modules/webbrowser/default.nix
··· 14 15 stdenv.mkDerivation rec { 16 pname = "ocaml${ocaml.version}-webbrowser"; 17 - version = "0.6.1"; 18 src = fetchurl { 19 url = "https://erratique.ch/software/webbrowser/releases/webbrowser-${version}.tbz"; 20 - sha256 = "137a948bx7b71zfv4za3hhznrn5lzbbrgzjy0das83zms508isx3"; 21 }; 22 23 nativeBuildInputs = [
··· 14 15 stdenv.mkDerivation rec { 16 pname = "ocaml${ocaml.version}-webbrowser"; 17 + version = "0.6.2"; 18 src = fetchurl { 19 url = "https://erratique.ch/software/webbrowser/releases/webbrowser-${version}.tbz"; 20 + sha256 = "sha256-4SYAf1Qo7aUiCp5587wO1VvjcQHP3NBXeFfAaHE/s+A="; 21 }; 22 23 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/authlib/default.nix
··· 20 21 buildPythonPackage rec { 22 pname = "authlib"; 23 - version = "1.5.0"; 24 pyproject = true; 25 26 disabled = pythonOlder "3.8"; ··· 29 owner = "lepture"; 30 repo = "authlib"; 31 tag = "v${version}"; 32 - hash = "sha256-RrsQTrOV2v3SzdM7kqdFe1Uj7A+o/Yseq1j7CCG8qtg="; 33 }; 34 35 build-system = [ setuptools ];
··· 20 21 buildPythonPackage rec { 22 pname = "authlib"; 23 + version = "1.5.1"; 24 pyproject = true; 25 26 disabled = pythonOlder "3.8"; ··· 29 owner = "lepture"; 30 repo = "authlib"; 31 tag = "v${version}"; 32 + hash = "sha256-VMihaWqR4FbnTJ50fVf5e5B9GfVwRguq5UAC+D4bpxs="; 33 }; 34 35 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/azure-storage-file-share/default.nix
··· 12 13 buildPythonPackage rec { 14 pname = "azure-storage-file-share"; 15 - version = "12.20.1"; 16 pyproject = true; 17 18 disabled = pythonOlder "3.8"; ··· 20 src = fetchPypi { 21 pname = "azure_storage_file_share"; 22 inherit version; 23 - hash = "sha256-bIn0xLyjYlW8tyuoVwXvzCysrvuTGhTnvm3n2410fFA="; 24 }; 25 26 build-system = [ setuptools ];
··· 12 13 buildPythonPackage rec { 14 pname = "azure-storage-file-share"; 15 + version = "12.21.0"; 16 pyproject = true; 17 18 disabled = pythonOlder "3.8"; ··· 20 src = fetchPypi { 21 pname = "azure_storage_file_share"; 22 inherit version; 23 + hash = "sha256-20K/a0OzwMJ8kVIgKVUnffwmpZ9/rSbAWEMaaumVgM4="; 24 }; 25 26 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/craft-grammar/default.nix
··· 12 13 buildPythonPackage rec { 14 pname = "craft-grammar"; 15 - version = "2.0.2"; 16 17 pyproject = true; 18 ··· 20 owner = "canonical"; 21 repo = "craft-grammar"; 22 tag = version; 23 - hash = "sha256-i6dy0YNCsYIW9Uw9RcnTrOXMY6Sgwftrg27WE3tskoA="; 24 }; 25 26 build-system = [ setuptools-scm ];
··· 12 13 buildPythonPackage rec { 14 pname = "craft-grammar"; 15 + version = "2.0.3"; 16 17 pyproject = true; 18 ··· 20 owner = "canonical"; 21 repo = "craft-grammar"; 22 tag = version; 23 + hash = "sha256-d7U4AAUikYcz26ZSXQwkTobSKN1PpaL20enfggHSKRM="; 24 }; 25 26 build-system = [ setuptools-scm ];
+2 -2
pkgs/development/python-modules/fsspec-xrootd/default.nix
··· 19 20 buildPythonPackage rec { 21 pname = "fsspec-xrootd"; 22 - version = "0.5.0"; 23 pyproject = true; 24 25 src = fetchFromGitHub { 26 owner = "CoffeaTeam"; 27 repo = "fsspec-xrootd"; 28 tag = "v${version}"; 29 - hash = "sha256-7UUE0NtGSMmqKwD0UHvD5JFBVmajunRxDP39wjs4gUs="; 30 }; 31 32 build-system = [
··· 19 20 buildPythonPackage rec { 21 pname = "fsspec-xrootd"; 22 + version = "0.5.1"; 23 pyproject = true; 24 25 src = fetchFromGitHub { 26 owner = "CoffeaTeam"; 27 repo = "fsspec-xrootd"; 28 tag = "v${version}"; 29 + hash = "sha256-Vpe/Gcm6rmehG05h2H7BDZcBQDyie0Ww9X8LgoTgAkE="; 30 }; 31 32 build-system = [
+4 -4
pkgs/development/python-modules/google-cloud-access-context-manager/default.nix
··· 10 11 buildPythonPackage rec { 12 pname = "google-cloud-access-context-manager"; 13 - version = "0.2.1"; 14 pyproject = true; 15 16 disabled = pythonOlder "3.7"; ··· 18 src = fetchPypi { 19 pname = "google_cloud_access_context_manager"; 20 inherit version; 21 - hash = "sha256-O/rGqO4ub5UQWo7s9OGJCxp5Y3AuuMZV/s8CVX00joo="; 22 }; 23 24 build-system = [ setuptools ]; ··· 35 36 meta = with lib; { 37 description = "Protobufs for Google Access Context Manager"; 38 - homepage = "https://github.com/googleapis/python-access-context-manager"; 39 - changelog = "https://github.com/googleapis/python-access-context-manager/blob/v${version}/CHANGELOG.md"; 40 license = licenses.asl20; 41 maintainers = with maintainers; [ austinbutler ]; 42 };
··· 10 11 buildPythonPackage rec { 12 pname = "google-cloud-access-context-manager"; 13 + version = "0.2.2"; 14 pyproject = true; 15 16 disabled = pythonOlder "3.7"; ··· 18 src = fetchPypi { 19 pname = "google_cloud_access_context_manager"; 20 inherit version; 21 + hash = "sha256-8n+GCH+t4V32gBfHaeG5MNVZCIpTWPBwIg36l5Ss4x0="; 22 }; 23 24 build-system = [ setuptools ]; ··· 35 36 meta = with lib; { 37 description = "Protobufs for Google Access Context Manager"; 38 + homepage = "https://github.com/googleapis/google-cloud-python/tree/main/packages/google-cloud-access-context-manager"; 39 + changelog = "https://github.com/googleapis/google-cloud-python/blob/google-cloud-access-context-manager-v${version}/packages/google-cloud-access-context-manager/CHANGELOG.md"; 40 license = licenses.asl20; 41 maintainers = with maintainers; [ austinbutler ]; 42 };
+2 -2
pkgs/development/python-modules/google-cloud-asset/default.nix
··· 20 21 buildPythonPackage rec { 22 pname = "google-cloud-asset"; 23 - version = "3.29.1"; 24 pyproject = true; 25 26 disabled = pythonOlder "3.7"; ··· 28 src = fetchPypi { 29 pname = "google_cloud_asset"; 30 inherit version; 31 - hash = "sha256-GdHmAYBXLVgwdSGq5KyqScCxA+cvnpszPcZEId2uCLg="; 32 }; 33 34 build-system = [ setuptools ];
··· 20 21 buildPythonPackage rec { 22 pname = "google-cloud-asset"; 23 + version = "3.29.2"; 24 pyproject = true; 25 26 disabled = pythonOlder "3.7"; ··· 28 src = fetchPypi { 29 pname = "google_cloud_asset"; 30 inherit version; 31 + hash = "sha256-fFmpPUeKgniruevGhXnJLhzwM4ymO4ERjD8BQ0/HBbs="; 32 }; 33 34 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/google-cloud-automl/default.nix
··· 18 19 buildPythonPackage rec { 20 pname = "google-cloud-automl"; 21 - version = "2.16.2"; 22 pyproject = true; 23 24 disabled = pythonOlder "3.7"; ··· 26 src = fetchPypi { 27 pname = "google_cloud_automl"; 28 inherit version; 29 - hash = "sha256-1GSv/T3Jex2zxsK3510LOoduK+a87I6MrawIknuSvbg="; 30 }; 31 32 build-system = [ setuptools ];
··· 18 19 buildPythonPackage rec { 20 pname = "google-cloud-automl"; 21 + version = "2.16.3"; 22 pyproject = true; 23 24 disabled = pythonOlder "3.7"; ··· 26 src = fetchPypi { 27 pname = "google_cloud_automl"; 28 inherit version; 29 + hash = "sha256-b10WLvYAjZPKBGUal4b63rRJfUqKJL9n3ztVOVFK3y8="; 30 }; 31 32 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/google-cloud-bigquery-datatransfer/default.nix
··· 16 17 buildPythonPackage rec { 18 pname = "google-cloud-bigquery-datatransfer"; 19 - version = "3.19.0"; 20 pyproject = true; 21 22 disabled = pythonOlder "3.7"; ··· 24 src = fetchPypi { 25 pname = "google_cloud_bigquery_datatransfer"; 26 inherit version; 27 - hash = "sha256-qQ330hnnZyC4X+QvlrSF+Z/FGCsaETzP47CgzAHHS+0="; 28 }; 29 30 build-system = [ setuptools ];
··· 16 17 buildPythonPackage rec { 18 pname = "google-cloud-bigquery-datatransfer"; 19 + version = "3.19.1"; 20 pyproject = true; 21 22 disabled = pythonOlder "3.7"; ··· 24 src = fetchPypi { 25 pname = "google_cloud_bigquery_datatransfer"; 26 inherit version; 27 + hash = "sha256-L7em/I7t7htI5zdGwSKDs35b2t/pvIXl1lUSMM6BdRo="; 28 }; 29 30 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/google-cloud-compute/default.nix
··· 14 15 buildPythonPackage rec { 16 pname = "google-cloud-compute"; 17 - version = "1.26.0"; 18 pyproject = true; 19 20 disabled = pythonOlder "3.7"; ··· 22 src = fetchPypi { 23 pname = "google_cloud_compute"; 24 inherit version; 25 - hash = "sha256-ZbbHkQYKyDy4Uy+TNr1+FFiwahVZY7ViubROM+zNMDA="; 26 }; 27 28 build-system = [ setuptools ];
··· 14 15 buildPythonPackage rec { 16 pname = "google-cloud-compute"; 17 + version = "1.28.0"; 18 pyproject = true; 19 20 disabled = pythonOlder "3.7"; ··· 22 src = fetchPypi { 23 pname = "google_cloud_compute"; 24 inherit version; 25 + hash = "sha256-0Mc4DDTLvHzERiPDCqpn2lXUz4KeoE5gVz3va8hJ1Hg="; 26 }; 27 28 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/google-cloud-container/default.nix
··· 15 16 buildPythonPackage rec { 17 pname = "google-cloud-container"; 18 - version = "2.56.0"; 19 pyproject = true; 20 21 disabled = pythonOlder "3.7"; ··· 23 src = fetchPypi { 24 pname = "google_cloud_container"; 25 inherit version; 26 - hash = "sha256-BD2e/4aDhyY5Cs95YZwAO1sJK7t+s9VCYwbpsrlQDg8="; 27 }; 28 29 build-system = [ setuptools ];
··· 15 16 buildPythonPackage rec { 17 pname = "google-cloud-container"; 18 + version = "2.56.1"; 19 pyproject = true; 20 21 disabled = pythonOlder "3.7"; ··· 23 src = fetchPypi { 24 pname = "google_cloud_container"; 25 inherit version; 26 + hash = "sha256-QADuXKwndJvGDEWTftNIGRX7vwmJJdkoUjcC1w8vT6E="; 27 }; 28 29 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/google-cloud-datacatalog/default.nix
··· 16 17 buildPythonPackage rec { 18 pname = "google-cloud-datacatalog"; 19 - version = "3.25.1"; 20 pyproject = true; 21 22 disabled = pythonOlder "3.7"; ··· 24 src = fetchPypi { 25 pname = "google_cloud_datacatalog"; 26 inherit version; 27 - hash = "sha256-LkCi+bzCywtmtEK/aypVeunA6/FC7tDHLVzriPhYdE0="; 28 }; 29 30 build-system = [ setuptools ];
··· 16 17 buildPythonPackage rec { 18 pname = "google-cloud-datacatalog"; 19 + version = "3.26.0"; 20 pyproject = true; 21 22 disabled = pythonOlder "3.7"; ··· 24 src = fetchPypi { 25 pname = "google_cloud_datacatalog"; 26 inherit version; 27 + hash = "sha256-rE3KvGuBi4YIwxLiICX5b1AO93NAWL6IpapNW5a/FVY="; 28 }; 29 30 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/google-cloud-language/default.nix
··· 13 14 buildPythonPackage rec { 15 pname = "google-cloud-language"; 16 - version = "2.17.0"; 17 pyproject = true; 18 19 disabled = pythonOlder "3.7"; ··· 21 src = fetchPypi { 22 pname = "google_cloud_language"; 23 inherit version; 24 - hash = "sha256-jOIWh7py71jOWHB67egWQlj53rR3kfJJzCqdT4yQdhs="; 25 }; 26 27 build-system = [ setuptools ];
··· 13 14 buildPythonPackage rec { 15 pname = "google-cloud-language"; 16 + version = "2.17.1"; 17 pyproject = true; 18 19 disabled = pythonOlder "3.7"; ··· 21 src = fetchPypi { 22 pname = "google_cloud_language"; 23 inherit version; 24 + hash = "sha256-vtaZaZXaIaJwl+XvOG9wEB6xw5beDdtNabhzbB91NXw="; 25 }; 26 27 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/google-cloud-monitoring/default.nix
··· 16 17 buildPythonPackage rec { 18 pname = "google-cloud-monitoring"; 19 - version = "2.27.0"; 20 pyproject = true; 21 22 disabled = pythonOlder "3.7"; ··· 24 src = fetchPypi { 25 pname = "google_cloud_monitoring"; 26 inherit version; 27 - hash = "sha256-9mVSUogS57ap8vt+C3w+eQTMDBNQT0/LQgNXIrXaK8Q="; 28 }; 29 30 build-system = [ setuptools ];
··· 16 17 buildPythonPackage rec { 18 pname = "google-cloud-monitoring"; 19 + version = "2.27.1"; 20 pyproject = true; 21 22 disabled = pythonOlder "3.7"; ··· 24 src = fetchPypi { 25 pname = "google_cloud_monitoring"; 26 inherit version; 27 + hash = "sha256-9HAJAKZYzWybf3FLsp0Af6zvDPDWKNAHVpnDpzvOilU="; 28 }; 29 30 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/google-cloud-netapp/default.nix
··· 15 16 buildPythonPackage rec { 17 pname = "google-cloud-netapp"; 18 - version = "0.3.19"; 19 pyproject = true; 20 21 disabled = pythonOlder "3.8"; ··· 23 src = fetchPypi { 24 pname = "google_cloud_netapp"; 25 inherit version; 26 - hash = "sha256-88A1HJbm3ngNWXS+kJ/nmX5ctwZBqAe9VckC5AMmWuU="; 27 }; 28 29 build-system = [ setuptools ];
··· 15 16 buildPythonPackage rec { 17 pname = "google-cloud-netapp"; 18 + version = "0.3.20"; 19 pyproject = true; 20 21 disabled = pythonOlder "3.8"; ··· 23 src = fetchPypi { 24 pname = "google_cloud_netapp"; 25 inherit version; 26 + hash = "sha256-ZPJMw+fOPcKrRpwoZYPSBCUpuejJsDSXLqvbhNvMWfA="; 27 }; 28 29 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/google-cloud-org-policy/default.nix
··· 13 14 buildPythonPackage rec { 15 pname = "google-cloud-org-policy"; 16 - version = "1.13.0"; 17 pyproject = true; 18 19 disabled = pythonOlder "3.7"; ··· 21 src = fetchPypi { 22 pname = "google_cloud_org_policy"; 23 inherit version; 24 - hash = "sha256-ajFHKQI6fD/X/gYrasb1qwZNbOzrFyJg8mUaxa9CeM4="; 25 }; 26 27 build-system = [ setuptools ];
··· 13 14 buildPythonPackage rec { 15 pname = "google-cloud-org-policy"; 16 + version = "1.13.1"; 17 pyproject = true; 18 19 disabled = pythonOlder "3.7"; ··· 21 src = fetchPypi { 22 pname = "google_cloud_org_policy"; 23 inherit version; 24 + hash = "sha256-2yPr1sgmxMnQwk6Z1T9i2MFPeAxjb40r4IqNoAd7WZk="; 25 }; 26 27 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/google-cloud-os-config/default.nix
··· 13 14 buildPythonPackage rec { 15 pname = "google-cloud-os-config"; 16 - version = "1.20.0"; 17 pyproject = true; 18 19 disabled = pythonOlder "3.7"; ··· 21 src = fetchPypi { 22 pname = "google_cloud_os_config"; 23 inherit version; 24 - hash = "sha256-GczIpzo161rJ+TxU9LB9wcvtLXfopSRofeO9UyS4tMQ="; 25 }; 26 27 build-system = [ setuptools ];
··· 13 14 buildPythonPackage rec { 15 pname = "google-cloud-os-config"; 16 + version = "1.20.1"; 17 pyproject = true; 18 19 disabled = pythonOlder "3.7"; ··· 21 src = fetchPypi { 22 pname = "google_cloud_os_config"; 23 inherit version; 24 + hash = "sha256-15sKmKW9y3/JU7rTLRZJXYqxWdWvqIFmIqpXKo2tE8Q="; 25 }; 26 27 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/google-cloud-redis/default.nix
··· 13 14 buildPythonPackage rec { 15 pname = "google-cloud-redis"; 16 - version = "2.18.0"; 17 pyproject = true; 18 19 disabled = pythonOlder "3.7"; ··· 21 src = fetchPypi { 22 pname = "google_cloud_redis"; 23 inherit version; 24 - hash = "sha256-vszvtwbVxWXNmaz+6yy3XxNop7x/f42Wtg4CuOwFToo="; 25 }; 26 27 build-system = [ setuptools ];
··· 13 14 buildPythonPackage rec { 15 pname = "google-cloud-redis"; 16 + version = "2.18.1"; 17 pyproject = true; 18 19 disabled = pythonOlder "3.7"; ··· 21 src = fetchPypi { 22 pname = "google_cloud_redis"; 23 inherit version; 24 + hash = "sha256-o64V2KL/Gmeg2LOXR3XCsGypf4Tz8zyHYoIiGR7+rJw="; 25 }; 26 27 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/google-cloud-resource-manager/default.nix
··· 15 16 buildPythonPackage rec { 17 pname = "google-cloud-resource-manager"; 18 - version = "1.14.1"; 19 pyproject = true; 20 21 disabled = pythonOlder "3.7"; ··· 23 src = fetchPypi { 24 pname = "google_cloud_resource_manager"; 25 inherit version; 26 - hash = "sha256-QenlRqqgPVFgzfojQdvoHvdZZwbDAKiblMQp8fNBH4c="; 27 }; 28 29 build-system = [ setuptools ];
··· 15 16 buildPythonPackage rec { 17 pname = "google-cloud-resource-manager"; 18 + version = "1.14.2"; 19 pyproject = true; 20 21 disabled = pythonOlder "3.7"; ··· 23 src = fetchPypi { 24 pname = "google_cloud_resource_manager"; 25 inherit version; 26 + hash = "sha256-li4tkExVDXusSDcmB5BP97syd+O7SjbYDMmjfijm63Q="; 27 }; 28 29 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/google-cloud-secret-manager/default.nix
··· 14 15 buildPythonPackage rec { 16 pname = "google-cloud-secret-manager"; 17 - version = "2.23.1"; 18 pyproject = true; 19 20 disabled = pythonOlder "3.7"; ··· 22 src = fetchPypi { 23 pname = "google_cloud_secret_manager"; 24 inherit version; 25 - hash = "sha256-TXee1WZrXEpOJOUvgIsuFZtg/Gjtex8jDKSRkYYyoRQ="; 26 }; 27 28 build-system = [ setuptools ];
··· 14 15 buildPythonPackage rec { 16 pname = "google-cloud-secret-manager"; 17 + version = "2.23.2"; 18 pyproject = true; 19 20 disabled = pythonOlder "3.7"; ··· 22 src = fetchPypi { 23 pname = "google_cloud_secret_manager"; 24 inherit version; 25 + hash = "sha256-h2M3mSqredhkfbFYk3G8tztJhmK1hhlZmfjJRVpZfyk="; 26 }; 27 28 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/google-cloud-securitycenter/default.nix
··· 14 15 buildPythonPackage rec { 16 pname = "google-cloud-securitycenter"; 17 - version = "1.38.0"; 18 pyproject = true; 19 20 disabled = pythonOlder "3.7"; ··· 22 src = fetchPypi { 23 pname = "google_cloud_securitycenter"; 24 inherit version; 25 - hash = "sha256-1FWz9wDZvehE7bg9oUpUBJXz05Xp18vOOr1IexmwBKY="; 26 }; 27 28 build-system = [ setuptools ];
··· 14 15 buildPythonPackage rec { 16 pname = "google-cloud-securitycenter"; 17 + version = "1.38.1"; 18 pyproject = true; 19 20 disabled = pythonOlder "3.7"; ··· 22 src = fetchPypi { 23 pname = "google_cloud_securitycenter"; 24 inherit version; 25 + hash = "sha256-XsR+gNtFCWhe0PEmaS8lIgGl0+ri7MR/omK+bch4Too="; 26 }; 27 28 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/google-cloud-tasks/default.nix
··· 15 16 buildPythonPackage rec { 17 pname = "google-cloud-tasks"; 18 - version = "2.19.1"; 19 pyproject = true; 20 21 disabled = pythonOlder "3.7"; ··· 23 src = fetchPypi { 24 pname = "google_cloud_tasks"; 25 inherit version; 26 - hash = "sha256-wvIqfdMVNp3C/3apjR9d/ah3lwraKNgpoUnL57FGPAY="; 27 }; 28 29 build-system = [ setuptools ];
··· 15 16 buildPythonPackage rec { 17 pname = "google-cloud-tasks"; 18 + version = "2.19.2"; 19 pyproject = true; 20 21 disabled = pythonOlder "3.7"; ··· 23 src = fetchPypi { 24 pname = "google_cloud_tasks"; 25 inherit version; 26 + hash = "sha256-J2tH6F9IJZI6d41UP8BzXkskvkX3P6fZZK0WVUAtB9w="; 27 }; 28 29 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/google-cloud-texttospeech/default.nix
··· 14 15 buildPythonPackage rec { 16 pname = "google-cloud-texttospeech"; 17 - version = "2.25.0"; 18 pyproject = true; 19 20 disabled = pythonOlder "3.8"; ··· 22 src = fetchPypi { 23 pname = "google_cloud_texttospeech"; 24 inherit version; 25 - hash = "sha256-d25wtYOFyMNLhCXHrbJ+lGqFg3fCJ7lRUzFddSY8HiM="; 26 }; 27 28 build-system = [ setuptools ];
··· 14 15 buildPythonPackage rec { 16 pname = "google-cloud-texttospeech"; 17 + version = "2.25.1"; 18 pyproject = true; 19 20 disabled = pythonOlder "3.8"; ··· 22 src = fetchPypi { 23 pname = "google_cloud_texttospeech"; 24 inherit version; 25 + hash = "sha256-N918PwI/WpfbcpiXGNllMOBfricOXR3kHRBLMWp3Cvw="; 26 }; 27 28 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/google-cloud-trace/default.nix
··· 15 16 buildPythonPackage rec { 17 pname = "google-cloud-trace"; 18 - version = "1.16.0"; 19 pyproject = true; 20 21 disabled = pythonOlder "3.7"; ··· 23 src = fetchPypi { 24 pname = "google_cloud_trace"; 25 inherit version; 26 - hash = "sha256-nSexY3cVcrVh6/dTpeR5H5nSXlTtrUywEheriC899Bo="; 27 }; 28 29 build-system = [ setuptools ];
··· 15 16 buildPythonPackage rec { 17 pname = "google-cloud-trace"; 18 + version = "1.16.1"; 19 pyproject = true; 20 21 disabled = pythonOlder "3.7"; ··· 23 src = fetchPypi { 24 pname = "google_cloud_trace"; 25 inherit version; 26 + hash = "sha256-FTCLBPEtlY8rODGk92uXxhwMekaAS9xXDRkCSTgCnZo="; 27 }; 28 29 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/google-cloud-translate/default.nix
··· 17 18 buildPythonPackage rec { 19 pname = "google-cloud-translate"; 20 - version = "3.20.1"; 21 pyproject = true; 22 23 disabled = pythonOlder "3.7"; ··· 25 src = fetchPypi { 26 pname = "google_cloud_translate"; 27 inherit version; 28 - hash = "sha256-g6KO+XxK8nRKy9/mYkOXKHQaVtiVSFIrT6sAhmPJGQE="; 29 }; 30 31 build-system = [ setuptools ];
··· 17 18 buildPythonPackage rec { 19 pname = "google-cloud-translate"; 20 + version = "3.20.2"; 21 pyproject = true; 22 23 disabled = pythonOlder "3.7"; ··· 25 src = fetchPypi { 26 pname = "google_cloud_translate"; 27 inherit version; 28 + hash = "sha256-tUOE7lX0vF2WbO4OELCBT/7hN1wfKvcLkiDTvPWNhfg="; 29 }; 30 31 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/google-cloud-videointelligence/default.nix
··· 15 16 buildPythonPackage rec { 17 pname = "google-cloud-videointelligence"; 18 - version = "2.16.0"; 19 pyproject = true; 20 21 disabled = pythonOlder "3.7"; ··· 23 src = fetchPypi { 24 pname = "google_cloud_videointelligence"; 25 inherit version; 26 - hash = "sha256-eqHNqa9pFHE+MoeH6rOro2G0E0iLCOCqxXqNoi3tH2I="; 27 }; 28 29 build-system = [ setuptools ];
··· 15 16 buildPythonPackage rec { 17 pname = "google-cloud-videointelligence"; 18 + version = "2.16.1"; 19 pyproject = true; 20 21 disabled = pythonOlder "3.7"; ··· 23 src = fetchPypi { 24 pname = "google_cloud_videointelligence"; 25 inherit version; 26 + hash = "sha256-ajYSBZhvv5b8hKS5o2aTrymRpd5bWX94ncNcGmE7/Lk="; 27 }; 28 29 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/google-cloud-websecurityscanner/default.nix
··· 14 15 buildPythonPackage rec { 16 pname = "google-cloud-websecurityscanner"; 17 - version = "1.17.0"; 18 pyproject = true; 19 20 disabled = pythonOlder "3.7"; ··· 22 src = fetchPypi { 23 pname = "google_cloud_websecurityscanner"; 24 inherit version; 25 - hash = "sha256-JqKKtjBeJ/jyGZZ9SGhQ9a89khuZKSJMPhqc5BOnFcg="; 26 }; 27 28 build-system = [ setuptools ];
··· 14 15 buildPythonPackage rec { 16 pname = "google-cloud-websecurityscanner"; 17 + version = "1.17.1"; 18 pyproject = true; 19 20 disabled = pythonOlder "3.7"; ··· 22 src = fetchPypi { 23 pname = "google_cloud_websecurityscanner"; 24 inherit version; 25 + hash = "sha256-nDjk29d1V19fUNei6lJLtmJDwfLcBSnXm4jZQV2s+vI="; 26 }; 27 28 build-system = [ setuptools ];
+3 -3
pkgs/development/python-modules/huawei-lte-api/default.nix
··· 12 13 buildPythonPackage rec { 14 pname = "huawei-lte-api"; 15 - version = "1.10"; 16 pyproject = true; 17 18 disabled = pythonOlder "3.7"; ··· 21 owner = "Salamek"; 22 repo = "huawei-lte-api"; 23 tag = version; 24 - hash = "sha256-L6xCX+NHASunB876N1R++xMOx55Z8zc77j5QwKqHsNY="; 25 }; 26 27 build-system = [ setuptools ]; ··· 43 meta = with lib; { 44 description = "API For huawei LAN/WAN LTE Modems"; 45 homepage = "https://github.com/Salamek/huawei-lte-api"; 46 - changelog = "https://github.com/Salamek/huawei-lte-api/releases/tag/${version}"; 47 license = licenses.lgpl3Only; 48 maintainers = with maintainers; [ dotlambda ]; 49 };
··· 12 13 buildPythonPackage rec { 14 pname = "huawei-lte-api"; 15 + version = "1.11.0"; 16 pyproject = true; 17 18 disabled = pythonOlder "3.7"; ··· 21 owner = "Salamek"; 22 repo = "huawei-lte-api"; 23 tag = version; 24 + hash = "sha256-cSoH3g5olrcv4/IJeRWFR6Yy1ntBuL0zpO1TrnwvIwk="; 25 }; 26 27 build-system = [ setuptools ]; ··· 43 meta = with lib; { 44 description = "API For huawei LAN/WAN LTE Modems"; 45 homepage = "https://github.com/Salamek/huawei-lte-api"; 46 + changelog = "https://github.com/Salamek/huawei-lte-api/releases/tag/${src.tag}"; 47 license = licenses.lgpl3Only; 48 maintainers = with maintainers; [ dotlambda ]; 49 };
+37
pkgs/development/python-modules/ipython-pygments-lexers/default.nix
···
··· 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchFromGitHub, 5 + flit-core, 6 + pygments, 7 + pytestCheckHook, 8 + }: 9 + 10 + buildPythonPackage rec { 11 + pname = "ipython-pygments-lexers"; 12 + version = "1.1.1"; 13 + pyproject = true; 14 + 15 + src = fetchFromGitHub { 16 + owner = "ipython"; 17 + repo = "ipython-pygments-lexers"; 18 + tag = version; 19 + hash = "sha256-p2WrFvCzHOuxPec9Wc1/xT6+fEUdcdDC1HTNmu5dm5Q="; 20 + }; 21 + 22 + build-system = [ flit-core ]; 23 + 24 + dependencies = [ pygments ]; 25 + 26 + nativeCheckInputs = [ pytestCheckHook ]; 27 + 28 + pythonImportsCheck = [ "ipython_pygments_lexers" ]; 29 + 30 + meta = { 31 + description = "Pygments lexers for syntax-highlighting IPython code & sessions"; 32 + homepage = "https://github.com/ipython/ipython-pygments-lexers"; 33 + changelog = "https://github.com/ipython/ipython-pygments-lexers/releases/tag/${src.tag}"; 34 + license = lib.licenses.bsd3; 35 + maintainers = with lib.maintainers; [ fab ]; 36 + }; 37 + }
+2 -2
pkgs/development/python-modules/lightning-utilities/default.nix
··· 18 19 buildPythonPackage rec { 20 pname = "lightning-utilities"; 21 - version = "0.14.1"; 22 pyproject = true; 23 24 src = fetchFromGitHub { 25 owner = "Lightning-AI"; 26 repo = "utilities"; 27 tag = "v${version}"; 28 - hash = "sha256-QHE2ksoINQ0sfTSxXxM9ZVEIhEOncaq1i8ZNqznISJw="; 29 }; 30 31 postPatch = ''
··· 18 19 buildPythonPackage rec { 20 pname = "lightning-utilities"; 21 + version = "0.14.2"; 22 pyproject = true; 23 24 src = fetchFromGitHub { 25 owner = "Lightning-AI"; 26 repo = "utilities"; 27 tag = "v${version}"; 28 + hash = "sha256-erjDDK7XJrq4Ast/RgQhEDQfDplUGMhWt4kakEzi8z8="; 29 }; 30 31 postPatch = ''
+2 -2
pkgs/development/python-modules/lmfit/default.nix
··· 17 18 buildPythonPackage rec { 19 pname = "lmfit"; 20 - version = "1.3.2"; 21 pyproject = true; 22 23 disabled = pythonOlder "3.8"; 24 25 src = fetchPypi { 26 inherit pname version; 27 - hash = "sha256-Mb7q4fAnwbjBTc1/LoSIqAt1+zied/ymd1Sb3C/ll7s="; 28 }; 29 30 postPatch = ''
··· 17 18 buildPythonPackage rec { 19 pname = "lmfit"; 20 + version = "1.3.3"; 21 pyproject = true; 22 23 disabled = pythonOlder "3.8"; 24 25 src = fetchPypi { 26 inherit pname version; 27 + hash = "sha256-czIea4gfL2hiNXIaffwCr2uw8DCiXv62Zjj2KxxgU6E="; 28 }; 29 30 postPatch = ''
+10 -7
pkgs/development/python-modules/motmetrics/default.nix
··· 19 20 buildPythonPackage { 21 pname = "motmetrics"; 22 - version = "1.4.0-unstable-20240130"; 23 pyproject = true; 24 25 src = fetchFromGitHub { 26 owner = "cheind"; 27 repo = "py-motmetrics"; 28 - # latest release is not compatible with pandas 2.0 29 - rev = "7210fcce0be1b76c96a62f6fe4ddbc90d944eacb"; 30 - hash = "sha256-7LKLHXWgW4QpivAgzvWl6qEG0auVvpiZ6bfDViCKsFY="; 31 }; 32 33 - nativeBuildInputs = [ setuptools ]; 34 35 - propagatedBuildInputs = [ 36 numpy 37 pandas 38 scipy ··· 44 pytest-benchmark 45 ]; 46 47 pythonImportsCheck = [ "motmetrics" ]; 48 49 meta = with lib; { 50 - description = "Bar_chart: Benchmark multiple object trackers (MOT) in Python"; 51 homepage = "https://github.com/cheind/py-motmetrics"; 52 license = licenses.mit; 53 maintainers = [ ]; 54 };
··· 19 20 buildPythonPackage { 21 pname = "motmetrics"; 22 + version = "1.4.0-unstable-2025-01-14"; 23 pyproject = true; 24 25 src = fetchFromGitHub { 26 owner = "cheind"; 27 repo = "py-motmetrics"; 28 + # Latest release is not compatible with pandas 2.0 29 + rev = "c199b3e853d589af4b6a7d88f5bcc8b8802fc434"; 30 + hash = "sha256-DJ82nioW3jdIVo1B623BE8bBhVa1oMzYIkhhit4Z4dg="; 31 }; 32 33 + build-system = [ setuptools ]; 34 35 + dependencies = [ 36 numpy 37 pandas 38 scipy ··· 44 pytest-benchmark 45 ]; 46 47 + pytestFlagsArray = [ "--benchmark-disable" ]; 48 + 49 pythonImportsCheck = [ "motmetrics" ]; 50 51 meta = with lib; { 52 + description = "Benchmark multiple object trackers (MOT) in Python"; 53 homepage = "https://github.com/cheind/py-motmetrics"; 54 + changelog = "https://github.com/cheind/py-motmetrics/releases/tag/${version}"; 55 license = licenses.mit; 56 maintainers = [ ]; 57 };
+51
pkgs/development/python-modules/netbox-contract/default.nix
···
··· 1 + { 2 + lib, 3 + buildPythonPackage, 4 + pythonAtLeast, 5 + fetchFromGitHub, 6 + setuptools, 7 + python-dateutil, 8 + drf-yasg, 9 + netbox, 10 + }: 11 + buildPythonPackage rec { 12 + pname = "netbox-contract"; 13 + version = "2.3.2"; 14 + pyproject = true; 15 + 16 + disabled = pythonAtLeast "3.13"; 17 + 18 + src = fetchFromGitHub { 19 + owner = "mlebreuil"; 20 + repo = "netbox-contract"; 21 + tag = "v${version}"; 22 + hash = "sha256-e3N0m+oj2CMUXwI4dF/tXA+Lz+9+ZlbJAy+zHoRDNtw="; 23 + }; 24 + 25 + build-system = [ setuptools ]; 26 + 27 + dependencies = [ 28 + python-dateutil 29 + drf-yasg 30 + ]; 31 + 32 + # running tests requires initialized django project 33 + nativeCheckInputs = [ 34 + netbox 35 + ]; 36 + 37 + preFixup = '' 38 + export PYTHONPATH=${netbox}/opt/netbox/netbox:$PYTHONPATH 39 + ''; 40 + 41 + pythonImportsCheck = [ "netbox_contract" ]; 42 + 43 + meta = { 44 + description = "Contract plugin for netbox"; 45 + homepage = "https://github.com/mlebreuil/netbox-contract"; 46 + changelog = "https://github.com/mlebreuil/netbox-contract/releases/tag/${src.rev}"; 47 + license = lib.licenses.mit; 48 + platforms = lib.platforms.linux; 49 + maintainers = with lib.maintainers; [ felbinger ]; 50 + }; 51 + }
+34 -17
pkgs/development/python-modules/nethsm/default.nix
··· 1 { 2 lib, 3 buildPythonPackage, 4 - fetchPypi, 5 - flit-core, 6 certifi, 7 cryptography, 8 python-dateutil, 9 typing-extensions, 10 urllib3, 11 }: 12 13 - let 14 pname = "nethsm"; 15 - version = "1.2.1"; 16 - in 17 - 18 - buildPythonPackage { 19 - inherit pname version; 20 pyproject = true; 21 22 - src = fetchPypi { 23 - inherit pname version; 24 - hash = "sha256-EPxGJFCGGl3p3yLlM7NH7xtEVS2woRigKJhL57A0gAE="; 25 }; 26 27 - propagatedBuildInputs = [ 28 certifi 29 cryptography 30 python-dateutil ··· 32 urllib3 33 ]; 34 35 - nativeBuildInputs = [ 36 - flit-core 37 ]; 38 39 - pythonRelaxDeps = true; 40 41 - pythonImportsCheck = [ "nethsm" ]; 42 43 meta = with lib; { 44 description = "Client-side Python SDK for NetHSM"; 45 homepage = "https://github.com/Nitrokey/nethsm-sdk-py"; 46 changelog = "https://github.com/Nitrokey/nethsm-sdk-py/releases/tag/v${version}"; 47 - license = with licenses; [ asl20 ]; 48 maintainers = with maintainers; [ frogamic ]; 49 }; 50 }
··· 1 { 2 lib, 3 buildPythonPackage, 4 certifi, 5 cryptography, 6 + docker, 7 + fetchFromGitHub, 8 + flit-core, 9 + podman, 10 + pycryptodome, 11 + pytestCheckHook, 12 python-dateutil, 13 typing-extensions, 14 urllib3, 15 }: 16 17 + buildPythonPackage rec { 18 pname = "nethsm"; 19 + version = "1.3.0"; 20 pyproject = true; 21 22 + src = fetchFromGitHub { 23 + owner = "Nitrokey"; 24 + repo = "nethsm-sdk-py"; 25 + tag = "v${version}"; 26 + hash = "sha256-vH5YjS3VO5krCMVQFcEgDhJeCUzo9EzFnBxq+zPuZ68="; 27 }; 28 29 + pythonRelaxDeps = true; 30 + 31 + build-system = [ flit-core ]; 32 + 33 + dependencies = [ 34 certifi 35 cryptography 36 python-dateutil ··· 38 urllib3 39 ]; 40 41 + nativeCheckInputs = [ 42 + docker 43 + podman 44 + pycryptodome 45 + pytestCheckHook 46 ]; 47 48 + pythonImportsCheck = [ "nethsm" ]; 49 50 + disabledTestPaths = [ 51 + # Tests require a running Docker instance 52 + "tests/test_nethsm_config.py" 53 + "tests/test_nethsm_keys.py" 54 + "tests/test_nethsm_namespaces.py" 55 + "tests/test_nethsm_other.py" 56 + "tests/test_nethsm_system.py" 57 + "tests/test_nethsm_users.py" 58 + ]; 59 60 meta = with lib; { 61 description = "Client-side Python SDK for NetHSM"; 62 homepage = "https://github.com/Nitrokey/nethsm-sdk-py"; 63 changelog = "https://github.com/Nitrokey/nethsm-sdk-py/releases/tag/v${version}"; 64 + license = licenses.asl20; 65 maintainers = with maintainers; [ frogamic ]; 66 }; 67 }
+4 -4
pkgs/development/python-modules/pyads/default.nix
··· 10 11 buildPythonPackage rec { 12 pname = "pyads"; 13 - version = "3.4.2"; 14 pyproject = true; 15 16 - disabled = pythonOlder "3.7"; 17 18 src = fetchFromGitHub { 19 owner = "stlehmann"; 20 repo = "pyads"; 21 tag = version; 22 - hash = "sha256-OvDh92fwHW+UzEO5iqVOY7d5H0Es6CJK/f/HCyLO9J4="; 23 }; 24 25 build-system = [ setuptools ]; ··· 38 meta = with lib; { 39 description = "Python wrapper for TwinCAT ADS library"; 40 homepage = "https://github.com/MrLeeh/pyads"; 41 - changelog = "https://github.com/stlehmann/pyads/releases/tag/${version}"; 42 license = licenses.mit; 43 maintainers = with maintainers; [ jamiemagee ]; 44 };
··· 10 11 buildPythonPackage rec { 12 pname = "pyads"; 13 + version = "3.5.0"; 14 pyproject = true; 15 16 + disabled = pythonOlder "3.8"; 17 18 src = fetchFromGitHub { 19 owner = "stlehmann"; 20 repo = "pyads"; 21 tag = version; 22 + hash = "sha256-eQC2ozJ5bKuhyInZDq8ZZNa9OGIN3tRjSHEPoqIU/jc="; 23 }; 24 25 build-system = [ setuptools ]; ··· 38 meta = with lib; { 39 description = "Python wrapper for TwinCAT ADS library"; 40 homepage = "https://github.com/MrLeeh/pyads"; 41 + changelog = "https://github.com/stlehmann/pyads/releases/tag/${src.tag}"; 42 license = licenses.mit; 43 maintainers = with maintainers; [ jamiemagee ]; 44 };
+2 -2
pkgs/development/python-modules/pyheos/default.nix
··· 10 11 buildPythonPackage rec { 12 pname = "pyheos"; 13 - version = "1.0.3"; 14 pyproject = true; 15 16 src = fetchFromGitHub { 17 owner = "andrewsayre"; 18 repo = "pyheos"; 19 tag = version; 20 - hash = "sha256-1Jv1889RSjuediG5RGRcNdr1OmlOhpzqodgjnNmE2RY="; 21 }; 22 23 build-system = [ setuptools ];
··· 10 11 buildPythonPackage rec { 12 pname = "pyheos"; 13 + version = "1.0.4"; 14 pyproject = true; 15 16 src = fetchFromGitHub { 17 owner = "andrewsayre"; 18 repo = "pyheos"; 19 tag = version; 20 + hash = "sha256-sVh0mxhC0v1xtov4UNPMXGgYgMMTLZJaai11AOCMdiU="; 21 }; 22 23 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/qtawesome/default.nix
··· 10 11 buildPythonPackage rec { 12 pname = "qtawesome"; 13 - version = "1.3.1"; 14 format = "setuptools"; 15 16 disabled = pythonOlder "3.7"; ··· 19 owner = "spyder-ide"; 20 repo = pname; 21 tag = "v${version}"; 22 - hash = "sha256-dF77vkrEl671fQvsHAX+JY9OmLA29kgAVswY2b3UyTg="; 23 }; 24 25 propagatedBuildInputs = [
··· 10 11 buildPythonPackage rec { 12 pname = "qtawesome"; 13 + version = "1.4.0"; 14 format = "setuptools"; 15 16 disabled = pythonOlder "3.7"; ··· 19 owner = "spyder-ide"; 20 repo = pname; 21 tag = "v${version}"; 22 + hash = "sha256-VjUlP+5QU9ApD09UNvF48b0gepCUpVO6U6zYaKm0KoE="; 23 }; 24 25 propagatedBuildInputs = [
+4 -3
pkgs/development/python-modules/snakemake-storage-plugin-s3/default.nix
··· 13 14 buildPythonPackage rec { 15 pname = "snakemake-storage-plugin-s3"; 16 - version = "0.2.13"; 17 pyproject = true; 18 19 src = fetchFromGitHub { 20 owner = "snakemake"; 21 - repo = pname; 22 tag = "v${version}"; 23 - hash = "sha256-tH4KLswRPberlaBlRCEJSPmUfkcwVkB9YbD/3LYJx0s="; 24 }; 25 26 build-system = [ poetry-core ]; ··· 40 meta = with lib; { 41 description = "Snakemake storage plugin for S3 API storage (AWS S3, MinIO, etc.)"; 42 homepage = "https://github.com/snakemake/snakemake-storage-plugin-s3"; 43 license = licenses.mit; 44 maintainers = with maintainers; [ veprbl ]; 45 };
··· 13 14 buildPythonPackage rec { 15 pname = "snakemake-storage-plugin-s3"; 16 + version = "0.3.1"; 17 pyproject = true; 18 19 src = fetchFromGitHub { 20 owner = "snakemake"; 21 + repo = "snakemake-storage-plugin-s3"; 22 tag = "v${version}"; 23 + hash = "sha256-WbGlXu6/7e9U2GfVd4IF86bRfulNxjP1Tw5pVHpEj/g="; 24 }; 25 26 build-system = [ poetry-core ]; ··· 40 meta = with lib; { 41 description = "Snakemake storage plugin for S3 API storage (AWS S3, MinIO, etc.)"; 42 homepage = "https://github.com/snakemake/snakemake-storage-plugin-s3"; 43 + changelog = "https://github.com/snakemake/snakemake-storage-plugin-s3/releases/tag/${src.tag}"; 44 license = licenses.mit; 45 maintainers = with maintainers; [ veprbl ]; 46 };
+2 -2
pkgs/development/python-modules/spyder-kernels/default.nix
··· 18 19 buildPythonPackage rec { 20 pname = "spyder-kernels"; 21 - version = "3.0.3"; 22 pyproject = true; 23 24 src = fetchFromGitHub { 25 owner = "spyder-ide"; 26 repo = "spyder-kernels"; 27 tag = "v${version}"; 28 - hash = "sha256-gsQVzDgEW+TQSitLiYAIEk4Ow1IyIKfp8BcHqNJ2Y+I="; 29 }; 30 31 build-system = [ setuptools ];
··· 18 19 buildPythonPackage rec { 20 pname = "spyder-kernels"; 21 + version = "3.1.0a1"; 22 pyproject = true; 23 24 src = fetchFromGitHub { 25 owner = "spyder-ide"; 26 repo = "spyder-kernels"; 27 tag = "v${version}"; 28 + hash = "sha256-/Dd+yCLctOC7ao26EU6LrhBD1SKGd84XLepMdDJnFow="; 29 }; 30 31 build-system = [ setuptools ];
+6 -8
pkgs/development/python-modules/spyder/default.nix
··· 19 diff-match-patch, 20 fzf, 21 intervaltree, 22 jedi, 23 jellyfish, 24 keyring, ··· 55 56 buildPythonPackage rec { 57 pname = "spyder"; 58 - version = "6.0.4"; 59 pyproject = true; 60 61 src = fetchPypi { 62 inherit pname version; 63 - hash = "sha256-4AsaO75mAH0rRDnrHGiwwfuQS7A/0/nQ7YPot6y0y+Y="; 64 }; 65 66 patches = [ ./dont-clear-pythonpath.patch ]; 67 68 - nativeBuildInputs = [ 69 - pyqtwebengine.wrapQtAppsHook 70 - ]; 71 72 - build-system = [ 73 - setuptools 74 - ]; 75 76 dependencies = [ 77 aiohttp ··· 83 diff-match-patch 84 fzf 85 intervaltree 86 jedi 87 jellyfish 88 keyring
··· 19 diff-match-patch, 20 fzf, 21 intervaltree, 22 + ipython-pygments-lexers, 23 jedi, 24 jellyfish, 25 keyring, ··· 56 57 buildPythonPackage rec { 58 pname = "spyder"; 59 + version = "6.1.0a1"; 60 pyproject = true; 61 62 src = fetchPypi { 63 inherit pname version; 64 + hash = "sha256-Yjii1YUmdWdrrSLe3trAoATJXt2bfjc0JX5CBMVIEq8="; 65 }; 66 67 patches = [ ./dont-clear-pythonpath.patch ]; 68 69 + nativeBuildInputs = [ pyqtwebengine.wrapQtAppsHook ]; 70 71 + build-system = [ setuptools ]; 72 73 dependencies = [ 74 aiohttp ··· 80 diff-match-patch 81 fzf 82 intervaltree 83 + ipython-pygments-lexers 84 jedi 85 jellyfish 86 keyring
+4 -4
pkgs/development/python-modules/svg-py/default.nix
··· 10 11 buildPythonPackage rec { 12 pname = "svg-py"; 13 - version = "1.5.0"; 14 pyproject = true; 15 16 disabled = pythonOlder "3.7"; ··· 19 owner = "orsinium-labs"; 20 repo = "svg.py"; 21 tag = version; 22 - hash = "sha256-Lxzk3IVCD4PG36Pozz2crccwxCAAAM2QfS4rgwbjs6g="; 23 }; 24 25 - nativeBuildInputs = [ flit-core ]; 26 27 nativeCheckInputs = [ 28 pytestCheckHook ··· 39 meta = with lib; { 40 description = "Type-safe Python library to generate SVG files"; 41 homepage = "https://github.com/orsinium-labs/svg.py"; 42 - changelog = "https://github.com/orsinium-labs/svg.py/releases/tag/${version}"; 43 license = licenses.mit; 44 maintainers = with maintainers; [ fab ]; 45 };
··· 10 11 buildPythonPackage rec { 12 pname = "svg-py"; 13 + version = "1.6.0"; 14 pyproject = true; 15 16 disabled = pythonOlder "3.7"; ··· 19 owner = "orsinium-labs"; 20 repo = "svg.py"; 21 tag = version; 22 + hash = "sha256-XuSv4CVcbwWHuHiXxx4PfGJ8Pi+tfufbAdUiTFWNLcc="; 23 }; 24 25 + build-system = [ flit-core ]; 26 27 nativeCheckInputs = [ 28 pytestCheckHook ··· 39 meta = with lib; { 40 description = "Type-safe Python library to generate SVG files"; 41 homepage = "https://github.com/orsinium-labs/svg.py"; 42 + changelog = "https://github.com/orsinium-labs/svg.py/releases/tag/${src.tag}"; 43 license = licenses.mit; 44 maintainers = with maintainers; [ fab ]; 45 };
+13 -5
pkgs/development/python-modules/thefuzz/default.nix
··· 6 pytestCheckHook, 7 hypothesis, 8 levenshtein, 9 }: 10 11 buildPythonPackage rec { 12 pname = "thefuzz"; 13 version = "0.22.1"; 14 - format = "setuptools"; 15 16 disabled = pythonOlder "3.7"; 17 ··· 19 inherit pname version; 20 hash = "sha256-cTgDmn7PVA2jI3kthZLvmQKx1563jBR9TyBmTeefNoA="; 21 }; 22 - 23 - propagatedBuildInputs = [ levenshtein ]; 24 25 # Skip linting 26 postPatch = '' 27 - substituteInPlace test_thefuzz.py --replace "import pycodestyle" "" 28 ''; 29 30 - pythonImportsCheck = [ "thefuzz" ]; 31 32 nativeCheckInputs = [ 33 hypothesis 34 pytestCheckHook 35 ]; 36 37 disabledTests = [ 38 # Skip linting
··· 6 pytestCheckHook, 7 hypothesis, 8 levenshtein, 9 + setuptools, 10 }: 11 12 buildPythonPackage rec { 13 pname = "thefuzz"; 14 version = "0.22.1"; 15 + pyproject = true; 16 17 disabled = pythonOlder "3.7"; 18 ··· 20 inherit pname version; 21 hash = "sha256-cTgDmn7PVA2jI3kthZLvmQKx1563jBR9TyBmTeefNoA="; 22 }; 23 24 # Skip linting 25 postPatch = '' 26 + substituteInPlace test_thefuzz.py \ 27 + --replace-fail "import pycodestyle" "" 28 ''; 29 30 + build-system = [ setuptools ]; 31 + 32 + dependencies = [ levenshtein ]; 33 34 nativeCheckInputs = [ 35 hypothesis 36 pytestCheckHook 37 ]; 38 + 39 + optional-dependencies = { 40 + speedup = [ ]; 41 + }; 42 + 43 + pythonImportsCheck = [ "thefuzz" ]; 44 45 disabledTests = [ 46 # Skip linting
+2 -2
pkgs/development/python-modules/trimesh/default.nix
··· 11 12 buildPythonPackage rec { 13 pname = "trimesh"; 14 - version = "4.6.4"; 15 pyproject = true; 16 17 disabled = pythonOlder "3.8"; ··· 20 owner = "mikedh"; 21 repo = "trimesh"; 22 tag = version; 23 - hash = "sha256-kkIGAeWFrgOIbvBnZFRQue7Fh7REKF/CHgJLBEZliLM="; 24 }; 25 26 build-system = [ setuptools ];
··· 11 12 buildPythonPackage rec { 13 pname = "trimesh"; 14 + version = "4.6.5"; 15 pyproject = true; 16 17 disabled = pythonOlder "3.8"; ··· 20 owner = "mikedh"; 21 repo = "trimesh"; 22 tag = version; 23 + hash = "sha256-zPtfJMBblXaapYE8jBf8755T+0LP3W9M7e5JnM2adHU="; 24 }; 25 26 build-system = [ setuptools ];
+5 -3
pkgs/development/python-modules/ultralytics/default.nix
··· 8 setuptools, 9 10 # dependencies 11 matplotlib, 12 opencv-python, 13 pandas, ··· 31 32 buildPythonPackage rec { 33 pname = "ultralytics"; 34 - version = "8.3.92"; 35 pyproject = true; 36 37 src = fetchFromGitHub { 38 owner = "ultralytics"; 39 repo = "ultralytics"; 40 tag = "v${version}"; 41 - hash = "sha256-+SwhQVEl7tLrhwuCruVLAtVS3U/RJb0ysIKG3bmuZk4="; 42 }; 43 44 build-system = [ setuptools ]; ··· 48 ]; 49 50 dependencies = [ 51 matplotlib 52 opencv-python 53 pandas ··· 116 117 meta = { 118 homepage = "https://github.com/ultralytics/ultralytics"; 119 - changelog = "https://github.com/ultralytics/ultralytics/releases/tag/v${version}"; 120 description = "Train YOLO models for computer vision tasks"; 121 mainProgram = "yolo"; 122 license = lib.licenses.agpl3Only;
··· 8 setuptools, 9 10 # dependencies 11 + lap, 12 matplotlib, 13 opencv-python, 14 pandas, ··· 32 33 buildPythonPackage rec { 34 pname = "ultralytics"; 35 + version = "8.3.94"; 36 pyproject = true; 37 38 src = fetchFromGitHub { 39 owner = "ultralytics"; 40 repo = "ultralytics"; 41 tag = "v${version}"; 42 + hash = "sha256-pDUF/uqtMA9xMK7G9Ka2XSr55jEka7DhWX9d2S3n6KA="; 43 }; 44 45 build-system = [ setuptools ]; ··· 49 ]; 50 51 dependencies = [ 52 + lap 53 matplotlib 54 opencv-python 55 pandas ··· 118 119 meta = { 120 homepage = "https://github.com/ultralytics/ultralytics"; 121 + changelog = "https://github.com/ultralytics/ultralytics/releases/tag/${src.tag}"; 122 description = "Train YOLO models for computer vision tasks"; 123 mainProgram = "yolo"; 124 license = lib.licenses.agpl3Only;
+43 -37
pkgs/servers/homepage-dashboard/default.nix pkgs/by-name/ho/homepage-dashboard/package.nix
··· 1 { 2 - buildNpmPackage, 3 fetchFromGitHub, 4 nodePackages, 5 python3, 6 stdenv, 7 cctools, 8 - IOKit, 9 lib, 10 nixosTests, 11 enableLocalIcons ? false, 12 - nix-update-script, 13 }: 14 let 15 dashboardIcons = fetchFromGitHub { ··· 26 cp ${dashboardIcons}/LICENSE $out/share/homepage/public/icons/ 27 ''; 28 in 29 - buildNpmPackage rec { 30 pname = "homepage-dashboard"; 31 - version = "0.10.9"; 32 33 src = fetchFromGitHub { 34 owner = "gethomepage"; 35 repo = "homepage"; 36 - rev = "v${version}"; 37 - hash = "sha256-q8+uoikHMQVuTrVSH8tPsoI5655ZStMc/7tmoAfoZIY="; 38 }; 39 40 - npmDepsHash = "sha256-N39gwct2U4UxlIL5ceDzzU7HpA6xh2WksrZNxGz04PU="; 41 - 42 - preBuild = '' 43 - mkdir -p config 44 - ''; 45 46 - postBuild = '' 47 - # Add a shebang to the server js file, then patch the shebang. 48 - sed -i '1s|^|#!/usr/bin/env node\n|' .next/standalone/server.js 49 - patchShebangs .next/standalone/server.js 50 - ''; 51 52 - nativeBuildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ cctools ]; 53 54 buildInputs = [ 55 nodePackages.node-gyp-build 56 - ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ IOKit ]; 57 58 env.PYTHON = "${python3}/bin/python"; 59 60 installPhase = '' 61 runHook preInstall 62 63 - mkdir -p $out/{share,bin} 64 - 65 cp -r .next/standalone $out/share/homepage/ 66 cp -r public $out/share/homepage/public 67 68 mkdir -p $out/share/homepage/.next 69 cp -r .next/static $out/share/homepage/.next/static 70 71 - chmod +x $out/share/homepage/server.js 72 - 73 - # This patch must be applied here, as it's patching the `dist` directory 74 - # of NextJS. Without this, homepage-dashboard errors when trying to 75 - # write its prerender cache. 76 - # 77 - # This patch ensures that the cache implementation respects the env 78 - # variable `NIXPKGS_HOMEPAGE_CACHE_DIR`, which is set by default in the 79 - # wrapper below. 80 - (cd "$out" && patch -p1 <${./prerender_cache_path.patch}) 81 - 82 - makeWrapper $out/share/homepage/server.js $out/bin/homepage \ 83 --set-default PORT 3000 \ 84 --set-default HOMEPAGE_CONFIG_DIR /var/lib/homepage-dashboard \ 85 - --set-default NIXPKGS_HOMEPAGE_CACHE_DIR /var/cache/homepage-dashboard 86 87 ${if enableLocalIcons then installLocalIcons else ""} 88 ··· 95 tests = { 96 inherit (nixosTests) homepage-dashboard; 97 }; 98 - updateScript = nix-update-script { }; 99 }; 100 101 meta = { 102 description = "Highly customisable dashboard with Docker and service API integrations"; 103 - changelog = "https://github.com/gethomepage/homepage/releases/tag/v${version}"; 104 mainProgram = "homepage"; 105 homepage = "https://gethomepage.dev"; 106 license = lib.licenses.gpl3; ··· 108 platforms = lib.platforms.all; 109 broken = stdenv.hostPlatform.isDarwin; 110 }; 111 - }
··· 1 { 2 fetchFromGitHub, 3 nodePackages, 4 + makeBinaryWrapper, 5 + nodejs, 6 + pnpm_10, 7 python3, 8 stdenv, 9 cctools, 10 + darwin, 11 lib, 12 nixosTests, 13 enableLocalIcons ? false, 14 }: 15 let 16 dashboardIcons = fetchFromGitHub { ··· 27 cp ${dashboardIcons}/LICENSE $out/share/homepage/public/icons/ 28 ''; 29 in 30 + stdenv.mkDerivation (finalAttrs: { 31 pname = "homepage-dashboard"; 32 + version = "1.0.4"; 33 34 src = fetchFromGitHub { 35 owner = "gethomepage"; 36 repo = "homepage"; 37 + tag = "v${finalAttrs.version}"; 38 + hash = "sha256-SwzgmVy3TBzEH+FJ/kY+iCo+pZhud1IZkfCh2DiSTsk="; 39 }; 40 41 + # This patch ensures that the cache implementation respects the env 42 + # variable `NIXPKGS_HOMEPAGE_CACHE_DIR`, which is set by default in the 43 + # wrapper below. 44 + # The patch is automatically generated by the `update.sh` script. 45 + patches = [ ./prerender_cache_path.patch ]; 46 47 + pnpmDeps = pnpm_10.fetchDeps { 48 + inherit (finalAttrs) 49 + pname 50 + version 51 + src 52 + patches 53 + ; 54 + hash = "sha256-GUDSfAbBK+6Bbih5jBrkjiMYLOJM7gMfurXFeez1bSw="; 55 + }; 56 57 + nativeBuildInputs = [ 58 + makeBinaryWrapper 59 + nodejs 60 + pnpm_10.configHook 61 + ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ cctools ]; 62 63 buildInputs = [ 64 nodePackages.node-gyp-build 65 + ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ darwin.apple_sdk.frameworks.IOKit ]; 66 67 env.PYTHON = "${python3}/bin/python"; 68 69 + buildPhase = '' 70 + runHook preBuild 71 + mkdir -p config 72 + pnpm build 73 + runHook postBuild 74 + ''; 75 + 76 installPhase = '' 77 runHook preInstall 78 79 + mkdir -p $out/{bin,share} 80 cp -r .next/standalone $out/share/homepage/ 81 cp -r public $out/share/homepage/public 82 + chmod +x $out/share/homepage/server.js 83 84 mkdir -p $out/share/homepage/.next 85 cp -r .next/static $out/share/homepage/.next/static 86 87 + makeWrapper "${lib.getExe nodejs}" $out/bin/homepage \ 88 --set-default PORT 3000 \ 89 --set-default HOMEPAGE_CONFIG_DIR /var/lib/homepage-dashboard \ 90 + --set-default NIXPKGS_HOMEPAGE_CACHE_DIR /var/cache/homepage-dashboard \ 91 + --add-flags "$out/share/homepage/server.js" 92 93 ${if enableLocalIcons then installLocalIcons else ""} 94 ··· 101 tests = { 102 inherit (nixosTests) homepage-dashboard; 103 }; 104 + updateScript = ./update.sh; 105 }; 106 107 meta = { 108 description = "Highly customisable dashboard with Docker and service API integrations"; 109 + changelog = "https://github.com/gethomepage/homepage/releases/tag/v${finalAttrs.version}"; 110 mainProgram = "homepage"; 111 homepage = "https://gethomepage.dev"; 112 license = lib.licenses.gpl3; ··· 114 platforms = lib.platforms.all; 115 broken = stdenv.hostPlatform.isDarwin; 116 }; 117 + })
-18
pkgs/servers/homepage-dashboard/prerender_cache_path.patch
··· 1 - diff --git a/share/homepage/node_modules/next/dist/server/lib/incremental-cache/file-system-cache.js b/share/homepage/node_modules/next/dist/server/lib/incremental-cache/file-system-cache.js 2 - index b1b74d8..a46c80b 100644 3 - --- a/share/homepage/node_modules/next/dist/server/lib/incremental-cache/file-system-cache.js 4 - +++ b/share/homepage/node_modules/next/dist/server/lib/incremental-cache/file-system-cache.js 5 - @@ -5,11 +5,12 @@ Object.defineProperty(exports, "__esModule", { 6 - exports.default = void 0; 7 - var _lruCache = _interopRequireDefault(require("next/dist/compiled/lru-cache")); 8 - var _path = _interopRequireDefault(require("../../../shared/lib/isomorphic/path")); 9 - +var path = require('node:path'); 10 - class FileSystemCache { 11 - constructor(ctx){ 12 - this.fs = ctx.fs; 13 - this.flushToDisk = ctx.flushToDisk; 14 - - this.serverDistDir = ctx.serverDistDir; 15 - + this.serverDistDir = path.join(process.env.NIXPKGS_HOMEPAGE_CACHE_DIR, "homepage"); 16 - this.appDir = !!ctx._appDir; 17 - if (ctx.maxMemoryCacheSize) { 18 - this.memoryCache = new _lruCache.default({
···
+2
pkgs/servers/monitoring/icinga2/default.nix
··· 8 bison, 9 systemd, 10 boost186, 11 openssl, 12 patchelf, 13 mariadb-connector-c, ··· 81 82 buildInputs = [ 83 boost186 84 openssl 85 systemd 86 ] ++ lib.optional withPostgresql libpq;
··· 8 bison, 9 systemd, 10 boost186, 11 + libedit, 12 openssl, 13 patchelf, 14 mariadb-connector-c, ··· 82 83 buildInputs = [ 84 boost186 85 + libedit 86 openssl 87 systemd 88 ] ++ lib.optional withPostgresql libpq;
+5
pkgs/tools/misc/yubikey-manager-qt/default.nix
··· 23 hash = "sha256-6bKeR3UX2DhXGcKJ1bxvT1aLTgCfc+aNo6ckE89NV+I="; 24 }; 25 26 nativeBuildInputs = [ 27 python3.pkgs.wrapPython 28 qmake ··· 85 meta = with lib; { 86 description = "Cross-platform application for configuring any YubiKey over all USB interfaces"; 87 homepage = "https://developers.yubico.com/yubikey-manager-qt/"; 88 license = licenses.bsd2; 89 maintainers = [ maintainers.cbley ]; 90 mainProgram = "ykman-gui";
··· 23 hash = "sha256-6bKeR3UX2DhXGcKJ1bxvT1aLTgCfc+aNo6ckE89NV+I="; 24 }; 25 26 + patches = [ ./remove-upload-import.diff ]; 27 + 28 nativeBuildInputs = [ 29 python3.pkgs.wrapPython 30 qmake ··· 87 meta = with lib; { 88 description = "Cross-platform application for configuring any YubiKey over all USB interfaces"; 89 homepage = "https://developers.yubico.com/yubikey-manager-qt/"; 90 + knownVulnerabilities = [ 91 + "Yubico has announced the End of Life of YubiKey Manager QT. Upstream recommends yubioath-flutter to configure a YubiKey. yubikey-manager-qt will be dropped after NixOS 25.05." 92 + ]; 93 license = licenses.bsd2; 94 maintainers = [ maintainers.cbley ]; 95 mainProgram = "ykman-gui";
+16
pkgs/tools/misc/yubikey-manager-qt/remove-upload-import.diff
···
··· 1 + --- a/ykman-gui/py/yubikey.py 2025-01-08 19:42:20.058393985 +0100 2 + +++ b/ykman-gui/py/yubikey.py 2025-01-08 19:44:12.520364702 +0100 3 + @@ -50,12 +50,10 @@ 4 + if int(ykman_v.split(".")[0] ) > 4: 5 + from yubikit.support import get_name 6 + from ykman.device import list_all_devices, scan_devices 7 + - from ykman.otp import ( 8 + - _PrepareUploadFailed as PrepareUploadFailed 9 + - , _prepare_upload_key as prepare_upload_key, generate_static_pw) 10 + + from ykman.otp import generate_static_pw 11 + else: 12 + from ykman import connect_to_device, scan_devices, get_name 13 + from ykman.otp import PrepareUploadFailed, prepare_upload_key, generate_static_pw 14 + 15 + from fido2.ctap2 import Ctap2, ClientPin 16 +
+1 -1
pkgs/tools/security/ecryptfs/default.nix
··· 56 done 57 ''; 58 59 - configureFlags = lib.optionals (!enablePython) [ "--disable-pywrap" ]; 60 61 nativeBuildInputs = 62 [
··· 56 done 57 ''; 58 59 + configureFlags = [ " --disable-openssl" ] ++ lib.optionals (!enablePython) [ "--disable-pywrap" ]; 60 61 nativeBuildInputs = 62 [
-4
pkgs/top-level/all-packages.nix
··· 2328 2329 hocr-tools = with python3Packages; toPythonApplication hocr-tools; 2330 2331 - homepage-dashboard = callPackage ../servers/homepage-dashboard { 2332 - inherit (darwin.apple_sdk.frameworks) IOKit; 2333 - }; 2334 - 2335 hopper = qt5.callPackage ../development/tools/analysis/hopper { }; 2336 2337 hypr = callPackage ../applications/window-managers/hyprwm/hypr {
··· 2328 2329 hocr-tools = with python3Packages; toPythonApplication hocr-tools; 2330 2331 hopper = qt5.callPackage ../development/tools/analysis/hopper { }; 2332 2333 hypr = callPackage ../applications/window-managers/hyprwm/hypr {
+4
pkgs/top-level/python-packages.nix
··· 6630 6631 ipython-genutils = callPackage ../development/python-modules/ipython-genutils { }; 6632 6633 ipython = callPackage ../development/python-modules/ipython { }; 6634 6635 ipython-sql = callPackage ../development/python-modules/ipython-sql { }; ··· 9427 netapp-ontap = callPackage ../development/python-modules/netapp-ontap { }; 9428 9429 netbox-bgp = callPackage ../development/python-modules/netbox-bgp { }; 9430 9431 netbox-dns = callPackage ../development/python-modules/netbox-dns { }; 9432
··· 6630 6631 ipython-genutils = callPackage ../development/python-modules/ipython-genutils { }; 6632 6633 + ipython-pygments-lexers = callPackage ../development/python-modules/ipython-pygments-lexers { }; 6634 + 6635 ipython = callPackage ../development/python-modules/ipython { }; 6636 6637 ipython-sql = callPackage ../development/python-modules/ipython-sql { }; ··· 9429 netapp-ontap = callPackage ../development/python-modules/netapp-ontap { }; 9430 9431 netbox-bgp = callPackage ../development/python-modules/netbox-bgp { }; 9432 + 9433 + netbox-contract = callPackage ../development/python-modules/netbox-contract { }; 9434 9435 netbox-dns = callPackage ../development/python-modules/netbox-dns { }; 9436