guix-commits
[Top][All Lists]
Advanced

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

01/01: gnu: tiled: Fetch sources from git.


From: Ricardo Wurmus
Subject: 01/01: gnu: tiled: Fetch sources from git.
Date: Sun, 11 Nov 2018 07:20:20 -0500 (EST)

rekado pushed a commit to branch master
in repository guix.

commit 902068b43664b862dfcbb9172f41778d576e3ae0
Author: Ricardo Wurmus <address@hidden>
Date:   Sun Nov 11 13:18:27 2018 +0100

    gnu: tiled: Fetch sources from git.
    
    * gnu/packages/game-development.scm (tiled)[source]: Fetch from git.
---
 gnu/packages/game-development.scm | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/game-development.scm 
b/gnu/packages/game-development.scm
index da16758..1f73025 100644
--- a/gnu/packages/game-development.scm
+++ b/gnu/packages/game-development.scm
@@ -399,13 +399,14 @@ support.")
     (name "tiled")
     (version "1.2.0")
     (source (origin
-              (method url-fetch)
-              (uri (string-append "https://github.com/bjorn/tiled/archive/v";
-                                  version ".tar.gz"))
-              (file-name (string-append name "-" version ".tar.gz"))
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/bjorn/tiled.git";)
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
               (sha256
                (base32
-                "13dlf5kzvhhjkhy19118x3diakmraz4m9kxrsdam8dms6xivb6lp"))))
+                "1rra48hlkcgqxwxi802fb182p1q0723c9hhfvkd5inz9467idd4c"))))
     (build-system gnu-build-system)
     (inputs
      `(("qtbase" ,qtbase)



reply via email to

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