nixpkgs/pkgs/games/chiaki/default.nix

65 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, stdenv
2021-01-01 12:27:32 +00:00
, fetchgit
, cmake
, pkg-config
, protobuf
, python3Packages
, ffmpeg
, libopus
, mkDerivation
2021-01-01 12:27:32 +00:00
, qtbase
, qtmultimedia
, qtsvg
, SDL2
, libevdev
, udev
, qtmacextras
}:
2019-09-14 16:50:24 +00:00
mkDerivation rec {
2019-09-14 16:50:24 +00:00
pname = "chiaki";
version = "2.0.1";
2019-09-14 16:50:24 +00:00
src = fetchgit {
url = "https://git.sr.ht/~thestr4ng3r/chiaki";
2019-09-14 16:50:24 +00:00
rev = "v${version}";
fetchSubmodules = true;
sha256 = "0l532i9j6wmzbxqx7fg69kgfd1zy1r1wlw6f756vpxpgswivi892";
2019-09-14 16:50:24 +00:00
};
nativeBuildInputs = [
2021-01-01 12:27:32 +00:00
cmake
pkg-config
protobuf
python3Packages.protobuf
python3Packages.python
];
buildInputs = [
ffmpeg
libopus
qtbase
qtmultimedia
qtsvg
protobuf
SDL2
2021-01-15 04:31:39 +00:00
] ++ lib.optionals stdenv.isLinux [
2021-01-01 12:27:32 +00:00
libevdev
udev
2021-01-15 04:31:39 +00:00
] ++ lib.optionals stdenv.isDarwin [
2021-01-01 12:27:32 +00:00
qtmacextras
2019-09-14 16:50:24 +00:00
];
doCheck = true;
2021-01-01 12:27:32 +00:00
installCheckPhase = "$out/bin/chiaki --help";
2019-09-14 16:50:24 +00:00
meta = with lib; {
2021-01-01 12:27:32 +00:00
homepage = "https://git.sr.ht/~thestr4ng3r/chiaki";
description = "Free and Open Source PlayStation Remote Play Client";
2019-09-14 16:50:24 +00:00
license = licenses.gpl3Plus;
maintainers = with maintainers; [ delroth ];
platforms = platforms.all;
};
}