mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-12 15:14:13 +00:00
31 lines
842 B
Nix
31 lines
842 B
Nix
{
|
|
lib,
|
|
vscode-utils,
|
|
lua-language-server,
|
|
}:
|
|
|
|
vscode-utils.buildVscodeMarketplaceExtension {
|
|
mktplcRef = {
|
|
name = "lua";
|
|
publisher = "sumneko";
|
|
version = "3.7.3";
|
|
hash = "sha256-JsZrCeT843QvQkebyOVlO9MI2xbEQI8xX0DrPacfGrM=";
|
|
};
|
|
|
|
# Running chmod in runtime will lock up extension
|
|
# indefinitely if the binary is in nix store.
|
|
patches = [ ./remove-chmod.patch ];
|
|
|
|
postInstall = ''
|
|
ln -sf ${lua-language-server}/bin/lua-language-server \
|
|
$out/$installPrefix/server/bin/lua-language-server
|
|
'';
|
|
|
|
meta = {
|
|
description = "The Lua language server provides various language features for Lua to make development easier and faster.";
|
|
homepage = "https://marketplace.visualstudio.com/items?itemName=sumneko.lua";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ lib.maintainers.lblasc ];
|
|
};
|
|
}
|