nixpkgs/pkgs/tools/networking/findomain/default.nix

37 lines
807 B
Nix
Raw Normal View History

2019-12-30 12:56:03 +00:00
{ stdenv
, lib
, fetchFromGitHub
, rustPlatform
, installShellFiles
, perl
, Security
}:
rustPlatform.buildRustPackage rec {
pname = "findomain";
2020-10-18 07:37:28 +01:00
version = "2.1.4";
2019-12-30 12:56:03 +00:00
src = fetchFromGitHub {
owner = "Edu4rdSHL";
repo = pname;
rev = version;
2020-10-18 07:37:28 +01:00
sha256 = "0g0kw1b18kk9jhvw88hcxc04ccj8k22fdzky7l2dv3r37vndd91w";
2019-12-30 12:56:03 +00:00
};
2020-10-18 07:37:28 +01:00
cargoSha256 = "0cmp4w86qnzd2b2w4s3w019857pxysgikkl1g7ldkiylrsm5vlpn";
2019-12-30 12:56:03 +00:00
nativeBuildInputs = [ installShellFiles perl ];
buildInputs = lib.optional stdenv.isDarwin Security;
postInstall = ''
installManPage ${pname}.1
'';
meta = with lib; {
description = "The fastest and cross-platform subdomain enumerator";
homepage = "https://github.com/Edu4rdSHL/findomain";
license = licenses.gpl3;
maintainers = with maintainers; [ Br1ght0ne ];
2019-12-30 12:56:03 +00:00
};
}