diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-01-07 01:37:49 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-01-07 02:42:18 +0100 |
commit | 94fbbf0d2670851150d329b2a7adb70cceaba598 (patch) | |
tree | 5aaea1bd9c65dea77906a9315a0411014b2fa42d /gnu/packages | |
parent | b2f55787eff0feaa94ea3d336814dcff0d1fb3ba (diff) |
gnu: fheroes2: Remove input labels.
* gnu/packages/games.scm (fheroes2)[native-inputs, inputs]:
Remove input labels.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/games.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index 2ef51d587f..db89e6f872 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -12568,11 +12568,11 @@ disassembly of the DOS version, extended with new features.") #:make-flags '("FHEROES2_STRICT_COMPILATION=1" "RELEASE=1"))) (native-inputs - `(("gettext" ,gettext-minimal))) + (list gettext-minimal)) (inputs - `(("libpng" ,libpng) - ("sdl" ,(sdl-union (list sdl2 sdl2-image sdl2-mixer sdl2-ttf))) - ("zlib" ,zlib))) + (list libpng + (sdl-union (list sdl2 sdl2-image sdl2-mixer sdl2-ttf)) + zlib)) (source (origin (method git-fetch) |