3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/emulators/fceux/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
710 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, wrapQtAppsHook, SDL2, lua5_1, minizip, x264 }:
2014-06-07 23:08:57 +01:00
stdenv.mkDerivation rec {
pname = "fceux";
2022-03-24 12:59:36 +00:00
version = "2.6.4";
2014-06-07 23:08:57 +01:00
2020-02-08 22:15:00 +00:00
src = fetchFromGitHub {
owner = "TASEmulators";
repo = pname;
rev = "${pname}-${version}";
2022-03-24 12:59:36 +00:00
sha256 = "sha256-Q6r/iBlmi0z40+U6OLZCahS0io4IBBGZMP1mJH7szRM=";
2014-06-07 23:08:57 +01:00
};
nativeBuildInputs = [ cmake pkg-config wrapQtAppsHook ];
buildInputs = [ SDL2 lua5_1 minizip x264 ];
2014-06-07 23:08:57 +01:00
meta = with lib; {
2014-06-07 23:08:57 +01:00
description = "A Nintendo Entertainment System (NES) Emulator";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ sbruder scubed2 ];
homepage = "http://www.fceux.com/";
platforms = platforms.linux;
2014-06-07 23:08:57 +01:00
};
}