From 21e79225352a5e78aa329b6cd213eb553862c363 Mon Sep 17 00:00:00 2001 From: Pierre Neidhardt Date: Tue, 20 Oct 2020 15:06:59 +0200 Subject: gnu: nyxt: Update to 2-pre-release-3. * gnu/packages/web-browsers.scm (nyxt): Update to 2-pre-release-3. --- gnu/packages/web-browsers.scm | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) (limited to 'gnu/packages/web-browsers.scm') diff --git a/gnu/packages/web-browsers.scm b/gnu/packages/web-browsers.scm index 5aac5cb892..862927242e 100644 --- a/gnu/packages/web-browsers.scm +++ b/gnu/packages/web-browsers.scm @@ -461,7 +461,7 @@ driven and does not detract you from your daily work.") (name "nyxt") ;; Package the pre-release because latest stable 1.5.0 does not build ;; anymore. - (version "2-pre-release-2") + (version "2-pre-release-3") (source (origin (method git-fetch) @@ -472,7 +472,7 @@ driven and does not detract you from your daily work.") (commit version))) (sha256 (base32 - "0wqq8ppn0n7js3pxzzb36h0lf3r3gqhs2hi8h85c3n8a54hnbp8q")) + "16crhc89hpvzkms5fypq9vdrf7glidqwh7yvy5cdmjdq4v7fkmy4")) (file-name (git-file-name "nyxt" version)))) (build-system gnu-build-system) (arguments @@ -482,7 +482,8 @@ driven and does not detract you from your daily work.") #:strip-binaries? #f ; Stripping breaks SBCL binaries. #:phases (modify-phases %standard-phases - (add-after 'unpack 'patch-version ; Version is guessed from .git which Guix does not have. + ;; Version is guessed from .git which Guix does not have. + (add-after 'unpack 'patch-version (lambda* (#:key inputs #:allow-other-keys) (let ((version (format #f "~a" ,version)) (file "source/global.lisp")) @@ -515,7 +516,8 @@ driven and does not detract you from your daily work.") ":")) (gi-path (string-join (map (lambda (lib) - (string-append (assoc-ref inputs lib) "/lib/girepository-1.0")) + (string-append (assoc-ref inputs lib) + "/lib/girepository-1.0")) libs) ":")) (xdg-path (string-join @@ -540,6 +542,7 @@ driven and does not detract you from your daily work.") ;; See https://github.com/atlas-engineer/nyxt/issues/680. `(("alexandria" ,cl-alexandria) ("bordeaux-threads" ,cl-bordeaux-threads) + ("cl-chanl" ,cl-chanl) ("cl-containers" ,cl-containers) ("cl-css" ,cl-css) ("cl-json" ,cl-json) @@ -555,7 +558,6 @@ driven and does not detract you from your daily work.") ("iolib" ,cl-iolib) ("local-time" ,cl-local-time) ("log4cl" ,cl-log4cl) - ("lparallel" ,cl-lparallel) ("mk-string-metrics" ,cl-mk-string-metrics) ("moptilities" ,cl-moptilities) ("osicat" ,sbcl-osicat) ; SBCL version needed for libosicat.so. @@ -571,6 +573,7 @@ driven and does not detract you from your daily work.") ("trivial-package-local-nicknames" ,cl-trivial-package-local-nicknames) ("trivial-types" ,cl-trivial-types) ("unix-opts" ,cl-unix-opts) + ("usocket" ,cl-usocket) ;; WebKitGTK deps ("cl-cffi-gtk" ,cl-cffi-gtk) ("cl-webkit" ,cl-webkit) -- cgit v1.2.3 From 2371abcd0ece81d6b7ca3d03aff17c81bf8a5d85 Mon Sep 17 00:00:00 2001 From: raingloom Date: Wed, 21 Oct 2020 23:22:26 +0200 Subject: gnu: bombadillo: Don't try to copy LICENSE twice. * gnu/packages/web-browsers.scm (bombadillo)[arguments]: Removed install-file call for LICENSE. Signed-off-by: Christopher Baines --- gnu/packages/web-browsers.scm | 1 - 1 file changed, 1 deletion(-) (limited to 'gnu/packages/web-browsers.scm') diff --git a/gnu/packages/web-browsers.scm b/gnu/packages/web-browsers.scm index 862927242e..2220737daa 100644 --- a/gnu/packages/web-browsers.scm +++ b/gnu/packages/web-browsers.scm @@ -622,7 +622,6 @@ key-bindings and is fully configurable and extensible in Common Lisp.") (pixdir (string-append sharedir "/pixmaps"))) (with-directory-excursion builddir (install-file "bombadillo.desktop" appdir) - (install-file "LICENSE" docdir) (install-file "bombadillo.1" mandir) (install-file "bombadillo-icon.png" pixdir) #t))))))) -- cgit v1.2.3 From 32b82c3b49e80a9b2336451a19144b0d52418386 Mon Sep 17 00:00:00 2001 From: nixo Date: Sat, 24 Oct 2020 10:58:41 +0200 Subject: gnu: bombadillo: Update to 2.3.1. * gnu/packages/web-browsers.scm (bombadillo): Update to 2.3.1. Signed-off-by: Leo Famulari --- gnu/packages/web-browsers.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/web-browsers.scm') diff --git a/gnu/packages/web-browsers.scm b/gnu/packages/web-browsers.scm index 2220737daa..eb49a8fdea 100644 --- a/gnu/packages/web-browsers.scm +++ b/gnu/packages/web-browsers.scm @@ -595,7 +595,7 @@ key-bindings and is fully configurable and extensible in Common Lisp.") (define-public bombadillo (package (name "bombadillo") - (version "2.2.0") + (version "2.3.1") (source (origin (method git-fetch) (uri (git-reference @@ -603,7 +603,7 @@ key-bindings and is fully configurable and extensible in Common Lisp.") (commit version))) (sha256 (base32 - "1m52b1wk48gkqmjy8l0x3jaksrx2v8w6w59lhr7zaw2i0n4f5k0z")) + "0n0gza9qfx1hxigicyvf6wg1ccc2irvh17yhzpw9gx75ls5ybrjn")) (file-name (git-file-name name version)))) (build-system go-build-system) (arguments -- cgit v1.2.3