udp2raw: disable address sanitization

udp2raw crashes very frequently when it's turned on. Reported upstream at
https://github.com/wangyu-/udp2raw/issues/474/.

+2
+2
pkgs/tools/networking/udp2raw/default.nix
··· 29 29 30 30 postPatch = '' 31 31 echo 'const char *gitversion = "${version}";' > git_version.h 32 + # Adress sanitization crashes the application, reported upstream at https://github.com/wangyu-/udp2raw/issues/474 33 + substituteInPlace CMakeLists.txt --replace "sanitize=address," "sanitize=" 32 34 ''; 33 35 34 36 nativeBuildInputs = [