mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
491480224b
kics: 1.7.3 -> 1.7.4
47 lines
1.1 KiB
Nix
47 lines
1.1 KiB
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
, testers
|
|
, kics
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "kics";
|
|
version = "1.7.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Checkmarx";
|
|
repo = "kics";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-h6ZnaknqMcW+Zp2t5RHPK/e/Ilw5yWY2fcSTJe2mVR4=";
|
|
};
|
|
|
|
vendorHash = "sha256-ipXfxqHdushJ2P//oyGGjZsq5EypDEpHKlW32VHaMXw=";
|
|
|
|
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 ];
|
|
};
|
|
}
|