python312Packages.vdf: avoid using pname for src.repo
[NixPkgs.git] / pkgs / os-specific / linux / uhk-udev-rules / default.nix
blob1b68c46b6571f45cb0c68e24e735872fb8dcb83d
1 { lib, stdenv, uhk-agent }:
3 stdenv.mkDerivation {
4   pname = "uhk-udev-rules";
5   inherit (uhk-agent) version;
7   dontUnpack = true;
8   dontBuild = true;
9   installPhase = ''
10     runHook preInstall
11     install -D -m 644 ${uhk-agent.out}/opt/uhk-agent/rules/50-uhk60.rules $out/lib/udev/rules.d/50-uhk60.rules
12     runHook postInstall
13   '';
15   meta = {
16     description = "udev rules for UHK keyboards from https://ultimatehackingkeyboard.com";
17     inherit (uhk-agent.meta) license;
18     maintainers = [ lib.maintainers.ngiger ];
19   };