depot/third_party/nixpkgs/pkgs/tools/admin/kics/default.nix
Default email e7ec2969af Project import generated by Copybara.
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
2024-01-13 09:15:51 +01:00

47 lines
1.1 KiB
Nix

{ lib
, buildGoModule
, fetchFromGitHub
, testers
, kics
}:
buildGoModule rec {
pname = "kics";
version = "1.7.12";
src = fetchFromGitHub {
owner = "Checkmarx";
repo = "kics";
rev = "v${version}";
hash = "sha256-Yf4IvhXwhLD+Cae9bp6iCzlmnw9XQ7G2yOLqRTcK7ac=";
};
vendorHash = "sha256-psyFivwS9d6+7S+1T7vonhofxHc0y2btXgc5HSu94Dg=";
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}"
];
passthru.tests.version = testers.testVersion {
package = kics;
command = "kics 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 ];
};
}