kitty: move env variable(s) into env for structuredAttrs

This commit is contained in:
Stefan Frijters
2026-02-14 12:25:16 +01:00
parent e84ac091d2
commit 1ec259aedf
+4 -2
View File
@@ -150,8 +150,10 @@ buildPythonApplication rec {
"fortify3"
];
env.CGO_ENABLED = 0;
GOFLAGS = "-trimpath";
env = {
CGO_ENABLED = 0;
GOFLAGS = "-trimpath";
};
configurePhase = ''
export GOCACHE=$TMPDIR/go-cache