mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 17:03:01 +00:00
kics: 2.1.2 -> 2.1.3
Changelog: https://github.com/Checkmarx/kics/releases/tag/v2.1.3
This commit is contained in:
parent
144db67203
commit
909d333851
@ -1,22 +1,23 @@
|
||||
{ lib
|
||||
, buildGoModule
|
||||
, fetchFromGitHub
|
||||
, testers
|
||||
, kics
|
||||
{
|
||||
lib,
|
||||
buildGoModule,
|
||||
fetchFromGitHub,
|
||||
kics,
|
||||
testers,
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "kics";
|
||||
version = "2.1.2";
|
||||
version = "2.1.3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Checkmarx";
|
||||
repo = "kics";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-UTDqsTW/niTvSTYInM5UD9f7RU3f5R4etuLvoTmNn/M=";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-/trhDDY2jyN0o92fjy/ScEbYpcuBPPIaHx+wNW3cWA0=";
|
||||
};
|
||||
|
||||
vendorHash = "sha256-nUNpiXta+Om0Lmd9z0uaCctv2uBrPDsZ1fhHcd8sSWs=";
|
||||
vendorHash = "sha256-coX8BenRrGijErDNheD9+vZLOKzMXkcwhIa3BuxrOCM=";
|
||||
|
||||
subPackages = [ "cmd/console" ];
|
||||
|
||||
@ -25,9 +26,10 @@ buildGoModule rec {
|
||||
'';
|
||||
|
||||
ldflags = [
|
||||
"-s" "-w"
|
||||
"-X github.com/Checkmarx/kics/v2/internal/constants.SCMCommit=${version}"
|
||||
"-X github.com/Checkmarx/kics/v2/internal/constants.Version=${version}"
|
||||
"-s"
|
||||
"-w"
|
||||
"-X=github.com/Checkmarx/kics/v2/internal/constants.SCMCommit=${version}"
|
||||
"-X=github.com/Checkmarx/kics/v2/internal/constants.Version=${version}"
|
||||
];
|
||||
|
||||
passthru.tests.version = testers.testVersion {
|
||||
@ -36,11 +38,14 @@ buildGoModule rec {
|
||||
};
|
||||
|
||||
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.
|
||||
description = "Tool to check for vulnerabilities and other issues";
|
||||
longDescription = ''
|
||||
Find security vulnerabilities, compliance issues, and
|
||||
infrastructure misconfigurations early in the development
|
||||
cycle of your infrastructure-as-code.
|
||||
'';
|
||||
homepage = "https://github.com/Checkmarx/kics";
|
||||
changelog = "https://github.com/Checkmarx/kics/releases/tag/v${version}";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ patryk4815 ];
|
||||
mainProgram = "kics";
|
||||
|
Loading…
Reference in New Issue
Block a user