Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / emulators / cemu / default.nix
blob3858ddf55b0dc0e47374c3f98d178dec92711fee
1 { lib, stdenv, fetchFromGitHub
2 , addOpenGLRunpath
3 , wrapGAppsHook
4 , cmake
5 , glslang
6 , nasm
7 , pkg-config
9 , SDL2
10 , boost
11 , cubeb
12 , curl
13 , fmt_9
14 , glm
15 , gtk3
16 , hidapi
17 , imgui
18 , libpng
19 , libzip
20 , libXrender
21 , pugixml
22 , rapidjson
23 , vulkan-headers
24 , wayland
25 , wxGTK32
26 , zarchive
27 , gamemode
28 , vulkan-loader
30 , nix-update-script
33 stdenv.mkDerivation rec {
34   pname = "cemu";
35   version = "2.0-47";
37   src = fetchFromGitHub {
38     owner = "cemu-project";
39     repo = "Cemu";
40     rev = "v${version}";
41     hash = "sha256-0N/bJJHWMHF+ZlVxNHV8t/1jFr3ER3GNF8CPAHVSsak=";
42   };
44   patches = [
45     # glslangTargets want SPIRV-Tools-opt to be defined:
46     # > The following imported targets are referenced, but are missing:
47     # > SPIRV-Tools-opt
48     ./cmakelists.patch
49   ];
51   nativeBuildInputs = [
52     addOpenGLRunpath
53     wrapGAppsHook
54     cmake
55     glslang
56     nasm
57     pkg-config
58   ];
60   buildInputs = [
61     SDL2
62     boost
63     cubeb
64     curl
65     fmt_9
66     glm
67     gtk3
68     hidapi
69     imgui
70     libpng
71     libzip
72     libXrender
73     pugixml
74     rapidjson
75     vulkan-headers
76     wayland
77     wxGTK32
78     zarchive
79   ];
81   cmakeFlags = [
82     "-DCMAKE_C_FLAGS_RELEASE=-DNDEBUG"
83     "-DCMAKE_CXX_FLAGS_RELEASE=-DNDEBUG"
84     "-DENABLE_VCPKG=OFF"
85     "-DENABLE_FERAL_GAMEMODE=ON"
87     # PORTABLE:
88     # "All data created and maintained by Cemu will be in the directory where the executable file is located"
89     "-DPORTABLE=OFF"
90   ];
92   preConfigure = with lib; let
93     tag = last (splitString "-" version);
94   in ''
95     rm -rf dependencies/imgui
96     ln -s ${imgui}/include/imgui dependencies/imgui
97     substituteInPlace src/Common/version.h --replace " (experimental)" "-${tag} (experimental)"
98     substituteInPlace dependencies/gamemode/lib/gamemode_client.h --replace "libgamemode.so.0" "${gamemode.lib}/lib/libgamemode.so.0"
99   '';
101   installPhase = ''
102     runHook preInstall
104     install -Dm755 ../bin/Cemu_release $out/bin/Cemu
105     ln -s $out/bin/Cemu $out/bin/cemu
107     mkdir -p $out/share/applications
108     substitute ../dist/linux/info.cemu.Cemu.desktop $out/share/applications/info.cemu.Cemu.desktop \
109       --replace "Exec=Cemu" "Exec=$out/bin/Cemu"
111     install -Dm644 ../dist/linux/info.cemu.Cemu.metainfo.xml -t $out/share/metainfo
112     install -Dm644 ../src/resource/logo_icon.png $out/share/icons/hicolor/128x128/apps/info.cemu.Cemu.png
114     runHook postInstall
115   '';
117   preFixup = let
118     libs = [ vulkan-loader ] ++ cubeb.passthru.backendLibs;
119   in ''
120     gappsWrapperArgs+=(
121       --prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath libs}"
122     )
123   '';
125   passthru.updateScript = nix-update-script { };
127   meta = with lib; {
128     description = "Cemu is a Wii U emulator";
129     homepage = "https://cemu.info";
130     license = licenses.mpl20;
131     platforms = [ "x86_64-linux" ];
132     maintainers = with maintainers; [ zhaofengli baduhai ];
133     mainProgram = "cemu";
134   };