mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add falkon.
* gnu/packages/kde-internet.scm (falkon): New variable. Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
This commit is contained in:
parent
0ee45f48e7
commit
d1e4191cea
1 changed files with 44 additions and 1 deletions
|
@ -52,7 +52,8 @@ (define-module (gnu packages kde-internet)
|
|||
#:use-module (gnu packages vnc)
|
||||
#:use-module (gnu packages web)
|
||||
#:use-module (gnu packages xiph)
|
||||
#:use-module (gnu packages xml))
|
||||
#:use-module (gnu packages xml)
|
||||
#:use-module (gnu packages xorg))
|
||||
|
||||
(define-public choqok
|
||||
(package
|
||||
|
@ -114,6 +115,48 @@ (define-public choqok
|
|||
@end itemize")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public falkon
|
||||
(package
|
||||
(name "falkon")
|
||||
(version "23.04.3")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://kde/stable/release-service/" version
|
||||
"/src/falkon-" version ".tar.xz"))
|
||||
(sha256
|
||||
(base32
|
||||
"11r1iwimdzabfah68gsvw6xi67cj539anqa6s1rg33agsi5y56d3"))))
|
||||
(build-system qt-build-system)
|
||||
(arguments
|
||||
(list #:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(replace 'check
|
||||
(lambda* (#:key tests? #:allow-other-keys)
|
||||
(when tests?
|
||||
(invoke "ctest" "-E"
|
||||
"(locationbartest|qmltabsapitest)")))))))
|
||||
(native-inputs
|
||||
(list extra-cmake-modules pkg-config qttools-5))
|
||||
(inputs
|
||||
(list karchive
|
||||
ki18n
|
||||
kio
|
||||
kwallet
|
||||
openssl
|
||||
purpose
|
||||
qtquickcontrols-5
|
||||
qtsvg-5
|
||||
qtwebengine-5
|
||||
qtx11extras
|
||||
qtwayland-5
|
||||
xcb-util))
|
||||
(home-page "https://www.falkon.org/")
|
||||
(synopsis "Qt-based web browser for KDE")
|
||||
(description
|
||||
"Falkon is is a Qt-based web browser for KDE.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public kget
|
||||
(package
|
||||
(name "kget")
|
||||
|
|
Loading…
Reference in a new issue