mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
findomain: init at 0.9.3
This commit is contained in:
parent
4c28daa093
commit
3e036c262b
37
pkgs/tools/networking/findomain/default.nix
Normal file
37
pkgs/tools/networking/findomain/default.nix
Normal file
@ -0,0 +1,37 @@
|
||||
{ stdenv
|
||||
, lib
|
||||
, fetchFromGitHub
|
||||
, rustPlatform
|
||||
, installShellFiles
|
||||
, perl
|
||||
, Security
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "findomain";
|
||||
version = "0.9.3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Edu4rdSHL";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "1p7bj8q3zwn92nn6d71bk7cczclcsjvan6m8znlzr4lrwircp1y1";
|
||||
};
|
||||
|
||||
cargoSha256 = "1grb0frc1kp3z6vs2906h9v1yx9qxn6x0gf9jy1msqgnqjw0bgn9";
|
||||
|
||||
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; [ filalex77 ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
@ -3243,6 +3243,10 @@ in
|
||||
|
||||
filet = callPackage ../applications/misc/filet { };
|
||||
|
||||
findomain = callPackage ../tools/networking/findomain {
|
||||
inherit (darwin.apple_sdk.frameworks) Security;
|
||||
};
|
||||
|
||||
findutils = callPackage ../tools/misc/findutils { };
|
||||
|
||||
finger_bsd = callPackage ../tools/networking/bsd-finger { };
|
||||
|
Loading…
Reference in New Issue
Block a user