guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/02: gnu: godot: Remove input labels.


From: guix-commits
Subject: 02/02: gnu: godot: Remove input labels.
Date: Thu, 6 Jan 2022 00:20:53 -0500 (EST)

nckx pushed a commit to branch master
in repository guix.

commit 457416bb1b6aa7b469e6af34f2007c8565f8dd42
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Thu Jan 6 05:46:25 2022 +0100

    gnu: godot: Remove input labels.
    
    * gnu/packages/game-development.scm (godot)[inputs]: Remove input labels.
    [arguments]: Tweak accordingly.
---
 gnu/packages/game-development.scm | 52 ++++++++++++++++++++-------------------
 1 file changed, 27 insertions(+), 25 deletions(-)

diff --git a/gnu/packages/game-development.scm 
b/gnu/packages/game-development.scm
index 9d08eb75ee..e9317a4780 100644
--- a/gnu/packages/game-development.scm
+++ b/gnu/packages/game-development.scm
@@ -1928,7 +1928,7 @@ games.")
              ;; Mesa can find libudev.so.0 through LD_LIBRARY_PATH.
              ;; also append ld path for pulseaudio and alsa-lib
              (let* ((out (assoc-ref outputs "out"))
-                    (udev_path (string-append (assoc-ref inputs "udev") 
"/lib"))
+                    (udev_path (string-append (assoc-ref inputs "eudev") 
"/lib"))
                     (pulseaudio_path (string-append (assoc-ref inputs 
"pulseaudio") "/lib"))
                     (alas_lib_path (string-append (assoc-ref inputs 
"alsa-lib") "/lib")))
                (wrap-program (string-append out "/bin/godot")
@@ -1948,30 +1948,32 @@ games.")
                          `(,(string-append icons "/256x256/apps/godot.png")
                            ,(string-append icons 
"/scalable/apps/godot.svg")))))))))
     (outputs '("out" "headless"))
-    (native-inputs (list pkg-config))
-    (inputs `(("alsa-lib" ,alsa-lib)
-              ("bullet" ,bullet)
-              ("freetype" ,freetype)
-              ("glew" ,glew)
-              ("glu" ,glu)
-              ("libtheora" ,libtheora)
-              ("libvorbis" ,libvorbis)
-              ("libvpx" ,libvpx)
-              ("libwebp" ,libwebp)
-              ("libx11" ,libx11)
-              ("libxcursor" ,libxcursor)
-              ("libxi" ,libxi)
-              ("libxinerama" ,libxinerama)
-              ("libxrandr" ,libxrandr)
-              ("mbedtls" ,mbedtls-apache)
-              ("mesa" ,mesa)
-              ("opusfile" ,opusfile)
-              ("pcre2" ,pcre2)
-              ("pulseaudio" ,pulseaudio)
-              ("udev" ,eudev) ;FIXME: required by mesa
-              ("wslay" ,wslay)
-              ("zenity" ,zenity)
-              ("zstd" ,zstd "lib")))
+    (native-inputs
+     (list pkg-config))
+    (inputs
+     (list alsa-lib
+           bullet
+           freetype
+           glew
+           glu
+           libtheora
+           libvorbis
+           libvpx
+           libwebp
+           libx11
+           libxcursor
+           libxi
+           libxinerama
+           libxrandr
+           mbedtls-apache
+           mesa
+           opusfile
+           pcre2
+           pulseaudio
+           eudev                        ; FIXME: required by mesa
+           wslay
+           zenity
+           `(,zstd "lib")))
     (home-page "https://godotengine.org/";)
     (synopsis "Advanced 2D and 3D game engine")
     (description



reply via email to

[Prev in Thread] Current Thread [Next in Thread]