Revert "gts: only rebuild on *-darwin for now"

This reverts commit f90111ac03.
This commit is contained in:
Vladimír Čunát
2026-04-11 12:03:04 +02:00
parent 88fa9f0fe0
commit f534a134d4
+2 -2
View File
@@ -32,8 +32,8 @@ stdenv.mkDerivation (finalAttrs: {
buildInputs = [ gettext ];
propagatedBuildInputs = [ glib ];
env = lib.optionalAttrs stdenv.isDarwin {
# Doesn't build on Darwin with -std=gnu23.
env = {
# Doesn't build on Darwin with -std=gnu23. Apply uniformly as C standard target is something unlikely to vary across platforms.
NIX_CFLAGS_COMPILE = "-std=gnu17";
};