mame: 0.237 -> 0.238

This commit is contained in:
Thiago Kenji Okada 2021-11-27 23:02:57 -03:00
parent 7d3a3f55ec
commit ef62ecac5f
2 changed files with 2 additions and 8 deletions

View File

@ -33,13 +33,13 @@ let
in
stdenv.mkDerivation rec {
pname = "mame";
version = "0.237";
version = "0.238";
src = fetchFromGitHub {
owner = "mamedev";
repo = "mame";
rev = "mame${builtins.replaceStrings [ "." ] [ "" ] version}";
sha256 = "sha256-0GOzpE8YP32ixz+c4dtDur9K0Szf7cl/dkWzPcJRFAM=";
sha256 = "sha256-kh0kvtl+zPJjBWUXyzb/LSbPoJRxh55vUwF2G06tzoo=";
};
hardeningDisable = [ "fortify" ];

View File

@ -32435,12 +32435,6 @@ with pkgs;
mame = libsForQt514.callPackage ../misc/emulators/mame {
inherit (darwin.apple_sdk.frameworks) CoreAudioKit ForceFeedback;
# TODO: remove it on mame 0.238
stdenv =
if stdenv.cc.isClang then
overrideCC stdenv clang_6
else
stdenv;
};
martyr = callPackage ../development/libraries/martyr { };