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:
parent
f294325aed
commit
866378da6e
624
pkgs/tools/networking/findomain/Cargo.lock
generated
624
pkgs/tools/networking/findomain/Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
@ -1,22 +1,22 @@
|
||||
{ stdenv
|
||||
, lib
|
||||
, fetchFromGitHub
|
||||
{ lib
|
||||
, rustPlatform
|
||||
, fetchFromGitHub
|
||||
, installShellFiles
|
||||
, perl
|
||||
, libiconv
|
||||
, pkg-config
|
||||
, openssl
|
||||
, stdenv
|
||||
, Security
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "findomain";
|
||||
version = "8.2.2";
|
||||
version = "9.0.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Edu4rdSHL";
|
||||
owner = "findomain";
|
||||
repo = pname;
|
||||
rev = "refs/tags/${version}";
|
||||
hash = "sha256-9mtXtBq08lL6qQg1Pq1WNwbkG0yi99mCpxNuBvr14ms=";
|
||||
hash = "sha256-xiy4HiKgUW7U3GCjR5ZxPHILpDxG6xsADCAzGraqOPc=";
|
||||
};
|
||||
|
||||
cargoLock = {
|
||||
@ -31,23 +31,28 @@ rustPlatform.buildRustPackage rec {
|
||||
|
||||
nativeBuildInputs = [
|
||||
installShellFiles
|
||||
perl
|
||||
pkg-config
|
||||
];
|
||||
|
||||
buildInputs = lib.optionals stdenv.isDarwin [
|
||||
libiconv
|
||||
buildInputs = [
|
||||
openssl
|
||||
] ++ lib.optionals stdenv.isDarwin [
|
||||
Security
|
||||
];
|
||||
|
||||
env = {
|
||||
OPENSSL_NO_VENDOR = true;
|
||||
};
|
||||
|
||||
postInstall = ''
|
||||
installManPage ${pname}.1
|
||||
installManPage findomain.1
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
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}";
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = with maintainers; [ Br1ght0ne ];
|
||||
maintainers = with maintainers; [ Br1ght0ne figsoda ];
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user