vscode-extensions.biomejs.biome: 2025.2.72227 -> 2025.7.41733

qzylinra cae6777c 5a1cf292

+40 -20
+39
pkgs/applications/editors/vscode/extensions/biomejs.biome/default.nix
···
··· 1 + { 2 + lib, 3 + vscode-utils, 4 + jq, 5 + biome, 6 + moreutils, 7 + vscode-extension-update-script, 8 + }: 9 + 10 + vscode-utils.buildVscodeMarketplaceExtension { 11 + mktplcRef = { 12 + name = "biome"; 13 + publisher = "biomejs"; 14 + version = "2025.7.41733"; 15 + hash = "sha256-wWyLIjNOBjIe72ed+wwfQWGH7Vzuea/0Xux0XJkhAkY="; 16 + }; 17 + 18 + postInstall = '' 19 + cd "$out/$installPrefix" 20 + ${lib.getExe jq} '.contributes.configuration.properties."biome.lsp.bin".oneOf[0].default = "${lib.getExe biome}"' package.json | ${lib.getExe' moreutils "sponge"} package.json 21 + ''; 22 + 23 + passthru.updateScript = vscode-extension-update-script { 24 + extraArgs = [ "--pre-release" ]; 25 + }; 26 + 27 + meta = { 28 + changelog = "https://github.com/biomejs/biome-vscode/blob/main/CHANGELOG.md"; 29 + description = "Biome LSP extension for Visual Studio Code"; 30 + downloadPage = "https://marketplace.visualstudio.com/items?itemName=biomejs.biome"; 31 + homepage = "https://github.com/biomejs/biome-vscode"; 32 + license = with lib.licenses; [ 33 + mit 34 + # or 35 + asl20 36 + ]; 37 + maintainers = [ ]; 38 + }; 39 + }
+1 -20
pkgs/applications/editors/vscode/extensions/default.nix
··· 700 }; 701 }; 702 703 - biomejs.biome = buildVscodeMarketplaceExtension { 704 - mktplcRef = { 705 - name = "biome"; 706 - publisher = "biomejs"; 707 - version = "2025.2.72227"; 708 - hash = "sha256-Lj5+Vy8IbU70y6ee42cjxyz/mwpIAhWSF4KtL9OYo2Q="; 709 - }; 710 - meta = { 711 - changelog = "https://github.com/biomejs/biome-vscode/blob/main/CHANGELOG.md"; 712 - description = "Biome LSP extension for Visual Studio Code"; 713 - downloadPage = "https://marketplace.visualstudio.com/items?itemName=biomejs.biome"; 714 - homepage = "https://github.com/biomejs/biome-vscode"; 715 - license = with lib.licenses; [ 716 - mit 717 - # or 718 - asl20 719 - ]; 720 - maintainers = [ ]; 721 - }; 722 - }; 723 724 bmalehorn.vscode-fish = buildVscodeMarketplaceExtension { 725 mktplcRef = {
··· 700 }; 701 }; 702 703 + biomejs.biome = callPackage ./biomejs.biome { }; 704 705 bmalehorn.vscode-fish = buildVscodeMarketplaceExtension { 706 mktplcRef = {