89cbb28f64
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
83 lines
1.7 KiB
Nix
83 lines
1.7 KiB
Nix
{ mkDerivation
|
|
, fetchFromGitHub
|
|
, fetchpatch
|
|
, SDL2
|
|
, cmake
|
|
, ffmpeg
|
|
, glew
|
|
, lib
|
|
, libzip
|
|
, pkg-config
|
|
, python3
|
|
, qtbase
|
|
, qtmultimedia
|
|
, snappy
|
|
, zlib
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
pname = "ppsspp";
|
|
version = "1.11";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "hrydgard";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
fetchSubmodules = true;
|
|
sha256 = "sha256-vfp/vacIItlPP5dR7jzDT7oOUNFnjvvdR46yi79EJKU=";
|
|
};
|
|
|
|
patches = [
|
|
# fix compability with ffmpeg 4.4, remove on next release after 1.11
|
|
(fetchpatch {
|
|
name = "fix_ffmpeg_4.4.patch";
|
|
url = "https://patch-diff.githubusercontent.com/raw/hrydgard/ppsspp/pull/14176.patch";
|
|
sha256 = "sha256-ecDoOydaLfL6+eFpahcO1TnRl866mZZVHlr6Qrib1mo=";
|
|
})
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace git-version.cmake --replace unknown ${src.rev}
|
|
substituteInPlace UI/NativeApp.cpp --replace /usr/share $out/share
|
|
'';
|
|
|
|
nativeBuildInputs = [ cmake pkg-config python3 ];
|
|
|
|
buildInputs = [
|
|
SDL2
|
|
ffmpeg
|
|
glew
|
|
libzip
|
|
qtbase
|
|
qtmultimedia
|
|
snappy
|
|
zlib
|
|
];
|
|
|
|
cmakeFlags = [
|
|
"-DHEADLESS=OFF"
|
|
"-DOpenGL_GL_PREFERENCE=GLVND"
|
|
"-DUSE_SYSTEM_FFMPEG=ON"
|
|
"-DUSE_SYSTEM_LIBZIP=ON"
|
|
"-DUSE_SYSTEM_SNAPPY=ON"
|
|
"-DUSING_QT_UI=ON"
|
|
];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
mkdir -p $out/share/ppsspp
|
|
install -Dm555 PPSSPPQt $out/bin/ppsspp
|
|
mv assets $out/share/ppsspp
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://www.ppsspp.org/";
|
|
description = "A HLE Playstation Portable emulator, written in C++";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ AndersonTorres ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|
|
# TODO: add SDL headless port
|