mirror of
https://git.eden-emu.dev/eden-emu/eden
synced 2026-05-19 18:37:04 +02:00
Since the launch of the steam controller I think it's only best to push towards updating to SDL3 allowing for a wider range of controller support I went ahead and started on getting it working. Everything here should be functional, I've personally tested it all on Arch Linux. Still untested on windows, so looking for feedback on that Any feedback and help would be appreciated! Main changes: - Bump everything to SDL3 - Handle SDL3 audio and input - Add steam controller support, including HD Rumble - Improved battery reporting via the status icon by using real % rather than state alone Co-authored-by: crueter <crueter@eden-emu.dev> Reviewed-on: https://git.eden-emu.dev/eden-emu/eden/pulls/3952 Reviewed-by: crueter <crueter@eden-emu.dev> Reviewed-by: MaranBr <maranbr@eden-emu.dev> Reviewed-by: Lizzie <lizzie@eden-emu.dev>
23 lines
691 B
Nix
23 lines
691 B
Nix
let
|
|
nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/tarball/nixos-24.05";
|
|
pkgs = import nixpkgs { config = {}; overlays = []; };
|
|
in
|
|
pkgs.mkShellNoCC {
|
|
packages = with pkgs; [
|
|
# essential programs
|
|
git cmake clang gnumake patch jq pkg-config
|
|
# libraries
|
|
openssl boost fmt nlohmann_json lz4 zlib zstd
|
|
enet libopus vulkan-headers vulkan-utility-libraries
|
|
spirv-tools spirv-headers vulkan-loader unzip
|
|
glslang python3 httplib cpp-jwt ffmpeg-headless
|
|
libusb1 cubeb
|
|
# eden
|
|
qt6.qtbase qt6.qtmultimedia qt6.qtwayland qt6.qttools
|
|
qt6.qtwebengine qt6.qt5compat
|
|
# eden-cli
|
|
SDL3
|
|
# optional components
|
|
discord-rpc gamemode
|
|
];
|
|
}
|