biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / security / deepsea / default.nix
blob2f0a9f175f3958e2dc421d2a4923277f87f73469
1 { buildGoModule
2 , fetchFromGitHub
3 , lib
4 }:
6 buildGoModule rec {
7   pname = "deepsea";
8   version = "0.9";
10   src = fetchFromGitHub {
11     owner = "dsnezhkov";
12     repo = pname;
13     rev = "v${version}";
14     sha256 = "02s03sha8vwp7dsaw3z446pskhb6wmy0hyj0mhpbx58sf147rkig";
15   };
17   vendorHash = null;
19   meta = with lib; {
20     description = "Phishing tool for red teams and pentesters";
21     longDescription = ''
22       DeepSea phishing gear aims to help RTOs and pentesters with the
23       delivery of opsec-tight, flexible email phishing campaigns carried
24       out on the outside as well as on the inside of a perimeter.
25     '';
26     homepage = "https://github.com/dsnezhkov/deepsea";
27     license = with licenses; [ asl20 ];
28     maintainers = with maintainers; [ fab ];
29     broken = true; # vendor isn't reproducible with go > 1.17: nix-build -A $name.goModules --check
30   };