diff options
author | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2019-11-22 19:32:16 +0100 |
---|---|---|
committer | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2019-12-10 17:28:44 +0100 |
commit | c57e31fbc2d9ac1a828103f34c5a1ebf2fba1361 (patch) | |
tree | 5aa64de52a362aa214d4c02701074de36014e2b5 /gnu/packages/games.scm | |
parent | 2582f5827113bb463e9be65826bf689b38e47039 (diff) | |
download | patches-c57e31fbc2d9ac1a828103f34c5a1ebf2fba1361.tar patches-c57e31fbc2d9ac1a828103f34c5a1ebf2fba1361.tar.gz |
gnu: Add kmahjongg.
* gnu/packages/games.scm (kmahjongg): New variable.
Diffstat (limited to 'gnu/packages/games.scm')
-rw-r--r-- | gnu/packages/games.scm | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index 22eb0ffb4d..f44331ccb4 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -8081,3 +8081,44 @@ This package is part of the KDE games module.") (description "Shared library and common files for kmahjongg, kshisen and other Mah Jongg like games.") (license (list license:gpl2+ license:lgpl2.0+ license:fdl1.2+)))) + +(define-public kmahjongg + (package + (name "kmahjongg") + (version "19.08.3") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://kde/stable/applications/" + version "/src/kmahjongg-" version ".tar.xz")) + (sha256 + (base32 "08na845h0nhmfrszdmvfq5y1dy7kgbrlzjp0f5snvbbf7w44ci6p")))) + (properties `((tags . ("Desktop" "KDE" "Games")))) + (build-system qt-build-system) + (native-inputs + `(("extra-cmake-modules" ,extra-cmake-modules) + ("kdoctools" ,kdoctools))) + (inputs + `(("kcompletion" ,kcompletion) + ("kcrash" ,kcrash) + ("kdbusaddons" ,kdbusaddons) + ("kdeclarative" ,kdeclarative) + ("ki18n" ,ki18n) + ("knewstuff" ,knewstuff) + ("kxmlgui" ,kxmlgui) + ("libkdegames" ,libkdegames) + ("libkmahjongg" ,libkmahjongg) + ("qtbase" ,qtbase) + ("qtdeclarative" ,qtdeclarative) + ("qtsvg" ,qtsvg))) + (home-page "https://games.kde.org/") + (synopsis "Tile laying patience") + (description "In KMahjongg the tiles are scrambled and staked on top of +each other to resemble a certain shape. The player is then expected to remove +all the tiles off the game board by locating each tile's matching pair. + +A variety of tile layouts are included, as well as an editor to create new +layouts. + +This package is part of the KDE games module.") + (license (list license:gpl2+ license:lgpl2.0+ license:fdl1.2+)))) |