diff options
author | Zheng Junjie <zhengjunjie@iscas.ac.cn> | 2024-07-10 00:14:31 +0800 |
---|---|---|
committer | Zheng Junjie <zhengjunjie@iscas.ac.cn> | 2024-07-18 10:45:34 +0800 |
commit | 7a889090a48feca61629f9b99b2f57390c3825b4 (patch) | |
tree | a0ab3bcfd507741744a8fcf53f65286fa30060f0 /gnu | |
parent | 1142a0a837f276fc6f0fa067e90b2394d351c0bd (diff) | |
download | guix-7a889090a48feca61629f9b99b2f57390c3825b4.tar.gz guix-7a889090a48feca61629f9b99b2f57390c3825b4.zip |
gnu: Add kqtquickcharts.
* gnu/packages/education.scm (kqtquickcharts): New variable.
Change-Id: Iac98651d6e692fbf3c2ac0d31e83f3b19a2e614d
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/education.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/education.scm b/gnu/packages/education.scm index c5055fc9d7..a8f1859dc5 100644 --- a/gnu/packages/education.scm +++ b/gnu/packages/education.scm @@ -678,6 +678,27 @@ hours.") language and very flexible regarding to new or unknown keyboard layouts.") (license license:gpl3+))) +(define-public kqtquickcharts + (package + (name "kqtquickcharts") + (version "24.05.2") + (source (origin + (method url-fetch) + (uri (string-append "mirror://kde/stable/release-service/" + version "/src/kqtquickcharts-" version ".tar.xz")) + (sha256 + (base32 + "0b0nqg77lzfw6accfsr4yg9fgq78skryd1qwkqf1zijhq4h65708")))) + (build-system qt-build-system) + (native-inputs (list extra-cmake-modules)) + (inputs (list qtdeclarative-5)) + (home-page "https://invent.kde.org/libraries/kqtquickcharts") + (synopsis "QtQuick plugin to render beautiful and interactive charts") + (description + "This package provides a QtQuick plugin to render beautiful and interactive +charts.") + (license (list license:lgpl2.0+ license:gpl2+)))) + (define-public ktouch (package (name "ktouch") |