melonDS: 0.8.3 -> 0.9 (and build fix) (#106489)
This commit is contained in:
parent
f493e62643
commit
dc09a890c5
2 changed files with 23 additions and 22 deletions
|
@ -1,41 +1,42 @@
|
||||||
{ stdenv, fetchFromGitHub, cmake, pkgconfig, SDL2, gtk3, libpcap, wrapGAppsHook }:
|
{ stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
, mkDerivation
|
||||||
|
, cmake
|
||||||
|
, pkgconfig
|
||||||
|
, SDL2
|
||||||
|
, qtbase
|
||||||
|
, libpcap
|
||||||
|
, libslirp
|
||||||
|
, wrapGAppsHook
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
mkDerivation rec {
|
||||||
pname = "melonDS";
|
pname = "melonDS";
|
||||||
version = "0.8.3";
|
version = "0.9";
|
||||||
## 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";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "1lqmfwjpkdqfkns1aaxlp4yrg6i0r66mxfr4rrj7b5286k44hqwn";
|
sha256 = "0m45m1ch0az8l3d3grjbqvi5vvydbffxwka9w3k3qiia50m7fnph";
|
||||||
};
|
};
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
nativeBuildInputs = [ cmake pkgconfig wrapGAppsHook ];
|
nativeBuildInputs = [ cmake pkgconfig wrapGAppsHook ];
|
||||||
buildInputs = [ SDL2 gtk3 libpcap ];
|
buildInputs = [
|
||||||
|
SDL2
|
||||||
|
qtbase
|
||||||
|
libpcap
|
||||||
|
libslirp
|
||||||
|
];
|
||||||
|
|
||||||
postInstall = ''
|
cmakeFlags = [ "-UUNIX_PORTABLE" ];
|
||||||
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.gpl3Plus;
|
license = licenses.gpl3Plus;
|
||||||
maintainers = with maintainers; [ artemist benley ];
|
maintainers = with maintainers; [ artemist benley shamilton ];
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -22612,7 +22612,7 @@ in
|
||||||
|
|
||||||
melmatcheq.lv2 = callPackage ../applications/audio/melmatcheq.lv2 { };
|
melmatcheq.lv2 = callPackage ../applications/audio/melmatcheq.lv2 { };
|
||||||
|
|
||||||
melonDS = callPackage ../misc/emulators/melonDS { };
|
melonDS = libsForQt5.callPackage ../misc/emulators/melonDS { };
|
||||||
|
|
||||||
meme = callPackage ../applications/graphics/meme { };
|
meme = callPackage ../applications/graphics/meme { };
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue