gamma-launcher: fix broken version check due to unset $HOME

This commit is contained in:
DrymarchonShaun
2026-03-25 11:23:32 -07:00
parent 6214c69078
commit 69e2ddffc9
+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 = ''