me
/
guix
Archived
1
0
Fork 0

gnu: links: Sort inputs.

* gnu/packages/web-browsers.scm (links)[inputs]: Order alphabetically.
Tobias Geerinckx-Rice 2020-07-05 06:52:18 +02:00
parent dfb99268b0
commit 77986a6a99
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 5 additions and 5 deletions

View File

@ -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.")