dnscrypt-wrapper: disable fortify3 hardening flag

This was enabled by default in db3e94c3 and breaks the key generation,
specifically `dnscrypt-wrapper --gen-crypt-keypair` fails with:

Generate crypt key pair... ok.
Secret key stored in 2.dnscrypt-cert.server.key
*** buffer overflow detected ***: terminated

FAQ:

1. Is the buffer overflow real? Probably.

2. Is it maintained? Is upstream going to fix it? Not really.

3. Are you willing to investigate and patch it yourself? Nope.

rnhmjoj f65d93f9 e1d36dfc

+3
+3
pkgs/tools/networking/dnscrypt-wrapper/default.nix
··· 13 14 enableParallelBuilding = true; 15 16 nativeBuildInputs = [ pkg-config autoreconfHook ]; 17 buildInputs = [ libsodium libevent ]; 18
··· 13 14 enableParallelBuilding = true; 15 16 + # causes `dnscrypt-wrapper --gen-provider-keypair` to crash 17 + hardeningDisable = [ "fortify3" ]; 18 + 19 nativeBuildInputs = [ pkg-config autoreconfHook ]; 20 buildInputs = [ libsodium libevent ]; 21