go-langserver: unstable-2018-03-05 -> 2.0.0

This commit is contained in:
Will Dietz 2019-03-22 00:50:41 -05:00
parent ea34ad0e43
commit 4158b5d001

View File

@ -1,18 +1,17 @@
{ stdenv, buildGoPackage, fetchFromGitHub }: { stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec { buildGoPackage rec {
name = "go-langserver-${version}"; pname = "go-langserver";
version = "unstable-2018-03-05"; version = "2.0.0";
rev = "5d7a5dd74738978d635f709669241f164c120ebd";
goPackagePath = "github.com/sourcegraph/go-langserver"; goPackagePath = "github.com/sourcegraph/go-langserver";
subPackages = [ "." ]; subPackages = [ "." ];
src = fetchFromGitHub { src = fetchFromGitHub {
inherit rev; rev = "v${version}";
owner = "sourcegraph"; owner = "sourcegraph";
repo = "go-langserver"; repo = "go-langserver";
sha256 = "0aih0akk3wk3332znkhr2bzxcc3parijq7n089mdahnf20k69xyz"; sha256 = "1wv7xf81s3qi8xydxjkkp8vacdzrq8sbj04346fz73nsn85z0sgp";
}; };
meta = with stdenv.lib; { meta = with stdenv.lib; {