[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: Fix OpenSFX URI.
From: |
guix-commits |
Subject: |
branch master updated: gnu: Fix OpenSFX URI. |
Date: |
Fri, 30 Jul 2021 08:31:46 -0400 |
This is an automated email from the git hooks/post-receive script.
leoprikler pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 1484de9 gnu: Fix OpenSFX URI.
1484de9 is described below
commit 1484de9eff85b38e6b0b644e5db89da619d78a94
Author: Leo Prikler <leo.prikler@student.tugraz.at>
AuthorDate: Fri Jul 30 14:25:33 2021 +0200
gnu: Fix OpenSFX URI.
In commit 1cdf1cd7fe7ac425faa010531735d183af0a19f1, the URI was updated to
the
wrong value and the hash not updated at all, so people would erroneously
fetch
the old package from a wrong description.
* gnu/packages/games.scm (openttd-opensfx)[uri]: Use
<https://cdn.openttd.org/opensfx-releases>.
[sha256]: Update accordingly.
---
gnu/packages/games.scm | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index f274479..a6be36d 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -4429,11 +4429,11 @@ OpenGFX provides you with...
(origin
(method url-fetch)
(uri (string-append
- "https://cdn.openttd.org/extra/opensfx/"
- version "/opensfx-" version "-source.tar.gz"))
+ "https://cdn.openttd.org/opensfx-releases/"
+ version "/opensfx-" version "-source.tar.xz"))
(sha256
(base32
- "03jxgp02ks31hmsdh4xh0xcpkb70ds8jakc9pfc1y9vdrdavh4p5"))))
+ "06vycppqcxbfdqlxzna5xr303zgcmpcvj6ylw5b2ws0ssph2f1s0"))))
(build-system gnu-build-system)
(native-inputs
`(("catcodec" ,catcodec)
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: Fix OpenSFX URI.,
guix-commits <=