game-devices-udev-rules: init at 0.21
game-devices-udev-rules: add longDescription game-devices-udev-rules: consolidate to one command Co-authored-by: Nick Cao <nickcao@nichi.co> game-devices-udev-rules: fix indentation
This commit is contained in:
parent
cdefe1d083
commit
33d5a0fa90
2 changed files with 39 additions and 0 deletions
37
pkgs/os-specific/linux/game-devices-udev-rules/default.nix
Normal file
37
pkgs/os-specific/linux/game-devices-udev-rules/default.nix
Normal file
|
@ -0,0 +1,37 @@
|
|||
{
|
||||
lib,
|
||||
stdenv,
|
||||
fetchFromGitea,
|
||||
}:
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "game-devices-udev-rules";
|
||||
version = "0.21";
|
||||
|
||||
src = fetchFromGitea {
|
||||
domain = "codeberg.org";
|
||||
owner = "fabiscafe";
|
||||
repo = "game-devices-udev";
|
||||
rev = version;
|
||||
hash = "sha256-Yy91yDF5BSDTTlr/Pj8e0UklPooEdzvRW8mkhdHtHVo=";
|
||||
};
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
install -Dm444 -t "$out/lib/udev/rules.d" *.rules
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Udev rules to make supported controllers available with user-grade permissions";
|
||||
homepage = "https://codeberg.org/fabiscafe/game-devices-udev";
|
||||
license = licenses.mit;
|
||||
longDescription = ''
|
||||
These udev rules are intended to be used as a package under 'services.udev.packages'.
|
||||
They will not be activated if installed as 'environment.systemPackages' or 'users.user.<user>.packages'.
|
||||
|
||||
Additionally, you may need to enable 'hardware.uinput'.
|
||||
'';
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [keenanweaver];
|
||||
};
|
||||
}
|
|
@ -28558,6 +28558,8 @@ with pkgs;
|
|||
|
||||
freepats = callPackage ../data/misc/freepats { };
|
||||
|
||||
game-devices-udev-rules = callPackage ../os-specific/linux/game-devices-udev-rules { };
|
||||
|
||||
garamond-libre = callPackage ../data/fonts/garamond-libre { };
|
||||
|
||||
g15daemon = callPackage ../os-specific/linux/g15daemon { };
|
||||
|
|
Loading…
Reference in a new issue