summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/openrazer/daemon.nix
blob: 92d240f46a63fac0d8fd440a695b28d9b459e9d8 (plain)
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
{
  lib,
  buildPythonPackage,
  daemonize,
  dbus-python,
  fetchFromGitHub,
  gobject-introspection,
  gtk3,
  pygobject3,
  pyudev,
  setproctitle,
  setuptools,
  wrapGAppsNoGuiHook,
  notify2,
  glib,
  libnotify,
}:

let
  common = import ./common.nix { inherit lib fetchFromGitHub; };
in
buildPythonPackage (
  common
  // {
    pname = "openrazer-daemon";

    outputs = [
      "out"
      "man"
    ];

    sourceRoot = "${common.src.name}/daemon";

    postPatch = ''
      substituteInPlace openrazer_daemon/daemon.py \
        --replace-fail "plugdev" "openrazer"
      patchShebangs run_openrazer_daemon.py
      substituteInPlace run_openrazer_daemon.py \
        --replace-fail "/usr/share" "$out/share"
    '';

    nativeBuildInputs = [
      setuptools
      wrapGAppsNoGuiHook
      gobject-introspection
    ];

    buildInputs = [
      glib
      gtk3
    ];

    dependencies = [
      daemonize
      dbus-python
      pygobject3
      pyudev
      setproctitle
      notify2
      libnotify
    ];

    postInstall = ''
      DESTDIR="$out" PREFIX="" make manpages install-resources install-systemd
    '';

    # no tests run
    doCheck = false;

    dontWrapGApps = true;

    preFixup = ''
      makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
    '';

    meta = common.meta // {
      description = "Entirely open source user-space daemon that allows you to manage your Razer peripherals on GNU/Linux";
      mainProgram = "openrazer-daemon";
    };
  }
)