diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2021-01-06 09:35:40 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2021-01-06 09:35:40 +0200 |
commit | 7dfc2d2e7f7ff5b0e8210ed7710f3cc87841d29c (patch) | |
tree | 6e7c21d79b897e4267109df80019b160ce1b96ac | |
parent | 406008a2ac8b03317623a9967ec2e5fd3dca7650 (diff) | |
download | guix-7dfc2d2e7f7ff5b0e8210ed7710f3cc87841d29c.tar.gz guix-7dfc2d2e7f7ff5b0e8210ed7710f3cc87841d29c.zip |
gnu: readymedia: Sort inputs alphabetically.
* gnu/packages/upnp.scm (readymedia)[native-inputs]: Sort alphabetically.
[inputs]: Same.
-rw-r--r-- | gnu/packages/upnp.scm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gnu/packages/upnp.scm b/gnu/packages/upnp.scm index 9106dd1beb..79739691e8 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") |