summaryrefslogtreecommitdiffstats
path: root/pkgs/applications
diff options
context:
space:
mode:
authorJames Landrein <github@j4m3s.eu>2021-03-26 01:06:26 +0100
committerJames Landrein <github@j4m3s.eu>2021-03-26 01:06:26 +0100
commit551810ebbd7f9eb15b7f4caa3d23315106886d73 (patch)
tree45a2a714e0fff43b3506337a878c00f89907b384 /pkgs/applications
parent97101da6b013762a5c7661c4280bc04e86096ced (diff)
kubeconform: init at 0.4.6
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/networking/cluster/kubeconform/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/applications/networking/cluster/kubeconform/default.nix b/pkgs/applications/networking/cluster/kubeconform/default.nix
new file mode 100644
index 000000000000..ca5e30154da4
--- /dev/null
+++ b/pkgs/applications/networking/cluster/kubeconform/default.nix
@@ -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 ];
+ };
+}