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
604 B
Nix
Raw Normal View History

2021-05-07 16:21:08 +00:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "efm-langserver";
2022-03-24 12:17:44 +00:00
version = "0.0.42";
2021-05-07 16:21:08 +00:00
src = fetchFromGitHub {
owner = "mattn";
repo = "efm-langserver";
rev = "v${version}";
2022-03-24 12:17:44 +00:00
sha256 = "sha256-1IAPtqIozp9Wp3L95mmhFuWvWvCDuTh1VsCVaJSzyfk=";
2021-05-07 16:21:08 +00:00
};
2022-03-24 12:17:44 +00:00
vendorSha256 = "sha256-KABezphT5/o3XWSFNe2OvfawFR8uwsGMnjsI9xh378Q=";
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;
};
}