mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-20 04:33:57 +00:00
1c1aa06927
Signed-off-by: Bryan A. S <bryanasdev000@gmail.com>
24 lines
683 B
Nix
24 lines
683 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "kubectl-example";
|
|
version = "1.0.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "seredot";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "18vp53cda93qjssxygwqp55yc80a93781839gf3138awngf731yq";
|
|
};
|
|
|
|
vendorSha256 = "0sjjj9z1dhilhpc8pq4154czrb79z9cm044jvn75kxcjv6v5l2m5";
|
|
|
|
meta = with lib; {
|
|
description = "kubectl plugin for retrieving resource example YAMLs";
|
|
homepage = "https://github.com/seredot/kubectl-example";
|
|
changelog = "https://github.com/seredot/kubectl-example/releases/tag/v${version}";
|
|
license = licenses.asl20;
|
|
maintainers = [ maintainers.bryanasdev000 ];
|
|
};
|
|
}
|