about summary refs log tree commit diff
path: root/pkgs/tools/networking/whois/default.nix
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2023-10-12 04:20:00 +0000
committerMario Rodas <marsam@users.noreply.github.com>2023-10-12 04:20:00 +0000
commitf9114acb1794b0f163d391771501d89289283886 (patch)
tree48b16a0fb8c49396430e83495144ab87b5b14755 /pkgs/tools/networking/whois/default.nix
parent871fb0bdbd99009d855c466e445872344f1980b8 (diff)
whois: fix build with Clang
Diffstat (limited to 'pkgs/tools/networking/whois/default.nix')
-rw-r--r--pkgs/tools/networking/whois/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/tools/networking/whois/default.nix b/pkgs/tools/networking/whois/default.nix
index f9d2e90b58e49..465ab76501378 100644
--- a/pkgs/tools/networking/whois/default.nix
+++ b/pkgs/tools/networking/whois/default.nix
@@ -11,6 +11,10 @@ stdenv.mkDerivation rec {
     hash = "sha256-4mFn5cY7ipAU4vOiHC2s69fxYJwShQEQ1eA8t5JvOP0=";
   };
 
+  patches = [
+    ./clang.patch
+  ];
+
   nativeBuildInputs = [ perl gettext pkg-config ];
   buildInputs = [ libidn2 libiconv ];