2
0
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-24 22:53:42 +00:00
nixpkgs/pkgs/applications/emulators/fceux/default.nix

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

45 lines
764 B
Nix
Raw Normal View History

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