nixpkgs/pkgs/tools/security/gowitness/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
575 B
Nix
Raw Normal View History

2022-10-01 02:26:17 +00:00
{ lib, buildGoModule, fetchFromGitHub }:
2022-06-14 08:50:26 +00:00
buildGoModule rec {
pname = "gowitness";
2023-05-09 08:49:29 +00:00
version = "2.5.0";
2022-06-14 08:50:26 +00:00
src = fetchFromGitHub {
owner = "sensepost";
repo = pname;
rev = version;
2023-05-09 08:49:29 +00:00
sha256 = "sha256-rylft6v6Np8xOm2AUtH7e/zDZQ87WNPeerXEtziSrDw=";
2022-06-14 08:50:26 +00:00
};
2023-05-09 08:49:29 +00:00
vendorHash = "sha256-l6jdVsKKLqEyFpz7JhkLLjVTWX1pZenlCY5UqSZVMdc=";
2022-10-01 02:26:17 +00:00
ldflags = [ "-s" "-w" ];
2022-06-14 08:50:26 +00:00
meta = with lib; {
description = "Web screenshot utility";
homepage = "https://github.com/sensepost/gowitness";
license = licenses.gpl3Only;
maintainers = with maintainers; [ fab ];
};
}