me
/
guix
Archived
1
0
Fork 0

gnu: nyxt: Update to 3.11.1.

* gnu/packages/web-browsers.scm (nyxt): Update to 3.11.1.
  [inputs]: Remove sbcl-fset and sbcl-mk-string-metrics. Add gst-libav,
  gst-plugins-bad, gst-plugins-base, gst-plugins-good, gst-plugins-ugly.
  [arguments]: Update 'configure-tests' phase.
  [home-page]: Update URL.

Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
Change-Id: If35d6f0153339b311057bea05562fefb215c3f0d
master
Andre A. Gomes 2024-01-22 15:31:48 +02:00 committed by Guillaume Le Vaillant
parent 8aa3ae15dd
commit 90f9528748
No known key found for this signature in database
GPG Key ID: 6BE8208ADF21FE3F
1 changed files with 14 additions and 15 deletions

View File

@ -70,6 +70,7 @@
#:use-module (gnu packages gnome) #:use-module (gnu packages gnome)
#:use-module (gnu packages gnome-xyz) #:use-module (gnu packages gnome-xyz)
#:use-module (gnu packages gnupg) #:use-module (gnu packages gnupg)
#:use-module (gnu packages gstreamer)
#:use-module (gnu packages gtk) #:use-module (gnu packages gtk)
#:use-module (gnu packages image) #:use-module (gnu packages image)
#:use-module (gnu packages imagemagick) #:use-module (gnu packages imagemagick)
@ -589,7 +590,7 @@ driven and does not detract you from your daily work.")
(define-public nyxt (define-public nyxt
(package (package
(name "nyxt") (name "nyxt")
(version "3.11.0") (version "3.11.1")
(source (source
(origin (origin
(method git-fetch) (method git-fetch)
@ -598,7 +599,7 @@ driven and does not detract you from your daily work.")
(commit version))) (commit version)))
(sha256 (sha256
(base32 (base32
"0hzkpk8kshw7afz3pryi99xz2vg3v676day0mgji3hvaazfan39p")) "107zsjpwhdiafgj55zdbqj6qwyvpfcdf8vxn16sry16r2jaxxagf"))
(file-name (git-file-name name version)))) (file-name (git-file-name name version))))
(build-system gnu-build-system) (build-system gnu-build-system)
(arguments (arguments
@ -610,14 +611,9 @@ driven and does not detract you from your daily work.")
(modify-phases %standard-phases (modify-phases %standard-phases
(delete 'configure) (delete 'configure)
(add-before 'build 'fix-common-lisp-cache-folder (add-before 'build 'fix-common-lisp-cache-folder
(lambda _ (lambda _ (setenv "HOME" "/tmp")))
(setenv "HOME" "/tmp")
#t))
(add-before 'check 'configure-tests (add-before 'check 'configure-tests
(lambda _ (lambda _ (setenv "NYXT_TESTS_NO_NETWORK" "1") #t))
(setenv "NYXT_TESTS_NO_NETWORK" "1")
(setenv "NYXT_TESTS_ERROR_ON_FAIL" "1")
#t))
(add-after 'install 'wrap-program (add-after 'install 'wrap-program
(lambda* (#:key inputs outputs #:allow-other-keys) (lambda* (#:key inputs outputs #:allow-other-keys)
(let* ((bin (string-append (assoc-ref outputs "out") "/bin/nyxt")) (let* ((bin (string-append (assoc-ref outputs "out") "/bin/nyxt"))
@ -639,8 +635,7 @@ driven and does not detract you from your daily work.")
(,(string-append glib-networking "/lib/gio/modules"))) (,(string-append glib-networking "/lib/gio/modules")))
`("GI_TYPELIB_PATH" prefix (,gi-path)) `("GI_TYPELIB_PATH" prefix (,gi-path))
`("LD_LIBRARY_PATH" ":" prefix (,path)) `("LD_LIBRARY_PATH" ":" prefix (,path))
`("XDG_DATA_DIRS" ":" prefix (,xdg-path))) `("XDG_DATA_DIRS" ":" prefix (,xdg-path)))))))))
#t))))))
(native-inputs (list cl-lisp-unit2 sbcl)) (native-inputs (list cl-lisp-unit2 sbcl))
(inputs (list sbcl-alexandria (inputs (list sbcl-alexandria
sbcl-bordeaux-threads sbcl-bordeaux-threads
@ -665,14 +660,12 @@ driven and does not detract you from your daily work.")
sbcl-dissect sbcl-dissect
sbcl-enchant sbcl-enchant
sbcl-flexi-streams sbcl-flexi-streams
sbcl-fset
sbcl-history-tree sbcl-history-tree
sbcl-iolib sbcl-iolib
sbcl-lass sbcl-lass
sbcl-local-time sbcl-local-time
sbcl-log4cl sbcl-log4cl
sbcl-lparallel sbcl-lparallel
sbcl-mk-string-metrics
sbcl-montezuma sbcl-montezuma
sbcl-moptilities sbcl-moptilities
sbcl-named-readtables sbcl-named-readtables
@ -710,9 +703,15 @@ driven and does not detract you from your daily work.")
gtk+ ; For the main loop gtk+ ; For the main loop
webkitgtk-for-gtk3 ; Required when we use its typelib webkitgtk-for-gtk3 ; Required when we use its typelib
gobject-introspection gobject-introspection
pkg-config)) pkg-config
;; Useful for video playback
gst-libav
gst-plugins-bad
gst-plugins-base
gst-plugins-good
gst-plugins-ugly))
(synopsis "Extensible web-browser in Common Lisp") (synopsis "Extensible web-browser in Common Lisp")
(home-page "https://nyxt.atlas.engineer") (home-page "https://nyxt-browser.com/")
(description "Nyxt is a keyboard-oriented, extensible web-browser designed (description "Nyxt is a keyboard-oriented, extensible web-browser designed
for power users. The application has familiar Emacs and VI key-bindings and for power users. The application has familiar Emacs and VI key-bindings and
is fully configurable and extensible in Common Lisp.") is fully configurable and extensible in Common Lisp.")