Archived
1
0
Fork 0

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