summary refs log tree commit diff
path: root/pkgs/games/chiaki
diff options
context:
space:
mode:
authorPierre Bourdon <delroth@gmail.com>2019-09-14 18:50:24 +0200
committerPierre Bourdon <delroth@gmail.com>2019-09-15 05:08:45 +0200
commit9165e72c7f0206a9b2216027164c69508ef5d75a (patch)
tree6f049ca19c9453f1c04eca78ed1e42fb9bf4df89 /pkgs/games/chiaki
parent87b22ea005cbc851ed58c3ef501dc0d746b891d0 (diff)
downloadnixpkgs-9165e72c7f0206a9b2216027164c69508ef5d75a.tar
nixpkgs-9165e72c7f0206a9b2216027164c69508ef5d75a.tar.gz
nixpkgs-9165e72c7f0206a9b2216027164c69508ef5d75a.tar.bz2
nixpkgs-9165e72c7f0206a9b2216027164c69508ef5d75a.tar.lz
nixpkgs-9165e72c7f0206a9b2216027164c69508ef5d75a.tar.xz
nixpkgs-9165e72c7f0206a9b2216027164c69508ef5d75a.tar.zst
nixpkgs-9165e72c7f0206a9b2216027164c69508ef5d75a.zip
chiaki: init at 1.0.3
Diffstat (limited to 'pkgs/games/chiaki')
-rw-r--r--pkgs/games/chiaki/default.nix31
1 files changed, 31 insertions, 0 deletions
diff --git a/pkgs/games/chiaki/default.nix b/pkgs/games/chiaki/default.nix
new file mode 100644
index 00000000000..7a9ac7d381c
--- /dev/null
+++ b/pkgs/games/chiaki/default.nix
@@ -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;
+  };
+}