Merge pull request #310211 from r-ryantm/auto-update/kubescape

kubescape: 3.0.9 -> 3.0.10
This commit is contained in:
Fabian Affolter 2024-05-09 11:13:54 +02:00 committed by GitHub
commit 242d312b6f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,38 +1,33 @@
{ lib
, stdenv
, buildGoModule
, fetchFromGitHub
, git
, installShellFiles
, kubescape
, testers
{
lib,
stdenv,
buildGoModule,
fetchFromGitHub,
git,
installShellFiles,
kubescape,
testers,
}:
buildGoModule rec {
pname = "kubescape";
version = "3.0.9";
version = "3.0.10";
src = fetchFromGitHub {
owner = "kubescape";
repo = "kubescape";
rev = "refs/tags/v${version}";
hash = "sha256-pAe289XwKq/PO39/Wt60uipt4Z0ZD5f73pDaOTXXwi0=";
hash = "sha256-r6w2Cfyjxqf/1DMBGgmE8Oh/WnvBOa7mAEGXnPjk1Pg=";
fetchSubmodules = true;
};
vendorHash = "sha256-UWmsS79N8ooFr4qpKqOVC14cgf5ckAQwzROHGl1smD8=";
vendorHash = "sha256-WPa6IKPjdBtoHYKA2yYtaI1LCbkyv374fcThxbSEKxo=";
subPackages = [
"."
];
subPackages = [ "." ];
nativeBuildInputs = [
installShellFiles
];
nativeBuildInputs = [ installShellFiles ];
nativeCheckInputs = [
git
];
nativeCheckInputs = [ git ];
ldflags = [
"-s"
@ -89,7 +84,10 @@ buildGoModule rec {
Jenkins, CircleCI and Github workflows.
'';
license = licenses.asl20;
maintainers = with maintainers; [ fab jk ];
maintainers = with maintainers; [
fab
jk
];
mainProgram = "kubescape";
broken = stdenv.isDarwin;
};