Skip to content

Commit

Permalink
govendor: init at 1.0.9 (#46485)
Browse files Browse the repository at this point in the history
  • Loading branch information
zimbatm committed Sep 10, 2018
1 parent 4a6b550 commit 404b224
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
22 changes: 22 additions & 0 deletions pkgs/development/tools/govendor/default.nix
Original file line number Diff line number Diff line change
@@ -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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 { };
Expand Down

0 comments on commit 404b224

Please sign in to comment.