commit
10f7070bf0
@ -290,6 +290,7 @@
|
|||||||
smironov = "Sergey Mironov <ierton@gmail.com>";
|
smironov = "Sergey Mironov <ierton@gmail.com>";
|
||||||
spacefrogg = "Michael Raitza <spacefrogg-nixos@meterriblecrew.net>";
|
spacefrogg = "Michael Raitza <spacefrogg-nixos@meterriblecrew.net>";
|
||||||
spencerjanssen = "Spencer Janssen <spencerjanssen@gmail.com>";
|
spencerjanssen = "Spencer Janssen <spencerjanssen@gmail.com>";
|
||||||
|
spinus = "Tomasz Czyż <tomasz.czyz@gmail.com>";
|
||||||
sprock = "Roger Mason <rmason@mun.ca>";
|
sprock = "Roger Mason <rmason@mun.ca>";
|
||||||
spwhitt = "Spencer Whitt <sw@swhitt.me>";
|
spwhitt = "Spencer Whitt <sw@swhitt.me>";
|
||||||
stephenmw = "Stephen Weinberg <stephen@q5comm.com>";
|
stephenmw = "Stephen Weinberg <stephen@q5comm.com>";
|
||||||
|
43
pkgs/applications/misc/solaar/default.nix
Normal file
43
pkgs/applications/misc/solaar/default.nix
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
{fetchurl, stdenv, makeWrapper, gtk3, python3Packages}:
|
||||||
|
let
|
||||||
|
version = "0.9.2";
|
||||||
|
in
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
name = "solaar-${version}";
|
||||||
|
src = fetchurl {
|
||||||
|
sha256 = "0954grz2adggfzcj4df4mpr4d7qyl7w8rb4j2s0f9ymawl92i05j";
|
||||||
|
url = "https://github.com/pwr/Solaar/archive/${version}.tar.gz";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [gtk3 python3Packages.pygobject3 python3Packages.pyudev];
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
installPhase = ''
|
||||||
|
mkdir -p "$out";
|
||||||
|
'';
|
||||||
|
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"
|
||||||
|
'';
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Linux devices manager for the Logitech Unifying Receiver";
|
||||||
|
longDescription = ''
|
||||||
|
Solaar is a Linux device manager for Logitech’s 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];
|
||||||
|
};
|
||||||
|
}
|
@ -3141,6 +3141,8 @@ let
|
|||||||
|
|
||||||
socat2pre = lowPrio (callPackage ../tools/networking/socat/2.x.nix { });
|
socat2pre = lowPrio (callPackage ../tools/networking/socat/2.x.nix { });
|
||||||
|
|
||||||
|
solaar = callPackage ../applications/misc/solaar {};
|
||||||
|
|
||||||
sourceHighlight = callPackage ../tools/text/source-highlight { };
|
sourceHighlight = callPackage ../tools/text/source-highlight { };
|
||||||
|
|
||||||
spaceFM = callPackage ../applications/misc/spacefm { adwaita-icon-theme = gnome3.adwaita-icon-theme; };
|
spaceFM = callPackage ../applications/misc/spacefm { adwaita-icon-theme = gnome3.adwaita-icon-theme; };
|
||||||
|
Loading…
Reference in New Issue
Block a user