email: fix compilation with gcc 15

This commit is contained in:
Matt McHenry
2026-01-11 09:53:49 -05:00
parent 3497aa5c94
commit 0b0c1d8437
+4
View File
@@ -40,6 +40,10 @@ stdenv.mkDerivation {
})
];
# opt out of GCC 15's stricter C standards
# https://github.com/NixOS/nixpkgs/issues/475479
env.NIX_CFLAGS_COMPILE = toString [ "-std=gnu17" ];
buildInputs = [ openssl ];
unpackPhase = ''