acr-cli: init at 0.14 (#359508)
[NixPkgs.git] / pkgs / by-name / ku / kubectl-example / package.nix
blobdc917a987e0d2b4bdc5079b158d87f3cfd6658ab
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "kubectl-example";
5   version = "1.2.0";
7   src = fetchFromGitHub {
8     owner = "seredot";
9     repo = pname;
10     rev = "v${version}";
11     hash = "sha256-YvB4l+7GLSyYWX2Fbk4gT2WLaQpNxeV0aHY3Pg+9LCM=";
12   };
14   vendorHash = null;
16   meta = with lib; {
17     description = "kubectl plugin for retrieving resource example YAMLs";
18     mainProgram = "kubectl-example";
19     homepage = "https://github.com/seredot/kubectl-example";
20     changelog = "https://github.com/seredot/kubectl-example/releases/tag/v${version}";
21     license = licenses.asl20;
22     maintainers = [ maintainers.bryanasdev000 ];
23   };