mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
30 lines
780 B
Nix
30 lines
780 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";
|
|
mainProgram = "urlhunter";
|
|
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 ];
|
|
};
|
|
}
|