Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

prismlauncher: support all openal binary backends #330394

Merged
merged 1 commit into from
Aug 11, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 16 additions & 6 deletions pkgs/by-name/pr/prismlauncher/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
symlinkJoin,
prismlauncher-unwrapped,
addDriverRunpath,
alsa-lib,
flite,
gamemode,
glfw,
Expand All @@ -14,11 +15,13 @@
jdk21,
kdePackages,
libGL,
libjack2,
libpulseaudio,
libusb1,
makeWrapper,
openal,
pciutils,
pipewire,
udev,
vulkan-loader,
xorg,
Expand Down Expand Up @@ -102,21 +105,28 @@ symlinkJoin {
runtimeLibs =
[
# lwjgl
stdenv.cc.cc.lib
## native versions
glfw
libpulseaudio
libGL
openal
stdenv.cc.cc.lib

vulkan-loader # VulkanMod's lwjgl

udev # oshi
## openal
alsa-lib
libjack2
libpulseaudio
pipewire

## glfw
libGL
xorg.libX11
xorg.libXext
xorg.libXcursor
xorg.libXrandr
xorg.libXxf86vm

udev # oshi

vulkan-loader # VulkanMod's lwjgl
]
++ lib.optional textToSpeechSupport flite
++ lib.optional gamemodeSupport gamemode.lib
Expand Down