From 4f20b9aac2ff2bf3d52b38db2144eb01a0903104 Mon Sep 17 00:00:00 2001 From: Hartmut Goebel Date: Mon, 2 Dec 2019 11:27:10 +0100 Subject: [PATCH 03/17] gnu: Add blinken. * gnu/packages/education.scm (blinken): New variable. diff --git a/gnu/packages/education.scm b/gnu/packages/education.scm index c09edc4fe4..66fa35abb8 100644 --- a/gnu/packages/education.scm +++ b/gnu/packages/education.scm @@ -118,6 +118,48 @@ (define-public analitza (license ;; GPL for programs, LGPL for libraries, FDL for documentation (list license:gpl2+ license:lgpl2.0+ license:fdl1.2+)))) +(define-public blinken + (package + (name "blinken") + (version "22.04.3") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://kde/stable/release-service/" version + "/src/blinken-" version ".tar.xz")) + (sha256 + (base32 "0rq4f1s7kb3gfsxs9fnhrgdsrmlw5746bh5720m84mp6nafpvd37")))) + (build-system qt-build-system) + (native-inputs + (list extra-cmake-modules + kdoctools)) + (inputs + (list kauth + kconfigwidgets + kcoreaddons + kcrash + kdbusaddons + kguiaddons + ki18n + kxmlgui + oxygen-icons ;; default icon set + phonon + qtbase-5 + qtsvg-5)) + (home-page "https://kde.org/applications/education/org.kde.blinken") + (synopsis "Simon Says memory game") + (description "Blinken is based on an electronic game released in 1978, +which challenges players to remember sequences of increasing length. On the +face of the device, there are 4 different color buttons, each with its own +distinctive sound. These buttons light up randomly, creating the sequence +that the player must then recall. If the player is successful in remembering +the sequence of lights in the correct order, they advance to the next stage, +where an identical sequence with one extra step is presented. + +This package is part of the KDE education module.") + (license ;; GPL for programs, FDL for documentation + (list license:gpl2+ license:fdl1.2+)))) + (define-public gcompris (package (name "gcompris") -- 2.38.1