diff options
author | Franz Geffke <franz@pantherx.org> | 2023-11-06 20:08:14 +0000 |
---|---|---|
committer | Franz Geffke <franz@pantherx.org> | 2023-11-06 20:08:14 +0000 |
commit | 47b4c9c854915df93893dbaa993accfacf9027fe (patch) | |
tree | 4f9b1742d63fcfbc94cc6b8d84f76c4d00c3a0b7 /px/packages/browser.scm | |
parent | 0b426d7b7ed8e176bf464ef9e0683f74a6c9d20f (diff) |
rewrite: apply guix-reference formatting; cleanup some module imports
Diffstat (limited to 'px/packages/browser.scm')
-rw-r--r-- | px/packages/browser.scm | 72 |
1 files changed, 36 insertions, 36 deletions
diff --git a/px/packages/browser.scm b/px/packages/browser.scm index cae9581..a08b57d 100644 --- a/px/packages/browser.scm +++ b/px/packages/browser.scm @@ -2,48 +2,48 @@ #:use-module (guix build-system qt) #:use-module (guix download) #:use-module (guix git-download) - #:use-module ((guix licenses) #:prefix license:) #:use-module (guix packages) #:use-module (gnu packages kde-frameworks) #:use-module (gnu packages pkg-config) #:use-module (gnu packages qt) #:use-module (gnu packages tls) - #:use-module (gnu packages xorg)) + #:use-module (gnu packages xorg) + #:use-module ((guix licenses) + #:prefix license:)) (define-public falkon - (package - (name "falkon") - (version "22.08.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://anongit.kde.org/falkon") - (commit (string-append "v" version)))) - (file-name (string-append name "-" version "-checkout")) - (sha256 - (base32 "12zrv4csbwl9x68v99bmwdz31qp0z7f8nwvr9cgc0iy27l0ay16l")))) - (build-system qt-build-system) - (arguments - `(#:tests? #f - #:configure-flags '("-DBUILD_TESTS=FALSE"))) - (native-inputs - (list extra-cmake-modules pkg-config qttools-5)) - (inputs - (list karchive - libxcb - openssl - qtbase-5 - qtdeclarative-5 - qtquickcontrols-5 - qtwebchannel-5 - qtx11extras - xcb-util)) - (propagated-inputs - (list qtwebengine-5)) - (home-page "https://falkon.org") - (synopsis "Falkon is a KDE web browser. It uses QtWebEngine rendering engine") - (description "Falkon is a KDE web browser using QtWebEngine rendering engine, + (package + (name "falkon") + (version "22.08.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://anongit.kde.org/falkon") + (commit (string-append "v" version)))) + (file-name (string-append name "-" version "-checkout")) + (sha256 + (base32 "12zrv4csbwl9x68v99bmwdz31qp0z7f8nwvr9cgc0iy27l0ay16l")))) + (build-system qt-build-system) + (arguments + `(#:tests? #f + #:configure-flags '("-DBUILD_TESTS=FALSE"))) + (native-inputs (list extra-cmake-modules pkg-config qttools-5)) + (inputs (list karchive + libxcb + openssl + qtbase-5 + qtdeclarative-5 + qtquickcontrols-5 + qtwebchannel-5 + qtx11extras + xcb-util)) + (propagated-inputs (list qtwebengine-5)) + (home-page "https://falkon.org") + (synopsis + "Falkon is a KDE web browser. It uses QtWebEngine rendering engine") + (description + "Falkon is a KDE web browser using QtWebEngine rendering engine, previously known as QupZilla. It aims to be a lightweight web browser available through all major platforms.") - (license license:gpl3))) + (license license:gpl3))) |