Merge pull request #269978 from josephst/whois-implicit-functions

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

Changed files
+9 -1
pkgs
tools
networking
whois
+9 -1
pkgs/tools/networking/whois/default.nix
···
-
{ 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";
···
rev = "v${version}";
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 ];