diff options
| author | Carlos Durán Domínguez <wurt@wurt.eu> | 2026-02-23 17:55:46 +0100 |
|---|---|---|
| committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2026-03-01 17:40:32 +0100 |
| commit | a7aad9da6f4a42a0684eb7b2480484c9ab87c4e0 (patch) | |
| tree | 41a6fc4666abe0975d59ae45cd3fd7cbd7ef2ee2 /gnu | |
| parent | 9988f6dcdf0d1428518c2ac9a88a981453c9b54c (diff) | |
gnu: Add qlementine.
* gnu/packages/qt.scm (qlementine): New variable.
Change-Id: I174638d9663cbfbe984e45b7f32df68b757509b7
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/qt.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm index a8d22f42881..e554cd0863b 100644 --- a/gnu/packages/qt.scm +++ b/gnu/packages/qt.scm @@ -187,6 +187,29 @@ of C++20 coroutines in connection with certain asynchronous Qt actions.") (replace "qtwebsockets" qtwebsockets) (append libxkbcommon))))) +(define-public qlementine + (package + (name "qlementine") + (version "1.4.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/oclero/qlementine") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1cjch1jhlb67hcfgzf2vv5f9zlawr8ngl0gc43scplxdfpv3wda0")))) + (build-system cmake-build-system) + (arguments + (list + #:tests? #f)) ;no tests + (inputs (list qtbase qtsvg)) + (synopsis "Modern QStyle for desktop Qt6 applications") + (description "Qlementine is a modern QStyle for desktop Qt6 applications.") + (home-page "https://github.com/oclero/qlementine") + (license license:expat))) + (define-public qmdnsengine ;; Used as submodule in https://github.com/moonlight-stream/moonlight-qt (let ((commit "b7a5a9f225d5e14b39f9fd1f905c4f505cf2ee99") |
