gnu: Add materialdecoration.
* gnu/packages/qt.scm (materialdecoration): New variable. Signed-off-by: Leo Prikler <leo.prikler@student.tugraz.at>master
parent
79389ac37f
commit
75bdc9a782
|
@ -45,6 +45,7 @@
|
||||||
#:use-module (guix build-system gnu)
|
#:use-module (guix build-system gnu)
|
||||||
#:use-module (guix build-system trivial)
|
#:use-module (guix build-system trivial)
|
||||||
#:use-module (guix build-system python)
|
#:use-module (guix build-system python)
|
||||||
|
#:use-module (guix build-system qt)
|
||||||
#:use-module (guix packages)
|
#:use-module (guix packages)
|
||||||
#:use-module (guix deprecation)
|
#:use-module (guix deprecation)
|
||||||
#:use-module (guix utils)
|
#:use-module (guix utils)
|
||||||
|
@ -72,6 +73,7 @@
|
||||||
#:use-module (gnu packages gtk)
|
#:use-module (gnu packages gtk)
|
||||||
#:use-module (gnu packages icu4c)
|
#:use-module (gnu packages icu4c)
|
||||||
#:use-module (gnu packages image)
|
#:use-module (gnu packages image)
|
||||||
|
#:use-module (gnu packages kde-frameworks)
|
||||||
#:use-module (gnu packages libevent)
|
#:use-module (gnu packages libevent)
|
||||||
#:use-module (gnu packages linux)
|
#:use-module (gnu packages linux)
|
||||||
#:use-module (gnu packages llvm)
|
#:use-module (gnu packages llvm)
|
||||||
|
@ -103,6 +105,36 @@
|
||||||
#:use-module (gnu packages xml)
|
#:use-module (gnu packages xml)
|
||||||
#:use-module (srfi srfi-1))
|
#: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
|
(define-public grantlee
|
||||||
(package
|
(package
|
||||||
(name "grantlee")
|
(name "grantlee")
|
||||||
|
|
Reference in New Issue