diff options
author | David Thompson <dthompson2@worcester.edu> | 2022-09-01 09:18:58 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2022-09-01 09:23:17 -0400 |
commit | d580c8cb3dc3bf277485a79ef16e33f841a04ef7 (patch) | |
tree | 7b14f16b2b2986f0711f0a6762ac95b2c0a003bb | |
parent | f04325c92fa8b700619834500e1f3497ac9150b1 (diff) | |
download | guix-d580c8cb3dc3bf277485a79ef16e33f841a04ef7.tar.gz guix-d580c8cb3dc3bf277485a79ef16e33f841a04ef7.zip |
gnu: tiled: Update to 1.8.6.
* gnu/packages/game-development.scm (tiled): Update to 1.8.6.
[source]: Modify git URL to use the official 'mapeditor/tiled' repository for
which 'bjorn/tiled' was a permanent redirect.
-rw-r--r-- | gnu/packages/game-development.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/game-development.scm b/gnu/packages/game-development.scm index b3a54798d4..9ddc72de77 100644 --- a/gnu/packages/game-development.scm +++ b/gnu/packages/game-development.scm @@ -509,16 +509,16 @@ formats such as PNG.") (define-public tiled (package (name "tiled") - (version "1.8.1") + (version "1.8.6") (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/bjorn/tiled") + (url "https://github.com/mapeditor/tiled") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 - "05gczsywkk45bh0z1vv8l6cmrlncc2qj8agavj5ryxpnxkzy69r1")))) + "0iimfj4kbhmjk94586fqz11bk4i7v0zsxby8agx7450cqlh2y3zi")))) (build-system gnu-build-system) (inputs (list qtbase-5 qtdeclarative-5 qtsvg-5 zlib)) |