prismlauncher: give interm. package accurate name

This commit is contained in:
Jacob Birkett 2023-10-04 22:34:20 -07:00 committed by Jacob Birkett
parent 8be05482df
commit 9175b939c1

View File

@ -51,15 +51,15 @@ let
# Warning: This can make the program start slower, by about four milliseconds.
shellWrapper = withWaylandGLFW;
prismlauncherFinal = prismlauncher-unwrapped.override {
prismlauncher' = prismlauncher-unwrapped.override {
inherit msaClientID gamemodeSupport;
};
in
symlinkJoin {
name = "prismlauncher-${prismlauncherFinal.version}";
name = "prismlauncher-${prismlauncher'.version}";
paths = [ prismlauncherFinal ];
paths = [ prismlauncher' ];
nativeBuildInputs = [
wrapQtAppsHook
@ -124,5 +124,5 @@ symlinkJoin {
"--prefix PATH : ${lib.makeBinPath runtimePrograms}"
];
inherit (prismlauncherFinal) meta;
inherit (prismlauncher') meta;
}