Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, buildGoModule, fetchFromGitHub }: 2 3buildGoModule rec { 4 pname = "efm-langserver"; 5 version = "0.0.44"; 6 7 src = fetchFromGitHub { 8 owner = "mattn"; 9 repo = "efm-langserver"; 10 rev = "v${version}"; 11 sha256 = "sha256-+yN08MAoFaixvt2EexhRNucG6I4v2FdHf44XlYIwzhA="; 12 }; 13 14 vendorSha256 = "sha256-KABezphT5/o3XWSFNe2OvfawFR8uwsGMnjsI9xh378Q="; 15 subPackages = [ "." ]; 16 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 }; 23}