792b51d22f
GitOrigin-RevId: d5f237872975e6fb6f76eef1368b5634ffcd266f
24 lines
710 B
Nix
24 lines
710 B
Nix
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, wrapQtAppsHook, SDL2, lua5_1, minizip, x264 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "fceux";
|
|
version = "2.6.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "TASEmulators";
|
|
repo = pname;
|
|
rev = "${pname}-${version}";
|
|
sha256 = "sha256-yQX58m/sMW/8Jr5cm2SrVXTiF7qyZOgOZg1v0qEyiLw=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake pkg-config wrapQtAppsHook ];
|
|
buildInputs = [ SDL2 lua5_1 minizip x264 ];
|
|
|
|
meta = with lib; {
|
|
description = "A Nintendo Entertainment System (NES) Emulator";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ sbruder scubed2 ];
|
|
homepage = "http://www.fceux.com/";
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|