gowitness: 2.5.1 -> 3.0.3 (#344296)

This commit is contained in:
Fabian Affolter 2024-09-25 10:06:37 +02:00 committed by GitHub
commit a3eabb5789
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 11 additions and 8 deletions

View File

@ -1,20 +1,21 @@
{ lib
, buildGoModule
, fetchFromGitHub
{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule rec {
pname = "gowitness";
version = "2.5.1";
version = "3.0.3";
src = fetchFromGitHub {
owner = "sensepost";
repo = "gowitness";
rev = "refs/tags/${version}";
hash = "sha256-37OorjzxDu27FNAz4LTtQdFjt0tL9jSb9tGZhlq797Q=";
hash = "sha256-yKG4qLjeZThFEMqMnUv4ryvM2e3uH5GLuVP3oa6XHtE=";
};
vendorHash = "sha256-Exw5NfR3nDYH+hWMPOKuVIRyrVkOJyP7Kwe4jzQwnsI=";
vendorHash = "sha256-PjbC10Dh3tDF0mP2k4ei6ZSS3ND2wAaB1+Llmj37TR8=";
ldflags = [
"-s"
@ -23,10 +24,10 @@ buildGoModule rec {
meta = with lib; {
description = "Web screenshot utility";
mainProgram = "gowitness";
homepage = "https://github.com/sensepost/gowitness";
changelog = "https://github.com/sensepost/gowitness/releases/tag/${version}";
license = licenses.gpl3Only;
maintainers = with maintainers; [ fab ];
mainProgram = "gowitness";
};
}

View File

@ -37601,7 +37601,9 @@ with pkgs;
gotrue-supabase = callPackage ../tools/security/gotrue/supabase.nix { };
gowitness = callPackage ../tools/security/gowitness { };
gowitness = callPackage ../tools/security/gowitness {
buildGoModule = buildGo123Module;
};
guetzli = callPackage ../applications/graphics/guetzli { };