Merge pull request #278928 from gepbird/lua-language-server-3.7.4

lua-language-server: 3.7.3 -> 3.7.4
This commit is contained in:
figsoda 2024-01-08 03:09:42 -05:00 committed by GitHub
commit 1479f06fc6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,14 +1,14 @@
{ lib, stdenv, fetchFromGitHub, ninja, makeWrapper, CoreFoundation, Foundation, ditto }:
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "lua-language-server";
version = "3.7.3";
version = "3.7.4";
src = fetchFromGitHub {
owner = "luals";
repo = "lua-language-server";
rev = version;
hash = "sha256-iAxRGG7/zaUbJ/PWgmjxGS0UTq9/OXc8RWzlpUTUftc=";
rev = finalAttrs.version;
hash = "sha256-wJOOzKM2pgxfRqx5WZjOcCyRapz0Sub3AYm51LRYpFU=";
fetchSubmodules = true;
};
@ -89,4 +89,4 @@ stdenv.mkDerivation rec {
mainProgram = "lua-language-server";
platforms = platforms.linux ++ platforms.darwin;
};
}
})