melonDS: init at 0.8.3
This commit is contained in:
parent
3b3afc4292
commit
13a14e2bfe
@ -1,8 +1,13 @@
|
|||||||
{ stdenv, fetchFromGitHub, cmake, pkgconfig, SDL2, gtk3, curl, libpcap }:
|
{ stdenv, fetchFromGitHub, cmake, pkgconfig, SDL2, gtk3, libpcap, wrapGAppsHook }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "melonDS";
|
pname = "melonDS";
|
||||||
version = "0.8.3";
|
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 {
|
src = fetchFromGitHub {
|
||||||
owner = "Arisotura";
|
owner = "Arisotura";
|
||||||
@ -12,18 +17,25 @@ stdenv.mkDerivation rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
nativeBuildInputs = [ cmake pkgconfig ];
|
nativeBuildInputs = [ cmake pkgconfig wrapGAppsHook ];
|
||||||
buildInputs = [ SDL2 gtk3 curl libpcap ];
|
buildInputs = [ SDL2 gtk3 libpcap ];
|
||||||
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
install -Dm644 romlist.bin "$out/share/melonDS/romlist.bin"
|
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; {
|
meta = with stdenv.lib; {
|
||||||
homepage = "http://melonds.kuribo64.net/";
|
homepage = "http://melonds.kuribo64.net/";
|
||||||
description = "Work in progress Nintendo DS emulator";
|
description = "Work in progress Nintendo DS emulator";
|
||||||
license = licenses.gpl3;
|
license = licenses.gpl3Plus;
|
||||||
maintainers = with maintainers; [ artemist ];
|
maintainers = with maintainers; [ artemist benley ];
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user