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

44 lines
833 B
Nix
Raw Normal View History

{ lib
, fetchFromGitHub
, mkDerivation
, cmake
2021-09-13 21:23:30 +02:00
, epoxy
, libarchive
, libpcap
, libslirp
2021-09-13 21:23:30 +02:00
, pkg-config
, qtbase
, SDL2
}:
2019-10-28 23:13:45 +01:00
mkDerivation rec {
2019-10-28 23:13:45 +01:00
pname = "melonDS";
2021-09-13 21:23:30 +02:00
version = "0.9.3";
2019-10-28 23:13:45 +01:00
src = fetchFromGitHub {
owner = "Arisotura";
repo = pname;
rev = version;
2021-09-13 21:23:30 +02:00
sha256 = "1v8a060gbpx7rdkk2w4hym361l2wip7yjjn8wny1gfsa273k3zy5";
2019-10-28 23:13:45 +01:00
};
2021-09-13 21:23:30 +02:00
nativeBuildInputs = [ cmake pkg-config ];
buildInputs = [
2021-09-13 21:23:30 +02:00
epoxy
libarchive
libslirp
2021-09-13 21:23:30 +02:00
qtbase
SDL2
];
2019-10-28 23:13:45 +01:00
qtWrapperArgs = [ "--prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [ libpcap ]}" ];
meta = with lib; {
2019-10-28 23:13:45 +01:00
homepage = "http://melonds.kuribo64.net/";
description = "Work in progress Nintendo DS emulator";
2020-06-16 22:53:20 +02:00
license = licenses.gpl3Plus;
2021-09-13 21:23:30 +02:00
maintainers = with maintainers; [ artemist benley shamilton xfix ];
2019-10-28 23:13:45 +01:00
platforms = platforms.linux;
};
}