113 lines
2.2 KiB
Nix
113 lines
2.2 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, SDL2
|
|
, cmake
|
|
, copyDesktopItems
|
|
, curl
|
|
, extra-cmake-modules
|
|
, libXrandr
|
|
, libpulseaudio
|
|
, makeDesktopItem
|
|
, mesa # for libgbm
|
|
, ninja
|
|
, pkg-config
|
|
, qtbase
|
|
, qtsvg
|
|
, qttools
|
|
, qtwayland
|
|
, vulkan-loader
|
|
, wayland
|
|
, wrapQtAppsHook
|
|
, enableWayland ? true
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "duckstation";
|
|
version = "unstable-2023-01-01";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "stenzek";
|
|
repo = "duckstation";
|
|
rev = "06d6447e59f208f21ba42f4df1665b789db13fb7";
|
|
sha256 = "sha256-DyuQ7J7MVSQHpvPZhMtwqNM8ifjI8UFYQ9SxY5kikBI=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
copyDesktopItems
|
|
ninja
|
|
pkg-config
|
|
qttools
|
|
wrapQtAppsHook
|
|
]
|
|
++ lib.optionals enableWayland [
|
|
extra-cmake-modules
|
|
];
|
|
|
|
buildInputs = [
|
|
SDL2
|
|
curl
|
|
libpulseaudio
|
|
libXrandr
|
|
mesa
|
|
qtbase
|
|
qtsvg
|
|
vulkan-loader
|
|
]
|
|
++ lib.optionals enableWayland [
|
|
qtwayland
|
|
wayland
|
|
];
|
|
|
|
cmakeFlags = [
|
|
"-DUSE_DRMKMS=ON"
|
|
]
|
|
++ lib.optionals enableWayland [ "-DUSE_WAYLAND=ON" ];
|
|
|
|
desktopItems = [
|
|
(makeDesktopItem {
|
|
name = "duckstation-qt";
|
|
desktopName = "DuckStation";
|
|
genericName = "PlayStation 1 Emulator";
|
|
icon = "duckstation";
|
|
tryExec = "duckstation-qt";
|
|
exec = "duckstation-qt %f";
|
|
comment = "Fast PlayStation 1 emulator";
|
|
categories = [ "Game" "Emulator" "Qt" ];
|
|
type = "Application";
|
|
})
|
|
];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/bin $out/share
|
|
|
|
cp -r bin $out/share/duckstation
|
|
ln -s $out/share/duckstation/duckstation-qt $out/bin/
|
|
|
|
install -Dm644 bin/resources/images/duck.png $out/share/pixmaps/duckstation.png
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
doCheck = true;
|
|
checkPhase = ''
|
|
runHook preCheck
|
|
bin/common-tests
|
|
runHook postCheck
|
|
'';
|
|
|
|
qtWrapperArgs = [
|
|
"--prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [ libpulseaudio vulkan-loader ]}"
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/stenzek/duckstation";
|
|
description = "Fast PlayStation 1 emulator for x86-64/AArch32/AArch64";
|
|
license = licenses.gpl3Only;
|
|
maintainers = with maintainers; [ guibou AndersonTorres ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|