Merge pull request #302066 from r-ryantm/auto-update/trufflehog

trufflehog: 3.71.2 -> 3.72.0
This commit is contained in:
Fabian Affolter 2024-04-06 15:45:05 +02:00 committed by GitHub
commit cfbb1d2b5c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 10 additions and 11 deletions

View File

@ -1,22 +1,23 @@
{ lib
, fetchFromGitHub
, buildGoModule
, testers
, trufflehog
{
lib,
fetchFromGitHub,
buildGoModule,
testers,
trufflehog,
}:
buildGoModule rec {
pname = "trufflehog";
version = "3.71.2";
version = "3.72.0";
src = fetchFromGitHub {
owner = "trufflesecurity";
repo = "trufflehog";
rev = "refs/tags/v${version}";
hash = "sha256-PxaZl3OV3bAbZzKVxHO8MuwqO2c16w4MNypsZpVOQTU=";
hash = "sha256-2xgvXHeltoODr5Rok7yaUqdVcO2crtdPvvRrN+DDGr4=";
};
vendorHash = "sha256-xU6mUhSgB9DMyVMo2tTd5uNyrDoFsY2zMaTKSPBcgwM=";
vendorHash = "sha256-dQ/oKVy5RZ5R8cbNom1msSbuzrQ7VbtK7m+8aS33u7Y=";
ldflags = [
"-s"
@ -32,9 +33,7 @@ buildGoModule rec {
'';
passthru = {
tests.version = testers.testVersion {
package = trufflehog;
};
tests.version = testers.testVersion { package = trufflehog; };
};
meta = with lib; {