3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/networking/cluster/starboard/default.nix

43 lines
1.2 KiB
Nix
Raw Normal View History

2020-10-13 13:50:55 +01:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "starboard";
2021-01-26 19:46:15 +00:00
version = "0.9.0";
2020-10-13 13:50:55 +01:00
src = fetchFromGitHub {
owner = "aquasecurity";
repo = pname;
rev = "v${version}";
2021-01-26 19:46:15 +00:00
sha256 = "sha256-BzOpP34UumGaAL+vc+lkCKBuK8i0zAWzpMLuPszupQI=";
2020-10-13 13:50:55 +01:00
};
2021-01-26 19:46:15 +00:00
vendorSha256 = "sha256-XOneGFTtoxuHnjGVse15Ypfo7vO3ReeGs46qLG619aM=";
subPackages = [ "cmd/starboard" ];
2020-10-13 13:50:55 +01:00
doCheck = false;
buildFlagsArray = [
"-ldflags="
"-s"
"-w"
"-X main.version=v${version}"
];
meta = with lib; {
description = "Kubernetes-native security tool kit";
longDescription = ''
Starboard integrates security tools into the Kubernetes environment, so
that users can find and view the risks that relate to different resources
in a Kubernetes-native way. Starboard provides custom security resources
definitions and a Go module to work with a range of existing security
tools, as well as a kubectl-compatible command-line tool and an Octant
plug-in that make security reports available through familiar Kubernetes
tools.
'';
homepage = src.meta.homepage;
license = licenses.asl20;
maintainers = with maintainers; [ jk ];
};
}