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:
Keenan Weaver 2023-06-26 12:13:21 -05:00
parent cdefe1d083
commit 33d5a0fa90
No known key found for this signature in database
GPG key ID: 0926B70C6A27AAE1
2 changed files with 39 additions and 0 deletions

View 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];
};
}

View file

@ -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 { };