mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
126 lines
2.1 KiB
Nix
126 lines
2.1 KiB
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, stdenv
|
|
, cmake
|
|
, pkg-config
|
|
, protobuf
|
|
, python3
|
|
, ffmpeg_6
|
|
, libopus
|
|
, wrapQtAppsHook
|
|
, qtbase
|
|
, qtmultimedia
|
|
, qtsvg
|
|
, qtwayland
|
|
, qtdeclarative
|
|
, qtwebengine
|
|
, SDL2
|
|
, libevdev
|
|
, udev
|
|
, curlFull
|
|
, hidapi
|
|
, json_c
|
|
, fftw
|
|
, miniupnpc
|
|
, speexdsp
|
|
, libplacebo
|
|
, vulkan-loader
|
|
, vulkan-headers
|
|
, libunwind
|
|
, shaderc
|
|
, lcms2
|
|
, libdovi
|
|
, xxHash
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "chiaki4deck";
|
|
version = "1.7.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "streetpea";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-NiShxa49ZKmK/3q8+PHwy7edwjaqtkOqfhd2ncWK5UQ=";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkg-config
|
|
wrapQtAppsHook
|
|
protobuf
|
|
python3
|
|
python3.pkgs.wrapPython
|
|
python3.pkgs.protobuf
|
|
python3.pkgs.setuptools
|
|
];
|
|
|
|
buildInputs = [
|
|
ffmpeg_6
|
|
libopus
|
|
qtbase
|
|
qtmultimedia
|
|
qtsvg
|
|
qtdeclarative
|
|
qtwayland
|
|
qtwebengine
|
|
protobuf
|
|
SDL2
|
|
curlFull
|
|
hidapi
|
|
json_c
|
|
fftw
|
|
miniupnpc
|
|
libevdev
|
|
udev
|
|
speexdsp
|
|
libplacebo
|
|
vulkan-headers
|
|
libunwind
|
|
shaderc
|
|
lcms2
|
|
libdovi
|
|
xxHash
|
|
];
|
|
|
|
# handle cmake not being able to identify if curl is built with websocket support, and library name discrepancy when curl not built with cmake
|
|
postPatch = ''
|
|
substituteInPlace CMakeLists.txt \
|
|
--replace-fail ' WS WSS' ""
|
|
|
|
substituteInPlace lib/CMakeLists.txt \
|
|
--replace-fail 'libcurl_shared' 'libcurl'
|
|
'';
|
|
|
|
cmakeFlags = [
|
|
"-Wno-dev"
|
|
(lib.cmakeFeature "CHIAKI_USE_SYSTEM_CURL" "true")
|
|
];
|
|
|
|
qtWrapperArgs = [
|
|
"--prefix LD_LIBRARY_PATH : ${vulkan-loader}/lib"
|
|
];
|
|
|
|
pythonPath = [
|
|
python3.pkgs.requests
|
|
];
|
|
|
|
postInstall = ''
|
|
install -Dm755 $src/scripts/psn-account-id.py $out/bin/psn-account-id
|
|
'';
|
|
|
|
postFixup = ''
|
|
wrapPythonPrograms
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://streetpea.github.io/chiaki4deck/";
|
|
description = "Fork of Chiaki (Open Source Playstation Remote Play) with Enhancements for Steam Deck";
|
|
license = licenses.agpl3Only;
|
|
maintainers = with maintainers; [ devusb ];
|
|
platforms = platforms.linux;
|
|
mainProgram = "chiaki";
|
|
};
|
|
}
|