gowitness: 2.4.0 -> 2.4.2

This commit is contained in:
Aaron Jheng 2022-10-01 02:26:17 +00:00
parent dbed7c274f
commit bb29a9b4f9
No known key found for this signature in database
GPG key ID: F6A547A869D050A3
2 changed files with 7 additions and 9 deletions

View file

@ -1,20 +1,19 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "gowitness";
version = "2.4.0";
version = "2.4.2";
src = fetchFromGitHub {
owner = "sensepost";
repo = pname;
rev = version;
hash = "sha256-6O4pGsUu9tG3VAIGaD9aauXaVMhvK+HpEjByE0AwVnE=";
sha256 = "sha256-e4J+W5VHVy/ngC5FDsDBStIaIR7jODWPt8VGTfAse44=";
};
vendorSha256 = "sha256-6FgYDiz050ZlC1XBz7dKkVFKY7gkGhIm0ND23tMwxC8=";
vendorSha256 = "sha256-NFQbulW07sljskjLn6A4f+PMMCJxploYqAHE+K7XxH8=";
ldflags = [ "-s" "-w" ];
meta = with lib; {
description = "Web screenshot utility";

View file

@ -35955,8 +35955,7 @@ with pkgs;
gotestwaf = callPackage ../tools/security/gotestwaf { };
gowitness = callPackage ../tools/security/gowitness {
# pinned due to build failure or vendoring problems. When unpinning double check with: nix-build -A $name.go-modules --rebuild
buildGoModule = buildGo117Module;
buildGoModule = buildGo119Module;
};
guetzli = callPackage ../applications/graphics/guetzli { };