- Return error logs instead of asserts for BSD sockets - Warn about source depth != 1 in blits instead of assert in Fermi2D - Update AM 210 - GetLaunchRequiredVersionUpgrade Credit: liberodark. Fixes Marvel Cosmic Invasion loading screen crash. Co-authored-by: JPikachu <jpikachu.eden@gmail.com> Reviewed-on: https://git.eden-emu.dev/eden-emu/eden/pulls/3160 Reviewed-by: crueter <crueter@eden-emu.dev> Reviewed-by: Caio Oliveira <caiooliveirafarias0@gmail.com> Co-authored-by: JPikachu <jpikachu@eden-emu.dev> Co-committed-by: JPikachu <jpikachu@eden-emu.dev>
23 lines
698 B
Nix
23 lines
698 B
Nix
let
|
|
nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/tarball/nixos-25.11";
|
|
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 mbedtls
|
|
glslang python3 httplib cpp-jwt ffmpeg-headless
|
|
libusb1 cubeb
|
|
# eden
|
|
qt6.qtbase qt6.qtmultimedia qt6.qtwayland qt6.qttools
|
|
qt6.qtwebengine qt6.qt5compat
|
|
# eden-cli
|
|
SDL2
|
|
# optional components
|
|
discord-rpc gamemode
|
|
];
|
|
} |