Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at fix-function-merge 24 lines 638 B view raw
1{ lib, buildGoModule, fetchFromGitHub }: 2 3buildGoModule rec { 4 pname = "efm-langserver"; 5 version = "0.0.53"; 6 7 src = fetchFromGitHub { 8 owner = "mattn"; 9 repo = "efm-langserver"; 10 rev = "v${version}"; 11 sha256 = "sha256-Csm+2C9hP+dTXliADUquAb1nC+8f5j1rJ+66cqWDrCk="; 12 }; 13 14 vendorHash = "sha256-0YkUak6+dpxvXn6nVVn33xrTEthWqnC9MhMLm/yjFMA="; 15 subPackages = [ "." ]; 16 17 meta = with lib; { 18 description = "General purpose Language Server"; 19 mainProgram = "efm-langserver"; 20 maintainers = with maintainers; [ Philipp-M ]; 21 homepage = "https://github.com/mattn/efm-langserver"; 22 license = licenses.mit; 23 }; 24}