nixpkgs/pkgs/misc/emulators/mame/default.nix

90 lines
2.5 KiB
Nix
Raw Normal View History

2020-10-08 02:50:06 +00:00
{ stdenv, mkDerivation, fetchFromGitHub, makeDesktopItem, makeWrapper
2021-01-17 02:30:45 +00:00
, python, pkg-config, SDL2, SDL2_ttf, alsaLib, which, qtbase, libXinerama
2020-03-27 06:17:27 +00:00
, libpcap, CoreAudioKit, ForceFeedback
2019-12-26 17:58:15 +00:00
, installShellFiles }:
2019-10-30 19:29:51 +00:00
2020-03-27 06:17:27 +00:00
with stdenv;
2019-10-30 19:29:51 +00:00
let
majorVersion = "0";
2020-11-01 16:40:42 +00:00
minorVersion = "226";
2019-10-30 19:29:51 +00:00
desktopItem = makeDesktopItem {
name = "MAME";
2020-03-27 06:17:27 +00:00
exec = "mame${lib.optionalString stdenv.is64bit "64"}";
2019-10-30 19:29:51 +00:00
desktopName = "MAME";
genericName = "MAME is a multi-purpose emulation framework";
categories = "System;Emulator;";
};
2019-12-06 20:43:40 +00:00
dest = "$out/opt/mame";
2019-10-30 19:29:51 +00:00
in mkDerivation {
pname = "mame";
version = "${majorVersion}.${minorVersion}";
src = fetchFromGitHub {
owner = "mamedev";
repo = "mame";
rev = "mame${majorVersion}${minorVersion}";
2020-11-01 16:40:42 +00:00
sha256 = "0pnsvz4vkjkqb1ac5wzwz31vx0iknyg5ffly90nhl13kcr656jrj";
2019-10-30 19:29:51 +00:00
};
hardeningDisable = [ "fortify" ];
2020-03-27 06:17:27 +00:00
NIX_CFLAGS_COMPILE = [ "-Wno-error=maybe-uninitialized" "-Wno-error=missing-braces" ];
2019-10-30 19:29:51 +00:00
2020-03-27 06:17:27 +00:00
makeFlags = [
"TOOLS=1"
"USE_LIBSDL=1"
]
++ lib.optionals stdenv.cc.isClang [ "CC=clang" "CXX=clang++" ]
;
2019-10-30 19:29:51 +00:00
2019-12-06 20:43:40 +00:00
dontWrapQtApps = true;
2020-03-27 06:17:27 +00:00
buildInputs =
[ SDL2 SDL2_ttf qtbase libXinerama ]
++ lib.optional stdenv.isLinux alsaLib
++ lib.optionals stdenv.isDarwin [ libpcap CoreAudioKit ForceFeedback ]
;
2021-01-17 02:30:45 +00:00
nativeBuildInputs = [ python pkg-config which makeWrapper installShellFiles ];
2019-10-30 19:29:51 +00:00
2019-12-06 20:43:40 +00:00
# by default MAME assumes that paths with stock resources
# are relative and that you run MAME changing to
# install directory, so we add absolute paths here
2020-09-23 02:45:15 +00:00
patches = [
./emuopts.patch
];
2019-10-30 19:29:51 +00:00
2019-12-06 20:43:40 +00:00
postPatch = ''
substituteInPlace src/emu/emuopts.cpp \
--subst-var-by mame ${dest}
'';
installPhase = ''
2021-01-15 13:21:58 +00:00
make -f dist.mak PTR64=${lib.optionalString stdenv.is64bit "1"}
2019-12-06 20:43:40 +00:00
mkdir -p ${dest}
mv build/release/*/Release/mame/* ${dest}
2019-10-30 19:29:51 +00:00
mkdir -p $out/bin
2019-12-06 20:43:40 +00:00
find ${dest} -maxdepth 1 -executable -type f -exec mv -t $out/bin {} \;
install -Dm755 src/osd/sdl/taputil.sh $out/bin/taputil.sh
2019-10-30 19:29:51 +00:00
2019-12-26 17:58:15 +00:00
installManPage ${dest}/docs/man/*.1 ${dest}/docs/man/*.6
2019-12-06 20:43:40 +00:00
mv artwork plugins samples ${dest}
2020-03-27 06:17:27 +00:00
'' + lib.optionalString stdenv.isLinux ''
2019-10-30 19:29:51 +00:00
mkdir -p $out/share
ln -s ${desktopItem}/share/applications $out/share
'';
2020-03-27 06:17:27 +00:00
meta = with lib; {
2019-10-30 19:29:51 +00:00
description = "Is a multi-purpose emulation framework";
homepage = "https://www.mamedev.org/";
2019-10-30 19:29:51 +00:00
license = with licenses; [ bsd3 gpl2Plus ];
2020-03-27 06:17:27 +00:00
platforms = platforms.unix;
# makefile needs fixes for install target
badPlatforms = [ "aarch64-linux" ];
2019-10-30 19:29:51 +00:00
maintainers = with maintainers; [ gnidorah ];
};
}