nixpkgs/pkgs/tools/security/go-dork/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
660 B
Nix
Raw Normal View History

2023-02-26 22:55:12 +00:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
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
};
}