nixpkgs/pkgs/os-specific/linux/logitech-udev-rules/default.nix

20 lines
550 B
Nix
Raw Normal View History

{ lib, stdenv, solaar }:
2019-03-11 06:09:30 +01:00
# ltunifi and solaar both provide udev rules but solaar's rules are more
# up-to-date so we simply use that instead of having to maintain our own rules
2019-08-13 23:52:01 +02:00
stdenv.mkDerivation {
pname = "logitech-udev-rules";
2019-03-11 06:09:30 +01:00
inherit (solaar) version;
buildCommand = ''
install -Dm644 -t $out/etc/udev/rules.d ${solaar.src}/rules.d/*.rules
'';
meta = with lib; {
2019-03-11 06:09:30 +01:00
description = "udev rules for Logitech devices";
inherit (solaar.meta) homepage license platforms;
maintainers = with maintainers; [ peterhoeg ];
};
}