vscode-extensions.github.{copilot,copilot-chat}: bump (compatible with VSCode 1.100) (#407552)

authored by Pol Dellaiera and committed by GitHub 1850bc16 75697502

+44 -33
+2 -33
pkgs/applications/editors/vscode/extensions/default.nix
··· 2077 }; 2078 }; 2079 2080 - github.copilot = buildVscodeMarketplaceExtension { 2081 - mktplcRef = { 2082 - publisher = "github"; 2083 - name = "copilot"; 2084 - # Verify which version is available with nix run nixpkgs#vsce -- show github.copilot --json 2085 - version = "1.317.0"; 2086 - hash = "sha256-w8HH1ibkOrpuKi3Yhzr+DjVIY7HWZ2L4rYzNYrHkfbc="; 2087 - }; 2088 2089 - meta = { 2090 - description = "GitHub Copilot uses OpenAI Codex to suggest code and entire functions in real-time right from your editor"; 2091 - downloadPage = "https://marketplace.visualstudio.com/items?itemName=GitHub.copilot"; 2092 - homepage = "https://github.com/features/copilot"; 2093 - license = lib.licenses.unfree; 2094 - maintainers = [ lib.maintainers.Zimmi48 ]; 2095 - }; 2096 - }; 2097 - 2098 - github.copilot-chat = buildVscodeMarketplaceExtension { 2099 - mktplcRef = { 2100 - publisher = "github"; 2101 - name = "copilot-chat"; 2102 - # Verify which version is available with nix run nixpkgs#vsce -- show github.copilot-chat --json 2103 - version = "0.26.7"; # latest compatible with vscode ^1.98 2104 - hash = "sha256-aR6AGU/boDmYef0GWna5sUsyv9KYGCkugWpFIusDMNE="; 2105 - }; 2106 - meta = { 2107 - description = "GitHub Copilot Chat is a companion extension to GitHub Copilot that houses experimental chat features"; 2108 - downloadPage = "https://marketplace.visualstudio.com/items?itemName=GitHub.copilot-chat"; 2109 - homepage = "https://github.com/features/copilot"; 2110 - license = lib.licenses.unfree; 2111 - maintainers = [ lib.maintainers.laurent-f1z1 ]; 2112 - }; 2113 - }; 2114 2115 github.github-vscode-theme = buildVscodeMarketplaceExtension { 2116 mktplcRef = {
··· 2077 }; 2078 }; 2079 2080 + github.copilot = callPackage ./github.copilot { }; 2081 2082 + github.copilot-chat = callPackage ./github.copilot-chat { }; 2083 2084 github.github-vscode-theme = buildVscodeMarketplaceExtension { 2085 mktplcRef = {
+21
pkgs/applications/editors/vscode/extensions/github.copilot-chat/default.nix
···
··· 1 + { 2 + lib, 3 + vscode-utils, 4 + }: 5 + 6 + vscode-utils.buildVscodeMarketplaceExtension { 7 + mktplcRef = { 8 + publisher = "github"; 9 + name = "copilot-chat"; 10 + version = "0.27.1"; 11 + hash = "sha256-HXzPI8B4wISly2SQNdbFO6CEREfhey+SH4HhutxH7Mg="; 12 + }; 13 + 14 + meta = { 15 + description = "GitHub Copilot Chat is a companion extension to GitHub Copilot that houses experimental chat features"; 16 + downloadPage = "https://marketplace.visualstudio.com/items?itemName=GitHub.copilot-chat"; 17 + homepage = "https://github.com/features/copilot"; 18 + license = lib.licenses.unfree; 19 + maintainers = [ lib.maintainers.laurent-f1z1 ]; 20 + }; 21 + }
+21
pkgs/applications/editors/vscode/extensions/github.copilot/default.nix
···
··· 1 + { 2 + lib, 3 + vscode-utils, 4 + }: 5 + 6 + vscode-utils.buildVscodeMarketplaceExtension { 7 + mktplcRef = { 8 + publisher = "github"; 9 + name = "copilot"; 10 + version = "1.322.0"; 11 + hash = "sha256-PekZQeRqpCSSVQe+AA0XLAwC3K0LGtRMbfnN7MxfmGA="; 12 + }; 13 + 14 + meta = { 15 + description = "GitHub Copilot uses OpenAI Codex to suggest code and entire functions in real-time right from your editor"; 16 + downloadPage = "https://marketplace.visualstudio.com/items?itemName=GitHub.copilot"; 17 + homepage = "https://github.com/features/copilot"; 18 + license = lib.licenses.unfree; 19 + maintainers = [ lib.maintainers.Zimmi48 ]; 20 + }; 21 + }