depot/third_party/nixpkgs/pkgs/tools/admin/kics/default.nix
Default email 5e7c2d6cef Project import generated by Copybara.
GitOrigin-RevId: f99e5f03cc0aa231ab5950a15ed02afec45ed51a
2023-10-09 21:29:22 +02:00

47 lines
1.1 KiB
Nix

{ lib
, buildGoModule
, fetchFromGitHub
, testers
, kics
}:
buildGoModule rec {
pname = "kics";
version = "1.7.8";
src = fetchFromGitHub {
owner = "Checkmarx";
repo = "kics";
rev = "v${version}";
hash = "sha256-T4b4PO4NcpsosiyRa/78WJ4yYvc1Ez7t7KIbZzSlQAo=";
};
vendorHash = "sha256-gJu3B30IPp8A/xgtE5fzThQAtnFbbzr8ZwucAsObBxs=";
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 ];
};
}