mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
dc326aed05
Diff: https://github.com/mondoohq/cnspec/compare/refs/tags/v11.19.0...v11.23.0 Changelog: https://github.com/mondoohq/cnspec/releases/tag/v11.23.0
40 lines
848 B
Nix
40 lines
848 B
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "cnspec";
|
|
version = "11.23.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mondoohq";
|
|
repo = "cnspec";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-oZCKNsbDdsqlh763/T23+A03Qt8f/XyC8MItMah+U3w=";
|
|
};
|
|
|
|
proxyVendor = true;
|
|
|
|
vendorHash = "sha256-QqK527y4W+B7jhRoOkpt9QRyERA6Tn4Dwaq+gzN3k4U=";
|
|
|
|
subPackages = [ "apps/cnspec" ];
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X=go.mondoo.com/cnspec.Version=${version}"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "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
|
|
];
|
|
};
|
|
}
|