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