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

46 lines
1.6 KiB
Nix
Raw Normal View History

{fetchFromGitHub, stdenv, gtk3, pythonPackages, gobject-introspection}:
2018-09-06 15:49:57 +03:00
pythonPackages.buildPythonApplication rec {
pname = "solaar-unstable";
2019-03-13 19:52:10 +03:00
version = "2019-01-30";
src = fetchFromGitHub {
owner = "pwr";
repo = "Solaar";
2019-03-13 19:52:10 +03:00
rev = "c07c115ee379e82db84283aaa29dc53df033a8c8";
sha256 = "0xg181xcwzzs8pdqvjrkjyaaga7ir93hzjvd17j9g3ns8xfj2mvr";
2016-01-08 03:08:43 +03:00
};
propagatedBuildInputs = [pythonPackages.pygobject3 pythonPackages.pyudev gobject-introspection gtk3];
2016-01-08 03:08:43 +03:00
postInstall = ''
wrapProgram "$out/bin/solaar" \
--prefix PYTHONPATH : "$PYTHONPATH" \
--prefix GI_TYPELIB_PATH : "$GI_TYPELIB_PATH"
wrapProgram "$out/bin/solaar-cli" \
--prefix PYTHONPATH : "$PYTHONPATH" \
--prefix GI_TYPELIB_PATH : "$GI_TYPELIB_PATH"
mkdir -p $out/lib/udev/rules.d
cp rules.d/*.rules $out/lib/udev/rules.d/
2016-01-08 03:08:43 +03:00
'';
enableParallelBuilding = true;
2016-01-08 03:08:43 +03:00
meta = with stdenv.lib; {
description = "Linux devices manager for the Logitech Unifying Receiver";
longDescription = ''
Solaar is a Linux device manager for Logitechs Unifying Receiver
peripherals. It is able to pair/unpair devices to the receiver, and for
most devices read battery status.
It comes in two flavors, command-line and GUI. Both are able to list the
devices paired to a Unifying Receiver, show detailed info for each
device, and also pair/unpair supported devices with the receiver.
To be able to use it, make sure you have access to /dev/hidraw* files.
'';
license = licenses.gpl2;
homepage = https://pwr.github.io/Solaar/;
platforms = platforms.linux;
maintainers = [maintainers.spinus maintainers.ysndr];
2016-01-08 03:08:43 +03:00
};
}