diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2023-04-25 10:32:46 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2023-04-25 10:32:46 +0300 |
commit | 08c63aac53b47d21ea2b7618601fe9118c1e4992 (patch) | |
tree | f3f6438014042a956107ff2efa9d9eec5629b365 /gnu/packages/games.scm | |
parent | 960647f0161c2c99ea3417d129662181e882cfeb (diff) | |
download | guix-08c63aac53b47d21ea2b7618601fe9118c1e4992.tar.gz |
gnu: slimevolley: Build with gcc-7.
* gnu/packages/games.scm (slimevolley)[native-inputs]: Add gcc-7.
Diffstat (limited to 'gnu/packages/games.scm')
-rw-r--r-- | gnu/packages/games.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index 6ede4fbf8a..288d470c8c 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -8717,7 +8717,8 @@ and cooperative.") ;; missing from command line". #:configure-flags (list "-DCMAKE_EXE_LINKER_FLAGS=-lm"))) (native-inputs - `(("gettext" ,gettext-minimal))) + `(("gcc-7" ,gcc-7) + ("gettext" ,gettext-minimal))) (inputs `(("sdl" ,(sdl-union (list sdl sdl-image sdl-net sdl-ttf))))) (home-page "https://slime.tuxfamily.org/") |