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

33 lines
890 B
Nix
Raw Normal View History

{ stdenv, mkDerivation, lib, fetchgit, cmake, SDL2, qtbase, qtmultimedia, boost }:
2017-07-27 12:57:12 +00:00
mkDerivation {
pname = "citra";
version = "2020-03-21";
2017-07-27 12:57:12 +00:00
# Submodules
src = fetchgit {
url = "https://github.com/citra-emu/citra";
rev = "8722b970c52f2c0d8e82561477edb62a53ae9dbb";
sha256 = "0c1zn1f84h4f6n6p0aqz905yvv5qpdmkj2z58yla6bfgbzabfyrj";
2017-07-27 12:57:12 +00:00
};
2018-06-16 01:31:53 +00:00
enableParallelBuilding = true;
2017-07-27 12:57:12 +00:00
nativeBuildInputs = [ cmake ];
2019-06-03 15:51:05 +00:00
buildInputs = [ SDL2 qtbase qtmultimedia boost ];
2017-07-27 12:57:12 +00:00
preConfigure = ''
# Trick configure system.
sed -n 's,^ *path = \(.*\),\1,p' .gitmodules | while read path; do
mkdir "$path/.git"
done
'';
meta = with stdenv.lib; {
2018-06-16 01:31:53 +00:00
homepage = "https://citra-emu.org";
description = "An open-source emulator for the Nintendo 3DS";
2017-07-27 14:28:13 +00:00
license = licenses.gpl2;
2017-07-27 12:57:12 +00:00
maintainers = with maintainers; [ abbradar ];
2018-06-16 01:31:53 +00:00
platforms = platforms.linux;
2017-07-27 12:57:12 +00:00
};
}