{ lib, buildGoModule, fetchFromGitHub, }: buildGoModule rec { pname = "cnspec"; version = "11.64.0"; src = fetchFromGitHub { owner = "mondoohq"; repo = "cnspec"; tag = "v${version}"; hash = "sha256-AJ7aw21UyvOGCLEnhTHPklyDWkBAnK/Vhvvg4UDOoH4="; }; proxyVendor = true; vendorHash = "sha256-nmHs5ZHULENCyW+3giyPTO+pzbnGgGwFuVqgIfuCQi4="; 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 ]; }; }