diff options
author | Pierre Neidhardt <mail@ambrevar.xyz> | 2021-05-20 12:30:48 +0200 |
---|---|---|
committer | Pierre Neidhardt <mail@ambrevar.xyz> | 2021-05-20 12:31:50 +0200 |
commit | 562727d444c110a379124f3d4bfc76a90a677245 (patch) | |
tree | 8c20677c276b97893922e65d24dc21b358b5ba33 /gnu/packages/web-browsers.scm | |
parent | cb68765a588e46b282a2811ff5e83f44e377a843 (diff) |
gnu: nyxt: Update to 2.0.0.
* gnu/packages/web-browsers.scm (nyxt): Update to 2.0.0.
[arguments]: Remove useless set-version phase.
[inputs]: Remove unused file-attributes.
[description]: Follow upstream updates.
Diffstat (limited to 'gnu/packages/web-browsers.scm')
-rw-r--r-- | gnu/packages/web-browsers.scm | 17 |
1 files changed, 5 insertions, 12 deletions
diff --git a/gnu/packages/web-browsers.scm b/gnu/packages/web-browsers.scm index 6b6ca78960..af178f9092 100644 --- a/gnu/packages/web-browsers.scm +++ b/gnu/packages/web-browsers.scm @@ -599,9 +599,7 @@ driven and does not detract you from your daily work.") (define-public nyxt (package (name "nyxt") - ;; Package the pre-release because latest stable 1.5.0 does not build - ;; anymore. - (version "2-pre-release-7") + (version "2.0.0") (source (origin (method git-fetch) @@ -612,7 +610,7 @@ driven and does not detract you from your daily work.") (commit version))) (sha256 (base32 - "0d5mawka26gwi9nb45x1n33vgskwyn46jrvfz7nzmm2jfaq4ipn6")) + "0y91hnanf1bj378zsxhjh33qnhj09f6ixpdqmkl69k0075zls93r")) (file-name (git-file-name "nyxt" version)))) (build-system gnu-build-system) (arguments @@ -627,10 +625,6 @@ driven and does not detract you from your daily work.") (lambda _ (setenv "HOME" "/tmp") #t)) - (add-before 'build 'set-version - (lambda _ - (setenv "NYXT_VERSION" ,version) - #t)) (add-before 'check 'configure-tests (lambda _ (setenv "NYXT_TESTS_NO_NETWORK" "1") @@ -678,7 +672,6 @@ driven and does not detract you from your daily work.") ("cluffer" ,sbcl-cluffer) ("dexador" ,sbcl-dexador) ("enchant" ,sbcl-enchant) - ("file-attributes" ,sbcl-file-attributes) ("fset" ,sbcl-fset) ("hu.dwim.defclass-star" ,sbcl-hu.dwim.defclass-star) ("iolib" ,sbcl-iolib) @@ -711,9 +704,9 @@ driven and does not detract you from your daily work.") ("gobject-introspection" ,gobject-introspection))) (synopsis "Extensible web-browser in Common Lisp") (home-page "https://nyxt.atlas.engineer") - (description "Nyxt is a keyboard-oriented, extensible web-browser -designed for power users. The application has familiar Emacs and VI -key-bindings and is fully configurable and extensible in Common Lisp.") + (description "Nyxt is a keyboard-oriented, extensible web browser designed +for power users. Conceptually inspired by Emacs and Vim, it has familiar +key-bindings (Emacs, vi, CUA), and is fully configurable in Common Lisp.") (license license:bsd-3))) (define-public next |