about summary refs log tree commit diff
path: root/pkgs/misc/emulators/melonDS/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/misc/emulators/melonDS/default.nix')
-rw-r--r--pkgs/misc/emulators/melonDS/default.nix43
1 files changed, 0 insertions, 43 deletions
diff --git a/pkgs/misc/emulators/melonDS/default.nix b/pkgs/misc/emulators/melonDS/default.nix
deleted file mode 100644
index 3e30be8c2a3ff..0000000000000
--- a/pkgs/misc/emulators/melonDS/default.nix
+++ /dev/null
@@ -1,43 +0,0 @@
-{ lib
-, fetchFromGitHub
-, mkDerivation
-, cmake
-, libepoxy
-, libarchive
-, libpcap
-, libslirp
-, pkg-config
-, qtbase
-, SDL2
-}:
-
-mkDerivation rec {
-  pname = "melonDS";
-  version = "0.9.3";
-
-  src = fetchFromGitHub {
-    owner = "Arisotura";
-    repo = pname;
-    rev = version;
-    sha256 = "1v8a060gbpx7rdkk2w4hym361l2wip7yjjn8wny1gfsa273k3zy5";
-  };
-
-  nativeBuildInputs = [ cmake pkg-config ];
-  buildInputs = [
-    libepoxy
-    libarchive
-    libslirp
-    qtbase
-    SDL2
-  ];
-
-  qtWrapperArgs = [ "--prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [ libpcap ]}" ];
-
-  meta = with lib; {
-    homepage = "http://melonds.kuribo64.net/";
-    description = "Work in progress Nintendo DS emulator";
-    license = licenses.gpl3Plus;
-    maintainers = with maintainers; [ artemist benley shamilton xfix ];
-    platforms = platforms.linux;
-  };
-}