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
838 B
Nix
Raw Normal View History

{ lib
, fetchFromGitHub
, mkDerivation
, cmake
, libepoxy
2021-09-13 20:23:30 +01:00
, 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";
2022-03-10 21:12:16 +00:00
version = "0.9.4";
2019-10-28 22:13:45 +00:00
src = fetchFromGitHub {
owner = "Arisotura";
repo = pname;
rev = version;
2022-03-10 21:12:16 +00:00
sha256 = "sha256-FSacau7DixU6R4eKNIYVRZiMb/GhijTzHbcGlZ6WG/I=";
2019-10-28 22:13:45 +00:00
};
2021-09-13 20:23:30 +01:00
nativeBuildInputs = [ cmake pkg-config ];
buildInputs = [
libepoxy
2021-09-13 20:23:30 +01:00
libarchive
libslirp
2021-09-13 20:23:30 +01: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 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;
};
}