whois: add implicit.patch to fix builds with clang 16

Based on work from Macports by @ryandesign.

Clang 16 now reports error (instead of warning)
for -Wimplicit-function-declaration which was breaking builds
This commit is contained in:
Joseph Stahl 2023-11-25 14:43:54 -05:00 committed by Weijia Wang
parent b821ac8070
commit cda7e5350c

View file

@ -1,4 +1,4 @@
{ lib, stdenv, fetchFromGitHub, perl, gettext, pkg-config, libidn2, libiconv }:
{ lib, stdenv, fetchFromGitHub, fetchpatch, perl, gettext, pkg-config, libidn2, libiconv }:
stdenv.mkDerivation rec {
version = "5.5.20";
@ -11,6 +11,14 @@ stdenv.mkDerivation rec {
hash = "sha256-0vQ6GBBtNA6Phlqhl3NZvEJqoyZ1um7VdkpsIRKhsm4=";
};
patches = [
(fetchpatch {
url = "https://github.com/macports/macports-ports/raw/93de4e9fc1e5e8427bf98f48209e783a5e8fab57/net/whois/files/implicit.patch";
extraPrefix = "";
hash = "sha256-ogVylQz//tpXxPNIWIHkhghvToU1z1D1FfnUBdZLyRY=";
})
];
nativeBuildInputs = [ perl gettext pkg-config ];
buildInputs = [ libidn2 libiconv ];