109 lines
3.4 KiB
Nix
109 lines
3.4 KiB
Nix
{ pname
|
|
, version
|
|
, src
|
|
, branch
|
|
, compat-list
|
|
|
|
, lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, boost17x
|
|
, pkg-config
|
|
, libusb1
|
|
, zstd
|
|
, libressl
|
|
, enableSdl2 ? true, SDL2
|
|
, enableQt ? true, qtbase, qtmultimedia, wrapQtAppsHook
|
|
, enableQtTranslation ? enableQt, qttools
|
|
, enableWebService ? true
|
|
, enableCubeb ? true, libpulseaudio
|
|
, enableFfmpegAudioDecoder ? true
|
|
, enableFfmpegVideoDumper ? true
|
|
, ffmpeg
|
|
, useDiscordRichPresence ? true, rapidjson
|
|
, enableFdk ? false, fdk_aac
|
|
}:
|
|
assert lib.assertMsg (!enableFfmpegAudioDecoder || !enableFdk) "Can't enable both enableFfmpegAudioDecoder and enableFdk";
|
|
|
|
stdenv.mkDerivation rec {
|
|
inherit pname version src;
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkg-config
|
|
] ++ lib.optionals enableQt [ wrapQtAppsHook ];
|
|
|
|
buildInputs = [
|
|
boost17x
|
|
libusb1
|
|
] ++ lib.optionals enableQt [ qtbase qtmultimedia ]
|
|
++ lib.optional enableSdl2 SDL2
|
|
++ lib.optional enableQtTranslation qttools
|
|
++ lib.optional enableCubeb libpulseaudio
|
|
++ lib.optional (enableFfmpegAudioDecoder || enableFfmpegVideoDumper) ffmpeg
|
|
++ lib.optional useDiscordRichPresence rapidjson
|
|
++ lib.optional enableFdk fdk_aac;
|
|
|
|
cmakeFlags = [
|
|
"-DUSE_SYSTEM_BOOST=ON"
|
|
"-DCITRA_USE_BUNDLED_FFMPEG=OFF"
|
|
"-DCITRA_USE_BUNDLED_QT=OFF"
|
|
"-DCITRA_USE_BUNDLED_SDL2=OFF"
|
|
|
|
# We dont want to bother upstream with potentially outdated compat reports
|
|
"-DCITRA_ENABLE_COMPATIBILITY_REPORTING=ON"
|
|
"-DENABLE_COMPATIBILITY_LIST_DOWNLOAD=OFF" # We provide this deterministically
|
|
] ++ lib.optional (!enableSdl2) "-DENABLE_SDL2=OFF"
|
|
++ lib.optional (!enableQt) "-DENABLE_QT=OFF"
|
|
++ lib.optional enableQtTranslation "-DENABLE_QT_TRANSLATION=ON"
|
|
++ lib.optional (!enableWebService) "-DENABLE_WEB_SERVICE=OFF"
|
|
++ lib.optional (!enableCubeb) "-DENABLE_CUBEB=OFF"
|
|
++ lib.optional enableFfmpegAudioDecoder "-DENABLE_FFMPEG_AUDIO_DECODER=ON"
|
|
++ lib.optional enableFfmpegVideoDumper "-DENABLE_FFMPEG_VIDEO_DUMPER=ON"
|
|
++ lib.optional useDiscordRichPresence "-DUSE_DISCORD_PRESENCE=ON"
|
|
++ lib.optional enableFdk "-DENABLE_FDK=ON";
|
|
|
|
postPatch = ''
|
|
# Prep compatibilitylist
|
|
ln -s ${compat-list} ./dist/compatibility_list/compatibility_list.json
|
|
|
|
# We already know the submodules are present
|
|
substituteInPlace CMakeLists.txt \
|
|
--replace "check_submodules_present()" ""
|
|
|
|
# Devendoring
|
|
rm -rf externals/zstd externals/libressl
|
|
cp -r ${zstd.src} externals/zstd
|
|
tar xf ${libressl.src} -C externals/
|
|
mv externals/${libressl.name} externals/libressl
|
|
chmod -R a+w externals/zstd
|
|
'';
|
|
|
|
# Fixes https://github.com/NixOS/nixpkgs/issues/171173
|
|
postInstall = lib.optionalString (enableCubeb && enableSdl2) ''
|
|
wrapProgram "$out/bin/citra" \
|
|
--prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [ libpulseaudio ]}
|
|
'';
|
|
|
|
meta = with lib; {
|
|
broken = (stdenv.isLinux && stdenv.isAarch64);
|
|
homepage = "https://citra-emu.org";
|
|
description = "The ${branch} branch of an open-source emulator for the Ninteno 3DS";
|
|
longDescription = ''
|
|
A Nintendo 3DS Emulator written in C++
|
|
Using the nightly branch is recommended for general usage.
|
|
Using the canary branch is recommended if you would like to try out
|
|
experimental features, with a cost of stability.
|
|
'';
|
|
mainProgram = if enableQt then "citra-qt" else "citra";
|
|
platforms = platforms.linux;
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [
|
|
abbradar
|
|
ashley
|
|
ivar
|
|
];
|
|
};
|
|
}
|