chiaki4deck: init at 1.3.3

This commit is contained in:
Morgan Helton 2023-07-04 18:42:34 -05:00
parent 2995f57b67
commit 66688cb7a1
2 changed files with 65 additions and 0 deletions

View file

@ -0,0 +1,63 @@
{ lib
, fetchFromGitHub
, mkDerivation
, cmake
, pkg-config
, protobuf
, python3
, ffmpeg_6
, libopus
, qtbase
, qtmultimedia
, qtsvg
, SDL2
, libevdev
, udev
, hidapi
, fftw
}:
mkDerivation rec {
pname = "chiaki4deck";
version = "1.3.3";
src = fetchFromGitHub {
owner = "streetpea";
repo = pname;
rev = "v${version}";
hash = "sha256-DXer39+j8QaI1IAIcLhVzSVNyGvwoT93knRibpFsEeY=";
fetchSubmodules = true;
};
nativeBuildInputs = [
cmake
pkg-config
protobuf
python3
python3.pkgs.protobuf
python3.pkgs.setuptools
];
buildInputs = [
ffmpeg_6
libopus
qtbase
qtmultimedia
qtsvg
protobuf
SDL2
hidapi
fftw
libevdev
udev
];
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";
};
}

View file

@ -36872,6 +36872,8 @@ with pkgs;
chiaki = libsForQt5.callPackage ../games/chiaki { };
chiaki4deck = libsForQt5.callPackage ../games/chiaki4deck { };
chromium-bsu = callPackage ../games/chromium-bsu { };
clonehero = callPackage ../games/clonehero { };