5c370c0b2a
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
110 lines
2.5 KiB
Nix
110 lines
2.5 KiB
Nix
{
|
|
lib,
|
|
SDL2,
|
|
SDL2_net,
|
|
alsa-lib,
|
|
fetchurl,
|
|
flac,
|
|
freeglut,
|
|
libGL,
|
|
libGLU,
|
|
libX11,
|
|
libcdio,
|
|
libiconv,
|
|
libjack2,
|
|
libsamplerate,
|
|
libsndfile,
|
|
pkg-config,
|
|
stdenv,
|
|
zlib,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "mednafen";
|
|
version = "1.32.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://mednafen.github.io/releases/files/mednafen-${finalAttrs.version}.tar.xz";
|
|
hash = "sha256-3n65SrZiEq53WDdlJDaKirIII0szeWYlymMFR9vIODI=";
|
|
};
|
|
|
|
outputs = [ "out" "doc" ];
|
|
|
|
nativeBuildInputs = [
|
|
SDL2
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
SDL2
|
|
SDL2_net
|
|
flac
|
|
freeglut
|
|
libcdio
|
|
libjack2
|
|
libsamplerate
|
|
libsndfile
|
|
zlib
|
|
] ++ lib.optionals stdenv.hostPlatform.isLinux [
|
|
alsa-lib
|
|
libGL
|
|
libGLU
|
|
libX11
|
|
] ++ lib.optionals stdenv.hostPlatform.isDarwin [
|
|
libiconv
|
|
];
|
|
|
|
hardeningDisable = [
|
|
"format"
|
|
"pic"
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
strictDeps = true;
|
|
|
|
postInstall = ''
|
|
mkdir -p $doc/share/doc
|
|
mv Documentation $doc/share/doc/mednafen
|
|
'';
|
|
|
|
meta = {
|
|
homepage = "https://mednafen.github.io/";
|
|
description = "A portable, CLI-driven, SDL+OpenGL-based, multi-system emulator";
|
|
longDescription = ''
|
|
Mednafen is a portable, utilizing OpenGL and SDL,
|
|
argument(command-line)-driven multi-system emulator. Mednafen has the
|
|
ability to remap hotkey functions and virtual system inputs to a keyboard,
|
|
a joystick, or both simultaneously. Save states are supported, as is
|
|
real-time game rewinding. Screen snapshots may be taken, in the PNG file
|
|
format, at the press of a button. Mednafen can record audiovisual movies
|
|
in the QuickTime file format, with several different lossless codecs
|
|
supported.
|
|
|
|
The following systems are supported (refer to the emulation module
|
|
documentation for more details):
|
|
|
|
- Apple II/II+
|
|
- Atari Lynx
|
|
- Neo Geo Pocket (Color)
|
|
- WonderSwan
|
|
- GameBoy (Color)
|
|
- GameBoy Advance
|
|
- Nintendo Entertainment System
|
|
- Super Nintendo Entertainment System/Super Famicom
|
|
- Virtual Boy
|
|
- PC Engine/TurboGrafx 16 (CD)
|
|
- SuperGrafx
|
|
- PC-FX
|
|
- Sega Game Gear
|
|
- Sega Genesis/Megadrive
|
|
- Sega Master System
|
|
- Sega Saturn (experimental, x86_64 only)
|
|
- Sony PlayStation
|
|
'';
|
|
license = lib.licenses.gpl2Plus;
|
|
mainProgram = "mednafen";
|
|
maintainers = with lib.maintainers; [ AndersonTorres ];
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
})
|