mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 17:03:01 +00:00
Merge pull request #200468 from patryk4815/patch-1
kics: add version test
This commit is contained in:
commit
5a9b4e6cfa
@ -1,4 +1,10 @@
|
||||
{ stdenv, buildGoModule, fetchFromGitHub, lib }:
|
||||
{ stdenv
|
||||
, buildGoModule
|
||||
, fetchFromGitHub
|
||||
, lib
|
||||
, testers
|
||||
, kics
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "kics";
|
||||
@ -25,6 +31,11 @@ buildGoModule rec {
|
||||
"-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
|
||||
|
Loading…
Reference in New Issue
Block a user