From 6b6e05cd23fba4d9c6191b0713019faf870c3516 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Mon, 27 Feb 2023 16:46:06 +0100 Subject: gnu: Add sugar-typing-turtle-activity. * gnu/packages/sugar.scm (sugar-typing-turtle-activity): New variable. --- gnu/packages/sugar.scm | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/gnu/packages/sugar.scm b/gnu/packages/sugar.scm index fbc8da4206..de5b304497 100644 --- a/gnu/packages/sugar.scm +++ b/gnu/packages/sugar.scm @@ -384,3 +384,41 @@ the Sugar Toolkit.") (description "This is an activity for the Sugar environment which aims to provide users with easy access to documentation and manuals.") (license license:gpl3+)))) + +(define-public sugar-typing-turtle-activity + (package + (name "sugar-typing-turtle-activity") + (version "32") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sugarlabs/typing-turtle-activity") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0shadv9wgddjvl97kvsqb8iw1wmmfw5lzcqk78hd70pzvh4c1hmd")))) + (build-system python-build-system) + (arguments + (list + #:test-target "check" + #:phases + #~(modify-phases %standard-phases + (add-after 'unpack 'patch-launcher + (lambda* (#:key inputs #:allow-other-keys) + (substitute* "activity/activity.info" + (("exec = sugar-activity3") + (string-append "exec = " + (search-input-file inputs "/bin/sugar-activity3")))))) + (replace 'install + (lambda _ + (invoke "python" "setup.py" "install" + (string-append "--prefix=" #$output))))))) + (native-inputs + (list gettext-minimal sugar-toolkit-gtk3)) + (home-page "https://help.sugarlabs.org/en/typing_turtle.html") + (synopsis "Learn typing") + (description "Need some help typing? In this activity for the Sugar +environment you will learn the best way to hold your hands in order for you to +become a faster typist.") + (license license:gpl3+))) -- cgit v1.2.3