blob: 2971432545a8d40fdebc3410ad32e49d71774a0b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
(define-module (freya packages qt)
#:use-module (guix packages)
#:use-module (guix download)
#:use-module (guix build-system gnu)
#:use-module ((guix licenses) #:prefix license:)
#:use-module (guix utils)
#:use-module (gnu packages node))
;(define-public qt5-styleplugins
; (let ((commit "7bd6205398b2d89b3ac083b2f6f00b197f40057a")
; (revision "1"))
; (package
; (name "qt5-styleplugins")
; (version (git-version "5.0.0" revision commit))
; (source (origin
; (method git-fetch)
; (uri (git-reference
; (url "https://github.com/qt/qtstyleplugins")
; (commit commit)))
; (patches (list
; (local-file "patches/qt5-styleplugins-fix-gtk2-background.patch")
; (local-file "patches/qt5-styleplugins-fixbuild-against-QT-5.15.patch")))
; (file-name (git-file-name name version))
; (sha256
; (base32
; "0gy0g0kxb3q1wjqrypnvmrxcb4ld3advikchygpwpfp4s9v0mmvd"))))
; (build-system meson-build-system)
|