about summary refs log tree commit diff
path: root/pkgs/applications/misc/polychromatic/default.nix
blob: f27902a8aac763e75ac280d6f5bace5f9ec5ffa9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{ lib
, fetchFromGitHub
, bash
, cairo
, glib
, qt5
, hicolor-icon-theme
, gdk-pixbuf
, imagemagick
, desktop-file-utils
, ninja
, meson
, sassc
, ibus
, usbutils
, libxcb
, python3Packages
, gobject-introspection
, gtk3
, wrapGAppsHook
, libappindicator-gtk3
}:

python3Packages.buildPythonApplication rec {
  name = "polychromatic";
  version = "0.7.3";

  format = "other";

  src = fetchFromGitHub {
    owner = "polychromatic";
    repo = "polychromatic";
    rev = "v${version}";
    sha256 = "sha256-H++kQ3Fxw56avEsSE1ctu5p0s50s0eQ+jL5zXS3AA94=";
  };

  postPatch = ''
    patchShebangs scripts

    substituteInPlace scripts/build-styles.sh \
      --replace '$(which sassc 2>/dev/null)' '${sassc}/bin/sassc' \
      --replace '$(which sass 2>/dev/null)' '${sassc}/bin/sass'

    substituteInPlace pylib/common.py --replace "/usr/share/polychromatic" "$out/share/polychromatic"
  '';

  preConfigure = ''
    scripts/build-styles.sh
  '';

  buildInputs = [
    cairo
    hicolor-icon-theme
  ];

  pythonPath = with python3Packages; [
    openrazer
    pyqt5
    pyqtwebengine
  ];

  propagatedBuildInputs = with python3Packages; [
    libxcb
    colour
    colorama
    setproctitle
    openrazer
    openrazer-daemon
    requests
    ibus
    usbutils
    pyqt5
    libappindicator-gtk3
  ];

  nativeBuildInputs = with python3Packages; [
    pyqt5
    desktop-file-utils
    qt5.wrapQtAppsHook
    wrapGAppsHook
    ninja
    meson
    sassc
  ];

  propagatedNativeBuildInputs = [
    gobject-introspection
    gtk3
    gdk-pixbuf
    imagemagick
  ];

  makeWrapperArgs = [
    "\${qtWrapperArgs[@]}"
  ];

  meta = with lib; {
    homepage = "https://polychromatic.app/";
    description = "Graphical front-end and tray applet for configuring Razer peripherals on GNU/Linux.";
    longDescription = ''
      Polychromatic is a frontend for OpenRazer that enables Razer devices
      to control lighting effects and more on GNU/Linux.
    '';
    license = licenses.gpl3;
    platforms = platforms.linux;
    maintainers = with maintainers; [ evanjs ];
  };
}