diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-10-16 02:00:02 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-10-16 02:00:27 +0200 |
commit | 5a94c6cb3694c93b40b6ed0f5b0cf58801458f3c (patch) | |
tree | 3fc963409d48b79b6f7e0bfba1fe07a6082a5382 /gnu | |
parent | 9af6f1b624739179538d74866db7df6797cee31d (diff) | |
download | guix-5a94c6cb3694c93b40b6ed0f5b0cf58801458f3c.tar guix-5a94c6cb3694c93b40b6ed0f5b0cf58801458f3c.tar.gz |
gnu: dosbox-staging: Remove input labels.
* gnu/packages/emulators.scm (dosbox-staging)[inputs]:
Remove input labels.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/emulators.scm | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gnu/packages/emulators.scm b/gnu/packages/emulators.scm index 4d7710f8ea..f2ac256c95 100644 --- a/gnu/packages/emulators.scm +++ b/gnu/packages/emulators.scm @@ -426,13 +426,13 @@ older games.") (native-inputs (list pkg-config)) (inputs - `(("alsa-lib" ,alsa-lib) - ("fluidsynth" ,fluidsynth) - ("libpng" ,libpng) - ("mesa" ,mesa) - ("opusfile" ,opusfile) - ("sdl2" ,(sdl-union (list sdl2 sdl2-net))) - ("zlib" ,zlib))) + (list alsa-lib + fluidsynth + libpng + mesa + opusfile + (sdl-union (list sdl2 sdl2-net)) + zlib)) (home-page "https://dosbox-staging.github.io") (synopsis "DOS/x86 PC emulator focusing on ease of use") (description |