about summary refs log tree commit diff
path: root/pkgs/misc/emulators/fceux/default.nix
diff options
context:
space:
mode:
authorSterling Stein <scubed2@gmail.com>2014-06-07 15:08:57 -0700
committerSterling Stein <scubed2@gmail.com>2014-06-07 15:08:57 -0700
commita0efad6861275258862f093ba890c2a235eb7527 (patch)
tree88ba4f02385b9f986b422f7a86b14e0073a8721c /pkgs/misc/emulators/fceux/default.nix
parent476a3d818fba2d50c169af5ab4775be2b7e64c3b (diff)
downloadnixlib-a0efad6861275258862f093ba890c2a235eb7527.tar
nixlib-a0efad6861275258862f093ba890c2a235eb7527.tar.gz
nixlib-a0efad6861275258862f093ba890c2a235eb7527.tar.bz2
nixlib-a0efad6861275258862f093ba890c2a235eb7527.tar.lz
nixlib-a0efad6861275258862f093ba890c2a235eb7527.tar.xz
nixlib-a0efad6861275258862f093ba890c2a235eb7527.tar.zst
nixlib-a0efad6861275258862f093ba890c2a235eb7527.zip
fceux: Add package for a NES emulator.
Diffstat (limited to 'pkgs/misc/emulators/fceux/default.nix')
-rw-r--r--pkgs/misc/emulators/fceux/default.nix34
1 files changed, 34 insertions, 0 deletions
diff --git a/pkgs/misc/emulators/fceux/default.nix b/pkgs/misc/emulators/fceux/default.nix
new file mode 100644
index 000000000000..48860f17aaf2
--- /dev/null
+++ b/pkgs/misc/emulators/fceux/default.nix
@@ -0,0 +1,34 @@
+{stdenv, fetchurl, scons, zlib, SDL, lua5, pkgconfig}:
+
+stdenv.mkDerivation {
+  name = "fceux-2.2.2";
+
+  src = fetchurl {
+    url = mirror://sourceforge/fceultra/Source%20Code/2.2.2%20src/fceux-2.2.2.src.tar.gz;
+    sha256 = "1qg5bygla8ka30b7wqvq6dv84xc7pq0jspffh2jz75d1njyi2kc0";
+  };
+
+  buildInputs = [
+    scons zlib SDL lua5 pkgconfig
+  ];
+
+  phases = "unpackPhase buildPhase";
+
+  # 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.
+  buildPhase = ''
+    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"
+    scons --prefix="$out" OPENGL=false GTK=false CREATE_AVI=false LOGO=false SYSTEM_LUA=false install
+  '';
+
+  meta = {
+    description = "A Nintendo Entertainment System (NES) Emulator";
+    license = stdenv.lib.licenses.gpl2;
+    homepage = http://www.fceux.com/;
+  };
+}