guix-commits
[Top][All Lists]
Advanced

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

22/25: gnu: Add parley.


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

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

commit 0ffd1a8455aba3a9528ab7e29b8aa2b5eb32563e
Author: Hartmut Goebel <h.goebel@crazy-compilers.com>
AuthorDate: Mon Dec 23 20:27:14 2019 +0100

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

diff --git a/gnu/packages/education.scm b/gnu/packages/education.scm
index 8b1be2e..0b9ad5f 100644
--- a/gnu/packages/education.scm
+++ b/gnu/packages/education.scm
@@ -2005,3 +2005,66 @@ This package is part of the KDE education module.")
 set of ear training exercises regarding intervals, chords, scales and more.")
     (license ;; GPL for programs, LGPL for libraries, FDL for documentation
      (list license:gpl2+ license:fdl1.2+))))
+
+(define-public parley
+  (package
+    (name "parley")
+    (version "20.12.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "mirror://kde/stable/release-service/" version
+                           "/src/parley-" version ".tar.xz"))
+       (sha256
+        (base32 "00xc1dv3fj783brfqh3ggvrwv26m840k35vrx2izzq5lqx2g1p5a"))))
+    (build-system qt-build-system)
+    (native-inputs
+     `(("extra-cmake-modules" ,extra-cmake-modules)
+       ("kdoctools" ,kdoctools)))
+    (inputs
+     `(("kcmutils" ,kcmutils)
+       ("kconfig" ,kconfig)
+       ("kcoreaddons" ,kcoreaddons)
+       ("kcrash" ,kcrash)
+       ("ki18n" ,ki18n)
+       ("kiconthemes" ,kiconthemes)
+       ("kparts" ,kparts)
+       ("kio" ,kio)
+       ("knewstuff" ,knewstuff)
+       ("knotifications" ,knotifications)
+       ("kross" ,kross)
+       ("kxmlgui" ,kxmlgui)
+       ("libkeduvocdocument" ,libkeduvocdocument)
+       ("libxml2" ,libxml2)
+       ("libxslt" ,libxslt)
+       ("oxygen-icons" ,oxygen-icons) ;; default icon set
+       ("qtbase" ,qtbase)
+       ("qtdeclarative" ,qtdeclarative)
+       ("qtmultimedia" ,qtmultimedia)
+       ("qtscript" ,qtscript)
+       ("qtsvg" ,qtsvg)
+       ("qtwebchannel" ,qtwebchannel)
+       ("qtwebengine", qtwebengine)
+       ("sonnet" ,sonnet)))
+    (home-page "https://kde.org/applications/education/org.kde.parley";)
+    (synopsis "Vocabulary trainer")
+    (description "Parley is a vocabulary trainer.  It helps you to memorize
+your vocabulary, for example when you are trying to learn a foreign language.
+It supports many language specific features, but can be used for other
+learning tasks as well.  It uses the spaced repetition learning method, which
+makes learning optimal.  Vocabulary collections can be downloaded by \"Get Hot
+New Stuff\" or created with the built-in editor.
+
+Training Modes:
+@itemize
+@item Flash Cards
+@item Mixed Letters (order the letters of a word)
+@item Multiple Choice
+@item Written
+@item Language specific trainings: article, comparison forms, conjugations,
+      synonymes/antonyms/paraphrases
+@end itemize
+
+This package is part of the KDE education module.")
+    (license ;; GPL for programs, FDL for documentation
+     (list license:gpl2+ license:fdl1.2+))))



reply via email to

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