summaryrefslogtreecommitdiffstats
path: root/pkgs/applications
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-03-26 09:55:10 +0100
committerGitHub <noreply@github.com>2021-03-26 09:55:10 +0100
commit81d7ca54fc0209a82843e28092a04080bd571ad2 (patch)
tree20b1c840c13d3632ca056fd629fd5c041056d191 /pkgs/applications
parentc4d77d1224938142bc618ab4c3be2a6a06c6f701 (diff)
parent551810ebbd7f9eb15b7f4caa3d23315106886d73 (diff)
Merge pull request #117635 from j4m3s-s/add-kubeconform
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 ];
+ };
+}