[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/05: gnu: links: Remove input labels.
From: |
guix-commits |
Subject: |
04/05: gnu: links: Remove input labels. |
Date: |
Fri, 6 May 2022 07:39:52 -0400 (EDT) |
efraim pushed a commit to branch master
in repository guix.
commit d540c6792b0ca8830c93505fc72647a21be2b230
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Fri May 6 14:17:41 2022 +0300
gnu: links: Remove input labels.
* gnu/packages/web-browsers.scm (links)[inputs]: Remove input labels.
---
gnu/packages/web-browsers.scm | 17 +++++++++--------
1 file changed, 9 insertions(+), 8 deletions(-)
diff --git a/gnu/packages/web-browsers.scm b/gnu/packages/web-browsers.scm
index b761fa73a8..2632ba257b 100644
--- a/gnu/packages/web-browsers.scm
+++ b/gnu/packages/web-browsers.scm
@@ -185,14 +185,15 @@ management, extensions such as advertisement blocker and
colorful tabs.")
(string-append "--prefix=" out)
configure-flags)))))))
(native-inputs (list pkg-config))
- (inputs `(("gpm" ,gpm)
- ("libevent" ,libevent)
- ("libjpeg" ,libjpeg-turbo)
- ("libpng" ,libpng)
- ("libtiff" ,libtiff)
- ("libxt" ,libxt)
- ("openssl" ,openssl)
- ("zlib" ,zlib)))
+ (inputs
+ (list gpm
+ libevent
+ libjpeg-turbo
+ libpng
+ libtiff
+ libxt
+ openssl
+ 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.")