diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-03-29 00:50:36 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-03-29 00:50:36 +0100 |
commit | a8a96bbead267946e29554de13490b93fe01ec5c (patch) | |
tree | 25cf85253639c28d68a3e21f53e7a494c0e4eb24 /gnu/packages/games.scm | |
parent | 96848ecc16589282681208c56fcb4e5d077ced52 (diff) |
gnu: prboom-plus: Don't use NAME in source URI.
* gnu/packages/games.scm (prboom-plus)[source]: Hard-code NAME.
Diffstat (limited to 'gnu/packages/games.scm')
-rw-r--r-- | gnu/packages/games.scm | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index 7ca223a0a6..10aa1da972 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -1036,11 +1036,10 @@ Every puzzle has a complete solution, although there may be more than one.") (version "2.5.1.4") (source (origin (method url-fetch) - (uri (string-append "mirror://sourceforge/" name "/" name "/" - version "/" name "-" version ".tar.gz")) + (uri (string-append "mirror://sourceforge/prboom-plus/prboom-plus/" + version "/prboom-plus-" version ".tar.gz")) (sha256 - (base32 - "151v6nign86m1a2vqz27krsccpc9m4d1jax4y43v2fa82wfj9qp0")) + (base32 "151v6nign86m1a2vqz27krsccpc9m4d1jax4y43v2fa82wfj9qp0")) (modules '((guix build utils))) (snippet '(begin |