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

whois: add implicit.patch to fix builds with clang 16
This commit is contained in:
Weijia Wang
2023-12-03 14:38:57 +01:00
committed by GitHub

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 ];