aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/tools/gocode
diff options
context:
space:
mode:
authorWael Nasreddine <wael.nasreddine@gmail.com>2018-09-05 11:31:58 -0700
committerxeji <36407913+xeji@users.noreply.github.com>2018-09-05 20:31:58 +0200
commit7e740131902cb455e20383431cf16b3ea4ab7c79 (patch)
tree3b6d8939ddbbdd7decbd1d28e65a02b28385b75c /pkgs/development/tools/gocode
parentb4dd956bb1920a70143cc672ed747f25c2bf6ea1 (diff)
gocode: c7fddb39ecbc9ebd1ebe7d2a3af473ed0fffffa1 -> 00e7f5ac290aeb20a3d8d31e737ae560a191a1d5 (#46107)
Also, switch to the now-maintained fork of gocode available at github.com/mdempsky/gocode
Diffstat (limited to 'pkgs/development/tools/gocode')
-rw-r--r--pkgs/development/tools/gocode/default.nix41
1 files changed, 34 insertions, 7 deletions
diff --git a/pkgs/development/tools/gocode/default.nix b/pkgs/development/tools/gocode/default.nix
index a20e1658988c..64921ec6e10e 100644
--- a/pkgs/development/tools/gocode/default.nix
+++ b/pkgs/development/tools/gocode/default.nix
@@ -1,20 +1,47 @@
-{ stdenv, buildGoPackage, fetchgit }:
+{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "gocode-${version}";
- version = "20170903-${stdenv.lib.strings.substring 0 7 rev}";
- rev = "c7fddb39ecbc9ebd1ebe7d2a3af473ed0fffffa1";
+ version = "20180727-${stdenv.lib.strings.substring 0 7 rev}";
+ rev = "00e7f5ac290aeb20a3d8d31e737ae560a191a1d5";
- goPackagePath = "github.com/nsf/gocode";
+ goPackagePath = "github.com/mdempsky/gocode";
# we must allow references to the original `go` package,
# because `gocode` needs to dig into $GOROOT to provide completions for the
# standard packages.
allowGoReference = true;
- src = fetchgit {
+ src = fetchFromGitHub {
+ owner = "mdempsky";
+ repo = "gocode";
inherit rev;
- url = "https://github.com/nsf/gocode";
- sha256 = "0qx8pq38faig41xkl1a4hrgp3ziyjyn6g53vn5wj7cdgm5kk67nb";
+ sha256 = "0vrwjq4r90za47hm88yx5h2mvkv7y4yaj2xbx3skg62wq2drsq31";
+ };
+
+ preBuild = ''
+ # getting an error building the testdata because they contain invalid files
+ # on purpose as part of the testing.
+ rm -r go/src/$goPackagePath/internal/suggest/testdata
+ '';
+
+ meta = with stdenv.lib; {
+ description = "An autocompletion daemon for the Go programming language";
+ longDescription = ''
+ Gocode is a helper tool which is intended to be integrated with your
+ source code editor, like vim, neovim and emacs. It provides several
+ advanced capabilities, which currently includes:
+
+ - Context-sensitive autocompletion
+
+ It is called daemon, because it uses client/server architecture for
+ caching purposes. In particular, it makes autocompletions very fast.
+ Typical autocompletion time with warm cache is 30ms, which is barely
+ noticeable.
+ '';
+ homepage = https://github.com/mdempsky/gocode;
+ license = licenses.mit;
+ platforms = platforms.all;
+ maintainers = with maintainers; [ kalbasit ];
};
}