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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

44 lines
839 B
Nix
Raw Normal View History

{ lib
, fetchFromGitHub
, mkDerivation
, cmake
, libepoxy
2021-09-13 19:23:30 +00:00
, libarchive
, libpcap
, libslirp
2021-09-13 19:23:30 +00: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 19:23:30 +00:00
version = "0.9.3";
2019-10-28 22:13:45 +00:00
src = fetchFromGitHub {
owner = "Arisotura";
repo = pname;
rev = version;
2021-09-13 19:23:30 +00:00
sha256 = "1v8a060gbpx7rdkk2w4hym361l2wip7yjjn8wny1gfsa273k3zy5";
2019-10-28 22:13:45 +00:00
};
2021-09-13 19:23:30 +00:00
nativeBuildInputs = [ cmake pkg-config ];
buildInputs = [
libepoxy
2021-09-13 19:23:30 +00:00
libarchive
libslirp
2021-09-13 19:23:30 +00:00
qtbase
SDL2
];
2019-10-28 22:13:45 +00:00
qtWrapperArgs = [ "--prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [ libpcap ]}" ];
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;
2021-09-13 19:23:30 +00:00
maintainers = with maintainers; [ artemist benley shamilton xfix ];
2019-10-28 22:13:45 +00:00
platforms = platforms.linux;
};
}