3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/networking/cluster/kubeconform/default.nix

23 lines
555 B
Nix
Raw Normal View History

2021-03-26 00:06:26 +00:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "kubeconform";
2021-09-06 13:15:12 +01:00
version = "0.4.10";
2021-03-26 00:06:26 +00:00
src = fetchFromGitHub {
owner = "yannh";
repo = pname;
rev = "v${version}";
2021-09-06 13:15:12 +01:00
sha256 = "sha256-D1/ljIOc5vK6HcYmk0WNnIRGBt1vJk9dGxl5GjhKhuA=";
2021-03-26 00:06:26 +00:00
};
vendorSha256 = null;
meta = with lib; {
description = "A FAST Kubernetes manifests validator, with support for Custom Resources!";
homepage = "https://github.com/yannh/kubeconform/";
license = licenses.asl20;
maintainers = [ maintainers.j4m3s ];
};
}