summaryrefslogtreecommitdiff
path: root/gnu/packages/game-development.scm
diff options
context:
space:
mode:
authorAdam Faiz <adam.faiz@disroot.org>2022-11-20 09:28:38 +0800
committerEfraim Flashner <efraim@flashner.co.il>2022-11-20 10:47:29 +0200
commit923be63b440b6c2ce82715dff4a9e80d5a17dd12 (patch)
treefebff36663abc1dd6c542b5ada956111aa6278c5 /gnu/packages/game-development.scm
parent3d1a5a3ec74bab3ce2ddce23b51d5e869df94363 (diff)
gnu: chipmunk: Use gexps.
* gnu/packages/game-development.scm (chipmunk)[arguments]: Use gexps. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
Diffstat (limited to 'gnu/packages/game-development.scm')
-rw-r--r--gnu/packages/game-development.scm7
1 files changed, 4 insertions, 3 deletions
diff --git a/gnu/packages/game-development.scm b/gnu/packages/game-development.scm
index b319f2fef3..4228d4aafb 100644
--- a/gnu/packages/game-development.scm
+++ b/gnu/packages/game-development.scm
@@ -2454,9 +2454,10 @@ computer games, 3D authoring tools and simulation tools.")
(("#include <sys/sysctl.h>") ""))))))
(build-system cmake-build-system)
(arguments
- `(#:tests? #f ;no test
- #:configure-flags '("-DBUILD_STATIC=OFF"
- "-DBUILD_DEMOS=OFF")))
+ (list #:tests? #f ;no test
+ #:configure-flags
+ #~(list "-DBUILD_STATIC=OFF"
+ "-DBUILD_DEMOS=OFF")))
(inputs
(list freeglut libxmu libxrandr))
(home-page "https://chipmunk-physics.net/")