depot/third_party/nixpkgs/pkgs/development/tools/efm-langserver/default.nix
Default email 3cbfd2b52c Project import generated by Copybara.
GitOrigin-RevId: 395879c28386e1abf20c7ecacd45880759548391
2021-12-18 20:06:50 -05:00

23 lines
604 B
Nix

{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "efm-langserver";
version = "0.0.38";
src = fetchFromGitHub {
owner = "mattn";
repo = "efm-langserver";
rev = "v${version}";
sha256 = "sha256-+Q3vSifPiE9PyxJnoapJ1CBKUioTHExwBbWJgWD1iNI=";
};
vendorSha256 = "sha256-tca+1SRrFyvU8ttHmfMFiGXd1A8rQSEWm1Mc2qp0EfI=";
subPackages = [ "." ];
meta = with lib; {
description = "General purpose Language Server";
maintainers = with maintainers; [ Philipp-M ];
homepage = "https://github.com/mattn/efm-langserver";
license = licenses.mit;
};
}