guix-commits
[Top][All Lists]
Advanced

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

12/25: gnu: Add kig.


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

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

commit 3c2732b94c16e411acb46b44a49f216dd1218394
Author: Hartmut Goebel <h.goebel@crazy-compilers.com>
AuthorDate: Mon Dec 2 11:59:56 2019 +0100

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

diff --git a/gnu/packages/education.scm b/gnu/packages/education.scm
index 4aa4803..2d6404c 100644
--- a/gnu/packages/education.scm
+++ b/gnu/packages/education.scm
@@ -32,6 +32,7 @@
   #:use-module (gnu packages audio)
   #:use-module (gnu packages base)
   #:use-module (gnu packages bash)
+  #:use-module (gnu packages boost)
   #:use-module (gnu packages chemistry)
   #:use-module (gnu packages compression)
   #:use-module (gnu packages curl)
@@ -1101,6 +1102,48 @@ This package is part of the KDE education module.")
     (license ;; GPL for programs, FDL for documentation
      (list license:gpl2+ license:fdl1.2+))))
 
+(define-public kig
+  (package
+    (name "kig")
+    (version "20.12.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "mirror://kde/stable/release-service/" version
+                           "/src/kig-" version ".tar.xz"))
+       (sha256
+        (base32 "0ns4rhk822p7jjqy9wnhkbrbais4ih1viw405rl5r5xlqn9bvsiz"))))
+    (build-system qt-build-system)
+    (native-inputs
+     `(("extra-cmake-modules" ,extra-cmake-modules)
+       ("kdoctools" ,kdoctools)))
+    (inputs
+     `(("boost" ,boost)
+       ("karchive" ,karchive)
+       ("kconfigwidgets" ,kconfigwidgets)
+       ("kcrash" ,kcrash)
+       ("ki18n" ,ki18n)
+       ("kiconthemes" ,kiconthemes)
+       ("kparts" ,kparts)
+       ("ktexteditor" ,ktexteditor)
+       ("kxmlgui" ,kxmlgui)
+       ("qtbase" ,qtbase)
+       ("qtsvg" ,qtsvg)
+       ("qtxmlpatterns" ,qtxmlpatterns)))
+    (home-page "https://kde.org/applications/education/org.kde.kig";)
+    (synopsis "Interactive geometry tool")
+    (description "Kig is an interactive mathematics software for learning and
+teaching geometry.  It allows to explore mathematical figures and concepts
+using the computer and also can serve as a drawing tool for mathematical
+figures.  Constructions can be made with points, vectors, lines, and polygons
+and all elements can be modified directly by using the mouse.  Kig helps
+teachers and students to make conjectures and to understand how to prove
+geometric theorems.
+
+This package is part of the KDE education module.")
+    (license ;; GPL for programs, FDL for documentation
+     (list license:gpl2+ license:fdl1.2+))))
+
 (define-public klavaro
   (package
     (name "klavaro")



reply via email to

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