guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

05/25: gnu: Add kalgebra.


From: guix-commits
Subject: 05/25: gnu: Add kalgebra.
Date: Sun, 31 Jan 2021 09:04:29 -0500 (EST)

htgoebel pushed a commit to branch wip-kde-education
in repository guix.

commit a37f8108dd926b335ed46a3472a3413c0578b2c9
Author: Hartmut Goebel <h.goebel@crazy-compilers.com>
AuthorDate: Mon Dec 2 11:42:20 2019 +0100

    gnu: Add kalgebra.
    
    * gnu/packages/education.scm (kalgebra): New variable.
---
 gnu/packages/education.scm | 42 ++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 42 insertions(+)

diff --git a/gnu/packages/education.scm b/gnu/packages/education.scm
index ae403bd..80d17b2 100644
--- a/gnu/packages/education.scm
+++ b/gnu/packages/education.scm
@@ -41,6 +41,7 @@
   #:use-module (gnu packages game-development)
   #:use-module (gnu packages gettext)
   #:use-module (gnu packages ghostscript)
+  #:use-module (gnu packages gl)
   #:use-module (gnu packages glib)
   #:use-module (gnu packages gnome)
   #:use-module (gnu packages golang)
@@ -825,6 +826,47 @@ For extremely difficult timetables, it may take a longer 
time, a matter of
 hours.")
     (license license:agpl3+)))
 
+(define-public kalgebra
+  (package
+    (name "kalgebra")
+    (version "20.12.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "mirror://kde/stable/release-service/" version
+                           "/src/kalgebra-" version ".tar.xz"))
+      (sha256
+       (base32 "10y9zygpik418y5781xmy5xysvf3xa97sbzdbch8lrvxwprbmkzm"))))
+    (build-system qt-build-system)
+    (native-inputs
+     `(("extra-cmake-modules" ,extra-cmake-modules)
+       ("kdoctools" ,kdoctools)))
+    (inputs
+     `(("analitza" ,analitza)
+       ("kconfigwidgets" ,kconfigwidgets)
+       ("ki18n" ,ki18n)
+       ("kio" ,kio)
+       ("kwidgetsaddons" ,kwidgetsaddons)
+       ("mesa" ,mesa)
+       ("ncurses" ,ncurses)
+       ("oxygen-icons" ,oxygen-icons) ;; default icon set
+       ("qtbase" ,qtbase)
+       ("qtdeclarative" ,qtdeclarative)
+       ("qtsvg" ,qtsvg)
+       ("qtwebengine" ,qtwebengine)
+       ("readline" ,readline)))
+    (home-page "https://kde.org/applications/education/org.kde.kalgebra";)
+    (synopsis "Algebraic graphing calculator")
+    (description "KAlgebra is an application that can replace your graphing
+calculator.  It has numerical, logical, symbolic, and analysis features that
+let you calculate mathematical expressions on the console and graphically plot
+the results in 2D or 3D.  KAlgebra is rooted in the Mathematical Markup
+Language (MathML); however, one does not need to know MathML to use KAlgebra.
+
+This package is part of the KDE education module.")
+    (license ;; GPL for programs, LGPL for libraries, FDL for documentation
+     (list license:gpl2+ license:lgpl2.0+ license:fdl1.2+))))
+
 (define-public klavaro
   (package
     (name "klavaro")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]