diff options
| author | Sughosha <sughosha@disroot.org> | 2026-03-05 17:28:25 +0530 |
|---|---|---|
| committer | Sughosha <sughosha@disroot.org> | 2026-03-05 17:32:20 +0530 |
| commit | 0ad7fdb39af5054df11604c4654257810ba8d3ac (patch) | |
| tree | c495dc811fb2befbbb93ba94b1126bd62e21d61b /gnu | |
| parent | 8afd7d3150efb666d8aefaefa18456e8e47271db (diff) | |
gnu: Add skladnik.
* gnu/packages/kde-games.scm (skladnik): New variable.
Change-Id: Iab6631629da9e09e8367d4b4f452fad7472b0357
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/kde-games.scm | 39 |
1 files changed, 38 insertions, 1 deletions
diff --git a/gnu/packages/kde-games.scm b/gnu/packages/kde-games.scm index 7e46fb2578d..3759f4d97a2 100644 --- a/gnu/packages/kde-games.scm +++ b/gnu/packages/kde-games.scm @@ -7,7 +7,7 @@ ;;; Copyright © 2022 Brendan Tildesley <mail@brendan.scot> ;;; Copyright © 2022 Petr Hodina <phodina@protonmail.com> ;;; Copyright © 2024, 2025 Zheng Junjie <873216071@qq.com> -;;; Copyright © 2025 Sughosha <sughosha@disroot.org> +;;; Copyright © 2025, 2026 Sughosha <sughosha@disroot.org> ;;; ;;; This file is part of GNU Guix. ;;; @@ -36,6 +36,7 @@ #:use-module (gnu packages compression) #:use-module (gnu packages games) #:use-module (gnu packages gl) + #:use-module (gnu packages graphics) #:use-module ((gnu packages freedesktop) #:select (shared-mime-info)) #:use-module (gnu packages kde-frameworks) #:use-module (gnu packages kde-multimedia) @@ -1973,6 +1974,42 @@ This package is part of the KDE games module.") (license:non-copyleft "https://invent.kde.org/games/kpat/-/blob/master/COPYING"))))) +(define-public skladnik + (package + (name "skladnik") + (version "25.12.2") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://kde/stable/release-service/" version + "/src/skladnik-" version ".tar.xz")) + (sha256 + (base32 "0jjawicyn3ng1n7fpricb3my3lx1gfhaw96ba7pa2rl9c2vlgp9v")))) + (build-system qt-build-system) + (arguments + (list #:qtbase qtbase + #:tests? #f)) ;no tests + (native-inputs + (list extra-cmake-modules)) + (inputs + (list libkdegames + kconfig + kconfigwidgets + kcoreaddons + kcrash + kdbusaddons + ki18n + kio + kwidgetsaddons + kxmlgui + povray)) + (home-page "https://apps.kde.org/skladnik/") + (synopsis "Japanese warehouse keeper sokoban game") + (description "Skladnik is the Japanese warehouse keeper sokoban game. + +This package is part of the KDE games module.") + (license license:gpl2+))) + (define-public kde-games (package (name "kde-games") |
