mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 07:31:20 +00:00
43 lines
814 B
Nix
43 lines
814 B
Nix
{ stdenv
|
|
, fetchFromGitHub
|
|
, mkDerivation
|
|
, cmake
|
|
, pkgconfig
|
|
, SDL2
|
|
, qtbase
|
|
, libpcap
|
|
, libslirp
|
|
, wrapGAppsHook
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
pname = "melonDS";
|
|
version = "0.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Arisotura";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "0m45m1ch0az8l3d3grjbqvi5vvydbffxwka9w3k3qiia50m7fnph";
|
|
};
|
|
|
|
enableParallelBuilding = true;
|
|
nativeBuildInputs = [ cmake pkgconfig wrapGAppsHook ];
|
|
buildInputs = [
|
|
SDL2
|
|
qtbase
|
|
libpcap
|
|
libslirp
|
|
];
|
|
|
|
cmakeFlags = [ "-UUNIX_PORTABLE" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "http://melonds.kuribo64.net/";
|
|
description = "Work in progress Nintendo DS emulator";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ artemist benley shamilton ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|