Merge pull request #301650 from fabaff/cnspec-bump

cnspec: 10.10.0 -> 10.11.0
This commit is contained in:
Fabian Affolter 2024-04-05 00:49:14 +02:00 committed by GitHub
commit 0984f5bbd3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,26 +1,25 @@
{ lib
, buildGoModule
, fetchFromGitHub
{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule rec {
pname = "cnspec";
version = "10.10.0";
version = "10.11.0";
src = fetchFromGitHub {
owner = "mondoohq";
repo = "cnspec";
rev = "refs/tags/v${version}";
hash = "sha256-6nWyLWBrnvdmyUiuWon+Lqtn/FzQ1mJ4rvoHH7sCsQY=";
hash = "sha256-z8pWAazoafyrsz3EmfhtHDBhmHHjkGFEIL5BftW79fg=";
};
proxyVendor = true;
vendorHash = "sha256-LaYpyKJPvB++4tbNV4OEtwtU4t+0DQUIM4lMlKGjgDk=";
vendorHash = "sha256-6MVl8QuzxzcyFVP04ikO7B4Gk17e0TA4hxmL17OehCo=";
subPackages = [
"apps/cnspec"
];
subPackages = [ "apps/cnspec" ];
ldflags = [
"-s"
@ -33,6 +32,9 @@ buildGoModule rec {
homepage = "https://github.com/mondoohq/cnspec";
changelog = "https://github.com/mondoohq/cnspec/releases/tag/v${version}";
license = licenses.bsl11;
maintainers = with maintainers; [ fab mariuskimmina ];
maintainers = with maintainers; [
fab
mariuskimmina
];
};
}