go-langserver: init at unstable-2018-03-05
This commit is contained in:
parent
a5a90aed1a
commit
79f4548aa2
|
@ -1720,6 +1720,11 @@
|
||||||
github = "johnazoidberg";
|
github = "johnazoidberg";
|
||||||
name = "Daniel Schäfer";
|
name = "Daniel Schäfer";
|
||||||
};
|
};
|
||||||
|
johnchildren = {
|
||||||
|
email = "john.a.children@gmail.com";
|
||||||
|
github = "johnchildren";
|
||||||
|
name = "John Children";
|
||||||
|
};
|
||||||
johnmh = {
|
johnmh = {
|
||||||
email = "johnmh@openblox.org";
|
email = "johnmh@openblox.org";
|
||||||
github = "johnmh";
|
github = "johnmh";
|
||||||
|
|
|
@ -0,0 +1,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;
|
||||||
|
};
|
||||||
|
}
|
|
@ -13650,6 +13650,8 @@ with pkgs;
|
||||||
|
|
||||||
gomodifytags = callPackage ../development/tools/gomodifytags { };
|
gomodifytags = callPackage ../development/tools/gomodifytags { };
|
||||||
|
|
||||||
|
go-langserver = callPackage ../development/tools/go-langserver { };
|
||||||
|
|
||||||
gotests = callPackage ../development/tools/gotests { };
|
gotests = callPackage ../development/tools/gotests { };
|
||||||
|
|
||||||
gogoclient = callPackage ../os-specific/linux/gogoclient { };
|
gogoclient = callPackage ../os-specific/linux/gogoclient { };
|
||||||
|
|
Loading…
Reference in New Issue