28 lines
660 B
Nix
28 lines
660 B
Nix
|
{ lib
|
||
|
, buildGoModule
|
||
|
, fetchFromGitHub
|
||
|
}:
|
||
|
|
||
|
buildGoModule rec {
|
||
|
pname = "go-dork";
|
||
|
version = "1.0.3";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "dwisiswant0";
|
||
|
repo = pname;
|
||
|
rev = "refs/tags/v${version}";
|
||
|
hash = "sha256-Q7ECwXH9q6qWba2URh3LjMx8g6vPF1DWfKnmXej7ht4=";
|
||
|
};
|
||
|
|
||
|
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 ];
|
||
|
mainProgram = "go-dork";
|
||
|
};
|
||
|
}
|