summary refs log tree commit diff
path: root/pkgs/development/tools/go-langserver/default.nix
blob: 84efaf2a4b6355729a04eaa65f0b1e3cd416c245 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ stdenv, buildGoPackage, fetchFromGitHub }:

buildGoPackage rec {
  name = "go-langserver-${version}";
  version = "unstable-2018-03-05";
  rev = "5d7a5dd74738978d635f709669241f164c120ebd";

  goPackagePath = "github.com/sourcegraph/go-langserver";
  subPackages = [ "." ];

  src = fetchFromGitHub {
    inherit rev;
    owner = "sourcegraph";
    repo = "go-langserver";
    sha256 = "0aih0akk3wk3332znkhr2bzxcc3parijq7n089mdahnf20k69xyz";
  };

  meta = with stdenv.lib; {
    description = "A Go language server protocol server";
    homepage = https://github.com/sourcegraph/go-langserver;
    license = licenses.mit;
    maintainers = with maintainers; [ johnchildren ];
    platforms = platforms.unix;
  };
}