me
/
guix
Archived
1
0
Fork 0

gnu: Add qwindowkit.

* gnu/packages/qt.scm (qwindowkit): New variable.

Change-Id: Ie1a05de4db23f353b47bc32a4ea66c6e3612415a
master
Maxim Cournoyer 2024-03-26 17:47:28 -04:00
parent 713ac1fe47
commit 95757e062f
No known key found for this signature in database
GPG Key ID: 1260E46482E63562
1 changed files with 26 additions and 0 deletions

View File

@ -4420,6 +4420,32 @@ that can be only started once per user.
;; redistribution under GPL3 or LGPL2.1
license:gpl3 license:lgpl2.1)))))
(define-public qwindowkit
(package
(name "qwindowkit")
(version "1.0.1")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/stdware/qwindowkit")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32
"18yqmfnncah60hpyy7r9pvyhcda0n407wvp5hwinjzicj2ja83v7"))))
(build-system cmake-build-system)
(arguments
(list #:tests? #f ;no test suite
#:configure-flags
#~(list "-DQWINDOWKIT_BUILD_STATIC=OFF"))) ;build a shared library
(native-inputs (list qmsetup))
(inputs (list qtbase qtdeclarative))
(home-page "https://github.com/stdware/qwindowkit")
(synopsis "Frameless window framework for Qt")
(description "QWindowKit is a cross-platform window customization
framework for Qt Widgets and Qt Quick.")
(license license:asl2.0)))
(define-public qwt
(package
(name "qwt")