Message ID | 522d48be3ada0ae5ca5526d82d776ec59e17a342.1726707755.git.maxim.cournoyer@gmail.com |
---|---|
State | New |
Headers | show |
Series | [bug#73341,1/4] services: Extend udev rules in joycond-service-type. | expand |
Am Donnerstag, dem 19.09.2024 um 10:02 +0900 schrieb Maxim Cournoyer: > * gnu/packages/games.scm (evtest-qt): New variable. > > Change-Id: Ifccb54509b4469c923126b100094e06e93383208 > --- Lexically LGTM, haven't tested, though. Note, that this and 4/4 have different bug IDs – I suppose you sent several patches that were meant to be a (loose?) series. Cheers
Hi, Liliana Marie Prikler <liliana.prikler@gmail.com> writes: > Am Donnerstag, dem 19.09.2024 um 10:02 +0900 schrieb Maxim Cournoyer: >> * gnu/packages/games.scm (evtest-qt): New variable. >> >> Change-Id: Ifccb54509b4469c923126b100094e06e93383208 >> --- > Lexically LGTM, haven't tested, though. > > Note, that this and 4/4 have different bug IDs – I suppose you sent > several patches that were meant to be a (loose?) series. Yes, this was meant to be a loose series. I've now pushed this one as 55db928dcb as well as tinycmmc which it depended on.
diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index 213c4c598d..03cd322b47 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -9843,6 +9843,30 @@ (define-public flightgear simulator.") (license license:gpl2+))) +(define-public evtest-qt + (package + (name "evtest-qt") + (version "0.2.0") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/Grumbel/evtest-qt") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1wfzkgq81764qzxgk0y5vvpxcrb3icvrr4dd4mj8njrqgbwmn0mw")))) + (build-system cmake-build-system) + (arguments (list #:tests? #f)) ;no test suite + (native-inputs (list tinycmmc)) + (inputs (list qtbase-5)) + (home-page "https://github.com/Grumbel/evtest-qt") + (synopsis "Evdev Joystick Tester") + (description "@command{evtest-qt} is a simple joystick tester for devices +using the @code{evdev} generic input event interface. It provides a list of +attached joysticks and displays which buttons and axis are pressed.") + (license license:gpl3+))) + (define-public jstest-gtk ;; There is no recent tagged release; use the latest commit. (let ((commit "60fe6ebdbc6719945be3f04988667dea569085be")