mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 20:49:29 -05:00
gnu: Add materialdecoration.
* gnu/packages/qt.scm (materialdecoration): New variable. Signed-off-by: Leo Prikler <leo.prikler@student.tugraz.at>
This commit is contained in:
parent
79389ac37f
commit
75bdc9a782
1 changed files with 32 additions and 0 deletions
|
@ -45,6 +45,7 @@ (define-module (gnu packages qt)
|
|||
#:use-module (guix build-system gnu)
|
||||
#:use-module (guix build-system trivial)
|
||||
#:use-module (guix build-system python)
|
||||
#:use-module (guix build-system qt)
|
||||
#:use-module (guix packages)
|
||||
#:use-module (guix deprecation)
|
||||
#:use-module (guix utils)
|
||||
|
@ -72,6 +73,7 @@ (define-module (gnu packages qt)
|
|||
#:use-module (gnu packages gtk)
|
||||
#:use-module (gnu packages icu4c)
|
||||
#:use-module (gnu packages image)
|
||||
#:use-module (gnu packages kde-frameworks)
|
||||
#:use-module (gnu packages libevent)
|
||||
#:use-module (gnu packages linux)
|
||||
#:use-module (gnu packages llvm)
|
||||
|
@ -103,6 +105,36 @@ (define-module (gnu packages qt)
|
|||
#:use-module (gnu packages xml)
|
||||
#:use-module (srfi srfi-1))
|
||||
|
||||
(define-public materialdecoration
|
||||
(package
|
||||
(name "materialdecoration")
|
||||
(version "1.1.0")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri
|
||||
(git-reference
|
||||
(url "https://github.com/lirios/materialdecoration.git")
|
||||
(commit "2079487116c6c794af3a15452342a69293039b46")))
|
||||
(file-name
|
||||
(git-file-name name version))
|
||||
(sha256
|
||||
(base32 "1pczmxbmnsgj9s1g6ap55qq2q4ccibcnhsw9b6cl5rzgc48izy06"))))
|
||||
(build-system qt-build-system)
|
||||
(native-inputs
|
||||
`(("cmake-shared" ,cmake-shared)
|
||||
("extra-cmake-modules" ,extra-cmake-modules)
|
||||
("pkg-config" ,pkg-config)))
|
||||
(inputs
|
||||
`(("qtbase" ,qtbase)
|
||||
("qtwayland" ,qtwayland)
|
||||
("wayland" ,wayland)))
|
||||
(synopsis "Material Decoration for Qt")
|
||||
(description "MaterialDecoration is a client-side decoration for Qt
|
||||
applications on Wayland.")
|
||||
(home-page "https://github.com/lirios/materialdecoration")
|
||||
(license license:lgpl3+)))
|
||||
|
||||
(define-public grantlee
|
||||
(package
|
||||
(name "grantlee")
|
||||
|
|
Loading…
Reference in a new issue