go-dork: init at 1.0.2

This commit is contained in:
Fabian Affolter 2023-02-26 23:55:12 +01:00
parent 41657484f4
commit 56e5d60a24
2 changed files with 28 additions and 0 deletions

View 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 ];
};
}

View file

@ -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 { };