2022-08-12 12:06:08 +00:00
|
|
|
{ stdenv, buildGoModule, fetchFromGitHub, lib }:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "kics";
|
2022-09-22 12:36:57 +00:00
|
|
|
version = "1.6.0";
|
2022-08-12 12:06:08 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Checkmarx";
|
|
|
|
repo = "kics";
|
|
|
|
rev = "v${version}";
|
2022-09-22 12:36:57 +00:00
|
|
|
sha256 = "sha256-BiwSIjMczo24TDaQBQGf0sEmiOizVwu+6nbi9StMQ8s=";
|
2022-08-12 12:06:08 +00:00
|
|
|
};
|
|
|
|
|
2022-09-22 12:36:57 +00:00
|
|
|
vendorSha256 = "sha256-UfUu3yYl/o2lNHQYG8Z7rGvvtvJmZw2b+aTAoURZfm4=";
|
2022-08-12 12:06:08 +00:00
|
|
|
|
|
|
|
subPackages = [ "cmd/console" ];
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
mv $out/bin/console $out/bin/kics
|
|
|
|
'';
|
|
|
|
|
|
|
|
ldflags = [
|
|
|
|
"-s" "-w"
|
|
|
|
"-X github.com/Checkmarx/kics/internal/constant.SCMCommits=${version}"
|
|
|
|
"-X github.com/Checkmarx/kics/internal/constants.Version=${version}"
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = ''
|
|
|
|
Find security vulnerabilities, compliance issues, and infrastructure misconfigurations early in the development
|
|
|
|
cycle of your infrastructure-as-code with KICS by Checkmarx.
|
|
|
|
'';
|
|
|
|
homepage = "https://github.com/Checkmarx/kics";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ patryk4815 ];
|
|
|
|
};
|
|
|
|
}
|