diff options
author | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2019-12-02 11:19:49 +0100 |
---|---|---|
committer | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2021-01-30 23:21:31 +0100 |
commit | f6904d1f81016de858169f3604b288b76a9baf70 (patch) | |
tree | f412a1bb10196de210cff9e662693dff3730edd9 /gnu | |
parent | 8b55544212a90b0276df49596a3d373e5c2e8f5c (diff) | |
download | guix-f6904d1f81016de858169f3604b288b76a9baf70.tar.gz |
gnu: Add artikulate.
* gnu/packages/education.scm (artikulate): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/education.scm | 37 |
1 files changed, 36 insertions, 1 deletions
diff --git a/gnu/packages/education.scm b/gnu/packages/education.scm index 07862291a7..360940d87c 100644 --- a/gnu/packages/education.scm +++ b/gnu/packages/education.scm @@ -1,7 +1,7 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2016 Danny Milosavljevic <dannym@scratchpost.org> ;;; Copyright © 2016, 2017 Ricardo Wurmus <rekado@elephly.net> -;;; Copyright © 2016 Hartmut Goebel <h.goebel@crazy-compilers.com> +;;; Copyright © 2016, 2017, 2019, 2020, 2021 Hartmut Goebel <h.goebel@crazy-compilers.com> ;;; Copyright © 2017, 2018, 2019, 2020 Efraim Flashner <efraim@flashner.co.il> ;;; Copyright © 2018, 2019, 2020 Tobias Geerinckx-Rice <me@tobias.gr> ;;; Copyright © 2018, 2019, 2020 Nicolas Goaziou <mail@nicolasgoaziou.fr> @@ -77,6 +77,41 @@ #:use-module (guix build-system trivial) #:use-module (srfi srfi-1)) +(define-public artikulate + (package + (name "artikulate") + (version "20.12.1") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://kde/stable/release-service/" version + "/src/artikulate-" version ".tar.xz")) + (sha256 + (base32 "1cvpya408r521p9398mk0xn8pb6awqm74qcjy2r0ylx0l6bkv3ca")))) + (build-system qt-build-system) + (native-inputs + `(("extra-cmake-modules" ,extra-cmake-modules) + ("kdoctools" ,kdoctools))) + (inputs + `(("karchive" ,karchive) + ("kconfig" ,kconfig) + ("kcrash" ,kcrash) + ("ki18n" ,ki18n) + ("kirigami" ,kirigami) + ("knewstuff" ,knewstuff) + ("kxmlgui" ,kxmlgui) + ("oxygen-icons" ,oxygen-icons) ;; default icon set + ("qtbase" ,qtbase) + ("qtdeclarative" ,qtdeclarative) + ("qtmultimedia" ,qtmultimedia) + ("qtxmlpatterns" ,qtxmlpatterns))) + (home-page "https://kde.org/applications/education/org.kde.artikulate") + (synopsis "Learning software to improve pronunciation skills") + (description "Artikulate is a learning software that helps improving +pronunciation skills by listening to native speakers.") + (license ;; GPL for programs, LGPL for libraries, FDL for documentation + (list license:gpl2+ license:lgpl2.0+ license:fdl1.2+)))) + (define-public gcompris (package (name "gcompris") |