add goimports

This commit is contained in:
jz 2015-04-28 17:45:32 -06:00
parent cb8f111a72
commit 46e82353a1
2 changed files with 37 additions and 1 deletions

View File

@ -0,0 +1,34 @@
{ stdenv, lib, go, fetchurl, fetchgit, fetchFromGitHub }:
stdenv.mkDerivation rec {
rev = "7534f4943d94a318edde90212439e538ed54cdde";
version = "git-2015-04-26";
name = "goimports-${version}";
buildInputs = [ go ];
src = fetchFromGitHub {
inherit rev;
owner = "golang";
repo = "tools";
sha256 = "12ybykrn92l7awav0wkx9yqpc5z0pdwwi29qs9mdr2xspx61rb50";
};
buildPhase = ''
export GOPATH=$src
go build -v -o goimports golang.org/x/tools/cmd/goimports
'';
installPhase = ''
mkdir -p $out/bin
mv goimports $out/bin
'';
meta = with lib; {
description = "Import management tool for go";
homepage = https://godoc.org/golang.org/x/tools/cmd/goimports;
license = licenses.bsd3;
maintainers = with maintainers; [ jzellner ];
platforms = platforms.unix;
};
}

View File

@ -4842,7 +4842,7 @@ let
jdtsdk = callPackage ../development/eclipse/jdt-sdk { };
jruby165 = callPackage ../development/interpreters/jruby { };
jython = callPackage ../development/interpreters/jython {};
guileCairo = callPackage ../development/guile-modules/guile-cairo { };
@ -9496,6 +9496,8 @@ let
godep = callPackage ../development/tools/godep { };
goimports = callPackage ../development/tools/goimports { };
gogoclient = callPackage ../os-specific/linux/gogoclient { };
nss_ldap = callPackage ../os-specific/linux/nss_ldap { };