mame: remove with lib;

This commit is contained in:
Dimitar Nestorov
2025-01-12 21:54:13 +02:00
parent d083ebba5d
commit 066979b212
+4 -4
View File
@@ -201,7 +201,7 @@ stdenv.mkDerivation rec {
update-source-version mame "''${latest_version/mame0/0.}"
'';
meta = with lib; {
meta = {
homepage = "https://www.mamedev.org/";
description = "Multi-purpose emulation framework";
longDescription = ''
@@ -219,12 +219,12 @@ stdenv.mkDerivation rec {
focus.
'';
changelog = "https://github.com/mamedev/mame/releases/download/mame${srcVersion}/whatsnew_${srcVersion}.txt";
license = with licenses; [
license = with lib.licenses; [
bsd3
gpl2Plus
];
maintainers = with maintainers; [ thiagokokada ];
platforms = platforms.unix;
maintainers = with lib.maintainers; [ thiagokokada ];
platforms = lib.platforms.unix;
mainProgram = "mame";
};
}