2019-08-29 03:14:32 +02:00
|
|
|
{ buildPythonApplication
|
2019-10-05 19:25:50 +02:00
|
|
|
, isPy3k
|
2019-08-29 03:14:32 +02:00
|
|
|
, daemonize
|
|
|
|
, dbus-python
|
|
|
|
, fetchFromGitHub
|
|
|
|
, fetchpatch
|
|
|
|
, gobject-introspection
|
|
|
|
, gtk3
|
|
|
|
, makeWrapper
|
|
|
|
, pygobject3
|
|
|
|
, pyudev
|
|
|
|
, setproctitle
|
|
|
|
, stdenv
|
|
|
|
, wrapGAppsHook
|
|
|
|
}:
|
|
|
|
|
|
|
|
let
|
|
|
|
common = import ./common.nix { inherit stdenv fetchFromGitHub; };
|
|
|
|
in
|
|
|
|
buildPythonApplication (common // rec {
|
|
|
|
pname = "openrazer_daemon";
|
|
|
|
|
2019-10-05 19:25:50 +02:00
|
|
|
disabled = !isPy3k;
|
|
|
|
|
2019-10-07 17:20:23 +02:00
|
|
|
sourceRoot = "source/daemon";
|
|
|
|
|
2019-08-29 03:14:32 +02:00
|
|
|
outputs = [ "out" "man" ];
|
|
|
|
|
|
|
|
nativeBuildInputs = [ makeWrapper wrapGAppsHook ];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
daemonize
|
|
|
|
dbus-python
|
|
|
|
gobject-introspection
|
|
|
|
gtk3
|
|
|
|
pygobject3
|
|
|
|
pyudev
|
|
|
|
setproctitle
|
|
|
|
];
|
|
|
|
|
|
|
|
postBuild = ''
|
|
|
|
DESTDIR="$out" PREFIX="" make install manpages
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = common.meta // {
|
|
|
|
description = "An entirely open source user-space daemon that allows you to manage your Razer peripherals on GNU/Linux";
|
|
|
|
};
|
|
|
|
})
|