From 55e7f320fd7ce8f499bfa7c6dd010669f2eaee0e Mon Sep 17 00:00:00 2001 From: 宋文武 Date: Sat, 12 Aug 2023 17:46:31 +0800 Subject: gnu: Add kde-games. * gnu/packages/kde-games.scm (kde-games): New variable. --- gnu/packages/kde-games.scm | 54 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) diff --git a/gnu/packages/kde-games.scm b/gnu/packages/kde-games.scm index 8ed530d83e..dc3e81170c 100644 --- a/gnu/packages/kde-games.scm +++ b/gnu/packages/kde-games.scm @@ -27,6 +27,7 @@ (define-module (gnu packages kde-games) #:use-module (guix packages) #:use-module (guix download) #:use-module (guix build-system qt) + #:use-module (guix build-system trivial) #:use-module (guix gexp) #:use-module (gnu packages bash) #:use-module (gnu packages compression) @@ -1586,3 +1587,56 @@ (define-public kjumpingcube This package is part of the KDE games module.") (license (list license:gpl2+ license:fdl1.2+)))) + +(define-public kde-games + (package + (name "kde-games") + (version "23.04.3") + (source #f) + (build-system trivial-build-system) + (arguments + (list #:builder #~(mkdir #$output))) + (propagated-inputs + ;; TODO: kpat, klickety, katomic, knights. + (list bomber + bovo + granatier + kajongg + kapman + kblackbox + kblocks + kbounce + kbreakout + kdiamond + kfourinline + kgoldrunner + kigo + killbots + kiriki + kjumpingcube + klines + kmahjongg + kmines + knavalbattle + knetwalk + kolf + kollision + konquest + kreversi + kshisen + ksirk + ksnakeduel + kspaceduel + ksquares + ksudoku + ktuberling + kubrick + lskat + palapeli + picmi)) + (home-page "https://apps.kde.org/categories/games/") + (synopsis "KDE Games") + (description "This metapackage includes a collection of games provided +with the official release of KDE.") + (license + (list license:gpl2+ license:lgpl2.0+ license:gpl3+ license:fdl1.2+)))) -- cgit v1.2.3