gnu: materialdecoration: Update to 1.1.0-9.
* gnu/packages/qt.scm (materialdecoration): Update to 1.1.0-9. [source]: Add snippet to remove bundled sources. [arguments]<#:configure-flags>: Add -DCMAKE_CXX_FLAGS. [inputs]: Add libxkbcommon. Signed-off-by: Leo Prikler <leo.prikler@student.tugraz.at>master
parent
8bd0632a02
commit
3775eb7fc4
|
@ -161,34 +161,52 @@ window managers, that don't provide Qt integration by themselves.")
|
||||||
(license license:bsd-2)))
|
(license license:bsd-2)))
|
||||||
|
|
||||||
(define-public materialdecoration
|
(define-public materialdecoration
|
||||||
(package
|
(let ((commit "6a5de23f2e5162fbee39d16f938473ff970a2ec0")
|
||||||
(name "materialdecoration")
|
(revision "9"))
|
||||||
(version "1.1.0")
|
(package
|
||||||
(source
|
(name "materialdecoration")
|
||||||
(origin
|
(version
|
||||||
(method git-fetch)
|
(git-version "1.1.0" revision commit))
|
||||||
(uri
|
(source
|
||||||
(git-reference
|
(origin
|
||||||
(url "https://github.com/lirios/materialdecoration.git")
|
(method git-fetch)
|
||||||
(commit "2079487116c6c794af3a15452342a69293039b46")))
|
(uri
|
||||||
(file-name
|
(git-reference
|
||||||
(git-file-name name version))
|
(url "https://github.com/lirios/materialdecoration.git")
|
||||||
(sha256
|
(commit commit)))
|
||||||
(base32 "1pczmxbmnsgj9s1g6ap55qq2q4ccibcnhsw9b6cl5rzgc48izy06"))))
|
(file-name
|
||||||
(build-system qt-build-system)
|
(git-file-name name version))
|
||||||
(native-inputs
|
(sha256
|
||||||
`(("cmake-shared" ,cmake-shared)
|
(base32 "1zdrcb39fhhmn76w8anv1dnspz26pdl6izmj1mlm02aza4y8ffp4"))
|
||||||
("extra-cmake-modules" ,extra-cmake-modules)
|
(modules '((guix build utils)
|
||||||
("pkg-config" ,pkg-config)))
|
(ice-9 ftw)
|
||||||
(inputs
|
(srfi srfi-1)))
|
||||||
`(("qtbase" ,qtbase)
|
(snippet
|
||||||
("qtwayland" ,qtwayland)
|
`(begin
|
||||||
("wayland" ,wayland)))
|
(delete-file-recursively "cmake/3rdparty")))))
|
||||||
(synopsis "Material Decoration for Qt")
|
(build-system qt-build-system)
|
||||||
(description "MaterialDecoration is a client-side decoration for Qt
|
(arguments
|
||||||
|
`(#:tests? #f ; No target
|
||||||
|
#:configure-flags
|
||||||
|
(list
|
||||||
|
(string-append "-DCMAKE_CXX_FLAGS=-I"
|
||||||
|
(assoc-ref %build-inputs "qtbase")
|
||||||
|
"/include/qt5/QtXkbCommonSupport/"
|
||||||
|
,(package-version qtbase)))))
|
||||||
|
(native-inputs
|
||||||
|
`(("cmake-shared" ,cmake-shared)
|
||||||
|
("extra-cmake-modules" ,extra-cmake-modules)
|
||||||
|
("pkg-config" ,pkg-config)))
|
||||||
|
(inputs
|
||||||
|
`(("qtbase" ,qtbase)
|
||||||
|
("qtwayland" ,qtwayland)
|
||||||
|
("wayland" ,wayland)
|
||||||
|
("xkbcommon" ,libxkbcommon)))
|
||||||
|
(synopsis "Material Decoration for Qt")
|
||||||
|
(description "MaterialDecoration is a client-side decoration for Qt
|
||||||
applications on Wayland.")
|
applications on Wayland.")
|
||||||
(home-page "https://github.com/lirios/materialdecoration")
|
(home-page "https://github.com/lirios/materialdecoration")
|
||||||
(license license:lgpl3+)))
|
(license license:lgpl3+))))
|
||||||
|
|
||||||
(define-public grantlee
|
(define-public grantlee
|
||||||
(package
|
(package
|
||||||
|
|
Reference in New Issue