nixpkgs/pkgs/applications/emulators/retroarch/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

176 lines
4.4 KiB
Nix
Raw Normal View History

{ lib
, stdenv
, nixosTests
, enableNvidiaCgToolkit ? false
2022-01-21 21:26:24 +00:00
, withGamemode ? stdenv.isLinux
, withVulkan ? stdenv.isLinux
2022-10-18 16:54:52 +00:00
, withWayland ? stdenv.isLinux
, alsa-lib
, AppKit
2022-08-06 11:04:55 +00:00
, dbus
, fetchFromGitHub
2022-02-05 21:28:01 +00:00
, ffmpeg_4
2022-10-28 11:45:00 +00:00
, flac
, Foundation
, freetype
2022-01-21 21:26:24 +00:00
, gamemode
, libdrm
, libGL
, libGLU
, libobjc
, libpulseaudio
, libv4l
, libX11
, libXdmcp
, libXext
, libxkbcommon
, libxml2
, libXxf86vm
, makeWrapper
2022-10-28 11:45:00 +00:00
, mbedtls
, mesa
, nvidia_cg_toolkit
, pkg-config
, python3
, SDL2
, udev
, vulkan-loader
, wayland
2022-10-28 11:45:00 +00:00
, zlib
}:
let
2022-10-18 16:54:52 +00:00
version = "1.12.0";
2022-01-21 21:26:24 +00:00
libretroCoreInfo = fetchFromGitHub {
owner = "libretro";
repo = "libretro-core-info";
hash = "sha256-ByATDM0V40UJxigqVLyTWkHY5tiCC2dvZebksl8GsUI=";
rev = "v${version}";
};
2022-10-18 16:54:52 +00:00
runtimeLibs =
lib.optional withVulkan vulkan-loader ++
lib.optional withGamemode (lib.getLib gamemode);
in
stdenv.mkDerivation rec {
pname = "retroarch-bare";
2021-12-06 13:49:07 +00:00
inherit version;
2013-06-26 11:25:09 +00:00
src = fetchFromGitHub {
owner = "libretro";
repo = "RetroArch";
hash = "sha256-doLWNA8aTAllxx3zABtvZaegBQEPIi8276zbytPSdBU=";
rev = "v${version}";
2013-06-26 11:25:09 +00:00
};
patches = [
2022-10-18 16:54:52 +00:00
./use-fixed-paths.patch
];
postPatch = ''
substituteInPlace "frontend/drivers/platform_unix.c" \
2022-10-18 16:54:52 +00:00
--subst-var-by libretro_directory "$out/lib" \
--subst-var-by libretro_info_path "$out/share/libretro/info" \
--subst-var-by out "$out"
substituteInPlace "frontend/drivers/platform_darwin.m" \
2022-10-18 16:54:52 +00:00
--subst-var-by libretro_directory "$out/lib" \
--subst-var-by libretro_info_path "$out/share/libretro/info"
'';
nativeBuildInputs = [ pkg-config ] ++
2022-10-18 16:54:52 +00:00
lib.optional withWayland wayland ++
2022-01-21 21:26:24 +00:00
lib.optional (runtimeLibs != [ ]) makeWrapper;
2013-06-26 11:25:09 +00:00
2022-10-18 16:54:52 +00:00
buildInputs = [
ffmpeg_4
2022-10-28 11:45:00 +00:00
flac
2022-10-18 16:54:52 +00:00
freetype
libGL
libGLU
libxml2
2022-10-28 11:45:00 +00:00
mbedtls
2022-10-18 16:54:52 +00:00
python3
SDL2
2022-10-28 11:45:00 +00:00
zlib
2022-10-18 16:54:52 +00:00
] ++
lib.optional enableNvidiaCgToolkit nvidia_cg_toolkit ++
lib.optional withVulkan vulkan-loader ++
lib.optional withWayland wayland ++
lib.optionals stdenv.isDarwin [ libobjc AppKit Foundation ] ++
lib.optionals stdenv.isLinux [
alsa-lib
dbus
libX11
libXdmcp
libXext
libXxf86vm
libdrm
libpulseaudio
libv4l
libxkbcommon
mesa
udev
];
2018-03-03 02:09:35 +00:00
enableParallelBuilding = true;
2022-10-18 16:54:52 +00:00
configureFlags = [
"--disable-update_cores"
2022-10-28 11:45:00 +00:00
"--disable-builtinmbedtls"
"--disable-builtinzlib"
"--disable-builtinflac"
2022-10-18 16:54:52 +00:00
] ++
lib.optionals stdenv.isLinux [
"--enable-dbus"
"--enable-egl"
"--enable-kms"
];
2019-11-12 09:31:53 +00:00
2022-01-21 21:26:24 +00:00
postInstall = ''
# TODO: ideally each core should have its own core information
2022-10-18 16:54:52 +00:00
mkdir -p $out/share/libretro/info
2022-01-21 21:26:24 +00:00
cp -r ${libretroCoreInfo}/* $out/share/libretro/info
2022-10-18 16:54:52 +00:00
'' +
lib.optionalString (runtimeLibs != [ ]) ''
2022-01-21 21:26:24 +00:00
wrapProgram $out/bin/retroarch \
--prefix LD_LIBRARY_PATH ':' ${lib.makeLibraryPath runtimeLibs}
2022-10-18 16:54:52 +00:00
'' +
lib.optionalString stdenv.isDarwin ''
# https://github.com/libretro/RetroArch/blob/master/retroarch-apple-packaging.sh
app=$out/Applications/RetroArch.app
mkdir -p $app/Contents/MacOS
cp -r pkg/apple/OSX/* $app/Contents
cp $out/bin/retroarch $app/Contents/MacOS
# FIXME: using Info_Metal.plist results in input not working
# mv $app/Contents/Info_Metal.plist $app/Contents/Info.plist
substituteInPlace $app/Contents/Info.plist \
--replace '${"\${EXECUTABLE_NAME}"}' 'RetroArch' \
--replace '$(PRODUCT_BUNDLE_IDENTIFIER)' 'com.libretro.RetroArch' \
--replace '${"\${PRODUCT_NAME}"}' 'RetroArch' \
--replace '${"\${MACOSX_DEPLOYMENT_TARGET}"}' '10.13'
cp media/retroarch.icns $app/Contents/Resources/
'';
2018-03-03 02:09:35 +00:00
preFixup = "rm $out/bin/retroarch-cg2glsl";
# Workaround for the following error affecting newer versions of Clang:
# ./config.def.h:xxx:x: error: 'TARGET_OS_TV' is not defined, evaluates to 0 [-Werror,-Wundef-prefix=TARGET_OS_]
NIX_CFLAGS_COMPILE = lib.optionals stdenv.cc.isClang [ "-Wno-undef-prefix" ];
passthru.tests = nixosTests.retroarch;
2022-01-21 21:26:24 +00:00
meta = with lib; {
homepage = "https://libretro.com";
description = "Multi-platform emulator frontend for libretro cores";
2021-11-17 15:09:43 +00:00
license = licenses.gpl3Plus;
2021-11-28 17:50:21 +00:00
platforms = platforms.unix;
2022-01-22 14:01:48 +00:00
changelog = "https://github.com/libretro/RetroArch/blob/v${version}/CHANGES.md";
maintainers = with maintainers; teams.libretro.members ++ [ matthewbauer kolbycrouch ];
mainProgram = "retroarch";
# FIXME: error while building in macOS:
# "Undefined symbols for architecture <arch>"
broken = stdenv.isDarwin;
2013-06-26 11:25:09 +00:00
};
}