e7ec2969af
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
37 lines
834 B
Nix
37 lines
834 B
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "cnspec";
|
|
version = "9.14.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mondoohq";
|
|
repo = "cnspec";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-9MIIxWfETi2DX1DYPALL+JoC4r3yKJpeSFIx+hrGKiM=";
|
|
};
|
|
|
|
proxyVendor = true;
|
|
vendorHash = "sha256-Yii2sDfYqIzQAUaMotT87Wa5g3skxWllq6yGlkPDbLg=";
|
|
|
|
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 ];
|
|
};
|
|
}
|