guix-commits
[Top][All Lists]
Advanced

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

18/25: gnu: Add kwordquiz.


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

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

commit 36ea564d508a318a59be91a5223168da1495cff9
Author: Hartmut Goebel <h.goebel@crazy-compilers.com>
AuthorDate: Mon Dec 2 12:29:53 2019 +0100

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

diff --git a/gnu/packages/education.scm b/gnu/packages/education.scm
index e027073..3146fc4 100644
--- a/gnu/packages/education.scm
+++ b/gnu/packages/education.scm
@@ -1768,6 +1768,55 @@ This package is part of the KDE education module.")
     (license ;; GPL for programs, FDL for documentation
      (list license:gpl2+ license:fdl1.2+))))
 
+(define-public kwordquiz
+  (package
+    (name "kwordquiz")
+    (version "20.12.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "mirror://kde/stable/release-service/" version
+                           "/src/kwordquiz-" version ".tar.xz"))
+       (sha256
+        (base32 "1dvbvfwaja4n2v9binj8pbdjizqz4zp49fiq8b4k5jxygcsgnx2p"))))
+    (build-system qt-build-system)
+    (native-inputs
+     `(("extra-cmake-modules" ,extra-cmake-modules)
+       ("kdoctools" ,kdoctools)))
+    (inputs
+     `(("kconfig" ,kconfig)
+       ("kconfigwidgets" ,kconfigwidgets)
+       ("kcrash" ,kcrash)
+       ("kdelibs4support" ,kdelibs4support)
+       ("kguiaddons" ,kguiaddons)
+       ("ki18n" ,ki18n)
+       ("kiconthemes" ,kiconthemes)
+       ("kitemviews" ,kitemviews)
+       ("knewstuff" ,knewstuff)
+       ("knotifications" ,knotifications)
+       ("knotifyconfig" ,knotifyconfig)
+       ("kwindowsystem" ,kwindowsystem)
+       ("kxmlgui" ,kxmlgui)
+       ("libkeduvocdocument" ,libkeduvocdocument)
+       ("phonon" ,phonon)
+       ("oxygen-icons" ,oxygen-icons) ;; default icon set
+       ("qtbase" ,qtbase)))
+    (home-page "https://kde.org/applications/education/org.kde.kwordquiz";)
+    (synopsis "General purpose flash card trainer")
+    (description "KWordQuiz is a general purpose flash card program.  It can be
+used for vocabulary learning and many other subjects.  It provides an editor
+and five different flashcard quiz modes.
+
+KWordQuiz can open vocabulary data in various formats, including the kvtml
+format used by KDE programs such as Parley, the WQL format used by WordQuiz
+for Windows, the xml.gz format used by Pauker, and CSV text.
+
+If you need more advanced language learning features, please try Parley.
+
+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 libkeduvocdocument
   (package
     (name "libkeduvocdocument")



reply via email to

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