dotfiles/guix/pkgs/qt5ct.scm
Chris Cochrun 20c4af554c a working build of qt5ct-kde
This patch comes from the AUR to add the ability for kde apps to work
better under qt5ct. Especially with apps using QML.
2023-07-13 14:47:58 -05:00

35 lines
939 B
Scheme

(define-module (pkgs qt5ct)
#:use-module (guile)
#:use-module (guix packages)
#:use-module (guix download)
#:use-module (guix build-system qt)
#:use-module (gnu packages)
#:use-module (gnu packages qt)
#:use-module (gnu packages kde-frameworks)
#:use-module (guix gexp)
#:use-module (srfi srfi-1))
(define-public qt5ct-kde
(package
(inherit qt5ct)
(version "1.7")
(source
(origin
(method url-fetch)
(uri
(string-append "mirror://sourceforge/qt5ct/qt5ct-" version ".tar.bz2"))
(patches '("./patches/qt5ct-kde.patch"))
(sha256
(base32 "1mxqallxw0b5p4kjfnvv9ndzws54si4a3xlz3gnxyl2cdrm58n7d"))))
(inputs (modify-inputs
(package-inputs qt5ct)
(append qtquickcontrols2-5
qtdeclarative-5
plasma-framework
kconfigwidgets
kiconthemes)))))
qt5ct-kde