mirror of
https://codeberg.org/guix/guix.git
synced 2026-01-29 04:01:28 -06:00
gnu: Add kpat.
* gnu/packages/kde-games.scm (kpat): New variable. Change-Id: Ifce552b9712ad066382af0f92d5b16b851bf5560 Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
This commit is contained in:
parent
ac2f824c56
commit
3b072cf836
1 changed files with 57 additions and 0 deletions
|
|
@ -1840,6 +1840,63 @@ This package is part of the KDE games module.")
|
|||
This package is part of the KDE games module.")
|
||||
(license license:gpl2+)))
|
||||
|
||||
(define-public kpat
|
||||
(package
|
||||
(name "kpat")
|
||||
(version "25.08.2")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://kde/stable/release-service/" version
|
||||
"/src/kpat-" version ".tar.xz"))
|
||||
(sha256
|
||||
(base32 "15hdyqqqmlbfhawwq2vyyl9ywln0317zxnramhnb2p4j1ms0bh3s"))))
|
||||
(build-system qt-build-system)
|
||||
(arguments
|
||||
(list #:qtbase qtbase
|
||||
#:tests? #f
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-after 'install 'find-cards
|
||||
(lambda _
|
||||
(wrap-program (string-append #$output "/bin/kpat")
|
||||
`("XDG_DATA_DIRS" ":" suffix
|
||||
,(list (string-append #$libkdegames "/share")))))))))
|
||||
(native-inputs
|
||||
(list bash-minimal extra-cmake-modules kdoctools))
|
||||
(inputs
|
||||
(list black-hole-solver
|
||||
freecell-solver
|
||||
kcompletion
|
||||
kconfig
|
||||
kconfigwidgets
|
||||
kcoreaddons
|
||||
kcrash
|
||||
kdbusaddons
|
||||
kguiaddons
|
||||
ki18n
|
||||
kio
|
||||
knewstuff
|
||||
kwidgetsaddons
|
||||
kxmlgui
|
||||
libkdegames
|
||||
qtdeclarative
|
||||
qtsvg
|
||||
qtwayland
|
||||
shared-mime-info))
|
||||
(home-page "https://apps.kde.org/kpat/")
|
||||
(synopsis "Patience solitaire game")
|
||||
(description "KPat (aka KPatience) is a relaxing card sorting game.
|
||||
To win the game a player has to arrange a single deck of cards in certain order
|
||||
amongst each other.
|
||||
|
||||
This package is part of the KDE games module.")
|
||||
(license
|
||||
(list license:gpl2+
|
||||
license:fdl1.2+
|
||||
(license:non-copyleft
|
||||
"https://invent.kde.org/games/kpat/-/blob/master/COPYING")))))
|
||||
|
||||
(define-public kde-games
|
||||
(package
|
||||
(name "kde-games")
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue