2026-05-23 03:15:31 +08:00
|
|
|
#!/usr/bin/nix-shell
|
|
|
|
|
# SPDX-FileCopyrightText: Copyright 2026 Eden Emulator Project
|
|
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
|
2025-10-27 12:13:44 +08:00
|
|
|
let
|
2025-12-31 08:11:47 +08:00
|
|
|
nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/tarball/nixos-24.05";
|
2025-10-27 12:13:44 +08:00
|
|
|
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
|
2026-03-01 08:53:04 +08:00
|
|
|
spirv-tools spirv-headers vulkan-loader unzip
|
2025-11-07 23:50:03 +08:00
|
|
|
glslang python3 httplib cpp-jwt ffmpeg-headless
|
|
|
|
|
libusb1 cubeb
|
|
|
|
|
# eden
|
|
|
|
|
qt6.qtbase qt6.qtmultimedia qt6.qtwayland qt6.qttools
|
|
|
|
|
qt6.qtwebengine qt6.qt5compat
|
|
|
|
|
# eden-cli
|
2026-05-19 01:07:41 +08:00
|
|
|
SDL3
|
2025-11-07 23:50:03 +08:00
|
|
|
# optional components
|
|
|
|
|
discord-rpc gamemode
|
2025-10-27 12:13:44 +08:00
|
|
|
];
|
2026-02-03 02:00:44 +08:00
|
|
|
}
|