nixpkgs/pkgs/development/tools/gocode/default.nix

30 lines
679 B
Nix
Raw Normal View History

2014-06-23 09:49:58 +00:00
{ 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 = ''
2014-07-22 09:01:32 +00:00
mkdir -p $out/bin
2014-06-23 09:49:58 +00:00
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;
};
}