gnu: qutebrowser: Update to 1.8.3.

* gnu/packages/web-browsers.scm (qutebrowser): Update to 1.8.3.
[arguments]: Update how .desktop attribute gets installed.
This commit is contained in:
Brett Gilio 2019-12-24 14:32:23 -06:00
parent 3df1231dcc
commit d7c58c3e54
No known key found for this signature in database
GPG key ID: 672243C4A03F0EEE

View file

@ -9,6 +9,7 @@
;;; Copyright © 2018 Timo Eisenmann <eisenmann@fn.de>
;;; Copyright © 2018 Pierre Neidhardt <mail@ambrevar.xyz>
;;; Copyright © 2019 Clément Lassieur <clement@lassieur.org>
;;; Copyright © 2019 Brett Gilio <brettg@gnu.org>
;;;
;;; This file is part of GNU Guix.
;;;
@ -275,7 +276,7 @@ (define-public lynx
(define-public qutebrowser
(package
(name "qutebrowser")
(version "0.11.0")
(version "1.8.3")
(source
(origin
(method url-fetch)
@ -284,10 +285,11 @@ (define-public qutebrowser
"qutebrowser-" version ".tar.gz"))
(sha256
(base32
"13ihx66jm1dd6vx8px7pm0kbzf2sf9x43hhivc1rp17kahnxxdyv"))))
"055zmzk3q0m3hx1742nfy2mdawfllrkvijnbzp1hiv01dj1bxaf8"))))
(build-system python-build-system)
(native-inputs
`(("asciidoc" ,asciidoc)))
`(("asciidoc" ,asciidoc)
("python-attrs" ,python-attrs))) ; for tests
(inputs
`(("python-colorama" ,python-colorama)
("python-cssutils" ,python-cssutils)
@ -321,11 +323,10 @@ (define-public qutebrowser
'(16 24 32 48 64 128 256 512))
(install-file "icons/qutebrowser.svg"
(string-append hicolor "/scalable/apps"))
(substitute* "qutebrowser.desktop"
(substitute* "misc/org.qutebrowser.qutebrowser.desktop"
(("Exec=qutebrowser")
(string-append "Exec=" out "/bin/qutebrowser")))
(install-file "qutebrowser.desktop" app)
(install-file "misc/org.qutebrowser.qutebrowser.desktop" app)
#t))))))
(home-page "https://qutebrowser.org/")
(synopsis "Minimal, keyboard-focused, vim-like web browser")