nixpkgs/pkgs/games/chiaki/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

67 lines
1.2 KiB
Nix
Raw Normal View History

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