mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: nethack: Don't use NAME in source URI.
* gnu/packages/games.scm (nethack)[source]: Hard-code NAME, not VERSION.
This commit is contained in:
parent
dd0369f426
commit
a544817e80
1 changed files with 3 additions and 2 deletions
|
@ -872,8 +872,9 @@ (define-public nethack
|
|||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://www.nethack.org/download/"
|
||||
version "/" name "-361-src.tgz"))
|
||||
(uri
|
||||
(string-append "https://www.nethack.org/download/" version "/nethack-"
|
||||
(string-join (string-split version #\.) "") "-src.tgz"))
|
||||
(sha256
|
||||
(base32 "1dha0ijvxhx7c9hr0452h93x81iiqsll8bc9msdnp7xdqcfbz32b"))))
|
||||
(inputs
|
||||
|
|
Loading…
Reference in a new issue