From 4ef0877427e3529c20a5ee30da4731c9b9b76f4a Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Sat, 1 Mar 2025 03:11:12 +0000 Subject: [PATCH] Upload New File --- software/gaming/BAR/shell.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 software/gaming/BAR/shell.nix diff --git a/software/gaming/BAR/shell.nix b/software/gaming/BAR/shell.nix new file mode 100644 index 0000000..aa8d822 --- /dev/null +++ b/software/gaming/BAR/shell.nix @@ -0,0 +1,11 @@ +{ pkgs ? import {} }: + pkgs.mkShell { + buildInputs = with pkgs; [ + appimage-run + openal + ]; + shellHook = '' + export LD_LIBRARY_PATH="${pkgs.openal}/lib:$LD_LIBRARY_PATH" + appimage-run Beyond-All-Reason-1.2988.0.AppImage + ''; +}