diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-07-05 06:52:18 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-07-05 07:03:11 +0200 |
commit | 77986a6a99e7c283bdd2b3df93f666e6a166767c (patch) | |
tree | b7c6035dfbbfe9b1fc3d69696926af735f5c15f4 | |
parent | dfb99268b03695c0abdb02e9a9b61ae2c3ebe3c0 (diff) |
gnu: links: Sort inputs.
* gnu/packages/web-browsers.scm (links)[inputs]: Order alphabetically.
-rw-r--r-- | gnu/packages/web-browsers.scm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gnu/packages/web-browsers.scm b/gnu/packages/web-browsers.scm index e954863be4..d31648257f 100644 --- a/gnu/packages/web-browsers.scm +++ b/gnu/packages/web-browsers.scm @@ -188,13 +188,13 @@ older or slower computers and embedded systems.") "--enable-graphics") #t)))))) (native-inputs `(("pkg-config" ,pkg-config))) - (inputs `(("zlib" ,zlib) - ("openssl" ,openssl) + (inputs `(("libevent" ,libevent) ("libjpeg" ,libjpeg-turbo) - ("libtiff" ,libtiff) - ("libevent" ,libevent) ("libpng" ,libpng) - ("libxt" ,libxt))) + ("libtiff" ,libtiff) + ("libxt" ,libxt) + ("openssl" ,openssl) + ("zlib" ,zlib))) (synopsis "Text and graphics mode web browser") (description "Links is a graphics and text mode web browser, with many features including, tables, builtin image display, bookmarks, SSL and more.") |