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

71 lines
1.3 KiB
Nix
Raw Normal View History

2019-12-19 03:24:02 -08:00
{ SDL2
, cmake
, fetchFromGitHub
, ffmpeg_3
2019-12-19 03:24:02 -08:00
, glew
, lib
, libzip
, mkDerivation
2021-01-16 18:30:45 -08:00
, pkg-config
2019-12-19 03:24:02 -08:00
, python3
, qtbase
, qtmultimedia
, snappy
, zlib
}:
2017-09-27 07:33:00 -07:00
2019-11-13 12:38:29 -08:00
mkDerivation rec {
pname = "ppsspp";
2021-02-08 10:45:37 -08:00
version = "1.11";
2014-05-26 20:22:24 -07:00
2017-09-27 07:33:00 -07:00
src = fetchFromGitHub {
owner = "hrydgard";
2020-10-09 08:31:36 -07:00
repo = pname;
2017-09-27 07:33:00 -07:00
rev = "v${version}";
2014-05-26 20:22:24 -07:00
fetchSubmodules = true;
2021-02-08 10:45:37 -08:00
sha256 = "19948jzqpclf8zfzp3k7s580xfjgqcyfwlcp7x7xj8h8lyypzymx";
2014-05-26 20:22:24 -07:00
};
2019-12-19 03:24:02 -08:00
postPatch = ''
2020-10-09 08:31:36 -07:00
substituteInPlace git-version.cmake --replace unknown ${src.rev}
substituteInPlace UI/NativeApp.cpp --replace /usr/share $out/share
2017-09-27 07:33:00 -07:00
'';
2014-05-26 20:22:24 -07:00
2021-01-16 18:30:45 -08:00
nativeBuildInputs = [ cmake pkg-config python3 ];
2019-12-19 03:24:02 -08:00
buildInputs = [
SDL2
ffmpeg_3
2019-12-19 03:24:02 -08:00
glew
libzip
qtbase
qtmultimedia
snappy
zlib
];
2016-12-16 20:58:57 -08:00
2019-12-19 03:24:02 -08: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 08:31:36 -07:00
"-DHEADLESS=OFF"
2019-12-19 03:24:02 -08:00
];
2017-09-27 07:33:00 -07:00
installPhase = ''
2019-12-19 03:24:02 -08:00
mkdir -p $out/share/ppsspp
install -Dm555 PPSSPPQt $out/bin/ppsspp
2017-09-27 07:33:00 -07:00
mv assets $out/share/ppsspp
'';
2014-05-26 20:22:24 -07:00
2019-12-19 03:24:02 -08:00
meta = with lib; {
2020-10-09 08:31:36 -07:00
description = "A HLE Playstation Portable emulator, written in C++";
2019-12-19 03:24:02 -08:00
homepage = "https://www.ppsspp.org/";
2014-05-26 20:22:24 -07:00
license = licenses.gpl2Plus;
maintainers = with maintainers; [ AndersonTorres ];
2020-10-09 08:31:36 -07:00
platforms = platforms.linux;
2014-05-26 20:22:24 -07:00
};
}
2020-10-09 08:31:36 -07:00
# TODO: add SDL headless port