melonDS: 0.9.1 -> 0.9.3 (#137654)

This commit is contained in:
Konrad Borowski 2021-09-13 21:23:30 +02:00 committed by GitHub
parent c0d68bfe5e
commit 865fd06726
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,40 +2,41 @@
, fetchFromGitHub
, mkDerivation
, cmake
, pkg-config
, SDL2
, qtbase
, epoxy
, libarchive
, libpcap
, libslirp
, wrapGAppsHook
, pkg-config
, qtbase
, SDL2
}:
mkDerivation rec {
pname = "melonDS";
version = "0.9.1";
version = "0.9.3";
src = fetchFromGitHub {
owner = "Arisotura";
repo = pname;
rev = version;
sha256 = "sha256-bvi0Y+zwfEcsZMNxoH85hxwIGn0UIYlg/ZaE6yJ7vlo=";
sha256 = "1v8a060gbpx7rdkk2w4hym361l2wip7yjjn8wny1gfsa273k3zy5";
};
nativeBuildInputs = [ cmake pkg-config wrapGAppsHook ];
nativeBuildInputs = [ cmake pkg-config ];
buildInputs = [
SDL2
qtbase
epoxy
libarchive
libpcap
libslirp
qtbase
SDL2
];
cmakeFlags = [ "-UUNIX_PORTABLE" ];
meta = with lib; {
homepage = "http://melonds.kuribo64.net/";
description = "Work in progress Nintendo DS emulator";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ artemist benley shamilton ];
maintainers = with maintainers; [ artemist benley shamilton xfix ];
platforms = platforms.linux;
};
}