mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-16 18:53:17 +00:00
24 lines
602 B
Nix
24 lines
602 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "efm-langserver";
|
|
version = "0.0.49";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mattn";
|
|
repo = "efm-langserver";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-sHdULnaLHe4FqP631c4ITNDn62nGJgAIIvO3C4kY3jI=";
|
|
};
|
|
|
|
vendorHash = "sha256-ZChHQ0Bcu9sVHvhdrmTfLryRwsFQNQSFDOKRu0keUIo=";
|
|
subPackages = [ "." ];
|
|
|
|
meta = with lib; {
|
|
description = "General purpose Language Server";
|
|
maintainers = with maintainers; [ Philipp-M ];
|
|
homepage = "https://github.com/mattn/efm-langserver";
|
|
license = licenses.mit;
|
|
};
|
|
}
|