lol
1{ lib
2, buildGoModule
3, fetchFromGitHub
4}:
5
6buildGoModule rec {
7 pname = "dorkscout";
8 version = "1.0";
9
10 src = fetchFromGitHub {
11 owner = "R4yGM";
12 repo = pname;
13 rev = version;
14 hash = "sha256-v0OgEfl6L92ux+2GbSPHEgkmA/ZobQHB66O2LlEhVUA=";
15 };
16
17 vendorHash = "sha256-8Nrg90p/5hQBpuyh2NBE4KKxT4BM9jhWIZ6hXBpMdhc=";
18
19 meta = with lib; {
20 description = "Tool to automate the work with Google dorks";
21 mainProgram = "dorkscout";
22 homepage = "https://github.com/R4yGM/dorkscout";
23 license = licenses.asl20;
24 maintainers = with maintainers; [ fab ];
25 };
26}