nixpkgs/pkgs/applications/networking/cluster/kubeconform/default.nix

23 lines
554 B
Nix
Raw Normal View History

2021-03-26 00:06:26 +00:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "kubeconform";
2021-04-24 15:41:31 +00:00
version = "0.4.7";
2021-03-26 00:06:26 +00:00
src = fetchFromGitHub {
owner = "yannh";
repo = pname;
rev = "v${version}";
2021-04-24 15:41:31 +00:00
sha256 = "sha256-ahVdKMx3u2KnJ30wi9rV8JCVg9wPmbgdrtG8IpWWlCs=";
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 ];
};
}