python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / games / chiaki / default.nix
blob29ac2d0da3e3db833eff22a93114743466de8db5
1 { lib, stdenv
2 , fetchgit
3 , cmake
4 , pkg-config
5 , protobuf
6 , python3Packages
7 , ffmpeg
8 , libopus
9 , mkDerivation
10 , qtbase
11 , qtmultimedia
12 , qtsvg
13 , SDL2
14 , libevdev
15 , udev
16 , qtmacextras
19 mkDerivation rec {
20   pname = "chiaki";
21   version = "2.1.1";
23   src = fetchgit {
24     url = "https://git.sr.ht/~thestr4ng3r/chiaki";
25     rev = "v${version}";
26     fetchSubmodules = true;
27     sha256 = "sha256-VkCA8KS4EHuVSgoYt1YDT38hA1NEBckiBwRcgDZUSs4=";
28   };
30   nativeBuildInputs = [
31     cmake
32     pkg-config
33     protobuf
34     python3Packages.protobuf
35     python3Packages.python
36   ];
38   buildInputs = [
39     ffmpeg
40     libopus
41     qtbase
42     qtmultimedia
43     qtsvg
44     protobuf
45     SDL2
46   ] ++ lib.optionals stdenv.isLinux [
47     libevdev
48     udev
49   ] ++ lib.optionals stdenv.isDarwin [
50     qtmacextras
51   ];
53   doCheck = true;
55   installCheckPhase = "$out/bin/chiaki --help";
57   meta = with lib; {
58     homepage = "https://git.sr.ht/~thestr4ng3r/chiaki";
59     description = "Free and Open Source PlayStation Remote Play Client";
60     license = licenses.agpl3Only;
61     maintainers = with maintainers; [ delroth ];
62     platforms = platforms.all;
63   };