gnu: qutebrowser: Update to 2.4.0.
* gnu/packages/web-browsers.scm (qutebrowser): Update to 2.4.0. [arguments]: Remove trailing #t.
This commit is contained in:
parent
23e26413bd
commit
607c56908e
1 changed files with 5 additions and 8 deletions
|
@ -462,7 +462,7 @@ interface.")
|
||||||
(define-public qutebrowser
|
(define-public qutebrowser
|
||||||
(package
|
(package
|
||||||
(name "qutebrowser")
|
(name "qutebrowser")
|
||||||
(version "2.3.1")
|
(version "2.4.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
|
@ -470,7 +470,7 @@ interface.")
|
||||||
"qutebrowser/releases/download/v" version "/"
|
"qutebrowser/releases/download/v" version "/"
|
||||||
"qutebrowser-" version ".tar.gz"))
|
"qutebrowser-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "05n64mw9lzzxpxr7lhakbkm9ir3x8p0rwk6vbbg01aqg5iaanyj0"))))
|
(base32 "1v4jhlmgfm8v9sbf7i3xg1vjh6dy8y2gpckk0mizkazb2jxrmkgj"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list python-attrs)) ; for tests
|
(list python-attrs)) ; for tests
|
||||||
|
@ -500,8 +500,7 @@ interface.")
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-before 'check 'set-env-offscreen
|
(add-before 'check 'set-env-offscreen
|
||||||
(lambda _
|
(lambda _
|
||||||
(setenv "QT_QPA_PLATFORM" "offscreen")
|
(setenv "QT_QPA_PLATFORM" "offscreen")))
|
||||||
#t))
|
|
||||||
(add-after 'install 'install-more
|
(add-after 'install 'install-more
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
(let* ((out (assoc-ref outputs "out"))
|
(let* ((out (assoc-ref outputs "out"))
|
||||||
|
@ -522,8 +521,7 @@ interface.")
|
||||||
(substitute* "misc/org.qutebrowser.qutebrowser.desktop"
|
(substitute* "misc/org.qutebrowser.qutebrowser.desktop"
|
||||||
(("Exec=qutebrowser")
|
(("Exec=qutebrowser")
|
||||||
(string-append "Exec=" out "/bin/qutebrowser")))
|
(string-append "Exec=" out "/bin/qutebrowser")))
|
||||||
(install-file "misc/org.qutebrowser.qutebrowser.desktop" app)
|
(install-file "misc/org.qutebrowser.qutebrowser.desktop" app))))
|
||||||
#t)))
|
|
||||||
(add-after 'wrap 'wrap-qt-process-path
|
(add-after 'wrap 'wrap-qt-process-path
|
||||||
(lambda* (#:key inputs outputs #:allow-other-keys)
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
||||||
(let* ((out (assoc-ref outputs "out"))
|
(let* ((out (assoc-ref outputs "out"))
|
||||||
|
@ -532,8 +530,7 @@ interface.")
|
||||||
(assoc-ref inputs "qtwebengine")
|
(assoc-ref inputs "qtwebengine")
|
||||||
"/lib/qt5/libexec/QtWebEngineProcess")))
|
"/lib/qt5/libexec/QtWebEngineProcess")))
|
||||||
(wrap-program bin
|
(wrap-program bin
|
||||||
`("QTWEBENGINEPROCESS_PATH" = (,qt-process-path)))
|
`("QTWEBENGINEPROCESS_PATH" = (,qt-process-path)))))))))
|
||||||
#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")
|
||||||
(description "qutebrowser is a keyboard-focused browser with a minimal
|
(description "qutebrowser is a keyboard-focused browser with a minimal
|
||||||
|
|
Reference in a new issue