lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #42086 from Chiiruno/dev/citra

citra: 2018-02-23 -> 2018-06-09

authored by

Yegor Timoshenko and committed by
GitHub
ec092b28 c5e518fd

+10 -10
+10 -10
pkgs/misc/emulators/citra/default.nix
··· 1 - { stdenv, fetchgit, cmake, SDL2, qtbase, boost, curl, gtest }: 1 + { stdenv, fetchgit, cmake, SDL2, qtbase, qtmultimedia, boost, curl, gtest }: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "citra-2018-02-23"; 4 + name = "citra-${version}"; 5 + version = "2018-06-09"; 5 6 6 7 # Submodules 7 8 src = fetchgit { 8 9 url = "https://github.com/citra-emu/citra"; 9 - rev = "e51a642a13b9c2eda43d875fe318f627e11d480f"; 10 - sha256 = "0cw9cqbljc87rjyr2alfryp04mxpvd5mdlyrmnp9yis3xr8g9sa1"; 10 + rev = "cf9bfe0690f1934847500cc5079b1aaf3299a507"; 11 + sha256 = "1ryc5d3fnhzlrzh1yljbq9x5n79dsb5hgqdba8z4x56iccx0kd0p"; 11 12 }; 12 13 14 + enableParallelBuilding = true; 13 15 nativeBuildInputs = [ cmake ]; 14 - buildInputs = [ SDL2 qtbase boost curl gtest ]; 16 + buildInputs = [ SDL2 qtbase qtmultimedia boost curl gtest ]; 15 17 cmakeFlags = [ "-DUSE_SYSTEM_CURL=ON" "-DUSE_SYSTEM_GTEST=ON" ]; 16 18 17 19 preConfigure = '' ··· 21 23 done 22 24 ''; 23 25 24 - enableParallelBuilding = true; 25 - 26 26 meta = with stdenv.lib; { 27 - homepage = https://citra-emu.org/; 28 - description = "An open-source emulator for the Nintendo 3DS capable of playing many of your favorite games."; 29 - platforms = [ "x86_64-linux" "i686-linux" ]; 27 + homepage = "https://citra-emu.org"; 28 + description = "An open-source emulator for the Nintendo 3DS"; 30 29 license = licenses.gpl2; 31 30 maintainers = with maintainers; [ abbradar ]; 31 + platforms = platforms.linux; 32 32 }; 33 33 }