587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
40 lines
850 B
Nix
40 lines
850 B
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "cnspec";
|
|
version = "11.0.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mondoohq";
|
|
repo = "cnspec";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-TSTOhfFNFwuF9kNf1q2HVcoxhKS1pKW4kSorSPyyeQU=";
|
|
};
|
|
|
|
proxyVendor = true;
|
|
|
|
vendorHash = "sha256-Uuz/ghtd/1ol1ugDI7pz5Fyv6U5PpOdcoerU/qx4MPA=";
|
|
|
|
subPackages = [ "apps/cnspec" ];
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X=go.mondoo.com/cnspec.Version=${version}"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "An open source, cloud-native security and policy project";
|
|
homepage = "https://github.com/mondoohq/cnspec";
|
|
changelog = "https://github.com/mondoohq/cnspec/releases/tag/v${version}";
|
|
license = licenses.bsl11;
|
|
maintainers = with maintainers; [
|
|
fab
|
|
mariuskimmina
|
|
];
|
|
};
|
|
}
|