nixpkgs/pkgs/games/chiaki/default.nix

32 lines
871 B
Nix
Raw Normal View History

2019-09-14 16:50:24 +00:00
{ lib, mkDerivation, fetchFromGitHub
, cmake, ffmpeg_3, libopus, qtbase, qtmultimedia, qtsvg, pkgconfig, protobuf
2019-09-14 16:50:24 +00:00
, python3Packages, SDL2 }:
mkDerivation rec {
pname = "chiaki";
2020-04-12 09:08:52 +00:00
version = "1.1.3";
2019-09-14 16:50:24 +00:00
src = fetchFromGitHub {
rev = "v${version}";
owner = "thestr4ng3r";
repo = "chiaki";
fetchSubmodules = true;
2020-04-12 09:08:52 +00:00
sha256 = "12cb4wpibh077san9rpsmavihf0xy9iqc9zl7y0aagrkl50h19kr";
2019-09-14 16:50:24 +00:00
};
nativeBuildInputs = [
cmake pkgconfig protobuf python3Packages.python python3Packages.protobuf
];
buildInputs = [ ffmpeg_3 libopus qtbase qtmultimedia qtsvg protobuf SDL2 ];
2019-09-14 16:50:24 +00:00
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;
};
}