mirror of
https://github.com/kmein/niveum
synced 2026-03-16 10:11:08 +01:00
17 lines
383 B
Nix
17 lines
383 B
Nix
{
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
lib,
|
|
}:
|
|
buildGoModule {
|
|
name = "jq-lsp";
|
|
version = "unstable-2023-09-08";
|
|
src = fetchFromGitHub {
|
|
owner = "wader";
|
|
repo = "jq-lsp";
|
|
rev = "85edf1adbe5e6c91b37c67b6a4bf85eda1e49f2f";
|
|
hash = "sha256-ItLKRSbGZ8UqFEHCoh96KwhSpuKZ3l+2ZXnBkHEZL0M=";
|
|
};
|
|
vendorHash = "sha256-ppQ81uERHBgOr/bm/CoDSWcK+IqHwvcL6RFi0DgoLuw=";
|
|
}
|