GNU bug report logs -
#59851
Add Moonlight
Previous Next
Reported by: phodina <phodina <at> protonmail.com>
Date: Tue, 6 Dec 2022 03:18:01 UTC
Severity: normal
Done: Oleg Pykhalov <go.wigust <at> gmail.com>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
Hi Petr,
phodina <phodina <at> protonmail.com> writes:
> From a923f2a2e49a0a9851e43aec325fbaee1ee8b4cb Mon Sep 17 00:00:00 2001
> From: Petr Hodina <phodina <at> protonmail.com>
> Date: Mon, 5 Dec 2022 16:19:08 +0100
> Subject: [PATCH v2 5/6] gnu: Add sdl-gamecontrollerdb.
>
> * gnu/packages/sdl.scm (sdl-gamecontrollerdb): New variable.
Apologies, it looks like I forgot to review that one in the original
submission.
> diff --git a/gnu/packages/sdl.scm b/gnu/packages/sdl.scm
> index 0c419dfaca..90c04c98d9 100644
> --- a/gnu/packages/sdl.scm
> +++ b/gnu/packages/sdl.scm
> @@ -14,6 +14,7 @@
> ;;; Copyright © 2020 Timotej Lazar <timotej.lazar <at> araneo.si>
> ;;; Copyright © 2020 Oleg Pykhalov <go.wigust <at> gmail.com>
> ;;; Copyright © 2022 Maxim Cournoyer <maxim.cournoyer <at> gmail.com>
> +;;; Copyright © 2022 Petr Hodina <phodina <at> protonmail.com>
> ;;;
> ;;; This file is part of GNU Guix.
> ;;;
> @@ -41,6 +42,7 @@ (define-module (gnu packages sdl)
> #:use-module (guix download)
> #:use-module (guix git-download)
> #:use-module (guix utils)
> + #:use-module (guix build-system copy)
> #:use-module (guix build-system gnu)
> #:use-module (guix build-system trivial)
> #:use-module (gnu packages audio)
> @@ -199,6 +201,29 @@ (define-public libmikmod
> (license license:lgpl2.1)
> (home-page "http://mikmod.sourceforge.net/")))
>
> +(define-public sdl-gamecontrollerdb
> + (let ((commit "9bd061ec6282cd9f8ee0eff36112d98096183a82")
> + (revision "1"))
> + (package
> + (name "sdl-gamecontrollerdb")
> + (version "")
^
Oops! :-)
> + (source (origin
> + (method git-fetch)
> + (uri (git-reference
> + (url "https://github.com/gabomdq/SDL_GameControllerDB")
> + (commit commit)))
> + (sha256
> + (base32
> + "1dzch3c39n1kq8m5h8fpi7aqqv6k5jqwmlyagsh6fmyzwjviqgji"))))
> + (build-system copy-build-system)
> + (arguments
> + '(#:install-plan '(("gamecontrollerdb.txt" "gamecontrollerdb.txt"))))
> + (synopsis "Database of game controller mappings to be used with SDL2
> + Game Controller")
> + (description "")
^
The synopsis and description need to be reworked here.
Otherwise, LGTM.
--
Thanks,
Maxim
This bug report was last modified 1 year and 126 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.