Skip to content

Commit

Permalink
melonDS: 0.9.1 -> 0.9.3 (NixOS#137654)
Browse files Browse the repository at this point in the history
  • Loading branch information
KamilaBorowska committed Sep 13, 2021
1 parent c0d68bf commit 865fd06
Showing 1 changed file with 13 additions and 12 deletions.
25 changes: 13 additions & 12 deletions pkgs/misc/emulators/melonDS/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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;
};
}

0 comments on commit 865fd06

Please sign in to comment.