mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
teck-udev-rules: init
This commit is contained in:
parent
4bd1d7cf09
commit
3c0e1f309f
2 changed files with 24 additions and 0 deletions
22
pkgs/os-specific/linux/teck-udev-rules/default.nix
Normal file
22
pkgs/os-specific/linux/teck-udev-rules/default.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{ lib, stdenv, teck-programmer }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
pname = "teck-udev-rules";
|
||||
version = lib.getVersion teck-programmer;
|
||||
|
||||
inherit (teck-programmer) src;
|
||||
|
||||
dontBuild = true;
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
install 40-teck.rules -D -t $out/etc/udev/rules.d/
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "udev rules for TECK keyboards";
|
||||
inherit (teck-programmer.meta) license;
|
||||
maintainers = [ lib.maintainers.lourkeur ];
|
||||
};
|
||||
}
|
|
@ -20769,6 +20769,8 @@ in
|
|||
# FIXME: `tcp-wrapper' is actually not OS-specific.
|
||||
tcp_wrappers = callPackage ../os-specific/linux/tcp-wrappers { };
|
||||
|
||||
teck-udev-rules = callPackage ../os-specific/linux/teck-udev-rules { };
|
||||
|
||||
tiptop = callPackage ../os-specific/linux/tiptop { };
|
||||
|
||||
tpacpi-bat = callPackage ../os-specific/linux/tpacpi-bat { };
|
||||
|
|
Loading…
Reference in a new issue