bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
69 lines
1.2 KiB
Nix
69 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
daemonize,
|
|
dbus-python,
|
|
fetchFromGitHub,
|
|
gobject-introspection,
|
|
gtk3,
|
|
pygobject3,
|
|
pyudev,
|
|
setproctitle,
|
|
setuptools,
|
|
wrapGAppsNoGuiHook,
|
|
notify2,
|
|
glib
|
|
}:
|
|
|
|
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"
|
|
'';
|
|
|
|
nativeBuildInputs = [ setuptools wrapGAppsNoGuiHook gobject-introspection ];
|
|
|
|
buildInputs = [
|
|
glib
|
|
gtk3
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
daemonize
|
|
dbus-python
|
|
pygobject3
|
|
pyudev
|
|
setproctitle
|
|
notify2
|
|
];
|
|
|
|
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";
|
|
};
|
|
})
|