nixpkgs/pkgs/development/python-modules/openrazer/daemon.nix

49 lines
864 B
Nix
Raw Normal View History

2019-08-29 01:14:32 +00:00
{ buildPythonApplication
, isPy3k
2019-08-29 01:14:32 +00: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";
disabled = !isPy3k;
sourceRoot = "source/daemon";
2019-08-29 01:14:32 +00: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";
};
})