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

38 lines
834 B
Nix
Raw Normal View History

2019-12-30 13:56:03 +01:00
{ stdenv
, lib
, fetchFromGitHub
, rustPlatform
, installShellFiles
, perl
2021-05-14 23:36:55 +02:00
, libiconv
2019-12-30 13:56:03 +01:00
, Security
}:
rustPlatform.buildRustPackage rec {
pname = "findomain";
2021-08-10 16:14:37 +02:00
version = "5.0.0";
2019-12-30 13:56:03 +01:00
src = fetchFromGitHub {
owner = "Edu4rdSHL";
repo = pname;
rev = version;
2021-08-10 16:14:37 +02:00
sha256 = "sha256-xuabmlpejQVN8pYCNa97aL2IJUAgV7zLXpkEIp9SZRI=";
2019-12-30 13:56:03 +01:00
};
2021-08-10 16:14:37 +02:00
cargoSha256 = "sha256-hrgTWB5D0eKmfuR+lrMN4mx6yGomHe/jUJxw2uyrjHg=";
2019-12-30 13:56:03 +01:00
nativeBuildInputs = [ installShellFiles perl ];
2021-05-14 23:36:55 +02:00
buildInputs = lib.optionals stdenv.isDarwin [ libiconv Security ];
2019-12-30 13:56:03 +01:00
postInstall = ''
installManPage ${pname}.1
'';
meta = with lib; {
description = "The fastest and cross-platform subdomain enumerator";
homepage = "https://github.com/Edu4rdSHL/findomain";
2021-03-20 23:08:39 +01:00
license = licenses.gpl3Plus;
maintainers = with maintainers; [ Br1ght0ne ];
2019-12-30 13:56:03 +01:00
};
}