Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 24 lines 522 B view raw
1{ 2 lib, 3 fetchFromGitHub, 4 mkLibretroCore, 5}: 6mkLibretroCore { 7 core = "nxengine"; 8 version = "0-unstable-2024-10-21"; 9 10 src = fetchFromGitHub { 11 owner = "libretro"; 12 repo = "nxengine-libretro"; 13 rev = "9adc032a5f6aa913d71d22042bb72cb11cf0f4a2"; 14 hash = "sha256-8XjZp18lQU3xFNDjIuNsSHn7Mhba8Lze/IeRsy8/U1U="; 15 }; 16 17 makefile = "Makefile"; 18 19 meta = { 20 description = "NXEngine libretro port"; 21 homepage = "https://github.com/libretro/nxengine-libretro"; 22 license = lib.licenses.gpl3Only; 23 }; 24}