umu-launcher: fix overriding umu-launcher-unwrapped arg

This allows the unwrapped package to be properly overridden.
This commit is contained in:
Matt Sturgeon
2025-01-22 00:09:33 +00:00
parent 250f76fd63
commit b14e7f21b9
+2 -1
View File
@@ -7,7 +7,8 @@ buildFHSEnv {
pname = "umu-launcher";
inherit (umu-launcher-unwrapped) version meta;
targetPkgs = pkgs: [ pkgs.umu-launcher-unwrapped ];
# Use umu-launcher-unwrapped from the package args, to simplify overriding
targetPkgs = _: [ umu-launcher-unwrapped ];
executableName = umu-launcher-unwrapped.meta.mainProgram;
runScript = lib.getExe umu-launcher-unwrapped;