depot/third_party/nixpkgs/pkgs/tools/security/urlhunter/default.nix
Default email 5e7c2d6cef Project import generated by Copybara.
GitOrigin-RevId: f99e5f03cc0aa231ab5950a15ed02afec45ed51a
2023-10-09 21:29:22 +02:00

29 lines
749 B
Nix

{ buildGoModule
, fetchFromGitHub
, lib
}:
buildGoModule rec {
pname = "urlhunter";
version = "0.1.2";
src = fetchFromGitHub {
owner = "utkusen";
repo = pname;
rev = "v${version}";
sha256 = "sha256-lX5zh+fYVSyWPUOnfRNMGZPsiuxjKBSpluPUMN9mZ+k=";
};
vendorHash = "sha256-JDDxarFROBhdi76mY6udn++lReKLdju/JBpj3JhGdQA=";
meta = with lib; {
description = "Recon tool that allows searching shortened URLs";
longDescription = ''
urlhunter is a recon tool that allows searching on URLs that are
exposed via shortener services such as bit.ly and goo.gl.
'';
homepage = "https://github.com/utkusen/urlhunter";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}