nixpkgs/pkgs/applications/misc/solaar/default.nix

60 lines
1.9 KiB
Nix
Raw Normal View History

2019-03-11 05:08:25 +00:00
{ fetchFromGitHub, lib, gobject-introspection, gtk3, python3Packages }:
2021-05-10 08:07:45 +00:00
# Although we copy in the udev rules here, you probably just want to use
# logitech-udev-rules instead of adding this to services.udev.packages on NixOS
python3Packages.buildPythonApplication rec {
pname = "solaar";
2021-06-21 12:30:48 +00:00
version = "1.0.6";
2021-05-10 08:07:45 +00:00
src = fetchFromGitHub {
owner = "pwr-Solaar";
repo = "Solaar";
rev = version;
2021-06-21 12:30:48 +00:00
sha256 = "sha256-Ys0005hIQ+fT4oMeU5iFtbLNqn1WM6iLdIKGwdyn7BM=";
2016-01-08 00:08:43 +00:00
};
2021-05-10 08:07:45 +00:00
propagatedBuildInputs = with python3Packages; [
gobject-introspection
gtk3
psutil
pygobject3
pyudev
pyyaml
xlib
];
2019-03-11 05:08:25 +00:00
2021-05-10 08:07:45 +00:00
makeWrapperArgs = [
"--prefix PYTHONPATH : $PYTHONPATH"
"--prefix GI_TYPELIB_PATH : $GI_TYPELIB_PATH"
];
# the -cli symlink is just to maintain compabilility with older versions where
# there was a difference between the GUI and CLI versions.
2016-01-08 00:08:43 +00:00
postInstall = ''
2021-05-10 08:07:45 +00:00
ln -s $out/bin/solaar $out/bin/solaar-cli
install -Dm444 -t $out/etc/udev/rules.d rules.d/*.rules
2016-01-08 00:08:43 +00:00
'';
2021-05-10 08:07:45 +00:00
# No tests
doCheck = false;
2019-03-11 05:08:25 +00:00
meta = with lib; {
2016-01-08 00:08:43 +00:00
description = "Linux devices manager for the Logitech Unifying Receiver";
longDescription = ''
2021-05-10 08:07:45 +00:00
Solaar is a Linux manager for many Logitech keyboards, mice, and trackpads that
connect wirelessly to a USB Unifying, Lightspeed, or Nano receiver, connect
directly via a USB cable, or connect via Bluetooth. Solaar does not work with
peripherals from other companies.
2016-01-08 00:08:43 +00:00
2021-05-10 08:07:45 +00:00
Solaar can be used as a GUI application or via its command-line interface.
2016-01-08 00:08:43 +00:00
2021-05-10 08:07:45 +00:00
This tool requires either to be run with root/sudo or alternatively to have the udev rules files installed. On NixOS this can be achieved by setting `hardware.logitech.wireless.enable`.
2016-01-08 00:08:43 +00:00
'';
homepage = "https://pwr-solaar.github.io/Solaar/";
2021-05-10 08:07:45 +00:00
license = licenses.gpl2Only;
2019-03-11 05:08:25 +00:00
maintainers = with maintainers; [ spinus ysndr ];
2021-05-10 08:07:45 +00:00
platforms = platforms.linux;
2016-01-08 00:08:43 +00:00
};
}