diff options
author | Adam Faiz <adam.faiz@disroot.org> | 2022-11-20 09:28:38 +0800 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2022-11-20 10:47:29 +0200 |
commit | 923be63b440b6c2ce82715dff4a9e80d5a17dd12 (patch) | |
tree | febff36663abc1dd6c542b5ada956111aa6278c5 | |
parent | 3d1a5a3ec74bab3ce2ddce23b51d5e869df94363 (diff) | |
download | guix-923be63b440b6c2ce82715dff4a9e80d5a17dd12.tar.gz |
gnu: chipmunk: Use gexps.
* gnu/packages/game-development.scm (chipmunk)[arguments]: Use gexps. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
-rw-r--r-- | gnu/packages/game-development.scm | 7 |
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/") |