Skip to content

Commit

Permalink
slimevr-server: fix OSC support (NixOS#371677)
Browse files Browse the repository at this point in the history
  • Loading branch information
misuzu authored Jan 15, 2025
2 parents 733005c + 14d9789 commit dd5f102
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pkgs/by-name/sl/slimevr-server/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,14 @@
runCommand,
replaceVars,
slimevr,
jdk17_headless,
jdk17,
gradle,
hidapi,
makeWrapper,
}:
let
java = jdk17_headless;
# JDK can't be headless while SlimeVR uses JavaOSC 0.8.
java = jdk17;
# Without this the hidapi bundled with `org.hid4java:hid4java` will be used.
# The bundled version won't be able to find `libudev.so.1`.
javaOptions =
Expand Down

0 comments on commit dd5f102

Please sign in to comment.