gnu: wesnoth: Update to 1.16.6.
* gnu/packages/games.scm (wesnoth): Update to 1.16.6. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
34e6c5d428
commit
9ffeec668e
1 changed files with 11 additions and 11 deletions
|
@ -4293,22 +4293,19 @@ falling, themeable graphics and sounds, and replays.")
|
||||||
(define-public wesnoth
|
(define-public wesnoth
|
||||||
(package
|
(package
|
||||||
(name "wesnoth")
|
(name "wesnoth")
|
||||||
(version "1.16.5")
|
(version "1.16.6")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append "mirror://sourceforge/wesnoth/wesnoth-"
|
(uri (git-reference
|
||||||
(version-major+minor version)
|
(url "https://github.com/wesnoth/wesnoth")
|
||||||
"/wesnoth-" version "/"
|
(commit version)))
|
||||||
"wesnoth-" version ".tar.bz2"))
|
(file-name (string-append name "-" version ".tar.bz2"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"02pzijbmkgcb8hc4l3f4r3r3mxqda936dp488i9sd9d4m3xdzimh"))))
|
"0hfvxmdnwn86w254blbjacia342j47rhhahm6ca79la9d04rlz3m"))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f)) ;no check target
|
(list #:tests? #f)) ;no test target
|
||||||
(native-inputs
|
|
||||||
`(("gettext" ,gettext-minimal)
|
|
||||||
("pkg-config" ,pkg-config)))
|
|
||||||
(inputs
|
(inputs
|
||||||
(list boost
|
(list boost
|
||||||
dbus
|
dbus
|
||||||
|
@ -4317,6 +4314,9 @@ falling, themeable graphics and sounds, and replays.")
|
||||||
openssl
|
openssl
|
||||||
pango
|
pango
|
||||||
(sdl-union (list sdl2 sdl2-image sdl2-mixer sdl2-ttf))))
|
(sdl-union (list sdl2 sdl2-image sdl2-mixer sdl2-ttf))))
|
||||||
|
(native-inputs
|
||||||
|
(list gettext-minimal
|
||||||
|
pkg-config))
|
||||||
(home-page "https://www.wesnoth.org/")
|
(home-page "https://www.wesnoth.org/")
|
||||||
(synopsis "Turn-based strategy game")
|
(synopsis "Turn-based strategy game")
|
||||||
(description
|
(description
|
||||||
|
|
Reference in a new issue