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:
parent
3df1231dcc
commit
d7c58c3e54
1 changed files with 7 additions and 6 deletions
|
@ -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")
|
||||||
|
|
Reference in a new issue