mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 09:53:10 +00:00
0523d7864b
/build/source/src/util/audio_stream.cpp: In function 'void S16ChunkToFloat(const s16*, float*, u32)': /build/source/src/util/audio_stream.cpp:575:47: note: use '-flax-vector-conversions' to permit conversions between vectors with differing element types or numbers of subparts /build/source/src/util/audio_stream.cpp:575:57: error: cannot convert 'int16x8_t' to '__Int32x4_t'
130 lines
2.9 KiB
Nix
130 lines
2.9 KiB
Nix
{ lib
|
|
, stdenv
|
|
, SDL2
|
|
, callPackage
|
|
, cmake
|
|
, cubeb
|
|
, curl
|
|
, extra-cmake-modules
|
|
, libXrandr
|
|
, libbacktrace
|
|
, libwebp
|
|
, makeWrapper
|
|
, ninja
|
|
, pkg-config
|
|
, qt6
|
|
, vulkan-loader
|
|
, wayland
|
|
}:
|
|
|
|
let
|
|
sources = callPackage ./sources.nix { };
|
|
inherit (qt6)
|
|
qtbase
|
|
qtsvg
|
|
qttools
|
|
qtwayland
|
|
wrapQtAppsHook
|
|
;
|
|
in
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
inherit (sources.duckstation) pname version src;
|
|
|
|
patches = [
|
|
# Tests are not built by default
|
|
./001-fix-test-inclusion.diff
|
|
# Patching yet another script that fills data based on git commands . . .
|
|
./002-hardcode-vars.diff
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
ninja
|
|
pkg-config
|
|
qttools
|
|
wrapQtAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
SDL2
|
|
curl
|
|
extra-cmake-modules
|
|
libXrandr
|
|
libbacktrace
|
|
libwebp
|
|
qtbase
|
|
qtsvg
|
|
qtwayland
|
|
sources.shaderc-patched
|
|
wayland
|
|
]
|
|
++ cubeb.passthru.backendLibs;
|
|
|
|
cmakeFlags = [
|
|
(lib.cmakeBool "BUILD_TESTS" true)
|
|
];
|
|
|
|
strictDeps = true;
|
|
|
|
doInstallCheck = true;
|
|
|
|
postPatch = ''
|
|
gitHash=$(cat .nixpkgs-auxfiles/git_hash) \
|
|
gitBranch=$(cat .nixpkgs-auxfiles/git_branch) \
|
|
gitTag=$(cat .nixpkgs-auxfiles/git_tag) \
|
|
gitDate=$(cat .nixpkgs-auxfiles/git_date) \
|
|
substituteAllInPlace src/scmversion/gen_scmversion.sh
|
|
'';
|
|
|
|
# error: cannot convert 'int16x8_t' to '__Int32x4_t'
|
|
env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.hostPlatform.isAarch64 "-flax-vector-conversions";
|
|
|
|
installCheckPhase = ''
|
|
runHook preCheck
|
|
|
|
$out/share/duckstation/common-tests
|
|
|
|
runHook postCheck
|
|
'';
|
|
|
|
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 $src/scripts/org.duckstation.DuckStation.desktop $out/share/applications/org.duckstation.DuckStation.desktop
|
|
install -Dm644 $src/scripts/org.duckstation.DuckStation.png $out/share/pixmaps/org.duckstation.DuckStation.png
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
qtWrapperArgs =
|
|
let
|
|
libPath = lib.makeLibraryPath ([
|
|
vulkan-loader
|
|
] ++ cubeb.passthru.backendLibs);
|
|
in [
|
|
"--prefix LD_LIBRARY_PATH : ${libPath}"
|
|
];
|
|
|
|
# https://github.com/stenzek/duckstation/blob/master/scripts/appimage/apprun-hooks/default-to-x11.sh
|
|
# Can't avoid the double wrapping, the binary wrapper from qtWrapperArgs doesn't support --run
|
|
postFixup = ''
|
|
source "${makeWrapper}/nix-support/setup-hook"
|
|
wrapProgram $out/bin/duckstation-qt \
|
|
--run 'if [[ -z $I_WANT_A_BROKEN_WAYLAND_UI ]]; then export QT_QPA_PLATFORM=xcb; fi'
|
|
'';
|
|
|
|
meta = {
|
|
homepage = "https://github.com/stenzek/duckstation";
|
|
description = "Fast PlayStation 1 emulator for x86-64/AArch32/AArch64";
|
|
license = lib.licenses.gpl3Only;
|
|
mainProgram = "duckstation-qt";
|
|
maintainers = with lib.maintainers; [ guibou AndersonTorres ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
})
|