about summary refs log tree commit diff
path: root/pkgs/misc/emulators/zsnes/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/misc/emulators/zsnes/default.nix')
-rw-r--r--pkgs/misc/emulators/zsnes/default.nix64
1 files changed, 0 insertions, 64 deletions
diff --git a/pkgs/misc/emulators/zsnes/default.nix b/pkgs/misc/emulators/zsnes/default.nix
deleted file mode 100644
index ba2f5d6bdc1c5..0000000000000
--- a/pkgs/misc/emulators/zsnes/default.nix
+++ /dev/null
@@ -1,64 +0,0 @@
-{ lib, stdenv, fetchFromGitHub, nasm, SDL, zlib, libpng, ncurses, libGLU, libGL
-, makeDesktopItem }:
-
-let
-  desktopItem = makeDesktopItem {
-    name = "zsnes";
-    exec = "zsnes";
-    icon = "zsnes";
-    comment = "A SNES emulator";
-    desktopName = "zsnes";
-    genericName = "zsnes";
-    categories = "Game;";
-  };
-
-in stdenv.mkDerivation {
-  pname = "zsnes";
-  version = "1.51";
-
-  src = fetchFromGitHub {
-    owner = "emillon";
-    repo = "zsnes";
-    rev = "fc160b2538738995f600f8405d23a66b070dac02";
-    sha256 = "1gy79d5wdaacph0cc1amw7mqm7i0716n6mvav16p1svi26iz193v";
-  };
-
-  buildInputs = [ nasm SDL zlib libpng ncurses libGLU libGL ];
-
-  prePatch = ''
-    for i in $(cat debian/patches/series); do
-      echo "applying $i"
-      patch -p1 < "debian/patches/$i"
-    done
-  '';
-
-  preConfigure = ''
-    cd src
-    sed -i "/^STRIP/d" configure
-    sed -i "/\$STRIP/d" configure
-  '';
-
-  configureFlags = [ "--enable-release" ];
-
-  postInstall = ''
-    function installIcon () {
-        mkdir -p $out/share/icons/hicolor/$1/apps/
-        cp icons/$1x32.png $out/share/icons/hicolor/$1/apps/zsnes.png
-    }
-    installIcon "16x16"
-    installIcon "32x32"
-    installIcon "48x48"
-    installIcon "64x64"
-
-    mkdir -p $out/share/applications
-    ln -s ${desktopItem}/share/applications/* $out/share/applications/
-  '';
-
-  meta = {
-    description = "A Super Nintendo Entertainment System Emulator";
-    license = lib.licenses.gpl2Plus;
-    maintainers = [ lib.maintainers.sander ];
-    homepage = "https://www.zsnes.com";
-    platforms = [ "i686-linux" "x86_64-linux" ];
-  };
-}