From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:38607) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iZao8-0001kr-Sh for guix-patches@gnu.org; Tue, 26 Nov 2019 08:23:10 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iZao7-0004Oq-DX for guix-patches@gnu.org; Tue, 26 Nov 2019 08:23:08 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:44909) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iZao7-0004Oa-94 for guix-patches@gnu.org; Tue, 26 Nov 2019 08:23:07 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iZao7-0005tb-66 for guix-patches@gnu.org; Tue, 26 Nov 2019 08:23:07 -0500 Subject: [bug#38386] [PATCH 27/38] gnu: Add kubrick. Resent-Message-ID: From: Hartmut Goebel Date: Tue, 26 Nov 2019 14:20:54 +0100 Message-Id: <20191126132105.25651-27-h.goebel@crazy-compilers.com> In-Reply-To: <20191126132105.25651-1-h.goebel@crazy-compilers.com> References: <20191126132105.25651-1-h.goebel@crazy-compilers.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 38386@debbugs.gnu.org * gnu/packages/games.scm (kubrick): New variable. --- gnu/packages/games.scm | 43 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index 5373cca327..1c97894722 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -8892,3 +8892,46 @@ You also need to install a go engine, e.g. @code{gnugo}. This package is part of the KDE games module.") (license license:gpl3+))) + +(define-public kubrick + (package + (name "kubrick") + (version "19.08.3") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://kde/stable/applications/" version + "/src/kubrick-" version ".tar.xz")) + (sha256 + (base32 "0ma8wja4rqlsmsr8cyicfpkwlgqva4450ls4c0ql53p0kabf04gx")))) + (properties `((tags . ("Desktop" "KDE" "Games")))) + (build-system qt-build-system) + (native-inputs + `(("extra-cmake-modules" ,extra-cmake-modules) + ("kdoctools" ,kdoctools))) + (inputs + `(("glu" ,glu) + ("kconfig" ,kconfig) + ("kconfigwidgets" ,kconfigwidgets) + ("kcoreaddons" ,kcoreaddons) + ("kcrash" ,kcrash) + ("ki18n" ,ki18n) + ("kio" ,kio) + ("kwidgetsaddons" ,kwidgetsaddons) + ("kxmlgui" ,kxmlgui) + ("libkdegames" ,libkdegames) + ("qtbase" ,qtbase) + ("qtdeclarative" ,qtdeclarative) + ("qtsvg" ,qtsvg))) + (home-page "https://games.kde.org/") + (synopsis "Game based on Rubik's Cube") + (description "Kubrick is a game based on the Rubik's Cube puzzle. + +The cube sizes range from 2x2x2 up to 6x6x6, or you can play with irregular +\"bricks\" such as 5x3x2 or \"mats\" such as 6x4x1 or 2x2x1. The game has a +selection of puzzles at several levels of difficulty, as well as demos of +pretty patterns and solution moves, or you can make up your own puzzles. The +game has unlimited undo, redo, save and reload capabilities. + +This package is part of the KDE games module.") + (license (list license:gpl2+ license:fdl1.2+)))) -- 2.21.0