findomain: 8.2.2 -> 9.0.0, add figsoda as a maintainer

Diff: https://github.com/findomain/findomain/compare/refs/tags/8.2.2...9.0.0

Changelog: https://github.com/Findomain/Findomain/releases/tag/9.0.0
This commit is contained in:
figsoda 2023-04-16 11:28:30 -04:00
parent f294325aed
commit 866378da6e
2 changed files with 399 additions and 258 deletions

File diff suppressed because it is too large Load diff

View file

@ -1,22 +1,22 @@
{ stdenv { lib
, lib
, fetchFromGitHub
, rustPlatform , rustPlatform
, fetchFromGitHub
, installShellFiles , installShellFiles
, perl , pkg-config
, libiconv , openssl
, stdenv
, Security , Security
}: }:
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "findomain"; pname = "findomain";
version = "8.2.2"; version = "9.0.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "Edu4rdSHL"; owner = "findomain";
repo = pname; repo = pname;
rev = "refs/tags/${version}"; rev = "refs/tags/${version}";
hash = "sha256-9mtXtBq08lL6qQg1Pq1WNwbkG0yi99mCpxNuBvr14ms="; hash = "sha256-xiy4HiKgUW7U3GCjR5ZxPHILpDxG6xsADCAzGraqOPc=";
}; };
cargoLock = { cargoLock = {
@ -31,23 +31,28 @@ rustPlatform.buildRustPackage rec {
nativeBuildInputs = [ nativeBuildInputs = [
installShellFiles installShellFiles
perl pkg-config
]; ];
buildInputs = lib.optionals stdenv.isDarwin [ buildInputs = [
libiconv openssl
] ++ lib.optionals stdenv.isDarwin [
Security Security
]; ];
env = {
OPENSSL_NO_VENDOR = true;
};
postInstall = '' postInstall = ''
installManPage ${pname}.1 installManPage findomain.1
''; '';
meta = with lib; { meta = with lib; {
description = "The fastest and cross-platform subdomain enumerator"; description = "The fastest and cross-platform subdomain enumerator";
homepage = "https://github.com/Edu4rdSHL/findomain"; homepage = "https://github.com/Findomain/Findomain";
changelog = "https://github.com/Findomain/Findomain/releases/tag/${version}"; changelog = "https://github.com/Findomain/Findomain/releases/tag/${version}";
license = licenses.gpl3Plus; license = licenses.gpl3Plus;
maintainers = with maintainers; [ Br1ght0ne ]; maintainers = with maintainers; [ Br1ght0ne figsoda ];
}; };
} }