diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-09-25 23:40:00 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-09-26 05:24:31 +0200 |
commit | f51905a472f1ba87d61b52f532a18b23a79ffe57 (patch) | |
tree | 662994c232969913e995930a2e6d2ef218d88f34 /gnu | |
parent | 4a51d75929d9490ca8685dcd240bf567ce88544d (diff) | |
download | guix-f51905a472f1ba87d61b52f532a18b23a79ffe57.tar guix-f51905a472f1ba87d61b52f532a18b23a79ffe57.tar.gz |
gnu: vimb: Update to 3.5.0.
* gnu/packages/web-browsers.scm (vimb): Update to 3.5.0.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/web-browsers.scm | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/gnu/packages/web-browsers.scm b/gnu/packages/web-browsers.scm index 6d4caa0f9f..dd19b5fc6b 100644 --- a/gnu/packages/web-browsers.scm +++ b/gnu/packages/web-browsers.scm @@ -331,7 +331,7 @@ GUI. It is based on PyQt5 and QtWebKit.") (define-public vimb (package (name "vimb") - (version "3.3.0") + (version "3.5.0") (source (origin (method git-fetch) @@ -339,12 +339,11 @@ GUI. It is based on PyQt5 and QtWebKit.") (url "https://github.com/fanglingsu/vimb/") (commit version))) (sha256 - (base32 - "1qg18z2gnsli9qgrqfhqfrsi6g9mcgr90w8yab28nxrq4aha6brf")) + (base32 "13q7mk1hhjri0s30a98r8ncy0skf6m6lrnbqaf0jimf6sbwgiirf")) (file-name (git-file-name name version)))) (build-system glib-or-gtk-build-system) (arguments - '(#:tests? #f ; no tests + '(#:tests? #f ; no tests #:make-flags (list "CC=gcc" "DESTDIR=" (string-append "PREFIX=" %output)) |