efraim pushed a commit to branch master
in repository guix.
commit 7dfc2d2e7f7ff5b0e8210ed7710f3cc87841d29c
Author: Efraim Flashner <[email protected]>
AuthorDate: Wed Jan 6 09:35:40 2021 +0200
gnu: readymedia: Sort inputs alphabetically.
* gnu/packages/upnp.scm (readymedia)[native-inputs]: Sort alphabetically.
[inputs]: Same.
---
gnu/packages/upnp.scm | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/upnp.scm b/gnu/packages/upnp.scm
index 9106dd1..7973969 100644
--- a/gnu/packages/upnp.scm
+++ b/gnu/packages/upnp.scm
@@ -150,17 +150,17 @@ and others.")
((".*LIBAVUTIL_LIBS.*") ""))
#t)))))
(native-inputs
- `(("automake" ,automake)
- ("autoconf" ,autoconf)
+ `(("autoconf" ,autoconf)
+ ("automake" ,automake)
("gettext" ,gettext-minimal)))
(inputs
- `(("libexif" ,libexif)
- ("libjpeg" ,libjpeg-turbo)
- ("libid3tag" ,libid3tag)
+ `(("ffmpeg" ,ffmpeg)
("flac" ,flac)
+ ("libexif" ,libexif)
+ ("libid3tag" ,libid3tag)
+ ("libjpeg" ,libjpeg-turbo)
("libvorbis" ,libvorbis)
("sqlite" ,sqlite)
- ("ffmpeg" ,ffmpeg)
("zlib" ,zlib)))
(home-page "https://sourceforge.net/projects/minidlna/")
(synopsis "DLNA/UPnP-AV media server")