diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-02-26 16:46:46 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-02-27 15:48:52 +0100 |
commit | 0c2e055e1819491bc1a96034dbe0a4181d7fccca (patch) | |
tree | 389db214f56095c6f6c931609bd67d60a6770a7b /gnu | |
parent | a4776d09813640cbf492cc960d2915f6093df94e (diff) | |
download | gnu-guix-0c2e055e1819491bc1a96034dbe0a4181d7fccca.tar gnu-guix-0c2e055e1819491bc1a96034dbe0a4181d7fccca.tar.gz |
gnu: wesnoth: Don't use NAME in source URI.
* gnu/packages/games.scm (wesnoth)[source]: Hard-code NAME.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/games.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index 9976216aaa..24c930170d 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -2102,9 +2102,9 @@ falling, themeable graphics and sounds, and replays.") (source (origin (method url-fetch) (uri (string-append "mirror://sourceforge/wesnoth/wesnoth-" - (version-major+minor version) "/wesnoth-" - version "/" - name "-" version ".tar.bz2")) + (version-major+minor version) + "/wesnoth-" version "/" + "wesnoth-" version ".tar.bz2")) (sha256 (base32 "1kgpj2f22nnx4mwd1zis3s5ny2983aasgqsmz7wnqaq7n6a7ac85")) |