nixpkgs/pkgs/development/tools/efm-langserver/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
602 B
Nix
Raw Normal View History

2021-05-07 16:21:08 +00:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "efm-langserver";
2023-11-12 06:37:14 +00:00
version = "0.0.49";
2021-05-07 16:21:08 +00:00
src = fetchFromGitHub {
owner = "mattn";
repo = "efm-langserver";
rev = "v${version}";
2023-11-12 06:37:14 +00:00
sha256 = "sha256-sHdULnaLHe4FqP631c4ITNDn62nGJgAIIvO3C4kY3jI=";
2021-05-07 16:21:08 +00:00
};
2023-11-12 06:37:14 +00:00
vendorHash = "sha256-ZChHQ0Bcu9sVHvhdrmTfLryRwsFQNQSFDOKRu0keUIo=";
2021-05-07 16:21:08 +00:00
subPackages = [ "." ];
meta = with lib; {
description = "General purpose Language Server";
maintainers = with maintainers; [ Philipp-M ];
homepage = "https://github.com/mattn/efm-langserver";
license = licenses.mit;
};
}