nixpkgs/pkgs/tools/admin/kics/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

49 lines
1.1 KiB
Nix
Raw Normal View History

2022-11-10 03:31:34 +00:00
{ stdenv
, buildGoModule
, fetchFromGitHub
, lib
, testers
, kics
}:
2022-07-27 08:53:51 +00:00
buildGoModule rec {
pname = "kics";
2022-11-26 10:34:53 +00:00
version = "1.6.5";
2022-07-27 08:53:51 +00:00
src = fetchFromGitHub {
owner = "Checkmarx";
repo = "kics";
rev = "v${version}";
2022-11-26 10:34:53 +00:00
sha256 = "sha256-Y/fG10WKdSXNU9pLSItPKmTNfx8hL/YO8wtwTHob1QQ=";
2022-07-27 08:53:51 +00:00
};
2022-11-26 10:34:53 +00:00
vendorSha256 = "sha256-sIIEWIVb1d4GDZVLfXz1myeQcxaG6aF8gYJn9+C8zQk=";
2022-07-27 08:53:51 +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}"
];
2022-11-10 03:31:34 +00:00
passthru.tests.version = testers.testVersion {
package = kics;
command = "kics version";
};
2022-07-27 08:53:51 +00:00
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 ];
};
}