nerdfonts: fix wrong attribute name in error message (#364463)
[NixPkgs.git] / pkgs / games / chiaki / default.nix
blob2c9f319029e42a7af04a343630e42bf2cd42974c
2   lib,
3   stdenv,
4   fetchgit,
5   cmake,
6   pkg-config,
7   protobuf,
8   python3Packages,
9   ffmpeg,
10   libopus,
11   mkDerivation,
12   qtbase,
13   qtmultimedia,
14   qtsvg,
15   SDL2,
16   libevdev,
17   udev,
18   qtmacextras,
21 mkDerivation rec {
22   pname = "chiaki";
23   version = "2.2.0";
25   src = fetchgit {
26     url = "https://git.sr.ht/~thestr4ng3r/chiaki";
27     rev = "v${version}";
28     fetchSubmodules = true;
29     hash = "sha256-mLx2ygMlIuDJt9iT4nIj/dcLGjMvvmneKd49L7C3BQk=";
30   };
32   nativeBuildInputs = [
33     cmake
34     pkg-config
35     protobuf
36     python3Packages.protobuf
37     python3Packages.python
38     python3Packages.setuptools
39   ];
41   buildInputs =
42     [
43       ffmpeg
44       libopus
45       qtbase
46       qtmultimedia
47       qtsvg
48       protobuf
49       SDL2
50     ]
51     ++ lib.optionals stdenv.hostPlatform.isLinux [
52       libevdev
53       udev
54     ]
55     ++ lib.optionals stdenv.hostPlatform.isDarwin [
56       qtmacextras
57     ];
59   doCheck = true;
61   installCheckPhase = "$out/bin/chiaki --help";
63   meta = with lib; {
64     homepage = "https://git.sr.ht/~thestr4ng3r/chiaki";
65     description = "Free and Open Source PlayStation Remote Play Client";
66     license = licenses.agpl3Only;
67     maintainers = [ ];
68     platforms = platforms.all;
69     mainProgram = "chiaki";
70   };