guix-commits
[Top][All Lists]
Advanced

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

15/25: gnu: Add kmplot.


From: guix-commits
Subject: 15/25: gnu: Add kmplot.
Date: Sun, 31 Jan 2021 09:04:32 -0500 (EST)

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

commit dd5c460e3f9ba1ead4ef009cd1d447b8f2745461
Author: Hartmut Goebel <h.goebel@crazy-compilers.com>
AuthorDate: Mon Dec 2 12:17:58 2019 +0100

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

diff --git a/gnu/packages/education.scm b/gnu/packages/education.scm
index 14f4550..f35c7c2 100644
--- a/gnu/packages/education.scm
+++ b/gnu/packages/education.scm
@@ -1272,6 +1272,52 @@ 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 kmplot
+  (package
+    (name "kmplot")
+    (version "20.12.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "mirror://kde/stable/release-service/" version
+                           "/src/kmplot-" version ".tar.xz"))
+       (sha256
+        (base32 "0iz61jjr7z0j5bh5nqdv9nbdbiz0jhda89bxjds0n9636q42rifm"))))
+    (build-system qt-build-system)
+    (native-inputs
+     `(("extra-cmake-modules" ,extra-cmake-modules)
+       ("kdoctools" ,kdoctools)))
+    (inputs
+     `(("kcrash" ,kcrash)
+       ("kdbusaddons" ,kdbusaddons)
+       ("kdelibs4support" ,kdelibs4support)
+       ("kguiaddons" ,kguiaddons)
+       ("ki18n" ,ki18n)
+       ("kparts" ,kparts)
+       ("kwidgetsaddons" ,kwidgetsaddons)
+       ("oxygen-icons" ,oxygen-icons) ;; default icon set
+       ("qtbase" ,qtbase)
+       ("qtsvg" ,qtsvg)))
+    (home-page "https://kde.org/applications/education/org.kde.kmplot";)
+    (synopsis "Mathematical function plotter")
+    (description "KmPlot is a powerful mathematical plotter, capable of
+plotting multiple functions simultaneously and combining them into new
+functions.
+
+Cartesian, parametric, and differential functions are supported, as well as
+functions using polar coordinates.  Plots are printed with high precision at
+the correct aspect ratio.  The graphs can be colorized and the view is
+configurable, is scalable, and can be zoomed.
+
+KmPlot also provides numerical and visual features such as filling and
+calculating the area between the plot and the first axis, finding maxima and
+minima, changing function parameters dynamically, and plotting derivatives
+and integral functions.
+
+This package is part of the KDE education module.")
+    (license ;; GPL for programs, FDL for documentation
+     (list license:gpl2+ license:fdl1.2+))))
+
 (define-public ktouch
   (package
     (name "ktouch")



reply via email to

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