diff options
author | Vinicius Monego <monego@posteo.net> | 2022-08-21 13:10:07 -0300 |
---|---|---|
committer | Vinicius Monego <monego@posteo.net> | 2022-08-21 15:55:46 -0300 |
commit | 6defe340ab018779cd1ded2dc221ae1feec9243c (patch) | |
tree | 801855cfe1a09819344f20223f9b4cb73f266fdc | |
parent | 9d829dc9a4959b98e2774a35e8c825bc21608717 (diff) | |
download | guix-6defe340ab018779cd1ded2dc221ae1feec9243c.tar.gz |
gnu: lightspark: Remove input labels.
* gnu/packages/animation.scm (lightspark)[native-inputs, inputs]: Remove labels.
-rw-r--r-- | gnu/packages/animation.scm | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/gnu/packages/animation.scm b/gnu/packages/animation.scm index cb6de9e090..b8524681fa 100644 --- a/gnu/packages/animation.scm +++ b/gnu/packages/animation.scm @@ -352,28 +352,28 @@ audio or video backends, ensuring good performance.") (when tests? (invoke "./tests"))))))) (native-inputs - `(("gettext" ,gettext-minimal) - ("glib:bin" ,glib "bin") - ("nasm" ,nasm) - ("perl" ,perl) - ("pkg-config" ,pkg-config) - ("python" ,python-wrapper))) + (list gettext-minimal + `(,glib "bin") + nasm + perl + pkg-config + python-wrapper)) (inputs - `(("cairo" ,cairo) - ("curl" ,curl) - ("ffmpeg" ,ffmpeg) - ("freeglut" ,freeglut) - ("glew" ,glew) - ("glibmm" ,glibmm) - ("gnutls" ,gnutls) - ("libjpeg" ,libjpeg-turbo) - ("openssl" ,openssl) - ("pango" ,pango) - ("pcre2" ,pcre2) - ("rtmpdump" ,rtmpdump) - ("sdl2" ,sdl2) - ("sdl2-mixer" ,sdl2-mixer) - ("zlib" ,zlib))) + (list cairo + curl + ffmpeg + freeglut + glew + glibmm + gnutls + libjpeg-turbo + openssl + pango + pcre2 + rtmpdump + sdl2 + sdl2-mixer + zlib)) (home-page "https://lightspark.github.io/") (synopsis "Flash player implementation") (description |