3
0
Fork 0
forked from mirrors/nixpkgs

libretro-core-info: init at 1.12.0

This commit is contained in:
Thiago Kenji Okada 2022-10-28 23:52:01 +01:00
parent 87af66df78
commit eb2992e8f8
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{ lib
, stdenvNoCC
, fetchFromGitHub
}:
stdenvNoCC.mkDerivation rec {
pname = "libretro-core-info";
version = "1.12.0";
src = fetchFromGitHub {
owner = "libretro";
repo = "libretro-core-info";
hash = "sha256-ByATDM0V40UJxigqVLyTWkHY5tiCC2dvZebksl8GsUI=";
rev = "v${version}";
};
makeFlags = [ "PREFIX=$(out)" ];
dontBuild = true;
meta = with lib; {
description = "Libretro's core info files";
homepage = "https://libretro.com";
license = licenses.mit;
maintainers = with maintainers; teams.libretro.members ++ [ ];
platforms = platforms.all;
};
}

View file

@ -1745,6 +1745,8 @@ with pkgs;
retroarch = retroarchBare;
});
libretro-core-info = callPackage ../applications/emulators/retroarch/libretro-core-info.nix { };
kodi-retroarch-advanced-launchers =
callPackage ../applications/emulators/retroarch/kodi-advanced-launchers.nix { };