z572 pushed a commit to branch master
in repository guix.

commit becf33125309076d99609fa0971a98bda6f1f691
Author: unwox via Guix-patches via <[email protected]>
AuthorDate: Tue Feb 27 21:16:40 2024 +0600

    gnu: vimb: Update to 3.7.0.
    
    * gnu/packages/web-browsers.scm (vimb): Update to 3.7.0.
    [arguments]<#:phases>: Add fix-config-mk phase.
    
    Change-Id: Ia89eb9588cd7eeda1bad29cf0d6e33f75ff5970c
    Signed-off-by: Zheng Junjie <[email protected]>
---
 gnu/packages/web-browsers.scm | 11 ++++++++---
 1 file changed, 8 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/web-browsers.scm b/gnu/packages/web-browsers.scm
index 2587bcb72a..93d2fe8a12 100644
--- a/gnu/packages/web-browsers.scm
+++ b/gnu/packages/web-browsers.scm
@@ -559,7 +559,7 @@ GUI.  It is based on PyQt6 and QtWebEngine.")
 (define-public vimb
   (package
     (name "vimb")
-    (version "3.6.0")
+    (version "3.7.0")
     (source
      (origin
        (method git-fetch)
@@ -567,7 +567,7 @@ GUI.  It is based on PyQt6 and QtWebEngine.")
              (url "https://github.com/fanglingsu/vimb/";)
              (commit version)))
        (sha256
-        (base32 "0228khh3lqbal046k6akqah7s5igq9s0wjfjbdjam75kjj42pbhj"))
+        (base32 "1yazd0hm6vsz7sqp5qf3zzjmvqs3can6sbm2ijlfcj4v3kz42vrm"))
        (file-name (git-file-name name version))))
     (build-system glib-or-gtk-build-system)
     (arguments
@@ -577,7 +577,12 @@ GUI.  It is based on PyQt6 and QtWebEngine.")
                           (string-append "PREFIX=" %output))
        #:phases
        (modify-phases %standard-phases
-         (delete 'configure))))
+         (delete 'configure)
+         (add-after 'unpack 'fix-config-mk
+           (lambda* _
+             (substitute* "config.mk"
+               (("webkit2gtk-4\\.1")
+                "webkit2gtk-4.0")))))))
     (inputs
      `(("glib-networking" ,glib-networking)
        ("gsettings-desktop-schemas" ,gsettings-desktop-schemas)

Reply via email to