summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gnu/packages/web-browsers.scm130
1 files changed, 65 insertions, 65 deletions
diff --git a/gnu/packages/web-browsers.scm b/gnu/packages/web-browsers.scm
index bbd7cd0e941..552d64ea9fd 100644
--- a/gnu/packages/web-browsers.scm
+++ b/gnu/packages/web-browsers.scm
@@ -233,73 +233,73 @@ features including, tables, builtin image display, bookmarks, SSL and more.")
233 (license license:gpl1+))) 233 (license license:gpl1+)))
234 234
235(define-public elinks 235(define-public elinks
236 (package 236 (package
237 (name "elinks") 237 (name "elinks")
238 (version "0.19.1") 238 (version "0.19.1")
239 (source 239 (source
240 (origin 240 (origin
241 (method git-fetch) 241 (method git-fetch)
242 (uri (git-reference 242 (uri (git-reference
243 (url "https://github.com/rkd77/elinks") 243 (url "https://github.com/rkd77/elinks")
244 (commit (string-append "v" version)))) 244 (commit (string-append "v" version))))
245 (file-name (git-file-name name version)) 245 (file-name (git-file-name name version))
246 (sha256 246 (sha256
247 (base32 247 (base32
248 "1802lh9zsmwmsd4b4kzxzgv3y8f6fmi6i0cjjbwmnkdfivcal3v9")))) 248 "1802lh9zsmwmsd4b4kzxzgv3y8f6fmi6i0cjjbwmnkdfivcal3v9"))))
249 (build-system meson-build-system) 249 (build-system meson-build-system)
250 (arguments 250 (arguments
251 (list 251 (list
252 #:configure-flags 252 #:configure-flags
253 #~(list "-D256-colors=true" 253 #~(list "-D256-colors=true"
254 "-Dbrotli=true" 254 "-Dbrotli=true"
255 "-Dcgi=true" 255 "-Dcgi=true"
256 "-Dfinger=true" 256 "-Dfinger=true"
257 "-Dgemini=true" 257 "-Dgemini=true"
258 "-Dgopher=true" 258 "-Dgopher=true"
259 ;; FIXME: gpm is disabled because Meson cannot find its shared 259 ;; FIXME: gpm is disabled because Meson cannot find its shared
260 ;; library even though "gpm" is given as an input. 260 ;; library even though "gpm" is given as an input.
261 "-Dgpm=false" 261 "-Dgpm=false"
262 "-Dhtml-highlight=true" 262 "-Dhtml-highlight=true"
263 "-Dlibev=true" 263 "-Dlibev=true"
264 "-Dlzma=true" 264 "-Dlzma=true"
265 "-Dnntp=true" 265 "-Dnntp=true"
266 "-Dreproducible=true" 266 "-Dreproducible=true"
267 "-Dsource-date-epoch=1" 267 "-Dsource-date-epoch=1"
268 "-Dtest=true" 268 "-Dtest=true"
269 "-Dtrue-color=true" 269 "-Dtrue-color=true"
270 ;; Fix GCC 14 build 270 ;; Fix GCC 14 build
271 "-Dc_args=-Wno-implicit-function-declaration"))) 271 "-Dc_args=-Wno-implicit-function-declaration")))
272 (native-inputs 272 (native-inputs
273 (list autoconf 273 (list autoconf
274 automake 274 automake
275 gettext-minimal 275 gettext-minimal
276 perl 276 perl
277 pkg-config 277 pkg-config
278 python-minimal)) 278 python-minimal))
279 (inputs 279 (inputs
280 (list brotli 280 (list brotli
281 bzip2 281 bzip2
282 curl 282 curl
283 expat 283 expat
284 gnutls 284 gnutls
285 gpm 285 gpm
286 libcss 286 libcss
287 libdom 287 libdom
288 libev 288 libev
289 libgcrypt 289 libgcrypt
290 libidn 290 libidn
291 lua 291 lua
292 openssl 292 openssl
293 tre 293 tre
294 xz 294 xz
295 zlib)) 295 zlib))
296 (home-page "http://elinks.cz/") 296 (home-page "http://elinks.cz/")
297 (synopsis "Advanced text mode web browser") 297 (synopsis "Advanced text mode web browser")
298 (description 298 (description
299 "ELinks is a feature-rich program for browsing the web in text mode. 299 "ELinks is a feature-rich program for browsing the web in text mode.
300It can render both frames and tables, is highly customisable and can be 300It can render both frames and tables, is highly customisable and can be
301extended via Lua scripts. It is like an enhanced Lynx and Links.") 301extended via Lua scripts. It is like an enhanced Lynx and Links.")
302 (license license:gpl2+))) 302 (license license:gpl2+)))
303 303
304(define-public luakit 304(define-public luakit
305 (package 305 (package