lol

Merge pull request #251554 from mariuskimmina/master

cnquery: init at 9.11.0

authored by

Emily Trau and committed by
GitHub
f2aff727 c4be56b2

+39
+6
maintainers/maintainer-list.nix
··· 11248 11248 github = "marius851000"; 11249 11249 githubId = 22586596; 11250 11250 }; 11251 + mariuskimmina = { 11252 + email = "mar.kimmina@gmail.com"; 11253 + name = "Marius Kimmina"; 11254 + github = "mariuskimmina"; 11255 + githubId = 38843153; 11256 + }; 11251 11257 markbeep = { 11252 11258 email = "mrkswrn@gmail.com"; 11253 11259 github = "markbeep";
+31
pkgs/tools/security/cnquery/default.nix
··· 1 + { lib 2 + , buildGoModule 3 + , fetchFromGitHub 4 + }: 5 + 6 + buildGoModule rec { 7 + pname = "cnquery"; 8 + version = "9.11.0"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "mondoohq"; 12 + repo = "cnquery"; 13 + rev = "v${version}"; 14 + hash = "sha256-3fyX6vz3lqnV07gu/H7qeIrLyNSbqhLpICJWqPTv7T0="; 15 + }; 16 + 17 + subPackages = [ "apps/cnquery" ]; 18 + 19 + vendorHash = "sha256-7zZRX0LWDmO7LA0fIjAh8+5kK2dcAV/4HQmKdn9I3Mg="; 20 + 21 + meta = with lib; { 22 + description = "cloud-native, graph-based asset inventory"; 23 + longDescription = '' 24 + 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. 25 + ''; 26 + homepage = "https://mondoo.com/cnquery"; 27 + changelog = "https://github.com/mondoohq/cnquery/releases/tag/v${version}"; 28 + license = licenses.bsl11; 29 + maintainers = with maintainers; [ mariuskimmina ]; 30 + }; 31 + }
+2
pkgs/top-level/all-packages.nix
··· 518 518 519 519 cm256cc = callPackage ../development/libraries/cm256cc { }; 520 520 521 + cnquery = callPackage ../tools/security/cnquery { }; 522 + 521 523 cocogitto = callPackage ../development/tools/cocogitto { 522 524 inherit (darwin.apple_sdk.frameworks) Security; 523 525 };