vscode-extensions.budparr.language-hugo-vscode: init at 1.3.1 (#405090)

authored by Pol Dellaiera and committed by GitHub f0f5a68f 7e622fcc

+28
+6
maintainers/maintainer-list.nix
··· 18111 18111 githubId = 49906709; 18112 18112 name = "Dakota"; 18113 18113 }; 18114 + ohheyrj = { 18115 + email = "richard+nix@ohheyrj.co.uk"; 18116 + github = "ohheyrj"; 18117 + name = "ohheyrj"; 18118 + githubId = 5339261; 18119 + }; 18114 18120 oida = { 18115 18121 email = "oida@posteo.de"; 18116 18122 github = "oida";
+20
pkgs/applications/editors/vscode/extensions/budparr.language-hugo-vscode/default.nix
··· 1 + { 2 + lib, 3 + vscode-utils, 4 + }: 5 + 6 + vscode-utils.buildVscodeMarketplaceExtension { 7 + mktplcRef = { 8 + name = "language-hugo-vscode"; 9 + publisher = "budparr"; 10 + version = "1.3.1"; 11 + hash = "sha256-9dp8/gLAb8OJnmsLVbOAKAYZ5whavPW2Ak+WhLqEbJk="; 12 + }; 13 + 14 + meta = { 15 + description = "Adds syntax highlighting and snippets to Hugo files in VS Code"; 16 + downloadPage = "https://marketplace.visualstudio.com/items?itemName=budparr.language-hugo-vscode"; 17 + license = lib.licenses.asl20; 18 + maintainers = [ lib.maintainers.ohheyrj ]; 19 + }; 20 + }
+2
pkgs/applications/editors/vscode/extensions/default.nix
··· 824 824 }; 825 825 }; 826 826 827 + budparr.language-hugo-vscode = callPackage ./budparr.language-hugo-vscode { }; 828 + 827 829 bungcip.better-toml = buildVscodeMarketplaceExtension { 828 830 mktplcRef = { 829 831 name = "better-toml";