godef: init at 20160620-ee532b9

Signed-off-by: Vincent Demeester <vincent@sbr.pm>
This commit is contained in:
Vincent Demeester 2016-11-03 08:30:49 +01:00
parent 4ae2a59aaa
commit 1e2f37e9f4
No known key found for this signature in database
GPG key ID: 083CC6FD6EB699A3
3 changed files with 27 additions and 1 deletions

View file

@ -455,6 +455,7 @@
vbgl = "Vincent Laporte <Vincent.Laporte@gmail.com>";
vbmithr = "Vincent Bernardoff <vb@luminar.eu.org>";
vcunat = "Vladimír Čunát <vcunat@gmail.com>";
vdemeester = "Vincent Demeester <vincent@sbr.pm>";
veprbl = "Dmitry Kalinkin <veprbl@gmail.com>";
viric = "Lluís Batlle i Rossell <viric@viric.name>";
vizanto = "Danny Wilson <danny@prime.vc>";

View file

@ -0,0 +1,23 @@
{ stdenv, lib, buildGoPackage, fetchgit }:
buildGoPackage rec {
name = "godef-${version}";
version = "20160620-${stdenv.lib.strings.substring 0 7 rev}";
rev = "ee532b944160bb27b6f23e4f5ef38b8fdaa2a6bd";
goPackagePath = "github.com/rogpeppe/godef";
excludedPackages = "go/printer/testdata";
src = fetchgit {
inherit rev;
url = "https://github.com/rogpeppe/godef";
sha256 = "1r8c4ijjnwvb9pci4wasmq88yj0ginwly2542kw4hyg2c87j613l";
};
meta = {
description = "Print where symbols are defined in Go source code";
homepage = "https://github.com/rogpeppe/godef/";
maintainers = with stdenv.lib.maintainers; [ vdemeester ];
licence = stdenv.lib.licenses.bsd3;
};
}

View file

@ -7077,7 +7077,7 @@ in
#GMP ex-satellite, so better keep it near gmp
mpfr = callPackage ../development/libraries/mpfr/default.nix { };
mpfi = callPackage ../development/libraries/mpfi { };
# A GMP fork
@ -11228,6 +11228,8 @@ in
godep = callPackage ../development/tools/godep { };
godef = callPackage ../development/tools/godef { };
goimports = callPackage ../development/tools/goimports { };
govers = callPackage ../development/tools/govers { };