21 lines
516 B
Nix
21 lines
516 B
Nix
|
{ lib, stdenv, uhk-agent }:
|
||
|
|
||
|
stdenv.mkDerivation {
|
||
|
pname = "uhk-udev-rules";
|
||
|
inherit (uhk-agent) version;
|
||
|
|
||
|
dontUnpack = true;
|
||
|
dontBuild = true;
|
||
|
installPhase = ''
|
||
|
runHook preInstall
|
||
|
install -D -m 644 ${uhk-agent.out}/rules/50-uhk60.rules $out/lib/udev/rules.d/50-uhk60.rules
|
||
|
runHook postInstall
|
||
|
'';
|
||
|
|
||
|
meta = {
|
||
|
description = "udev rules for UHK keyboards from https://ultimatehackingkeyboard.com";
|
||
|
inherit (uhk-agent.meta) license;
|
||
|
maintainers = [ lib.maintainers.ngiger ];
|
||
|
};
|
||
|
}
|