Merge pull request #90638 from benley/benley/melonDS
melonDS: init at 0.8.3
This commit is contained in:
commit
11c004fd6b
41
pkgs/misc/emulators/melonDS/default.nix
Normal file
41
pkgs/misc/emulators/melonDS/default.nix
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
{ stdenv, fetchFromGitHub, cmake, pkgconfig, SDL2, gtk3, libpcap, wrapGAppsHook }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "melonDS";
|
||||||
|
version = "0.8.3";
|
||||||
|
## When updating to the release after 0.8.3,
|
||||||
|
## - Uncomment:
|
||||||
|
## cmakeFlags = [ "-UUNIX_PORTABLE" ];
|
||||||
|
## - Remove the postInstall, since cmake should then take care of installing icons, .desktop file, and romlist.bin
|
||||||
|
## (see https://github.com/Arisotura/melonDS/pull/546)
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "Arisotura";
|
||||||
|
repo = pname;
|
||||||
|
rev = version;
|
||||||
|
sha256 = "1lqmfwjpkdqfkns1aaxlp4yrg6i0r66mxfr4rrj7b5286k44hqwn";
|
||||||
|
};
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
nativeBuildInputs = [ cmake pkgconfig wrapGAppsHook ];
|
||||||
|
buildInputs = [ SDL2 gtk3 libpcap ];
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
install -Dm644 -t $out/share/melonDS/ ../romlist.bin
|
||||||
|
install -Dm644 -t $out/share/applications/ ../flatpak/*.desktop
|
||||||
|
|
||||||
|
for i in ../icon/melon_*.png; do
|
||||||
|
d="''${i##*_}"
|
||||||
|
d="$out/share/icons/hicolor/''${d%.png}/apps"
|
||||||
|
install -D $i "$d/net.kuribo64.melonds.png"
|
||||||
|
done
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = "http://melonds.kuribo64.net/";
|
||||||
|
description = "Work in progress Nintendo DS emulator";
|
||||||
|
license = licenses.gpl3Plus;
|
||||||
|
maintainers = with maintainers; [ artemist benley ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
@ -20870,6 +20870,8 @@ in
|
|||||||
|
|
||||||
meli = callPackage ../applications/networking/mailreaders/meli { };
|
meli = callPackage ../applications/networking/mailreaders/meli { };
|
||||||
|
|
||||||
|
melonDS = callPackage ../misc/emulators/melonDS { };
|
||||||
|
|
||||||
meme = callPackage ../applications/graphics/meme { };
|
meme = callPackage ../applications/graphics/meme { };
|
||||||
|
|
||||||
mendeley = libsForQt5.callPackage ../applications/office/mendeley {
|
mendeley = libsForQt5.callPackage ../applications/office/mendeley {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user