forked from mirrors/nixpkgs
go-dork: init at 1.0.2
This commit is contained in:
parent
41657484f4
commit
56e5d60a24
26
pkgs/tools/security/go-dork/default.nix
Normal file
26
pkgs/tools/security/go-dork/default.nix
Normal file
|
@ -0,0 +1,26 @@
|
|||
{ lib
|
||||
, buildGoModule
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "go-dork";
|
||||
version = "1.0.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "dwisiswant0";
|
||||
repo = pname;
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-tFmXutX3UnKAFFS4mO4PCv7Bhw1wJ7qjdA1ROryqYZU=";
|
||||
};
|
||||
|
||||
vendorHash = "sha256-6V58RRRPamBMDAf0gg4sQMQkoD5dWauCFtPrwf5EasI=";
|
||||
|
||||
meta = with lib; {
|
||||
description = "Dork scanner";
|
||||
homepage = "https://github.com/dwisiswant0/go-dork";
|
||||
changelog = "https://github.com/dwisiswant0/go-dork/releases/tag/v${version}";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
|
@ -3057,6 +3057,8 @@ with pkgs;
|
|||
|
||||
go-cve-search = callPackage ../tools/security/go-cve-search { };
|
||||
|
||||
go-dork = callPackage ../tools/security/go-dork { };
|
||||
|
||||
chkcrontab = callPackage ../tools/admin/chkcrontab { };
|
||||
|
||||
claws = callPackage ../tools/misc/claws { };
|
||||
|
|
Loading…
Reference in a new issue