prismlauncher: rename to programs/libs runtimePrograms/runtimeLibs

Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>

authored by scrumplex.net and committed by Jörg Thalheim a1a757fe 92110251

+5 -5
+5 -5
pkgs/games/prismlauncher/wrapper.nix
··· 50 50 51 51 qtWrapperArgs = 52 52 let 53 - libs = (with xorg; [ 53 + runtimeLibs = (with xorg; [ 54 54 libX11 55 55 libXext 56 56 libXcursor ··· 68 68 ++ lib.optional textToSpeechSupport flite 69 69 ++ additionalLibs; 70 70 71 - programs = [ 71 + runtimePrograms = [ 72 72 xorg.xrandr 73 - mesa-demos # need glxinfo 73 + mesa-demos # need glxinfo 74 74 ] 75 75 ++ additionalPrograms; 76 76 77 77 in 78 78 [ "--prefix PRISMLAUNCHER_JAVA_PATHS : ${lib.makeSearchPath "bin/java" jdks}" ] 79 79 ++ lib.optionals stdenv.isLinux [ 80 - "--set LD_LIBRARY_PATH /run/opengl-driver/lib:${lib.makeLibraryPath libs}" 80 + "--set LD_LIBRARY_PATH /run/opengl-driver/lib:${lib.makeLibraryPath runtimeLibs}" 81 81 # xorg.xrandr needed for LWJGL [2.9.2, 3) https://github.com/LWJGL/lwjgl/issues/128 82 - "--prefix PATH : ${lib.makeBinPath programs}" 82 + "--prefix PATH : ${lib.makeBinPath runtimePrograms}" 83 83 ]; 84 84 85 85 inherit (prismlauncherFinal) meta;