{ stdenv, buildGoModule, fetchFromGitHub, lib }: buildGoModule rec { pname = "kics"; version = "1.5.14"; src = fetchFromGitHub { owner = "Checkmarx"; repo = "kics"; rev = "v${version}"; sha256 = "sha256-6ZxkKtzav9mq6MTTuf83l3F8aH1EYyX4cV/xKqyv+2Q="; }; vendorSha256 = "sha256-G19VVoba15pCJld5hSIWZGr5bYDUcdC82GYWXdx0OMc="; 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 ]; }; }