diff options
| author | Carlos Durán Domínguez <wurt@wurt.eu> | 2026-02-23 23:34:18 +0100 |
|---|---|---|
| committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2026-03-01 17:40:32 +0100 |
| commit | 8fff26cd610d4310aa80af0be6c065e3f370a3d9 (patch) | |
| tree | 88ac1c429c438a70c8c75f13d65b25ee92a770c2 /gnu | |
| parent | 83928b6953099c8d7acc142e9a70b50205a6d849 (diff) | |
gnu: Add qlementine-icons.
* gnu/packages/qt.scm (qlementine-icons): New variable.
Change-Id: I8873c1c17c430f62a1573ba25a9c8534bd4512fb
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/qt.scm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm index e554cd0863b..953b9205a7a 100644 --- a/gnu/packages/qt.scm +++ b/gnu/packages/qt.scm @@ -210,6 +210,32 @@ of C++20 coroutines in connection with certain asynchronous Qt actions.") (home-page "https://github.com/oclero/qlementine") (license license:expat))) +(define-public qlementine-icons + (package + (name "qlementine-icons") + (version "1.14.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/oclero/qlementine-icons") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "187h8yvykah7xangbds9a0860p9p2fyf8v54y0ga2a3ygc7y5mfv")))) + (build-system cmake-build-system) + (arguments + (list + #:tests? #f)) ;no tests + (inputs (list qtbase qtsvg)) + (synopsis "Modern icon set for desktop Qt applications") + (description + "Qlementine Icons is a modern, vector, elegant, free, and open-source icon +library designed for use with a C++ library that enhances the appearance of +your QtWidgets application.") + (home-page "https://oclero.github.io/qlementine-icons/") + (license license:expat))) + (define-public qmdnsengine ;; Used as submodule in https://github.com/moonlight-stream/moonlight-qt (let ((commit "b7a5a9f225d5e14b39f9fd1f905c4f505cf2ee99") |
