forked from mirrors/nixpkgs
dorkscout: init at 1.0
This commit is contained in:
parent
ae93ef67ce
commit
38116932f7
25
pkgs/tools/security/dorkscout/default.nix
Normal file
25
pkgs/tools/security/dorkscout/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue