diff options
author | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2019-12-23 20:27:14 +0100 |
---|---|---|
committer | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2021-01-31 14:27:58 +0100 |
commit | 0ffd1a8455aba3a9528ab7e29b8aa2b5eb32563e (patch) | |
tree | 111553192e3fe4c6295117298b49c630e72a59be /gnu/packages | |
parent | 87e86b66ff947181393ddd580e24e50599e0da19 (diff) | |
download | guix-0ffd1a8455aba3a9528ab7e29b8aa2b5eb32563e.tar.gz |
gnu: Add parley.
* gnu/packages/education.scm (parley): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/education.scm | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/gnu/packages/education.scm b/gnu/packages/education.scm index 8b1be2e481..0b9ad5f4cb 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+)))) |