2024-05-08 14:29:35 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
stdenv,
|
|
|
|
fetchurl,
|
|
|
|
lynx,
|
|
|
|
}:
|
2007-08-28 14:45:00 +00:00
|
|
|
|
2024-05-08 14:29:35 +00:00
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
2021-08-01 20:48:53 +00:00
|
|
|
pname = "jwhois";
|
|
|
|
version = "4.0";
|
2015-07-08 05:33:00 +00:00
|
|
|
|
2007-08-28 14:45:00 +00:00
|
|
|
src = fetchurl {
|
2024-05-08 14:29:35 +00:00
|
|
|
url = "mirror://gnu/jwhois/jwhois-${finalAttrs.version}.tar.gz";
|
|
|
|
hash = "sha256-+pu4Z4K5FcbXMLtyP4dtybNFphfbN1qvNBbsIlU81k4=";
|
2007-08-28 14:45:00 +00:00
|
|
|
};
|
|
|
|
|
2024-05-08 14:29:35 +00:00
|
|
|
patches = [
|
|
|
|
./connect.patch
|
|
|
|
./service-name.patch
|
|
|
|
];
|
2007-08-28 14:45:00 +00:00
|
|
|
|
2024-05-08 14:29:35 +00:00
|
|
|
postPatch = ''
|
|
|
|
# avoids error on darwin where `-Werror=implicit-function-declaration` is set by default
|
|
|
|
sed 1i'void timeout_init();' -i src/jwhois.c
|
|
|
|
|
|
|
|
substituteInPlace example/jwhois.conf \
|
|
|
|
--replace-fail "/usr/bin/lynx" ${lib.getExe lynx}
|
|
|
|
'';
|
2011-09-28 07:25:59 +00:00
|
|
|
|
2018-01-15 00:41:04 +00:00
|
|
|
makeFlags = [ "AR=${stdenv.cc.bintools.targetPrefix}ar" ];
|
|
|
|
|
2024-05-08 14:29:35 +00:00
|
|
|
postInstall = ''
|
|
|
|
ln -s $out/bin/jwhois $out/bin/whois
|
|
|
|
'';
|
|
|
|
|
2021-09-14 03:30:39 +00:00
|
|
|
# Work around error from <stdio.h> on aarch64-darwin:
|
|
|
|
# error: 'TARGET_OS_IPHONE' is not defined, evaluates to 0 [-Werror,-Wundef-prefix=TARGET_OS_]
|
|
|
|
# TODO: this should probably be fixed at a lower level than this?
|
2023-02-20 15:26:44 +00:00
|
|
|
env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-Wno-undef-prefix";
|
2021-09-14 03:30:39 +00:00
|
|
|
|
2007-08-28 14:45:00 +00:00
|
|
|
meta = {
|
|
|
|
description = "Client for the WHOIS protocol allowing you to query the owner of a domain name";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://www.gnu.org/software/jwhois/";
|
2024-05-08 14:29:35 +00:00
|
|
|
license = lib.licenses.gpl3Only;
|
2021-01-15 09:19:50 +00:00
|
|
|
platforms = lib.platforms.unix;
|
2007-08-28 14:45:00 +00:00
|
|
|
};
|
2024-05-08 14:29:35 +00:00
|
|
|
})
|