summary refs log tree commit diff
path: root/pkgs/development/tools/gocode/default.nix
blob: 30e4b79ee38bfc26362b33d965a56954c81cc722 (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
26
27
28
29
{ stdenv, lib, go, fetchurl, fetchgit, fetchhg, fetchbzr, fetchFromGitHub }:

stdenv.mkDerivation rec {
  name = "gocode";

  src = import ./deps.nix {
    inherit stdenv lib fetchgit fetchhg fetchbzr fetchFromGitHub;
  };

  buildInputs = [ go ];

  buildPhase = ''
    export GOPATH=$src
    go build -v -o gocode github.com/nsf/gocode
  '';

  installPhase = ''
    mkdir -p $out/bin
    mv gocode $out/bin
  '';

  meta = with lib; {
    description = "An autocompletion daemon for the Go programming language";
    homepage = https://github.com/nsf/gocode;
    license = licenses.mit;
    maintainers = with maintainers; [ cstrahan ];
    platforms = platforms.unix;
  };
}