openrazer-daemon: init at 2.6.0
This commit is contained in:
45
pkgs/development/python-modules/openrazer/daemon.nix
Normal file
45
pkgs/development/python-modules/openrazer/daemon.nix
Normal file
@@ -0,0 +1,45 @@
|
||||
{ buildPythonApplication
|
||||
, 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";
|
||||
|
||||
sourceRoot = "source/daemon";
|
||||
|
||||
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";
|
||||
};
|
||||
})
|
||||
Reference in New Issue
Block a user