mirror of
https://gitlab.com/ahoneybun/nix-configs.git
synced 2025-05-12 03:04:03 -06:00
11 lines
274 B
Nix
11 lines
274 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
|
|
'';
|
|
}
|