3
0
Fork 0
forked from mirrors/nixpkgs

dorkscout: init at 1.0

This commit is contained in:
Fabian Affolter 2021-09-06 09:05:36 +02:00
parent ae93ef67ce
commit 38116932f7
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "dorkscout";
version = "1.0";
src = fetchFromGitHub {
owner = "R4yGM";
repo = pname;
rev = version;
sha256 = "0h2m458jxdm3xg0h2vb8yq1jc28jqwinv1pdqypdsbvsz48s0hxz";
};
vendorSha256 = "05vn9hd5r8cy45b3ixjch17v38p08k8di8gclq0i9rkz9bvy1nph";
meta = with lib; {
description = "Tool to automate the work with Google dorks";
homepage = "https://github.com/R4yGM/dorkscout";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};
}

View file

@ -4357,6 +4357,8 @@ with pkgs;
doom-bcc = callPackage ../games/zdoom/bcc-git.nix { };
dorkscout = callPackage ../tools/security/dorkscout { };
sl1-to-photon = python3Packages.callPackage ../applications/misc/sl1-to-photon { };
slade = callPackage ../applications/misc/slade {