guix-commits
[Top][All Lists]
Advanced

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

02/05: gnu: flare-engine: Improve package style.


From: guix-commits
Subject: 02/05: gnu: flare-engine: Improve package style.
Date: Mon, 7 Feb 2022 06:04:16 -0500 (EST)

ngz pushed a commit to branch master
in repository guix.

commit 4d6b3322fbf72258b8dab3dded48f9ef78b83e74
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Mon Feb 7 11:08:11 2022 +0100

    gnu: flare-engine: Improve package style.
    
    * gnu/packages/games.scm (flare-engine)[arguments]: Use G-expressions.
    [inputs]: Remove labels.
---
 gnu/packages/games.scm | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 1d7286f929..df846af067 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -8922,12 +8922,13 @@ fight each other on an arena-like map.")
                 "1daqx12w1gk9cf393zw89fy42lx4arjycm417380gqi775vbmamc"))))
     (build-system cmake-build-system)
     (arguments
-     `(#:tests? #f                      ;no test
-       #:configure-flags '("-DBINDIR=bin" "-DDATADIR=share/flare")))
+     (list
+      #:tests? #f                       ;no test
+      #:configure-flags #~(list "-DBINDIR=bin" "-DDATADIR=share/flare")))
     (inputs
-     `(("hicolor-icon-theme" ,hicolor-icon-theme)
-       ("python" ,python-wrapper)
-       ("sdl" ,(sdl-union (list sdl2 sdl2-image sdl2-mixer sdl2-ttf)))))
+     (list hicolor-icon-theme
+           python-wrapper
+           (sdl-union (list sdl2 sdl2-image sdl2-mixer sdl2-ttf))))
     (home-page "http://www.flarerpg.org/";)
     (synopsis "Action Roleplaying Engine")
     (description "Flare (Free Libre Action Roleplaying Engine) is a simple



reply via email to

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