guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: cdogs-sdl: Update to 0.8.0.


From: guix-commits
Subject: branch master updated: gnu: cdogs-sdl: Update to 0.8.0.
Date: Fri, 29 May 2020 17:07:55 -0400

This is an automated email from the git hooks/post-receive script.

ngz pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 0c82f6a  gnu: cdogs-sdl: Update to 0.8.0.
0c82f6a is described below

commit 0c82f6ad0ef92a5ee4b181ab9033dd3aaf2813e7
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Fri May 29 22:46:58 2020 +0200

    gnu: cdogs-sdl: Update to 0.8.0.
    
    * gnu/packages/games.scm (cdogs-sdl): Update to 0.8.0.
    [native-inputs]: Add `pkg-config'.
    [inputs]: Add `gtk+'.
---
 gnu/packages/games.scm | 25 ++++++++++++++-----------
 1 file changed, 14 insertions(+), 11 deletions(-)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 1c27561..210cf8a 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -4819,24 +4819,27 @@ emerges from a sewer hole and pulls her below ground.")
 (define-public cdogs-sdl
   (package
     (name "cdogs-sdl")
-    (version "0.6.9")
-    (source (origin
-              (method git-fetch)
-              (uri (git-reference
-                    (url "https://github.com/cxong/cdogs-sdl.git";)
-                    (commit version)))
-              (file-name (git-file-name name version))
-              (sha256
-               (base32
-                "13gyv2hzk43za1n3lsjnd5v64xlzfzq7n10scd1rcbsnk1n007zr"))))
+    (version "0.8.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/cxong/cdogs-sdl.git";)
+             (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0vx37zb2iw7sfw5a2bs97ydlmb301nvy485ybdm8g46c5hn9s13c"))))
     (build-system cmake-build-system)
     (arguments
      `(#:configure-flags
        (list (string-append "-DCDOGS_DATA_DIR="
                             (assoc-ref %outputs "out")
                             "/share/cdogs-sdl/"))))
+    (native-inputs
+     `(("pkg-config" ,pkg-config)))
     (inputs
-     `(("mesa" ,mesa)
+     `(("gtk+" ,gtk+)
+       ("mesa" ,mesa)
        ("sdl2" ,sdl2)
        ("sdl2-image" ,sdl2-image)
        ("sdl2-mixer" ,sdl2-mixer)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]