mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 23:20:55 +00:00
melonDS: init at 0.8.3
This commit is contained in:
parent
51b989a513
commit
3b3afc4292
29
pkgs/misc/emulators/melonDS/default.nix
Normal file
29
pkgs/misc/emulators/melonDS/default.nix
Normal file
|
@ -0,0 +1,29 @@
|
|||
{ stdenv, fetchFromGitHub, cmake, pkgconfig, SDL2, gtk3, curl, libpcap }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "melonDS";
|
||||
version = "0.8.3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Arisotura";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "1lqmfwjpkdqfkns1aaxlp4yrg6i0r66mxfr4rrj7b5286k44hqwn";
|
||||
};
|
||||
|
||||
enableParallelBuilding = true;
|
||||
nativeBuildInputs = [ cmake pkgconfig ];
|
||||
buildInputs = [ SDL2 gtk3 curl libpcap ];
|
||||
|
||||
postInstall = ''
|
||||
install -Dm644 romlist.bin "$out/share/melonDS/romlist.bin"
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "http://melonds.kuribo64.net/";
|
||||
description = "Work in progress Nintendo DS emulator";
|
||||
license = licenses.gpl3;
|
||||
maintainers = with maintainers; [ artemist ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
|
@ -20864,6 +20864,8 @@ in
|
|||
|
||||
meld = callPackage ../applications/version-management/meld { };
|
||||
|
||||
melonDS = callPackage ../misc/emulators/melonDS { };
|
||||
|
||||
meme = callPackage ../applications/graphics/meme { };
|
||||
|
||||
mendeley = libsForQt5.callPackage ../applications/office/mendeley {
|
||||
|
|
Loading…
Reference in a new issue