2024-12-10 19:26:33 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
buildGoModule,
|
|
|
|
fetchFromGitHub,
|
2023-02-26 22:55:12 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "go-dork";
|
2024-02-04 12:05:13 +00:00
|
|
|
version = "1.0.3";
|
2023-02-26 22:55:12 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "dwisiswant0";
|
|
|
|
repo = pname;
|
|
|
|
rev = "refs/tags/v${version}";
|
2024-02-04 12:05:13 +00:00
|
|
|
hash = "sha256-Q7ECwXH9q6qWba2URh3LjMx8g6vPF1DWfKnmXej7ht4=";
|
2023-02-26 22:55:12 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
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 ];
|
2023-11-23 02:51:17 +00:00
|
|
|
mainProgram = "go-dork";
|
2023-02-26 22:55:12 +00:00
|
|
|
};
|
|
|
|
}
|