ae2dc6aea6
GitOrigin-RevId: 4c2fcb090b1f3e5b47eaa7bd33913b574a11e0a0
53 lines
1.3 KiB
Nix
53 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
kics,
|
|
testers,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "kics";
|
|
version = "2.1.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Checkmarx";
|
|
repo = "kics";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-/trhDDY2jyN0o92fjy/ScEbYpcuBPPIaHx+wNW3cWA0=";
|
|
};
|
|
|
|
vendorHash = "sha256-coX8BenRrGijErDNheD9+vZLOKzMXkcwhIa3BuxrOCM=";
|
|
|
|
subPackages = [ "cmd/console" ];
|
|
|
|
postInstall = ''
|
|
mv $out/bin/console $out/bin/kics
|
|
'';
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X=github.com/Checkmarx/kics/v2/internal/constants.SCMCommit=${version}"
|
|
"-X=github.com/Checkmarx/kics/v2/internal/constants.Version=${version}"
|
|
];
|
|
|
|
passthru.tests.version = testers.testVersion {
|
|
package = kics;
|
|
command = "kics version";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Tool to check for vulnerabilities and other issues";
|
|
longDescription = ''
|
|
Find security vulnerabilities, compliance issues, and
|
|
infrastructure misconfigurations early in the development
|
|
cycle of your infrastructure-as-code.
|
|
'';
|
|
homepage = "https://github.com/Checkmarx/kics";
|
|
changelog = "https://github.com/Checkmarx/kics/releases/tag/v${version}";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ patryk4815 ];
|
|
mainProgram = "kics";
|
|
};
|
|
}
|