38 lines
834 B
Nix
38 lines
834 B
Nix
{ stdenv
|
|
, lib
|
|
, fetchFromGitHub
|
|
, rustPlatform
|
|
, installShellFiles
|
|
, perl
|
|
, libiconv
|
|
, Security
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "findomain";
|
|
version = "7.0.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Edu4rdSHL";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "sha256-OXyp2cQmt311CPAcJQeWKGRHFYNL6E+f2TmUuT80/z4=";
|
|
};
|
|
|
|
cargoSha256 = "sha256-TwegOBf7dILL7DKohIVfa8IRTU4F9u24tDrrONIGF0U=";
|
|
|
|
nativeBuildInputs = [ installShellFiles perl ];
|
|
buildInputs = lib.optionals stdenv.isDarwin [ libiconv Security ];
|
|
|
|
postInstall = ''
|
|
installManPage ${pname}.1
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "The fastest and cross-platform subdomain enumerator";
|
|
homepage = "https://github.com/Edu4rdSHL/findomain";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ Br1ght0ne ];
|
|
};
|
|
}
|