Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 22 lines 513 B view raw
1{ 2 lib, 3 fetchFromGitHub, 4 mkLibretroCore, 5}: 6mkLibretroCore { 7 core = "fuse"; 8 version = "0-unstable-2024-11-24"; 9 10 src = fetchFromGitHub { 11 owner = "libretro"; 12 repo = "fuse-libretro"; 13 rev = "cad85b7b1b864c65734f71aa4a510b6f6536881c"; 14 hash = "sha256-SdwdcR9szJJoUxQ4y8rh40Bdnn5ZI2qV4OcS39BFViQ="; 15 }; 16 17 meta = { 18 description = "Port of the Fuse Unix Spectrum Emulator to libretro"; 19 homepage = "https://github.com/libretro/fuse-libretro"; 20 license = lib.licenses.gpl3Only; 21 }; 22}