chiaki4deck: init at 1.3.3
This commit is contained in:
63
pkgs/games/chiaki4deck/default.nix
Normal file
63
pkgs/games/chiaki4deck/default.nix
Normal 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";
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -36872,6 +36872,8 @@ with pkgs;
|
|||||||
|
|
||||||
chiaki = libsForQt5.callPackage ../games/chiaki { };
|
chiaki = libsForQt5.callPackage ../games/chiaki { };
|
||||||
|
|
||||||
|
chiaki4deck = libsForQt5.callPackage ../games/chiaki4deck { };
|
||||||
|
|
||||||
chromium-bsu = callPackage ../games/chromium-bsu { };
|
chromium-bsu = callPackage ../games/chromium-bsu { };
|
||||||
|
|
||||||
clonehero = callPackage ../games/clonehero { };
|
clonehero = callPackage ../games/clonehero { };
|
||||||
|
|||||||
Reference in New Issue
Block a user