nixpkgs/pkgs/development/tools/govendor/default.nix
2021-01-23 20:30:03 +07:00

23 lines
581 B
Nix

{ lib, stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
pname = "govendor";
version = "1.0.9";
goPackagePath = "github.com/kardianos/govendor";
src = fetchFromGitHub {
owner = "kardianos";
repo = "govendor";
rev = "v${version}";
sha256 = "0g02cd25chyijg0rzab4xr627pkvk5k33mscd6r0gf1v5xvadcfq";
};
meta = with 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 ];
};
}