python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / security / dorkscout / default.nix
blob27cc5a0d4e1b82ffe8b96ea5cff5f4f8831cc568
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 }:
6 buildGoModule rec {
7   pname = "dorkscout";
8   version = "1.0";
10   src = fetchFromGitHub {
11     owner = "R4yGM";
12     repo = pname;
13     rev = version;
14     sha256 = "0h2m458jxdm3xg0h2vb8yq1jc28jqwinv1pdqypdsbvsz48s0hxz";
15   };
17   vendorSha256 = "05vn9hd5r8cy45b3ixjch17v38p08k8di8gclq0i9rkz9bvy1nph";
19   meta = with lib; {
20     description = "Tool to automate the work with Google dorks";
21     homepage = "https://github.com/R4yGM/dorkscout";
22     license = licenses.asl20;
23     maintainers = with maintainers; [ fab ];
24   };