qmk-udev-rules: 0.22.3 -> 0.23.3

There's no actual change to the udev rules, but I figured I'd bump it
while updating the comment to call out that there's a nixos module for
this specifically, without having to update udev packages.
This commit is contained in:
Benjamin Hipple 2024-01-06 22:33:21 -05:00
parent 8a8c1f22a3
commit efec500a7f

View File

@ -1,18 +1,17 @@
{ lib, stdenv, fetchFromGitHub }:
## Usage
# In NixOS, simply add this package to services.udev.packages:
# services.udev.packages = [ pkgs.qmk-udev-rules ];
# In NixOS, set hardware.keyboard.qmk.enable = true;
stdenv.mkDerivation rec {
pname = "qmk-udev-rules";
version = "0.22.3";
version = "0.23.3";
src = fetchFromGitHub {
owner = "qmk";
repo = "qmk_firmware";
rev = version;
hash = "sha256-HLQxmBlzTdsOAMqfc4taoMM+V2G5novMsbc1drZlNGg=";
hash = "sha256-dFc6S9x7sBYZAQn0coZJpmGz66Fx0l4rrexjyB4k0zA=";
};
dontBuild = true;