nixpkgs/pkgs/games/chiaki/default.nix

32 lines
906 B
Nix
Raw Normal View History

{ lib, mkDerivation, fetchgit
, cmake, ffmpeg, libopus, qtbase, qtmultimedia, qtsvg, pkg-config, protobuf
2019-09-14 17:50:24 +01:00
, python3Packages, SDL2 }:
mkDerivation rec {
pname = "chiaki";
version = "2.0.1";
2019-09-14 17:50:24 +01:00
src = fetchgit {
url = "https://git.sr.ht/~thestr4ng3r/chiaki";
2019-09-14 17:50:24 +01:00
rev = "v${version}";
fetchSubmodules = true;
sha256 = "0l532i9j6wmzbxqx7fg69kgfd1zy1r1wlw6f756vpxpgswivi892";
2019-09-14 17:50:24 +01:00
};
nativeBuildInputs = [
cmake pkg-config protobuf python3Packages.python python3Packages.protobuf
2019-09-14 17:50:24 +01:00
];
2020-07-10 22:49:47 +01:00
buildInputs = [ ffmpeg libopus qtbase qtmultimedia qtsvg protobuf SDL2 ];
2019-09-14 17:50:24 +01:00
doCheck = true;
installCheckPhase = "$out/bin/chiaki --help";
2019-09-14 17:50:24 +01:00
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;
};
}