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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
555 B
Nix
Raw Normal View History

2021-03-26 00:06:26 +00:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "kubeconform";
2022-02-24 12:00:31 +00:00
version = "0.4.13";
2021-03-26 00:06:26 +00:00
src = fetchFromGitHub {
owner = "yannh";
repo = pname;
rev = "v${version}";
2022-02-24 12:00:31 +00:00
sha256 = "sha256-hKsGti04pUZj02uzah7ccImmg/qn31ceVfk11aTa9rk=";
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 ];
};
}