tclPackages.mkTclDerivation: fix clobbering of env (#491904)

This commit is contained in:
Jo
2026-02-20 10:41:49 +00:00
committed by GitHub
@@ -57,7 +57,10 @@ let
];
propagatedBuildInputs = propagatedBuildInputs ++ [ tcl ];
env.TCLSH = "${getBin tcl}/bin/tclsh";
env = {
TCLSH = "${getBin tcl}/bin/tclsh";
}
// (attrs.env or { });
# Run tests after install, at which point we've done all TCLLIBPATH setup
doCheck = false;