summary refs log tree commit diff
path: root/pkgs/os-specific/linux/logitech-udev-rules
diff options
context:
space:
mode:
authoroxalica <oxalicc@pm.me>2022-07-05 11:07:32 +0800
committeroxalica <oxalicc@pm.me>2022-07-05 14:57:08 +0800
commitcce5385de5f6766e55ff52d0975a122bc4b347dd (patch)
tree34536f5f0b78f47bde5cc3305385c4a7d3d7ca46 /pkgs/os-specific/linux/logitech-udev-rules
parentf4697343c6dfc114d9788655f51ca5047e345745 (diff)
downloadnixpkgs-cce5385de5f6766e55ff52d0975a122bc4b347dd.tar
nixpkgs-cce5385de5f6766e55ff52d0975a122bc4b347dd.tar.gz
nixpkgs-cce5385de5f6766e55ff52d0975a122bc4b347dd.tar.bz2
nixpkgs-cce5385de5f6766e55ff52d0975a122bc4b347dd.tar.lz
nixpkgs-cce5385de5f6766e55ff52d0975a122bc4b347dd.tar.xz
nixpkgs-cce5385de5f6766e55ff52d0975a122bc4b347dd.tar.zst
nixpkgs-cce5385de5f6766e55ff52d0975a122bc4b347dd.zip
logitech-udev-rules: make it an alias of solaar.udev
Diffstat (limited to 'pkgs/os-specific/linux/logitech-udev-rules')
-rw-r--r--pkgs/os-specific/linux/logitech-udev-rules/default.nix19
1 files changed, 0 insertions, 19 deletions
diff --git a/pkgs/os-specific/linux/logitech-udev-rules/default.nix b/pkgs/os-specific/linux/logitech-udev-rules/default.nix
deleted file mode 100644
index 0b0e9e8f203..00000000000
--- a/pkgs/os-specific/linux/logitech-udev-rules/default.nix
+++ /dev/null
@@ -1,19 +0,0 @@
-{ lib, stdenv, solaar }:
-
-# 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
-
-stdenv.mkDerivation {
-  pname = "logitech-udev-rules";
-  inherit (solaar) version;
-
-  buildCommand = ''
-    install -Dm444 -t $out/etc/udev/rules.d ${solaar.src}/rules.d/*.rules
-  '';
-
-  meta = with lib; {
-    description = "udev rules for Logitech devices";
-    inherit (solaar.meta) homepage license platforms;
-    maintainers = with maintainers; [ peterhoeg ];
-  };
-}