diff options
author | seth <getchoo@tuta.io> | 2023-09-19 13:45:12 -0400 |
---|---|---|
committer | seth <getchoo@tuta.io> | 2023-09-19 16:41:37 -0400 |
commit | 97ced1f459664949943b3f0ef424ea792be1c716 (patch) | |
tree | 382d1ebd4579faa490a2394332b8a8823c190800 | |
parent | 10192c540b85999c9a5cd075d695d1a4298ff9e5 (diff) | |
download | PrismLauncher-97ced1f459664949943b3f0ef424ea792be1c716.tar.gz PrismLauncher-97ced1f459664949943b3f0ef424ea792be1c716.tar.bz2 PrismLauncher-97ced1f459664949943b3f0ef424ea792be1c716.zip |
fix(nix): include libusb1 as a runtime dependency
Signed-off-by: seth <getchoo@tuta.io>
-rw-r--r-- | nix/pkg/wrapper.nix | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/nix/pkg/wrapper.nix b/nix/pkg/wrapper.nix index 8d160143..8bc255e7 100644 --- a/nix/pkg/wrapper.nix +++ b/nix/pkg/wrapper.nix @@ -18,9 +18,11 @@ flite, mesa-demos, udev, + libusb1, msaClientID ? null, gamemodeSupport ? stdenv.isLinux, textToSpeechSupport ? stdenv.isLinux, + controllerSupport ? stdenv.isLinux, jdks ? [jdk17 jdk8], additionalLibs ? [], additionalPrograms ? [], @@ -71,6 +73,7 @@ in ] ++ lib.optional gamemodeSupport gamemode.lib ++ lib.optional textToSpeechSupport flite + ++ lib.optional controllerSupport libusb1 ++ additionalLibs; runtimePrograms = |