infrastructure/nixos/pkgs/vscode-extensions/platformio.nix

11 lines
293 B
Nix
Raw Normal View History

2022-10-06 11:54:43 +02:00
{ vscode-utils, lib }:
let inherit (vscode-utils) buildVscodeMarketplaceExtension;
in buildVscodeMarketplaceExtension {
mktplcRef = {
name = "platformio-ide";
publisher = "platformio";
version = "2.5.4";
2022-10-30 11:08:04 +01:00
sha256 = "sha256-KbXlegQSLjMCVotR1mU/CDiaQMKLLSX+nnbRJgdFTz8=";
2022-10-06 11:54:43 +02:00
};
}