;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2025 Sughosha ;;; ;;; 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 . (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 "25.08.1") (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 "0q9jfkvs1xyxl7fmw0jzh7fh7rd278825i5w61cikqpwnjmp5jzf")))) (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+)))