about summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2022-10-01 15:01:27 -0500
committerGitHub <noreply@github.com>2022-10-01 15:01:27 -0500
commitac2da21552f29dca7a8ea594c126e8e94e91b933 (patch)
tree891913b903db76ed79885eb621a044f6a6b8bd4d /pkgs/tools
parenta161ab1d167d83b77debaafdf463aac432a434cc (diff)
parentbb29a9b4f94da24d5489e0cd2c36a7acbf69c729 (diff)
Merge pull request #193818 from aaronjheng/gowitness-2.4.2
gowitness: 2.4.0 -> 2.4.2
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/security/gowitness/default.nix13
1 files changed, 6 insertions, 7 deletions
diff --git a/pkgs/tools/security/gowitness/default.nix b/pkgs/tools/security/gowitness/default.nix
index ef0d25783c096..80bc40f450e0e 100644
--- a/pkgs/tools/security/gowitness/default.nix
+++ b/pkgs/tools/security/gowitness/default.nix
@@ -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";