3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/misc/emulators/melonDS/default.nix

43 lines
757 B
Nix
Raw Normal View History

{ lib
, fetchFromGitHub
, mkDerivation
, cmake
2021-09-13 20:23:30 +01:00
, epoxy
, libarchive
, libpcap
, libslirp
2021-09-13 20:23:30 +01:00
, pkg-config
, qtbase
, SDL2
}:
2019-10-28 22:13:45 +00:00
mkDerivation rec {
2019-10-28 22:13:45 +00:00
pname = "melonDS";
2021-09-13 20:23:30 +01:00
version = "0.9.3";
2019-10-28 22:13:45 +00:00
src = fetchFromGitHub {
owner = "Arisotura";
repo = pname;
rev = version;
2021-09-13 20:23:30 +01:00
sha256 = "1v8a060gbpx7rdkk2w4hym361l2wip7yjjn8wny1gfsa273k3zy5";
2019-10-28 22:13:45 +00:00
};
2021-09-13 20:23:30 +01:00
nativeBuildInputs = [ cmake pkg-config ];
buildInputs = [
2021-09-13 20:23:30 +01:00
epoxy
libarchive
libpcap
libslirp
2021-09-13 20:23:30 +01:00
qtbase
SDL2
];
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 21:53:20 +01:00
license = licenses.gpl3Plus;
2021-09-13 20:23:30 +01:00
maintainers = with maintainers; [ artemist benley shamilton xfix ];
2019-10-28 22:13:45 +00:00
platforms = platforms.linux;
};
}