From 3c2732b94c16e411acb46b44a49f216dd1218394 Mon Sep 17 00:00:00 2001 From: Hartmut Goebel Date: Mon, 2 Dec 2019 11:59:56 +0100 Subject: gnu: Add kig. * gnu/packages/education.scm (kig): New variable. --- gnu/packages/education.scm | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) (limited to 'gnu') diff --git a/gnu/packages/education.scm b/gnu/packages/education.scm index 4aa48037ce..2d6404cd8a 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) @@ -1097,6 +1098,48 @@ are hidden, and you must guess the word by trying one letter after another. Each time you guess a wrong letter, part of a picture of a hangman is drawn. You must guess the word before being hanged! You have 10 tries. +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+)))) -- cgit 1.4.1