Merge pull request #263827 from sysedwinistrator/jq-lsp

jq-lsp: init at unstable-2023-10-27
This commit is contained in:
Mario Rodas 2023-11-01 13:08:46 -05:00 committed by GitHub
commit c1a7aa731d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 34 additions and 0 deletions

View file

@ -17167,6 +17167,12 @@
githubId = 7075751;
name = "Patrick Hilhorst";
};
sysedwinistrator = {
email = "edwin.mowen@gmail.com";
github = "sysedwinistrator";
githubId = 71331875;
name = "Edwin Mackenzie-Owen";
};
szczyp = {
email = "qb@szczyp.com";
github = "Szczyp";

View file

@ -0,0 +1,26 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule {
pname = "jq-lsp";
version = "unstable-2023-10-27";
src = fetchFromGitHub {
owner = "wader";
repo = "jq-lsp";
rev = "b4707e7776a4eb3093b1a7533ebd41368240095a";
hash = "sha256-AU4xGweeFx+kSsrqkTtSjl+N77cITF/qvAVZGUZY5SE=";
};
vendorHash = "sha256-ppQ81uERHBgOr/bm/CoDSWcK+IqHwvcL6RFi0DgoLuw=";
meta = with lib; {
description = "jq language server";
homepage = "https://github.com/wader/jq-lsp";
license = licenses.mit;
maintainers = with maintainers; [ sysedwinistrator ];
mainProgram = "jq-lsp";
};
}

View file

@ -40457,6 +40457,8 @@ with pkgs;
j2cli = with python3Packages; toPythonApplication j2cli;
jq-lsp = callPackage ../development/tools/language-servers/jq-lsp { };
jquake = callPackage ../applications/misc/jquake { };
jstest-gtk = callPackage ../tools/misc/jstest-gtk { };