nixpkgs/pkgs/tools/security/kubei/default.nix

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

32 lines
897 B
Nix
Raw Normal View History

2021-04-26 10:56:22 +02:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "kubei";
2021-05-25 20:44:39 +02:00
version = "1.0.12";
2021-04-26 10:56:22 +02:00
src = fetchFromGitHub {
owner = "Portshift";
repo = pname;
rev = version;
2021-05-25 20:44:39 +02:00
sha256 = "sha256-QUPRw8fQ6ahBLZox6m4+feYIrcgDnCTe72nMF8iAV+Y=";
2021-04-26 10:56:22 +02:00
};
2021-05-25 20:44:39 +02:00
vendorSha256 = "sha256-uWDQf0zcTTPBthK60bmGJBP/m+yUu5PvYAbwyd0dcWE=";
2021-04-26 10:56:22 +02:00
meta = with lib; {
description = "Kubernetes runtime scanner";
longDescription = ''
Kubei is a vulnerabilities scanning and CIS Docker benchmark tool that
allows users to get an accurate and immediate risk assessment of their
kubernetes clusters. Kubei scans all images that are being used in a
Kubernetes cluster, including images of application pods and system pods.
'';
homepage = "https://github.com/Portshift/kubei";
license = with licenses; [ asl20 ];
maintainers = with maintainers; [ fab ];
};
}