From aecc760c0515ab104d19cc535e3bc957f9d40e60 Mon Sep 17 00:00:00 2001 From: Filippo Berto Date: Wed, 23 Jun 2021 14:19:30 +0200 Subject: joystickwake: init at 0.2.4 Add package for [joystickwake](https://github.com/foresto/joystickwake), an utility for disabling screensavers and auto-lock while any input is received from a gamepad. This solves the annoying issue of auto-lock locking the session while playing games. --- pkgs/tools/games/joystickwake/default.nix | 26 ++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 28 insertions(+) create mode 100644 pkgs/tools/games/joystickwake/default.nix diff --git a/pkgs/tools/games/joystickwake/default.nix b/pkgs/tools/games/joystickwake/default.nix new file mode 100644 index 00000000000..01800aff849 --- /dev/null +++ b/pkgs/tools/games/joystickwake/default.nix @@ -0,0 +1,26 @@ +{ lib, python3, fetchFromGitHub }: +python3.pkgs.buildPythonApplication rec { + pname = "joystickwake"; + version = "0.2.4"; + + src = fetchFromGitHub { + owner = "foresto"; + repo = pname; + rev = "v${version}"; + sha256 = "0j8xwfmzzmc9s88zvzc3lv67821r6x28vy6vli3srvx859wprppd"; + }; + + propagatedBuildInputs = with python3.pkgs; [ pyudev xlib ]; + + meta = with lib; { + description = "A joystick-aware screen waker"; + longDescription = '' + Linux gamers often find themselves unexpectedly staring at a blank screen, because their display server fails to recognize game controllers as input devices, allowing the screen blanker to activate during gameplay. + This program works around the problem by temporarily disabling screen blankers when joystick activity is detected. + ''; + homepage = "https://github.com/foresto/joystickwake"; + maintainers = with maintainers; [ bertof ]; + license = licenses.mit; + platforms = platforms.linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 1934bc3e4f7..be57c28dfde 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2887,6 +2887,8 @@ in joycond = callPackage ../os-specific/linux/joycond { }; + joystickwake = callPackage ../tools/games/joystickwake {}; + jwt-cli = callPackage ../tools/security/jwt-cli { inherit (darwin.apple_sdk.frameworks) Security; }; -- cgit 1.4.1