email: fix compilation with gcc 15 (#479048)

This commit is contained in:
Aleksana
2026-01-18 03:16:33 +00:00
committed by GitHub
+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 = ''