adding qt5ct-kde
This is a patch to qt5ct in order to use qml like things
This commit is contained in:
parent
8094866de6
commit
e4dc8d89a7
24
guix/pkgs/qt5ct.scm
Normal file
24
guix/pkgs/qt5ct.scm
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
|
||||||
|
|
||||||
|
(define-module (pkgs qt5ct)
|
||||||
|
#: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 (guix gexp))
|
||||||
|
|
||||||
|
(define-public qt5ct-kde
|
||||||
|
(package
|
||||||
|
(inherit qt5ct)
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri
|
||||||
|
(string-append "mirror://sourceforge/qt5ct/qt5ct-" version ".tar.bz2"))
|
||||||
|
(patches (search-patches "qt5ct-kde.patch"))
|
||||||
|
(sha256
|
||||||
|
(base32 "14742vs32m98nbfb5mad0i8ciff5f45gfcb5v03p4hh2dvhhqgfn"))))
|
||||||
|
))
|
||||||
|
|
||||||
|
qt5ct-kde
|
Loading…
Reference in a new issue