httping: pull upstream fix for darwin

Without the change build fails as:

clang -Wall -W -Wextra -pedantic -D_FORTIFY_SOURCE=2 -DVERSION=\"2.9\" -DLOCALEDIR=\"/usr/share/locale\" -DNC -DFW -D_DEBUG -ggdb -c -o nc.o nc.c
In file included from nc.c:22:
./utils.h:19:15: error: unknown type name 'useconds_t'
void myusleep(useconds_t v);
^
make: *** [<builtin>: nc.o] Error 1

Closes: https://github.com/NixOS/nixpkgs/issues/202946

+11
+11
pkgs/tools/networking/httping/default.nix
··· 1 { lib 2 , stdenv 3 , fetchFromGitHub 4 , fftw ? null 5 , gettext 6 , libintl ··· 18 rev = "v${version}"; 19 hash = "sha256-aExTXXtW03UKMuMjTMx1k/MUpcRMh1PdSPkDGH+Od70="; 20 }; 21 22 nativeBuildInputs = [ 23 gettext
··· 1 { lib 2 , stdenv 3 , fetchFromGitHub 4 + , fetchpatch 5 , fftw ? null 6 , gettext 7 , libintl ··· 19 rev = "v${version}"; 20 hash = "sha256-aExTXXtW03UKMuMjTMx1k/MUpcRMh1PdSPkDGH+Od70="; 21 }; 22 + 23 + patches = [ 24 + # Pull upstream fix for missing <unistd.h> 25 + # https://github.com/folkertvanheusden/HTTPing/pull/8 26 + (fetchpatch { 27 + name = "add-unistd.patch"; 28 + url = "https://github.com/folkertvanheusden/HTTPing/commit/aad3c275686344fe9a235faeac4ee3832f3aa8d5.patch"; 29 + hash = "sha256-bz3AMQTSfSTwUyf9WbkAFWVmFo06ei+Qd55x+RRDREY="; 30 + }) 31 + ]; 32 33 nativeBuildInputs = [ 34 gettext