summary refs log tree commit diff
path: root/pkgs/misc/emulators/fceux/default.nix
blob: f76fc761abbcf98ebf5969bc9e765fc71e5e72d2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{lib, stdenv, fetchFromGitHub, scons, zlib, SDL, lua5_1, pkg-config}:

stdenv.mkDerivation {
  pname = "fceux-unstable";
  version = "2020-01-29";

  src = fetchFromGitHub {
    owner = "TASVideos";
    repo = "fceux";
    rev = "fb8d46d9697cb24b0ebe79d84eedf282f69ab337";
    sha256 = "0gpz411dzfwx9mr34yi4zb1hphd5hha1nvwgzxki0sviwafca992";
  };

  nativeBuildInputs = [ pkg-config scons ];
  buildInputs = [
    zlib SDL lua5_1
  ];

  sconsFlags = "OPENGL=false GTK=false CREATE_AVI=false LOGO=false";
  prefixKey = "--prefix=";

  # sed allows scons to find libraries in nix.
  # mkdir is a hack to make scons succeed.  It still doesn't
  # actually put the files in there due to a bug in the SConstruct file.
  # OPENGL doesn't work because fceux dlopens the library.
  preBuild = ''
    sed -e 's/env *= *Environment *.*/&; env['"'"'ENV'"'"']=os.environ;/' -i SConstruct
    export CC="gcc"
    export CXX="g++"
    mkdir -p "$out" "$out/share/applications" "$out/share/pixmaps"
  '';

  meta = {
    description = "A Nintendo Entertainment System (NES) Emulator";
    license = lib.licenses.gpl2;
    maintainers = [ lib.maintainers.scubed2 ];
    homepage = "http://www.fceux.com/";
    platforms = lib.platforms.linux;
  };
}