python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / tools / efm-langserver / default.nix
blob788c4edc9a86f5dd9d83625d2c8393041d946d9e
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "efm-langserver";
5   version = "0.0.44";
7   src = fetchFromGitHub {
8     owner = "mattn";
9     repo = "efm-langserver";
10     rev = "v${version}";
11     sha256 = "sha256-+yN08MAoFaixvt2EexhRNucG6I4v2FdHf44XlYIwzhA=";
12   };
14   vendorSha256 = "sha256-KABezphT5/o3XWSFNe2OvfawFR8uwsGMnjsI9xh378Q=";
15   subPackages = [ "." ];
17   meta = with lib; {
18     description = "General purpose Language Server";
19     maintainers = with maintainers; [ Philipp-M ];
20     homepage = "https://github.com/mattn/efm-langserver";
21     license = licenses.mit;
22   };