govendor: init at 1.0.9 (#46485)

This commit is contained in:
zimbatm 2018-09-10 17:47:58 +01:00 committed by GitHub
parent 4a6b5503aa
commit 404b224529
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "govendor-${version}";
version = "1.0.9";
goPackagePath = "github.com/kardianos/govendor";
src = fetchFromGitHub {
owner = "kardianos";
repo = "govendor";
rev = "v${version}";
sha256 = "0g02cd25chyijg0rzab4xr627pkvk5k33mscd6r0gf1v5xvadcfq";
};
meta = with stdenv.lib; {
homepage = "https://github.com/kardianos/govendor";
description = "Go vendor tool that works with the standard vendor file";
license = licenses.bsd3;
maintainers = with maintainers; [ zimbatm ];
};
}

View file

@ -14466,6 +14466,8 @@ with pkgs;
govers = callPackage ../development/tools/govers { };
govendor = callPackage ../development/tools/govendor { };
gotools = callPackage ../development/tools/gotools { };
gotop = callPackage ../tools/system/gotop { };