about summary refs log tree commit diff
path: root/pkgs/applications/networking/cluster
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2021-03-26 00:15:53 +0000
committerGitHub <noreply@github.com>2021-03-26 00:15:53 +0000
commitb068d2e437ae96c1d10b2371cb12db8b9bf84d47 (patch)
tree6390dc805adf7592dbb65e5aacab273baa0d55ae /pkgs/applications/networking/cluster
parent7c9222212f37f17ec9708d721d65c48c09717a26 (diff)
parent01f3ceeaa96916c47698148ed6cded69ae81590b (diff)
downloadnixlib-b068d2e437ae96c1d10b2371cb12db8b9bf84d47.tar
nixlib-b068d2e437ae96c1d10b2371cb12db8b9bf84d47.tar.gz
nixlib-b068d2e437ae96c1d10b2371cb12db8b9bf84d47.tar.bz2
nixlib-b068d2e437ae96c1d10b2371cb12db8b9bf84d47.tar.lz
nixlib-b068d2e437ae96c1d10b2371cb12db8b9bf84d47.tar.xz
nixlib-b068d2e437ae96c1d10b2371cb12db8b9bf84d47.tar.zst
nixlib-b068d2e437ae96c1d10b2371cb12db8b9bf84d47.zip
Merge master into staging-next
Diffstat (limited to 'pkgs/applications/networking/cluster')
-rw-r--r--pkgs/applications/networking/cluster/kube-score/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/applications/networking/cluster/kube-score/default.nix b/pkgs/applications/networking/cluster/kube-score/default.nix
new file mode 100644
index 000000000000..76bd115a9b13
--- /dev/null
+++ b/pkgs/applications/networking/cluster/kube-score/default.nix
@@ -0,0 +1,22 @@
+{ lib, buildGoModule, fetchFromGitHub }:
+
+buildGoModule rec {
+  pname = "kube-score";
+  version = "1.10.1";
+
+  src = fetchFromGitHub {
+    owner = "zegl";
+    repo = pname;
+    rev = "v${version}";
+    sha256 = "sha256-TYsuSPWTiIlPscul/QO59+lt6sbjJdt7pJuJYO5R9Tc=";
+  };
+
+  vendorSha256 = "sha256-ob7mNheyeTcDWml4gi1SD3Pq+oWtJeySIUg2ZrCj0y0=";
+
+  meta = with lib; {
+    description = "Kubernetes object analysis with recommendations for improved reliability and security";
+    homepage    = "https://github.com/zegl/kube-score";
+    license     = licenses.mit;
+    maintainers = [ maintainers.j4m3s ];
+  };
+}