java-properties: move env variable into env for structuredAttrs (#524094)

This commit is contained in:
Stefan Frijters
2026-07-06 15:28:53 +00:00
committed by GitHub
@@ -76,7 +76,7 @@ stdenv.mkDerivation {
"**/*.java"
];
# On Linux, this can be C.UTF-8, but darwin + zulu requires en_US.UTF-8
LANG = "en_US.UTF-8";
env.LANG = "en_US.UTF-8";
buildPhase = ''
javac Main.java
'';