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

71 lines
1.3 KiB
Nix
Raw Normal View History

2019-12-19 12:24:02 +01:00
{ SDL2
, cmake
, fetchFromGitHub
, ffmpeg_3
2019-12-19 12:24:02 +01:00
, 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-10-09 17:31:36 +02:00
version = "1.10.3";
2014-05-27 05:22:24 +02:00
2017-09-27 16:33:00 +02:00
src = fetchFromGitHub {
owner = "hrydgard";
2020-10-09 17:31:36 +02:00
repo = pname;
2017-09-27 16:33:00 +02:00
rev = "v${version}";
2014-05-27 05:22:24 +02:00
fetchSubmodules = true;
2020-10-09 17:31:36 +02:00
sha256 = "sha256-W41Poq5S+opkasIGYo13SQZWQF1HjfFnH7u9DW5HNA0=";
2014-05-27 05:22:24 +02:00
};
2019-12-19 12:24:02 +01:00
postPatch = ''
2020-10-09 17:31:36 +02:00
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_3
2019-12-19 12:24:02 +01:00
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"
2020-10-09 17:31:36 +02:00
"-DHEADLESS=OFF"
2019-12-19 12:24:02 +01:00
];
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; {
2020-10-09 17:31:36 +02:00
description = "A HLE Playstation Portable emulator, 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 ];
2020-10-09 17:31:36 +02:00
platforms = platforms.linux;
2014-05-27 05:22:24 +02:00
};
}
2020-10-09 17:31:36 +02:00
# TODO: add SDL headless port