nix-configs/software/gaming/BAR/shell.nix
Aaron Honeycutt de53a26819 format nix
2025-09-18 17:24:56 -06:00

11 lines
250 B
Nix

{pkgs ? import <nixpkgs> {}}:
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
'';
}