gamma-launcher: fix broken version check due to unset $HOME (#503471)

This commit is contained in:
Austin Horstman
2026-03-27 18:46:21 +00:00
committed by GitHub
+6 -1
View File
@@ -4,6 +4,7 @@
_7zz,
fetchFromGitHub,
versionCheckHook,
writableTmpDirAsHomeHook,
runCommand,
}:
@@ -40,7 +41,11 @@ python3Packages.buildPythonApplication rec {
tqdm
];
nativeCheckInputs = [ versionCheckHook ];
nativeCheckInputs = [
versionCheckHook
writableTmpDirAsHomeHook
];
versionCheckKeepEnvironment = [ "HOME" ];
doInstallCheck = true;
postFixup = ''