18 lines
533 B
Nix
18 lines
533 B
Nix
{ lib, vscode-utils }:
|
|
|
|
vscode-utils.buildVscodeMarketplaceExtension {
|
|
mktplcRef = {
|
|
name = "nimlang";
|
|
publisher = "nimlang";
|
|
version = "1.8.1";
|
|
hash = "sha256-Apfq0VeLEmXnxsaipA+aJr/QX+chAQQGQQ+64hqFIbA=";
|
|
};
|
|
meta = {
|
|
description = "Nim language support for VS Code";
|
|
downloadPage = "https://marketplace.visualstudio.com/items?itemName=nimlang.nimlang";
|
|
homepage = "https://github.com/nim-lang/vscode-nim";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ lib.maintainers.therobot2105 ];
|
|
};
|
|
}
|