kodiPlugins.advanced-emulator-launcher: init at 0.9.6

This commit is contained in:
Edward Tjörnhammar 2017-06-05 17:10:31 +02:00
parent 513e66e310
commit 4f410bfc8d
No known key found for this signature in database
GPG key ID: 7B82CE4A866B6845
2 changed files with 31 additions and 0 deletions

View file

@ -35,6 +35,35 @@ rec {
};
advanced-emulator-launcher = mkKodiPlugin rec {
plugin = "advanced-emulator-launcher";
namespace = "plugin.program.advanced.emulator.launcher";
version = "0.9.6";
src = fetchFromGitHub {
owner = "Wintermute0110";
repo = namespace;
rev = version;
sha256 = "1sv9z77jj6bam6llcnd9b3dgkbvhwad2m1v541rv3acrackms2z2";
};
meta = with stdenv.lib; {
homepage = "http://forum.kodi.tv/showthread.php?tid=287826";
description = "A program launcher for Kodi";
longDescription = ''
Advanced Emulator Launcher is a multi-emulator front-end for Kodi
scalable to collections of thousands of ROMs. Includes offline scrapers
for MAME and No-Intro ROM sets and also supports scrapping ROM metadata
and artwork online. ROM auditing for No-Intro ROMs using No-Intro XML
DATs. Launching of games and standalone applications is also available.
'';
platforms = platforms.all;
maintainers = with maintainers; [ edwtjo ];
};
};
controllers = let
pname = "game-controller";
version = "1.0.3";

View file

@ -16527,6 +16527,8 @@ with pkgs;
plugins = let inherit (lib) optional optionals; in with kodiPlugins;
([]
++ optional (config.kodi.enableAdvancedLauncher or false) advanced-launcher
++ optional (config.kodi.enableAdvancedEmulatorLauncher or false)
advanced-emulator-launcher
++ optionals (config.kodi.enableControllers or false)
(with controllers;
[ default dreamcast gba genesis mouse n64 nes ps snes ])