depot/third_party/nixpkgs/pkgs/tools/admin/kics/default.nix
Default email 02cf88bb76 Project import generated by Copybara.
GitOrigin-RevId: c4a0efdd5a728e20791b8d8d2f26f90ac228ee8d
2022-08-12 15:06:08 +03:00

37 lines
1,011 B
Nix

{ stdenv, buildGoModule, fetchFromGitHub, lib }:
buildGoModule rec {
pname = "kics";
version = "1.5.13";
src = fetchFromGitHub {
owner = "Checkmarx";
repo = "kics";
rev = "v${version}";
sha256 = "sha256-+trrtcK0zIjgl8SzURbvaabB/RtDKMEYyU8ZttD0hOs=";
};
vendorSha256 = "sha256-/hoyT/PJ/nEQFg/1CJTb4lwOQ8ZYZtuHQeQUpPZepvc=";
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 ];
};
}