fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
39 lines
1 KiB
Nix
39 lines
1 KiB
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "cnquery";
|
|
version = "11.6.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mondoohq";
|
|
repo = "cnquery";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-QeC1ql/ohUoc06jqoDudHSYX6vl2RNMcvVe+qmEkS0w=";
|
|
};
|
|
|
|
subPackages = [ "apps/cnquery" ];
|
|
|
|
vendorHash = "sha256-9jDXEfIZ6qPZOKImqup7Y/1xqu+Hp6uR8Hm+RXggWg4=";
|
|
|
|
ldflags = [
|
|
"-w"
|
|
"-s"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Cloud-native, graph-based asset inventory";
|
|
longDescription = ''
|
|
cnquery is a cloud-native tool for querying your entire fleet. It answers thousands of
|
|
questions about your infrastructure and integrates with over 300 resources across cloud
|
|
accounts, Kubernetes, containers, services, VMs, APIs, and more.
|
|
'';
|
|
homepage = "https://mondoo.com/cnquery";
|
|
changelog = "https://github.com/mondoohq/cnquery/releases/tag/v${version}";
|
|
license = licenses.bsl11;
|
|
maintainers = with maintainers; [ mariuskimmina ];
|
|
};
|
|
}
|