forked from mirrors/nixpkgs
citra: 2018-02-23 -> 2018-06-09
This commit is contained in:
parent
eeb6211944
commit
580b8f8ca8
|
@ -1,17 +1,19 @@
|
||||||
{ stdenv, fetchgit, cmake, SDL2, qtbase, boost, curl, gtest }:
|
{ stdenv, fetchgit, cmake, SDL2, qtbase, qtmultimedia, boost, curl, gtest }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "citra-2018-02-23";
|
name = "citra-${version}";
|
||||||
|
version = "2018-06-09";
|
||||||
|
|
||||||
# Submodules
|
# Submodules
|
||||||
src = fetchgit {
|
src = fetchgit {
|
||||||
url = "https://github.com/citra-emu/citra";
|
url = "https://github.com/citra-emu/citra";
|
||||||
rev = "e51a642a13b9c2eda43d875fe318f627e11d480f";
|
rev = "cf9bfe0690f1934847500cc5079b1aaf3299a507";
|
||||||
sha256 = "0cw9cqbljc87rjyr2alfryp04mxpvd5mdlyrmnp9yis3xr8g9sa1";
|
sha256 = "1ryc5d3fnhzlrzh1yljbq9x5n79dsb5hgqdba8z4x56iccx0kd0p";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
nativeBuildInputs = [ cmake ];
|
nativeBuildInputs = [ cmake ];
|
||||||
buildInputs = [ SDL2 qtbase boost curl gtest ];
|
buildInputs = [ SDL2 qtbase qtmultimedia boost curl gtest ];
|
||||||
cmakeFlags = [ "-DUSE_SYSTEM_CURL=ON" "-DUSE_SYSTEM_GTEST=ON" ];
|
cmakeFlags = [ "-DUSE_SYSTEM_CURL=ON" "-DUSE_SYSTEM_GTEST=ON" ];
|
||||||
|
|
||||||
preConfigure = ''
|
preConfigure = ''
|
||||||
|
@ -21,13 +23,11 @@ stdenv.mkDerivation rec {
|
||||||
done
|
done
|
||||||
'';
|
'';
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = https://citra-emu.org/;
|
homepage = "https://citra-emu.org";
|
||||||
description = "An open-source emulator for the Nintendo 3DS capable of playing many of your favorite games.";
|
description = "An open-source emulator for the Nintendo 3DS";
|
||||||
platforms = [ "x86_64-linux" "i686-linux" ];
|
|
||||||
license = licenses.gpl2;
|
license = licenses.gpl2;
|
||||||
maintainers = with maintainers; [ abbradar ];
|
maintainers = with maintainers; [ abbradar ];
|
||||||
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue