depot/third_party/nixpkgs/pkgs/by-name/ce/cemu/package.nix
Luke Granger-Brown f92e137cfb
Some checks failed
/ combine-systems (push) Blocked by required conditions
/ build (x86_64-linux) (push) Failing after 11m44s
/ build (aarch64-linux) (push) Failing after 11m50s
/ build (push) Failing after 16m42s
Merge commit '1e2ed035f4bebc9adad02b365508ad96f7df87c1' into HEAD
2025-03-02 02:23:32 +00:00

188 lines
4.3 KiB
Nix

{
lib,
SDL2,
addDriverRunpath,
boost,
cmake,
cubeb,
curl,
fetchFromGitHub,
fetchpatch,
fmt_9,
gamemode,
glm,
glslang,
gtk3,
hidapi,
imgui,
libXrender,
libpng,
libusb1,
libzip,
nasm,
ninja,
nix-update-script,
pkg-config,
pugixml,
rapidjson,
stdenv,
testers,
vulkan-headers,
vulkan-loader,
wayland,
wayland-scanner,
wrapGAppsHook3,
wxGTK32,
zarchive,
bluez,
}:
let
# cemu doesn't build with imgui 1.91.4 or newer:
# before v1.91.4 (2024/10/08) the default type for ImTextureID was void*.
imgui' = imgui.overrideAttrs rec {
version = "1.91.3";
src = fetchFromGitHub {
owner = "ocornut";
repo = "imgui";
rev = "v${version}";
hash = "sha256-J4gz4rnydu8JlzqNC/OIoVoRcgeFd6B1Qboxu5drOKY=";
};
};
in
stdenv.mkDerivation (finalAttrs: {
pname = "cemu";
version = "2.5";
src = fetchFromGitHub {
owner = "cemu-project";
repo = "Cemu";
rev = "v${finalAttrs.version}";
hash = "sha256-JBd5ntU1fFDvQpNbfP63AQANzuQTdfd4dfB29/BN5LM=";
};
patches = [
# glslangTargets want SPIRV-Tools-opt to be defined:
# > The following imported targets are referenced, but are missing:
# > SPIRV-Tools-opt
./0000-spirv-tools-opt-cmakelists.patch
./0001-glslang-cmake-target.patch
(fetchpatch {
name = "fix-building-against-boost-187.patch";
url = "https://github.com/cemu-project/Cemu/commit/2b0cbf7f6b6c34c748585d255ee7756ff592a502.patch";
hash = "sha256-jHB/9MWZ/oNfUgZtxtgkSN/OnRARSuGVfXFFB9ldDpI=";
})
./0002-cemu-imgui.patch
];
nativeBuildInputs = [
SDL2
addDriverRunpath
wrapGAppsHook3
cmake
nasm
ninja
pkg-config
wxGTK32
wayland-scanner
];
buildInputs = [
SDL2
boost
cubeb
curl
fmt_9
glm
glslang
gtk3
hidapi
imgui'
libpng
libusb1
libzip
libXrender
pugixml
rapidjson
vulkan-headers
wayland
wxGTK32
zarchive
bluez
];
cmakeFlags = [
(lib.cmakeFeature "CMAKE_C_FLAGS_RELEASE" "-DNDEBUG")
(lib.cmakeFeature "CMAKE_CXX_FLAGS_RELEASE" "-DNDEBUG")
(lib.cmakeBool "ENABLE_VCPKG" false)
(lib.cmakeBool "ENABLE_FERAL_GAMEMODE" true)
# PORTABLE: "All data created and maintained by Cemu will be in
# the directory where the executable file is located"
(lib.cmakeBool "PORTABLE" false)
];
strictDeps = true;
preConfigure =
let
tag = lib.splitString "." (lib.last (lib.splitString "-" finalAttrs.version));
majorv = builtins.elemAt tag 0;
minorv = builtins.elemAt tag 1;
in
''
rm -rf dependencies/imgui
# cemu expects imgui source code, not just header files
ln -s ${imgui'.src} dependencies/imgui
substituteInPlace CMakeLists.txt --replace-fail "EMULATOR_VERSION_MAJOR \"0\"" "EMULATOR_VERSION_MAJOR \"${majorv}\""
substituteInPlace CMakeLists.txt --replace-fail "EMULATOR_VERSION_MINOR \"0\"" "EMULATOR_VERSION_MINOR \"${minorv}\""
substituteInPlace dependencies/gamemode/lib/gamemode_client.h --replace-fail "libgamemode.so.0" "${gamemode.lib}/lib/libgamemode.so.0"
'';
installPhase = ''
runHook preInstall
install -Dm755 ../bin/Cemu_release $out/bin/Cemu
ln -s $out/bin/Cemu $out/bin/cemu
mkdir -p $out/share/applications
substitute ../dist/linux/info.cemu.Cemu.desktop $out/share/applications/info.cemu.Cemu.desktop \
--replace "Exec=Cemu" "Exec=$out/bin/Cemu"
install -Dm644 ../dist/linux/info.cemu.Cemu.metainfo.xml -t $out/share/metainfo
install -Dm644 ../src/resource/logo_icon.png $out/share/icons/hicolor/128x128/apps/info.cemu.Cemu.png
runHook postInstall
'';
preFixup =
let
libs = [ vulkan-loader ] ++ cubeb.passthru.backendLibs;
in
''
gappsWrapperArgs+=(
--prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath libs}"
)
'';
passthru = {
updateScript = nix-update-script { };
tests = {
version = testers.testVersion {
package = finalAttrs.finalPackage;
};
};
};
meta = {
description = "Software to emulate Wii U games and applications on PC";
homepage = "https://cemu.info";
license = lib.licenses.mpl20;
mainProgram = "cemu";
maintainers = with lib.maintainers; [
zhaofengli
baduhai
];
platforms = [ "x86_64-linux" ];
};
})