M gnu/local.mk => gnu/local.mk +1 -0
@@ 404,6 404,7 @@ GNU_SYSTEM_MODULES = \
%D%/packages/jupyter.scm \
%D%/packages/kawa.scm \
%D%/packages/kde.scm \
+ %D%/packages/kde-education.scm \
%D%/packages/kde-frameworks.scm \
%D%/packages/kde-games.scm \
%D%/packages/kde-graphics.scm \
A gnu/packages/kde-education.scm => gnu/packages/kde-education.scm +54 -0
@@ 0,0 1,54 @@
+;;; GNU Guix --- Functional package management for GNU
+;;; Copyright © 2025 Sughosha <sughosha@disroot.org>
+;;;
+;;; This file is part of GNU Guix.
+;;;
+;;; GNU Guix is free software; you can redistribute it and/or modify it
+;;; under the terms of the GNU General Public License as published by
+;;; the Free Software Foundation; either version 3 of the License, or (at
+;;; your option) any later version.
+;;;
+;;; GNU Guix is distributed in the hope that it will be useful, but
+;;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+;;; GNU General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU General Public License
+;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
+
+(define-module (gnu packages kde-education)
+ #:use-module (guix packages)
+ #:use-module (guix download)
+ #:use-module (guix git-download)
+ #:use-module (guix build-system qt)
+ #:use-module (guix gexp)
+ #:use-module (guix utils)
+ #:use-module ((guix licenses) #:prefix license:)
+ #:use-module (gnu packages)
+ #:use-module (gnu packages algebra)
+ #:use-module (gnu packages kde-frameworks)
+ #:use-module (gnu packages qt))
+
+(define-public analitza
+ (package
+ (name "analitza")
+ (version "24.12.3")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://invent.kde.org/education/analitza")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "029n48pshcnyidnzv2ikyhamxg6j0ndbjavwrxdc29hrm00dmw8m"))))
+ (native-inputs (list extra-cmake-modules qttools))
+ (inputs (list eigen qtbase qtdeclarative qtsvg))
+ (build-system qt-build-system)
+ (home-page "https://invent.kde.org/education/analitza")
+ (synopsis "Library to add mathematical features to a program")
+ (description "Analitza is a library to work with mathematical objects.
+It adds mathematical features to your program, such as symbolic computations
+and some numerical methods; for instance the library can parse mathematical
+expressions and let you evaluate and draw them.")
+ (license license:gpl2+)))
M gnu/packages/kde.scm => gnu/packages/kde.scm +1 -24
@@ 72,6 72,7 @@
#:use-module (gnu packages gps)
#:use-module (gnu packages graphics)
#:use-module (gnu packages image)
+ #:use-module (gnu packages kde-education)
#:use-module (gnu packages kde-frameworks)
#:use-module (gnu packages kde-graphics)
#:use-module (gnu packages kde-pim)
@@ 143,30 144,6 @@ This package contains GUI widgets for baloo.")
(description "This package provides a non-blocking Qt database framework.")
(license license:lgpl2.1+)))
-(define-public analitza
- (package
- (name "analitza")
- (version "24.12.3")
- (source
- (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://invent.kde.org/education/analitza")
- (commit (string-append "v" version))))
- (file-name (git-file-name name version))
- (sha256
- (base32 "029n48pshcnyidnzv2ikyhamxg6j0ndbjavwrxdc29hrm00dmw8m"))))
- (native-inputs (list extra-cmake-modules qttools))
- (inputs (list eigen qtbase qtdeclarative qtsvg))
- (build-system qt-build-system)
- (home-page "https://invent.kde.org/education/analitza")
- (synopsis "Library to add mathematical features to a program")
- (description "Analitza is a library to work with mathematical objects.
-It adds mathematical features to your program, such as symbolic computations
-and some numerical methods; for instance the library can parse mathematical
-expressions and let you evaluate and draw them.")
- (license license:gpl2+)))
-
(define-public kalgebra
(package
(name "kalgebra")