gnu: Add falkon.
* gnu/packages/kde-internet.scm (falkon): New variable. Signed-off-by: 宋文武 <iyzsong@member.fsf.org>master
parent
0ee45f48e7
commit
d1e4191cea
|
@ -52,7 +52,8 @@
|
||||||
#:use-module (gnu packages vnc)
|
#:use-module (gnu packages vnc)
|
||||||
#:use-module (gnu packages web)
|
#:use-module (gnu packages web)
|
||||||
#:use-module (gnu packages xiph)
|
#:use-module (gnu packages xiph)
|
||||||
#:use-module (gnu packages xml))
|
#:use-module (gnu packages xml)
|
||||||
|
#:use-module (gnu packages xorg))
|
||||||
|
|
||||||
(define-public choqok
|
(define-public choqok
|
||||||
(package
|
(package
|
||||||
|
@ -114,6 +115,48 @@ Other notable features include:
|
||||||
@end itemize")
|
@end itemize")
|
||||||
(license license:gpl3+)))
|
(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
|
(define-public kget
|
||||||
(package
|
(package
|
||||||
(name "kget")
|
(name "kget")
|
||||||
|
|
Reference in New Issue