gmni: disable `fortify3` to fix `gcc-13` build

It's not masking a real overflow, but inhibits invalid `snprintf()`
buffer size bassed. Without the change build fails on `master` as:

In function 'snprintf',
inlined from 'xt_end_chain' at src/tofu.c:82:3,
inlined from 'xt_end_chain' at src/tofu.c:70:1:
...-glibc-2.38-27-dev/include/bits/stdio2.h:54:10: error: '__builtin___snprintf_chk' specified bound 4 exceeds destination size 3 [-Werror=stringop-overflow]
54 | return __builtin___snprintf_chk (__s, __n, __USE_FORTIFY_LEVEL - 1,
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
55 | __glibc_objsize (__s), __fmt,
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
56 | __va_arg_pack ());
| ~~~~~~~~~~~~~~~~~

As the project is not maintained anymore let's just disable the
`fortify3` that puts an extra check into `snprintf()` buffer.

+8
+8
pkgs/applications/networking/browsers/gmni/default.nix
··· 14 14 nativeBuildInputs = [ scdoc ]; 15 15 buildInputs = [ bearssl ]; 16 16 17 + # Fix build on `gcc-13`: 18 + # inlined from 'xt_end_chain' at src/tofu.c:82:3, 19 + # ...-glibc-2.38-27-dev/include/bits/stdio2.h:54:10: error: '__builtin___snprintf_chk' specified bound 4 exceeds destination size 3 [-Werror=stringop-overflow] 20 + # 21 + # The overflow will not happen in practice, but `snprintf()` gets 22 + # passed one more byte than available. 23 + hardeningDisable = [ "fortify3" ]; 24 + 17 25 meta = with lib; { 18 26 description = "A Gemini client"; 19 27 homepage = "https://git.sr.ht/~sircmpwn/gmni";