From e21eea0680c28491ec2dfa1119f7a8fa7ee64653 Mon Sep 17 00:00:00 2001 From: Olivier Rojon Date: Fri, 5 Feb 2021 16:39:10 +0100 Subject: gnu: pioneer: Update to 20210203. * gnu/packages/games.scm (pioneer): Update to 20210203. Signed-off-by: Nicolas Goaziou --- gnu/packages/games.scm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'gnu/packages/games.scm') diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index e3e18bf09e..24c815d7ad 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -56,6 +56,7 @@ ;;; Copyright © 2020 Leo Prikler ;;; Copyright © 2020 Lu hux ;;; Copyright © 2020 Tomás Ortín Fernández +;;; Copyright © 2021 Olivier Rojon ;;; ;;; This file is part of GNU Guix. ;;; @@ -7083,7 +7084,7 @@ elements to achieve a simple goal in the most complex way possible.") (define-public pioneer (package (name "pioneer") - (version "20200203") + (version "20210203") (source (origin (method git-fetch) (uri (git-reference @@ -7092,7 +7093,7 @@ elements to achieve a simple goal in the most complex way possible.") (file-name (git-file-name name version)) (sha256 (base32 - "1011xsi94jhw98mhm8kryq8ajig0qfbrdx5xdasi92bd4nk7lcp8")))) + "1zyi1xyghj99hz8fa6dywpscj6flp04fspnlgxbivf3rgmnxflg7")))) (build-system cmake-build-system) (native-inputs `(("pkg-config" ,pkg-config))) -- cgit v1.2.3 From 838347207cdd96de1ad0127aaf4b2c378c7c2148 Mon Sep 17 00:00:00 2001 From: Leo Prikler Date: Fri, 5 Feb 2021 00:31:17 +0100 Subject: gnu: Add cockatrice. * gnu/packages/games.scm (cockatrice): New variable. --- gnu/packages/games.scm | 48 +++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 47 insertions(+), 1 deletion(-) (limited to 'gnu/packages/games.scm') diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index 24c815d7ad..454742643e 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -53,7 +53,7 @@ ;;; Copyright © 2020 Vincent Legoll ;;; Copyright © 2020 Michael Rohleder ;;; Copyright © 2020 Trevor Hass -;;; Copyright © 2020 Leo Prikler +;;; Copyright © 2020, 2021 Leo Prikler ;;; Copyright © 2020 Lu hux ;;; Copyright © 2020 Tomás Ortín Fernández ;;; Copyright © 2021 Olivier Rojon @@ -858,6 +858,52 @@ things far stranger and deadlier, and against the others like yourself, that want what you have.") (license license:cc-by-sa3.0))) +(define-public cockatrice + (let ((release-date "2021-01-26")) + (package + (name "cockatrice") + (version "2.8.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/Cockatrice/Cockatrice") + (commit (string-append release-date "-Release-" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0q8ffcklb2b7hcqhy3d2f9kz9aw22pp04pc9y4sslyqmf17pwnz9")) + (modules '((guix build utils))) + (snippet + ;; Strip image URLs as they point towards non-free web services + '(substitute* "cockatrice/src/settings/downloadsettings.cpp" + (("downloadURLs.append\\(\".*\"\\);") ""))))) + (build-system cmake-build-system) + (arguments + `(#:configure-flags '("-DWITH_SERVER=1" + "-DWITH_CLIENT=1" + "-DWITH_ORACLE=1" + "-DTEST=1"))) + (native-inputs + `(("googletest" ,googletest) + ("pkg-config" ,pkg-config))) + (inputs + `(("protobuf" ,protobuf) + ("qtbase" ,qtbase) + ("qtmultimedia" ,qtmultimedia) + ("qtsvg" ,qtsvg) + ("qttools" ,qttools) + ("qtwebsockets" ,qtwebsockets) + ("xz" ,xz) + ("zlib" ,zlib))) + (home-page "https://cockatrice.github.io") + (synopsis "Tabletop card game simulator") + (description "Cockatrice is a program for playing tabletop card games +over a network. Its server design prevents users from manipulating the game +for unfair advantage. The client also provides a single-player mode, which +allows users to brew while offline.") + (license license:gpl2)))) + (define-public corsix-th (package (name "corsix-th") -- cgit v1.2.3 From 0e92d57654c10aa9d98741a726db609edba758d1 Mon Sep 17 00:00:00 2001 From: Robert Smith Date: Sat, 6 Feb 2021 21:55:14 -0800 Subject: gnu: crawl: Update to 0.26.1 * gnu/packages/games.scm (crawl): Update to 0.26.1 Signed-off-by: Nicolas Goaziou --- gnu/packages/games.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/games.scm') diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index 454742643e..efa6d24d8f 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -6379,14 +6379,14 @@ fish. The whole game is accompanied by quiet, comforting music.") (define-public crawl (package (name "crawl") - (version "0.26.0") + (version "0.26.1") (source (origin (method url-fetch) (uri (string-append "https://github.com/crawl/crawl/releases/download/" version "/stone_soup-" version "-nodeps.tar.xz")) (sha256 - (base32 "1m81x1sp6p2ka5w2nib3pcw5w5iv58z41c8aqn0dayi1lb3yslfb")) + (base32 "1d8p2np2q5951wqphq2f4dyvv976m2lh82b0qp7w9pp1h8zzi1ff")) (patches (search-patches "crawl-upgrade-saves.patch")))) (build-system gnu-build-system) (inputs -- cgit v1.2.3 From c7296465cff593bd3c82c7152e09f4337252ce4d Mon Sep 17 00:00:00 2001 From: 宋文武 Date: Thu, 11 Feb 2021 11:56:09 +0800 Subject: gnu: hedgewars: Fix build. Fixes . * gnu/packages/games.scm (hedgewars)[arguments]<#:phases>: Add the missing "#include ". --- gnu/packages/games.scm | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'gnu/packages/games.scm') diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index efa6d24d8f..bf6b79370a 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -9213,6 +9213,12 @@ play with up to four players simultaneously. It has network support.") "-Dhaskell_flags=-dynamic;-fPIC") #:phases (modify-phases %standard-phases + (add-before 'configure 'fix-sources + (lambda _ + ;; Fix a missing 'include'. + (substitute* "QTfrontend/ui/page/pagegamestats.cpp" + (("#include ") + "#include \n#include ")))) (replace 'check (lambda _ (invoke "ctest"))) (add-after 'install 'install-icon -- cgit v1.2.3