nixpkgs/pkgs/misc/emulators/melonDS/default.nix

42 lines
781 B
Nix
Raw Normal View History

{ lib, stdenv
, fetchFromGitHub
, mkDerivation
, cmake
2021-01-17 02:30:45 +00:00
, pkg-config
, SDL2
, qtbase
, libpcap
, libslirp
, wrapGAppsHook
}:
2019-10-28 22:13:45 +00:00
mkDerivation rec {
2019-10-28 22:13:45 +00:00
pname = "melonDS";
version = "0.9";
2019-10-28 22:13:45 +00:00
src = fetchFromGitHub {
owner = "Arisotura";
repo = pname;
rev = version;
sha256 = "0m45m1ch0az8l3d3grjbqvi5vvydbffxwka9w3k3qiia50m7fnph";
2019-10-28 22:13:45 +00:00
};
2021-01-17 02:30:45 +00:00
nativeBuildInputs = [ cmake pkg-config wrapGAppsHook ];
buildInputs = [
SDL2
qtbase
libpcap
libslirp
];
2019-10-28 22:13:45 +00:00
cmakeFlags = [ "-UUNIX_PORTABLE" ];
2019-10-28 22:13:45 +00:00
meta = with lib; {
2019-10-28 22:13:45 +00:00
homepage = "http://melonds.kuribo64.net/";
description = "Work in progress Nintendo DS emulator";
2020-06-16 20:53:20 +00:00
license = licenses.gpl3Plus;
maintainers = with maintainers; [ artemist benley shamilton ];
2019-10-28 22:13:45 +00:00
platforms = platforms.linux;
};
}