mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
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 <zhengjunjie@iscas.ac.cn>
This commit is contained in:
parent
780fdb61f6
commit
becf331253
1 changed files with 8 additions and 3 deletions
|
@ -559,7 +559,7 @@ (define-public qutebrowser
|
|||
(define-public vimb
|
||||
(package
|
||||
(name "vimb")
|
||||
(version "3.6.0")
|
||||
(version "3.7.0")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
|
@ -567,7 +567,7 @@ (define-public vimb
|
|||
(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 @@ (define-public vimb
|
|||
(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)
|
||||
|
|
Loading…
Reference in a new issue