mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
kubeconform: init at 0.4.6
This commit is contained in:
parent
97101da6b0
commit
551810ebbd
22
pkgs/applications/networking/cluster/kubeconform/default.nix
Normal file
22
pkgs/applications/networking/cluster/kubeconform/default.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{ lib, buildGoModule, fetchFromGitHub }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "kubeconform";
|
||||
version = "0.4.6";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "yannh";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-lduHYYskEPUimEX54ymOyo5jY7GGBB42YTefDMNS4qo=";
|
||||
};
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
@ -23661,6 +23661,8 @@ in
|
||||
|
||||
kubernix = callPackage ../applications/networking/cluster/kubernix { };
|
||||
|
||||
kubeconform = callPackage ../applications/networking/cluster/kubeconform { };
|
||||
|
||||
kubectl = callPackage ../applications/networking/cluster/kubectl { };
|
||||
|
||||
kubectl-doctor = callPackage ../applications/networking/cluster/kubectl-doctor { };
|
||||
|
Loading…
Reference in New Issue
Block a user