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

70 lines
1.3 KiB
Nix
Raw Normal View History

2019-12-19 12:24:02 +01:00
{ SDL2
, cmake
, fetchFromGitHub
, ffmpeg
, glew
, lib
, libzip
, mkDerivation
, pkgconfig
, python3
, qtbase
, qtmultimedia
, snappy
, zlib
}:
2017-09-27 16:33:00 +02:00
2019-11-13 21:38:29 +01:00
mkDerivation rec {
pname = "ppsspp";
2020-04-07 13:12:51 +02:00
version = "1.9.4";
2014-05-27 05:22:24 +02:00
2017-09-27 16:33:00 +02:00
src = fetchFromGitHub {
owner = "hrydgard";
repo = "ppsspp";
rev = "v${version}";
2014-05-27 05:22:24 +02:00
fetchSubmodules = true;
2020-04-07 13:12:51 +02:00
sha256 = "0ivi0dcfxwa4nz19amki80qacnjhqr42f0ihyby1scxafl3nq55c";
2014-05-27 05:22:24 +02:00
};
2019-12-19 12:24:02 +01:00
postPatch = ''
substituteInPlace git-version.cmake \
--replace unknown ${src.rev}
substituteInPlace UI/NativeApp.cpp \
--replace /usr/share $out/share
2017-09-27 16:33:00 +02:00
'';
2014-05-27 05:22:24 +02:00
2019-12-19 12:24:02 +01:00
nativeBuildInputs = [ cmake pkgconfig python3 ];
buildInputs = [
SDL2
ffmpeg
glew
libzip
qtbase
qtmultimedia
snappy
zlib
];
2016-12-17 05:58:57 +01:00
2019-12-19 12:24:02 +01:00
cmakeFlags = [
"-DOpenGL_GL_PREFERENCE=GLVND"
"-DUSE_SYSTEM_FFMPEG=ON"
"-DUSE_SYSTEM_LIBZIP=ON"
"-DUSE_SYSTEM_SNAPPY=ON"
"-DUSING_QT_UI=ON"
];
2017-09-27 16:33:00 +02:00
installPhase = ''
2019-12-19 12:24:02 +01:00
mkdir -p $out/share/ppsspp
install -Dm555 PPSSPPQt $out/bin/ppsspp
2017-09-27 16:33:00 +02:00
mv assets $out/share/ppsspp
'';
2014-05-27 05:22:24 +02:00
2019-12-19 12:24:02 +01:00
meta = with lib; {
2017-09-27 16:33:00 +02:00
description = "A PSP emulator for Android, Windows, Mac and Linux, written in C++";
2019-12-19 12:24:02 +01:00
homepage = "https://www.ppsspp.org/";
2014-05-27 05:22:24 +02:00
license = licenses.gpl2Plus;
maintainers = with maintainers; [ AndersonTorres ];
2014-05-27 05:22:24 +02:00
};
}