1{
2 lib,
3 fetchFromGitHub,
4 mkLibretroCore,
5}:
6mkLibretroCore {
7 core = "blastem";
8 version = "0-unstable-2022-07-26";
9
10 src = fetchFromGitHub {
11 owner = "libretro";
12 repo = "blastem";
13 rev = "277e4a62668597d4f59cadda1cbafb844f981d45";
14 hash = "sha256-EHvKElPw8V5Z6LnMaQXBCdM4niLIlF3aBm8dRbeYXHs=";
15 };
16
17 meta = {
18 description = "Port of BlastEm to libretro";
19 homepage = "https://github.com/libretro/blastem";
20 license = lib.licenses.gpl3Only;
21 platforms = lib.platforms.x86;
22 };
23}