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

This commit is contained in:
Stefan Frijters
2026-02-14 12:20:18 +01:00
parent dfa9f0245a
commit 8730ce7b0e

View File

@@ -13,9 +13,11 @@ stdenv.mkDerivation {
dontUnpack = true;
CGO_ENABLED = 0;
GOFLAGS = "-trimpath";
GO111MODULE = "off";
env = {
CGO_ENABLED = 0;
GOFLAGS = "-trimpath";
GO111MODULE = "off";
};
buildPhase = ''
runHook preBuild