Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
45 lines
1.1 KiB
Nix
45 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
udevCheckHook,
|
|
}:
|
|
|
|
# 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
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ltunify";
|
|
version = "0.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Lekensteyn";
|
|
repo = "ltunify";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-9avri/2H0zv65tkBsIi9yVxx3eVS9oCkVCCFdjXqSgI=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
udevCheckHook
|
|
];
|
|
|
|
doInstallCheck = true;
|
|
|
|
makeFlags = [
|
|
"DESTDIR=$(out)"
|
|
"bindir=/bin"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Tool for working with Logitech Unifying receivers and devices";
|
|
longDescription = ''
|
|
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`.
|
|
'';
|
|
homepage = "https://lekensteyn.nl/logitech-unifying.html";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = [ ];
|
|
platforms = platforms.linux;
|
|
mainProgram = "ltunify";
|
|
};
|
|
}
|