simplenes: unstable-2019-03-13 -> 0-unstable-2025-01-05

This commit is contained in:
Gaetan Lepage
2025-03-24 09:01:09 +01:00
parent 1750f3c1c8
commit 0b2dd47ed2
+10 -6
View File
@@ -8,29 +8,33 @@
stdenv.mkDerivation {
pname = "simplenes";
version = "unstable-2019-03-13";
version = "0-unstable-2025-01-05";
src = fetchFromGitHub {
owner = "amhndu";
repo = "SimpleNES";
rev = "4edb7117970c21a33b3bfe11a6606764fffc5173";
sha256 = "1nmwj431iwqzzcykxd4xinqmg0rm14mx7zsjyhcc5skz7pihz86g";
rev = "154a2fd4f2f2611a27197aa8d802bbcdfd1a0ea3";
hash = "sha256-4Nb42tb/pJaVOOhj7hH9cQLDKCz8GUXWz8KAHPOd9nE=";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ sfml ];
installPhase = ''
runHook preInstall
mkdir -p $out/bin
cp ./SimpleNES $out/bin
runHook postInstall
'';
meta = with lib; {
meta = {
homepage = "https://github.com/amhndu/SimpleNES";
description = "NES emulator written in C++";
license = licenses.gpl3;
license = lib.licenses.gpl3;
maintainers = [ ];
platforms = platforms.linux;
platforms = lib.platforms.linux;
mainProgram = "SimpleNES";
};
}