mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-11 08:13:04 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
33 lines
1.1 KiB
Nix
33 lines
1.1 KiB
Nix
{ lib, python3, fetchFromGitHub }:
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "joystickwake";
|
|
version = "0.4.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "foresto";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
sha256 = "sha256-vSvIpbcDIbRyitVjx3wNSxt5vTIZ9/NPWokOJt0p6oQ=";
|
|
};
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [ dbus-next pyudev xlib ];
|
|
|
|
postInstall = ''
|
|
# autostart file
|
|
ln -s $out/${python3.sitePackages}/etc $out/etc
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Joystick-aware screen waker";
|
|
mainProgram = "joystickwake";
|
|
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;
|
|
};
|
|
}
|