Merge pull request #68806 from delroth/chiaki-1.0.3
chiaki: init at 1.0.3
This commit is contained in:
commit
d2ecbb38a2
31
pkgs/games/chiaki/default.nix
Normal file
31
pkgs/games/chiaki/default.nix
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
{ lib, mkDerivation, fetchFromGitHub
|
||||||
|
, cmake, ffmpeg, libopus, qtbase, qtmultimedia, qtsvg, pkgconfig, protobuf
|
||||||
|
, python3Packages, SDL2 }:
|
||||||
|
|
||||||
|
mkDerivation rec {
|
||||||
|
pname = "chiaki";
|
||||||
|
version = "1.0.3";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
rev = "v${version}";
|
||||||
|
owner = "thestr4ng3r";
|
||||||
|
repo = "chiaki";
|
||||||
|
fetchSubmodules = true;
|
||||||
|
sha256 = "09c6izprqqvhn1vbr2897ql05w5c7iqakm6jn795a5faghjm1mah";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
cmake pkgconfig protobuf python3Packages.python python3Packages.protobuf
|
||||||
|
];
|
||||||
|
buildInputs = [ ffmpeg libopus qtbase qtmultimedia qtsvg protobuf SDL2 ];
|
||||||
|
|
||||||
|
doCheck = true;
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = "https://github.com/thestr4ng3r/chiaki";
|
||||||
|
description = "Free and Open Source PS4 Remote Play Client";
|
||||||
|
license = licenses.gpl3Plus;
|
||||||
|
maintainers = with maintainers; [ delroth ];
|
||||||
|
platforms = platforms.all;
|
||||||
|
};
|
||||||
|
}
|
@ -21805,6 +21805,8 @@ in
|
|||||||
|
|
||||||
chessx = libsForQt59.callPackage ../games/chessx { };
|
chessx = libsForQt59.callPackage ../games/chessx { };
|
||||||
|
|
||||||
|
chiaki = libsForQt5.callPackage ../games/chiaki { };
|
||||||
|
|
||||||
chocolateDoom = callPackage ../games/chocolate-doom { };
|
chocolateDoom = callPackage ../games/chocolate-doom { };
|
||||||
|
|
||||||
crispyDoom = callPackage ../games/crispy-doom { };
|
crispyDoom = callPackage ../games/crispy-doom { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user